:root{
  --bg:#f6f7fb;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --border:#e2e8f0;
  --brand:#0a4db0;
  --brand2:#0ea5e9;
  --focus:#fde047;
  --shadow:0 10px 30px rgba(2,6,23,.08);
  --radius:16px;
  --maxw:1120px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background:linear-gradient(180deg, var(--bg), #fff 50%);
  color:var(--text);
  line-height:1.5;
}
a{color:inherit; text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:var(--maxw); margin:0 auto; padding:0 18px}
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(140%) blur(10px);
  background:rgba(246,247,251,.86);
  border-bottom:1px solid rgba(226,232,240,.9);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px; font-weight:800;
}
.brand .dot{width:10px;height:10px;border-radius:999px;background:linear-gradient(135deg,var(--brand),var(--brand2))}
.navlinks{display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:flex-end}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:9px 12px; border-radius:999px;
  background:rgba(255,255,255,.75);
  border:1px solid var(--border);
  box-shadow:0 1px 0 rgba(2,6,23,.04);
}
.pill strong{font-weight:700}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:10px 14px; border-radius:12px;
  border:1px solid var(--border);
  background:var(--card);
  box-shadow:0 2px 0 rgba(2,6,23,.04);
  font-weight:700;
}
.btn.primary{
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  border-color:transparent;
  color:#fff;
}
.btn.cv{
  background:var(--focus);
  border-color:#facc15;
}
.hero{
  padding:34px 0 22px;
}
.hero-grid{
  display:grid; grid-template-columns: 1.15fr .85fr;
  gap:16px;
}
@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero-card{padding:18px}
.kicker{color:var(--muted); font-weight:700; letter-spacing:.02em; text-transform:uppercase; font-size:12px}
h1{margin:8px 0 10px; font-size:34px; line-height:1.1}
.lead{color:var(--muted); font-size:16px; margin:0 0 14px}
.badges{display:flex; gap:8px; flex-wrap:wrap; margin:10px 0 0}
.badge{
  display:inline-flex; gap:6px; align-items:center;
  padding:6px 10px; border-radius:999px;
  border:1px solid var(--border);
  background:rgba(14,165,233,.06);
  color:#0b1220;
  font-size:12px;
}
.hero-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.aside{padding:18px}
.aside h2{margin:0 0 10px; font-size:18px}
.aside ul{margin:0; padding-left:18px; color:var(--muted)}
.section{padding:16px 0}
.section h2{font-size:22px; margin:0 0 12px}
.grid2{display:grid; grid-template-columns:1fr 1fr; gap:14px}
@media (max-width: 920px){.grid2{grid-template-columns:1fr}}
.kpi{
  display:grid; grid-template-columns: 1fr 1fr 1fr;
  gap:10px; margin-top:12px;
}
@media (max-width: 720px){.kpi{grid-template-columns:1fr}}
.kpi .item{padding:12px; border:1px solid var(--border); border-radius:14px; background:#fff}
.kpi .item .label{color:var(--muted); font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.02em}
.kpi .item .value{font-size:18px; font-weight:800; margin-top:4px}
.muted{color:var(--muted)}
hr.sep{border:none; border-top:1px solid var(--border); margin:16px 0}
.controls{
  display:flex; flex-wrap:wrap; gap:10px; align-items:center;
}
input[type="search"], select{
  width:100%;
  padding:11px 12px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
  font-size:14px;
}
.control{flex:1 1 260px}
.details{
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
  overflow:hidden;
}
details{border-bottom:1px solid var(--border)}
details:last-child{border-bottom:none}
summary{
  list-style:none;
  cursor:pointer;
  padding:14px 14px;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  font-weight:800;
}
summary::-webkit-details-marker{display:none}
.summary-right{color:var(--muted); font-weight:700; font-size:12px}
.jobs{padding:0 14px 14px}
.jobs a{
  display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
  padding:10px 10px;
  margin:8px 0;
  border:1px solid var(--border);
  border-radius:14px;
  background:linear-gradient(180deg,#fff,rgba(246,247,251,.6));
}
.jobs a:hover{border-color:#cbd5e1; text-decoration:none}
.jobs .title{font-weight:800}
.jobs .meta{color:var(--muted); font-size:12px}
.jobs .pay{font-weight:800}
.footer{
  padding:26px 0 40px;
  color:var(--muted);
}
.footer .links{display:flex; flex-wrap:wrap; gap:10px; margin-top:10px}
.small{font-size:12px}
.breadcrumbs{font-size:12px; color:var(--muted); padding:12px 0}
.breadcrumbs a{color:var(--muted)}
.notice{
  padding:12px 14px;
  border:1px dashed #cbd5e1;
  border-radius:14px;
  background:rgba(255,255,255,.7);
}
.faq details{border:1px solid var(--border); border-radius:14px; margin:10px 0; background:#fff}
.faq summary{padding:12px 14px}
.faq .answer{padding:0 14px 14px; color:var(--muted)}
