:root{
  --bg:#0b1220;
  --panel:#0f1a2f;
  --text:#e8eefc;
  --muted:#a7b4d6;
  --line:rgba(255,255,255,.10);
  --accent:#60a5fa;
  --accent2:#34d399;
  --shadow:0 18px 50px rgba(0,0,0,.35);
  --radius:16px;
}

*{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(900px 500px at 15% 10%, rgba(96,165,250,.20), transparent 60%),
    radial-gradient(900px 500px at 85% 0%, rgba(52,211,153,.14), transparent 60%),
    linear-gradient(180deg, var(--bg), #070b14 70%);
}

a{color:inherit}
a:hover{opacity:.9}
p{line-height:1.65;color:var(--muted)}
h1,h2,h3{line-height:1.2;margin:0 0 .5rem}
h1{font-size: clamp(32px, 4vw, 52px); letter-spacing:-.02em;}
h2{font-size: clamp(22px, 2.4vw, 30px)}
h3{font-size: 16px; color:var(--text); margin-top:0}

.wrap{
  width:min(1100px, 92vw);
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter:saturate(120%) blur(10px);
  background:rgba(7,11,20,.55);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.brand-mark{
  width:42px;height:42px;border-radius:14px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(96,165,250,.25), rgba(52,211,153,.18));
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  font-weight:700;
}
.brand-name{font-weight:800;letter-spacing:-.01em}
.brand-tag{font-size:12px;color:var(--muted);margin-top:2px}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:12px;
  border:1px solid transparent;
}
.nav a:hover{
  color:var(--text);
  border-color:var(--line);
  background:rgba(255,255,255,.04);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none;
  border-radius:14px;
  border:1px solid var(--line);
  padding:10px 14px;
  font-weight:800;
  font-size:14px;
  color:var(--text);
  background:rgba(255,255,255,.04);
}
.btn:hover{background:rgba(255,255,255,.07)}
.btn.primary{
  border-color:rgba(96,165,250,.45);
  background:linear-gradient(135deg, rgba(96,165,250,.25), rgba(52,211,153,.16));
}
.btn.small{padding:8px 12px;border-radius:12px;font-weight:800}

main{padding:46px 0 70px}

.hero{
  padding:28px 0 22px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:26px;
  align-items:start;
}
.hero-copy{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
  box-shadow: var(--shadow);
}
.lead{
  font-size:16px;
  margin:12px 0 18px;
}

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}

.kpis{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
.kpi{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
}
.kpi strong{display:block;font-size:13px;color:var(--muted);font-weight:700;margin-bottom:6px}
.kpi span{font-weight:900;font-size:18px}

.section{
  margin-top:26px;
}
.section-card{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}

.list{
  margin:12px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.list li{margin:8px 0}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}
.badge{
  font-size:13px;
  font-weight:700;
  color:var(--text);
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  padding:8px 10px;
  border-radius:999px;
}

.contact-box{
  display:grid;
  gap:10px;
  margin-top:10px;
  padding:16px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.18);
}
.contact-box a{color:var(--text);text-decoration:none;border-bottom:1px dashed rgba(255,255,255,.35)}
.contact-box a:hover{border-bottom-color:rgba(255,255,255,.7)}

.smallprint{
  font-size:12px;
  color:rgba(167,180,214,.85);
  margin-top:10px;
}

.site-footer{
  border-top:1px solid var(--line);
  background:rgba(7,11,20,.55);
}
.footer-inner{
  padding:18px 0;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer-inner .muted{color:var(--muted);font-size:12px}

@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .brand{min-width:auto}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto}
}
