:root{
  --bg:#0b0f14;--panel:#11151d;--ink:#e6e8eb;--muted:#a3b1c6;--border:#1b2230;--soft:#0e141d;--accent:#0ea5e9
}
*{box-sizing:border-box} html,body{margin:0;padding:0;background:var(--bg);color:var(--ink);font-family:Inter,system-ui,Segoe UI,Arial}
a{color:inherit;text-decoration:none}
.container{max-width:1180px;margin:0 auto;padding:0 20px}
.header{position:sticky;top:0;z-index:50;background:#0b0f14cc;backdrop-filter:saturate(140%) blur(4px);border-bottom:1px solid var(--border)}
.nav{display:flex;align-items:center;justify-content:space-between;height:56px}
.links a{margin-left:22px;color:#c7d2e0}.links a:hover{color:#fff}
.hero-strip{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin:18px 0 8px}
.tile{height:220px;border-radius:10px;overflow:hidden;border:1px solid var(--border);background:#0e141d}
.tile img{width:100%;height:100%;object-fit:cover;filter:contrast(1.03) brightness(.92)}
.ticker{white-space:nowrap;overflow:hidden;border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:#0e141b}
.track{display:inline-block;padding:10px 0;animation:scroll 38s linear infinite;font-size:14px;color:#cbd5e1}
@keyframes scroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.bullet{display:inline-flex;align-items:center;margin:0 26px}
.dot{width:10px;height:10px;border-radius:999px;margin-right:10px}
.dot.critical{background:#ef4444;box-shadow:0 0 8px #ef4444aa}
.dot.high{background:#f59e0b;box-shadow:0 0 8px #f59e0baa}
.dot.medium{background:#22c55e;box-shadow:0 0 8px #22c55eaa}
.region{color:#f1f5f9;margin-right:6px;font-weight:600}
.hero-text{padding:42px 0 16px;text-align:center}
h1{font-size:48px;line-height:1.15;margin:12px 0 10px;font-weight:700;letter-spacing:.2px}
.sub{color:var(--muted);font-size:16px}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin:36px 0 72px}
.card{border:1px solid var(--border);background:linear-gradient(180deg,#101725 0%, #0b0f14 100%);border-radius:16px;padding:26px;min-height:210px;display:flex;flex-direction:column;justify-content:space-between;transition:.25s ease}
.card:hover{transform:translateY(-2px)}
.card .tier{color:#93a2b6;font-size:13px;margin-bottom:10px}
.card h3{margin:10px 0 10px;font-size:20px;letter-spacing:.2px}
.card p{color:#9fb1c8;font-size:14px;margin:0 0 14px}
.icon{width:52px;height:52px;border:1px solid var(--border);border-radius:12px;display:flex;align-items:center;justify-content:center;background:var(--soft);color:#bfe8ff;font-weight:800;font-size:20px}
.cta{display:inline-flex;align-items:center;gap:8px;color:#cde8f8;font-size:14px}
.footer{border-top:1px solid var(--border);padding:24px 0 40px;color:#9fb1c8}
.footer .grid{display:grid;grid-template-columns:1fr auto;gap:12px;align-items:center}
.social a{margin-left:14px;color:#8fbdd8}
.small{font-size:12px;color:#7c8aa0}
@media(max-width:980px){.hero-strip{grid-template-columns:1fr}.cards{grid-template-columns:1fr}h1{font-size:36px}}