
/* Ekton Insights base styles — reusable across all articles
   Dark, modern UI. Keep this file small; override per-article if needed.
*/
:root{
  --bg:#0C1B2A; --surface:#102A43; --raised:#243B53; --border:#335472;
  --t1:#F0F4F8; --t2:#D9E2EC; --muted:#9FB3C8;
  --brand:#2563EB; --accent:#06B6D4; --green:#22C55E; --amber:#F59E0B; --red:#EF4444;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font:16px/1.6 Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--t1);
  background: radial-gradient(1200px 600px at 20% -10%, #1a2d46 0%, var(--bg) 55%);
}
img,svg,video{max-width:100%;height:auto;display:block}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
code.badge{background:#0a1726;border:1px solid var(--border);padding:2px 8px;border-radius:6px;color:var(--accent)}
.wrap{max-width:1120px;margin:0 auto;padding:0 20px}
header.hero{padding:56px 24px 24px;border-bottom:1px solid var(--border);background:linear-gradient(180deg,rgba(37,99,235,.18),transparent)}
h1{font-weight:800;font-size:46px;line-height:1.2;margin:0 0 10px}
h2{font-weight:700;font-size:28px;margin:32px 0 8px}
h3{font-weight:700;font-size:20px;margin:24px 0 8px;color:var(--t2)}
p.lead{color:var(--t2);font-size:20px}
.card{background:var(--surface);border:1px solid var(--border);border-radius:18px;padding:18px 20px;box-shadow:0 10px 30px rgba(0,0,0,.25)}
.grid{display:grid;gap:16px;grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.pill{padding:2px 8px;border-radius:999px;border:1px solid var(--border);background:var(--raised);color:var(--t2);display:inline-block;margin-right:6px}
.kpi{display:inline-flex;align-items:center;gap:10px;padding:6px 12px;border:1px solid var(--border);border-radius:999px;background:var(--raised);color:var(--t2)}
.callout{border-left:6px solid var(--green);padding:10px 14px;background:#0f2236;border-radius:12px}
.muted{color:var(--muted)}
.checklist li{margin:6px 0}
figure{margin:24px 0}
figure img,figure svg{border-radius:16px;border:1px solid var(--border);background:var(--surface)}
.btn{display:inline-block;padding:8px 12px;background:var(--brand);color:#fff;border-radius:10px}
.btn:hover{filter:brightness(1.05)}
@media (max-width:720px){
  h1{font-size:34px}
  p.lead{font-size:18px}
}
