:root{
  --bg:#0b1220;
  --card:#0f1a2e;
  --card2:#0e1730;
  --text:#0b1220;
  --muted:#5a6577;
  --white:#ffffff;
  --border:rgba(15, 23, 42, .12);
  --shadow:0 10px 30px rgba(2, 6, 23, .12);
  --shadow2:0 18px 60px rgba(2, 6, 23, .22);
  --radius:18px;
  --radius2:24px;
  --grad:linear-gradient(135deg,#0b5e8a 0%, #15a3a6 55%, #2ad1b1 100%);
  --grad2:linear-gradient(135deg,#0ea5e9 0%, #22c55e 100%);
  --link:#0ea5e9;
  --link2:#06b6d4;
  --max:1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, "Apple Color Emoji", "Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:var(--font);color:#0b1220;background:#f5f7fb;}
img{max-width:100%;display:block}
a{color:var(--link);text-decoration:none}
a:hover{text-decoration:underline}
p{line-height:1.65}
ul,ol{line-height:1.65}

.container{max-width:var(--max);margin:0 auto;padding:0 20px}
.section{padding:56px 0}
.section.sm{padding:36px 0}

.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(245,247,251,.86);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0;gap:14px}
.brand{display:flex;align-items:center;gap:10px;font-weight:800;color:#0b1220}
.brand-badge{
  width:34px;height:34px;border-radius:12px;
  background:var(--grad);
  box-shadow:var(--shadow);
}
.brand span{letter-spacing:.2px}
.nav{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.nav a{color:#0b1220;font-weight:650;font-size:14px;padding:10px 10px;border-radius:12px}
.nav a.active{background:rgba(14,165,233,.12);color:#075985}
.nav .pill{background:rgba(34,197,94,.14);color:#14532d}
.nav .pill:hover{background:rgba(34,197,94,.18)}
.nav-toggle{display:none}

.hero{
  background:var(--grad);
  color:var(--white);
  padding:76px 0 68px;
  position:relative;
  overflow:hidden;
}
.hero:before{
  content:"";
  position:absolute;inset:-120px -80px auto auto;
  width:360px;height:360px;border-radius:50%;
  background:rgba(255,255,255,.14);
  filter:blur(0px);
}
.hero:after{
  content:"";
  position:absolute;inset:auto auto -160px -120px;
  width:420px;height:420px;border-radius:50%;
  background:rgba(255,255,255,.10);
}
.hero .container{position:relative}
.hero h1{margin:0 0 12px;font-size:44px;letter-spacing:-.6px;line-height:1.15}
.hero p{margin:0;max-width:760px;font-size:16.5px;opacity:.95}
.breadcrumb{margin-top:14px;display:flex;gap:8px;flex-wrap:wrap;font-size:13px;opacity:.95}
.breadcrumb a{color:rgba(255,255,255,.92)}
.breadcrumb .sep{opacity:.7}

.grid{
  display:grid;
  gap:18px;
}
.grid.cols-2{grid-template-columns:repeat(2, minmax(0, 1fr))}
.grid.cols-3{grid-template-columns:repeat(3, minmax(0, 1fr))}
.grid.cols-4{grid-template-columns:repeat(4, minmax(0, 1fr))}

.card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius2);
  box-shadow:var(--shadow);
  padding:22px;
}
.card h3{margin:0 0 10px;font-size:18px}
.card p{margin:0;color:#334155}
.card ul{margin:12px 0 0;padding-left:18px;color:#334155}
.card li{margin:6px 0}
.card .meta{margin-top:10px;color:#475569;font-size:13px}
.card .cta{display:inline-flex;align-items:center;gap:10px;margin-top:16px;font-weight:700;color:#0b1220}
.card .cta:hover{text-decoration:none;opacity:.9}
.card .icon{
  width:44px;height:44px;border-radius:16px;background:rgba(14,165,233,.12);
  display:flex;align-items:center;justify-content:center;
  color:#075985;font-weight:900;
}
.card .icon.green{background:rgba(34,197,94,.14);color:#14532d}
.card .icon.purple{background:rgba(168,85,247,.14);color:#581c87}
.card .icon.orange{background:rgba(249,115,22,.14);color:#7c2d12}

.kicker{display:inline-flex;align-items:center;gap:8px;
  padding:6px 10px;border-radius:999px;background:rgba(255,255,255,.18);
  font-size:13px;font-weight:700;margin-bottom:14px
}
.kicker .dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.85)}
.h2{margin:0 0 10px;font-size:30px;letter-spacing:-.3px}
.lead{margin:0;color:#475569;max-width:820px}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:18px;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  background:var(--white);
}
.table th,.table td{padding:14px 14px;border-bottom:1px solid var(--border);vertical-align:top;text-align:left}
.table th{background:rgba(2,6,23,.04);font-size:13px;color:#0b1220;letter-spacing:.15px}
.table tr:last-child td{border-bottom:none}
.badge{display:inline-flex;align-items:center;gap:8px;padding:6px 10px;border-radius:999px;font-size:12px;font-weight:700;background:rgba(2,6,23,.06);color:#0b1220}
.badge.blue{background:rgba(14,165,233,.12);color:#075985}
.badge.green{background:rgba(34,197,94,.14);color:#14532d}
.badge.orange{background:rgba(249,115,22,.14);color:#7c2d12}

.callout{
  border-radius:var(--radius2);
  background:linear-gradient(180deg, rgba(14,165,233,.10), rgba(34,197,94,.10));
  border:1px solid rgba(14,165,233,.18);
  padding:18px 18px;
}
.callout strong{color:#0b1220}

.site-footer{
  margin-top:56px;
  background:#0b1220;
  color:rgba(255,255,255,.9);
  padding:40px 0;
}
.footer-grid{display:grid;gap:18px;grid-template-columns:1.2fr .8fr .8fr}
.site-footer a{color:rgba(255,255,255,.9)}
.site-footer p{margin:0;color:rgba(255,255,255,.8)}
.small{font-size:12.5px;opacity:.85}
hr.sep{border:none;border-top:1px solid rgba(255,255,255,.12);margin:22px 0}

@media (max-width: 980px){
  .grid.cols-4{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .grid.cols-3{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .footer-grid{grid-template-columns:1fr}
  .hero h1{font-size:36px}
}
@media (max-width: 620px){
  .grid.cols-2,.grid.cols-3,.grid.cols-4{grid-template-columns:1fr}
  .nav{display:none}
  .nav-toggle{display:inline-flex;gap:8px;align-items:center;background:rgba(2,6,23,.06);border:1px solid var(--border);padding:10px 12px;border-radius:12px;font-weight:700}
  .nav.open{display:flex;flex-direction:column;align-items:flex-start;padding:10px 0}
}
