:root{
  --ink:#0e141b;
  --muted:#5b6877;
  --bg:#ffffff;
  --panel:#f6f8fb;
  --line:#e7ebf0;
  --accent:#f36b21;
  --accent2:#1b5cff;
  --max:1160px;
  --shadow:0 18px 44px rgba(14,20,27,.10);
  --shadow2:0 10px 26px rgba(14,20,27,.08);
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
}
a{color:inherit}
.wrap{max-width:var(--max); margin:0 auto; padding:0 18px}
.top{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.88);
  border-bottom:1px solid var(--line);
  backdrop-filter:saturate(140%) blur(10px);
}
.top .wrap{
  height:72px; display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.mark{
  width:40px; height:40px; border-radius:12px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, rgba(243,107,33,.16), rgba(27,92,255,.12));
  border:1px solid rgba(243,107,33,.20);
  font-weight:900;
  letter-spacing:.02em;
}
.brandText{display:flex; flex-direction:column; line-height:1.05}
.brandText strong{font-size:14px; letter-spacing:.06em}
.brandText span{font-size:12px; color:var(--muted); font-weight:700; margin-top:3px}
.nav{display:flex; align-items:center; gap:6px; flex-wrap:wrap}
.nav a{
  text-decoration:none;
  font-weight:800;
  font-size:13.5px;
  color:var(--muted);
  padding:10px 12px;
  border-radius:12px;
}
.nav a:hover{background:var(--panel); color:var(--ink)}
.nav a.active{
  background:rgba(243,107,33,.10);
  color:var(--ink);
  border:1px solid rgba(243,107,33,.18);
}
.right{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  background:var(--accent);
  color:#fff;
  text-decoration:none;
  padding:11px 14px;
  border-radius:14px;
  font-weight:900;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 14px 28px rgba(243,107,33,.22);
  white-space:nowrap;
}
.btn2{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  background:rgba(27,92,255,.10);
  color:var(--ink);
  text-decoration:none;
  padding:11px 14px;
  border-radius:14px;
  font-weight:900;
  border:1px solid rgba(27,92,255,.18);
  white-space:nowrap;
}
.hero{
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(27,92,255,.14), rgba(255,255,255,0)),
    radial-gradient(820px 360px at 90% 15%, rgba(243,107,33,.14), rgba(255,255,255,0)),
    linear-gradient(180deg, #ffffff, #fbfcfe);
}
.hero .wrap{padding:56px 18px 44px}
.tag{
  display:inline-flex; align-items:center; gap:10px;
  font-weight:900; letter-spacing:.14em; text-transform:uppercase; font-size:12px;
  color:var(--muted);
}
.tag .dot{width:9px; height:9px; border-radius:50%; background:var(--accent)}
h1{
  margin:14px 0 10px;
  font-size:42px; line-height:1.06; letter-spacing:-.02em;
  max-width:980px;
}
.lead{
  margin:0;
  color:var(--muted);
  font-size:17px;
  max-width:900px;
}
.ctaRow{display:flex; flex-wrap:wrap; gap:12px; margin-top:18px}
.section{padding:52px 0}
.gray{background:var(--panel); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
h2{margin:0 0 10px; font-size:30px; letter-spacing:-.02em}
.p{margin:0 0 18px; color:var(--muted); font-size:16px}
.grid2{display:grid; grid-template-columns:1fr 1fr; gap:16px}
.grid3{display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:14px}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow:var(--shadow2);
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:14.5px}
.list{margin:12px 0 0; padding:0; list-style:none}
.list li{
  display:flex; gap:10px; align-items:flex-start;
  padding:9px 0;
  border-bottom:1px solid rgba(231,235,240,.95);
  color:var(--muted);
  font-weight:700;
  font-size:13.5px;
}
.list li:last-child{border-bottom:none}
.bdot{width:10px; height:10px; border-radius:50%; background:var(--accent); margin-top:6px; flex:0 0 auto}
.kpi{
  display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:12px;
  margin-top:16px;
}
.kpi .box{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
  box-shadow:var(--shadow2);
}
.kpi .box strong{display:block; font-size:18px}
.kpi .box span{display:block; color:var(--muted); font-weight:800; font-size:13px; margin-top:4px}
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow2);
}
.table th, .table td{
  padding:12px 12px;
  border-bottom:1px solid var(--line);
  text-align:left;
  vertical-align:top;
  font-size:14px;
}
.table th{background:rgba(243,107,33,.06); font-weight:900}
.table tr:last-child td{border-bottom:none}
.small{color:var(--muted); font-weight:700; font-size:13px}
.ctaBand{
  background:linear-gradient(135deg, rgba(243,107,33,.12), rgba(27,92,255,.10));
  border:1px solid rgba(231,235,240,.9);
  border-radius:24px;
  padding:22px;
  box-shadow:var(--shadow);
  display:flex; gap:18px; align-items:center; justify-content:space-between;
  flex-wrap:wrap;
}
.ctaBand h3{margin:0 0 6px; font-size:18px}
.ctaBand p{margin:0; color:var(--muted); font-weight:700}
footer{
  border-top:1px solid var(--line);
  padding:26px 0;
  color:var(--muted);
  font-size:13px;
}
@media (max-width:980px){
  .nav{display:none}
  h1{font-size:34px}
  .grid2,.grid3{grid-template-columns:1fr}
  .kpi{grid-template-columns:1fr 1fr}
}
@media (max-width:520px){
  .kpi{grid-template-columns:1fr}
}
