:root{
  --bg:#0b1020; --surface:#0f1733; --surface2:#121c3d; --line:#ffffff1a;
  --text:#eaf0ff; --muted:#b6c2ffcc; --accent:#6d5efc; --accent2:#3bd4ff;
  --shadow:0 18px 45px rgba(0,0,0,.35); --radius:18px; --max:1120px;
}
*{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";
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(109,94,252,.35), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(59,212,255,.22), transparent 55%),
    var(--bg);
  color:var(--text); line-height:1.7;
}
a{color:inherit;text-decoration:none}
.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}
.topbar{
  background: linear-gradient(135deg, rgba(109,94,252,.95), rgba(59,212,255,.65));
  color:#0b1020; font-weight:900; letter-spacing:.2px; padding:12px 0; text-align:center;
}
.topbar a{color:#0b1020; text-decoration:underline}
header{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(11,16,32,.88), rgba(11,16,32,.55));
  border-bottom:1px solid var(--line);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:16px}
.brand{display:flex; align-items:center; gap:10px; font-weight:950; letter-spacing:.4px}
.logo{
  width:38px; height:38px; border-radius:14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 12px 25px rgba(109,94,252,.25);
}
nav ul{list-style:none; display:flex; gap:18px; padding:0; margin:0; align-items:center}
nav a{color:var(--muted); font-weight:800; padding:10px 12px; border-radius:14px; transition: all .2s ease}
nav a:hover{color:var(--text); background: rgba(255,255,255,.07)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px; border-radius:16px;
  border:1px solid var(--line); background: rgba(255,255,255,.06);
  color:var(--text); font-weight:900;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{transform:translateY(-1px); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.22)}
.btn.primary{
  background: linear-gradient(135deg, var(--accent), #8a7bff);
  border-color: transparent;
  box-shadow: 0 16px 35px rgba(109,94,252,.26);
}
.btn.primary:hover{background: linear-gradient(135deg, #7a6cff, #9a8cff)}
.hero{padding: 64px 0 34px}
.hero-grid{display:grid; grid-template-columns: 1.25fr .75fr; gap:28px; align-items:stretch}
h1{font-size: clamp(34px, 4.6vw, 56px); line-height:1.1; margin: 0 0 14px; letter-spacing: -.7px}
.lead{margin:0 0 18px; color:var(--muted); font-size: 1.06rem; max-width: 60ch}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.panel{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border:1px solid var(--line); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow); position:relative; overflow:hidden;
}
.panel:before{
  content:""; position:absolute; inset:-60px -60px auto auto;
  width:220px; height:220px; border-radius: 70px;
  background: radial-gradient(circle at 30% 30%, rgba(59,212,255,.35), transparent 60%);
  transform: rotate(12deg);
}
.kpi{position:relative}
.kpi strong{display:block; font-size: 22px}
.kpi p{margin:10px 0 0; color: var(--muted)}
.pill{
  display:inline-flex; gap:8px; align-items:center;
  padding: 8px 12px; border-radius: 999px; border:1px solid var(--line);
  width: fit-content; background: rgba(0,0,0,.16); color: var(--muted);
  font-weight:900; font-size:.92rem;
}
.dot{width:10px; height:10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  box-shadow: 0 0 0 6px rgba(59,212,255,.12);
}
section{padding: 44px 0}
.section-title{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom: 16px}
.section-title h2{margin:0; font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -.3px}
.section-title p{margin:0; color: var(--muted); max-width: 70ch}
.grid{display:grid; gap:14px}
.grid.cols-3{grid-template-columns: repeat(3, minmax(0,1fr))}
.grid.cols-2{grid-template-columns: repeat(2, minmax(0,1fr))}
.card{
  background: rgba(255,255,255,.05); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.22);
  transition: transform .15s ease, border-color .2s ease, background .2s ease;
}
.card:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.07)}
.card h3{margin: 0 0 8px; font-size: 18px}
.card p{margin:0; color: var(--muted)}
.small{font-size:.95rem}
.hr{height:1px; background: var(--line); margin: 18px 0}
.badges{display:flex; flex-wrap:wrap; gap:10px; margin-top: 12px}
.badge{
  display:inline-flex; padding: 9px 12px; border-radius: 999px;
  border:1px solid var(--line); background: rgba(0,0,0,.14);
  color: var(--muted); font-weight:900;
}
.article{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
}
.article p{color: var(--muted); margin: 0 0 14px}
.article h3{margin: 18px 0 10px}
.links{display:flex; flex-wrap:wrap; gap:10px; margin-top: 10px}
.linkchip{
  display:inline-flex; padding: 10px 12px; border-radius: 14px;
  border: 1px solid var(--line); background: rgba(0,0,0,.12);
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  font-weight: 950;
}
.linkchip:hover{transform: translateY(-1px); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.25)}
.contactbox{
  display:grid; gap:10px; padding: 20px;
  background: rgba(255,255,255,.05); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.emailrow{display:flex; flex-wrap:wrap; gap:10px; margin-top: 6px}
.emailrow a{
  display:inline-flex; padding: 10px 12px; border-radius: 14px;
  background: rgba(109,94,252,.18); border: 1px solid rgba(109,94,252,.35);
  font-weight: 950;
}
.emailrow a:hover{background: rgba(109,94,252,.26)}
footer{border-top:1px solid var(--line); padding: 18px 0; color: var(--muted); text-align:center}
@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr}
  .grid.cols-3,.grid.cols-2{grid-template-columns: 1fr}
  nav ul{display:none}
}
