:root {
  --accent: #3BA7FF;
  --accent-2: #1a5fb4;
  --bg: #05080f;
  --bg2: #0a0f1d;
  --panel: rgba(17, 24, 41, 0.6);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #eaf0fa;
  --muted: #93a1b8;
  --radius: 16px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text); background: var(--bg); line-height: 1.6; font-size: 16px;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, 92vw); margin: 0 auto; }
.accent { color: var(--accent); }
.muted { color: var(--muted); }
.small { font-size: 13px; }
code { font-family: "JetBrains Mono", Consolas, monospace; font-size: 0.88em; background: rgba(255,255,255,0.07); padding: 2px 6px; border-radius: 6px; color: #cfe4ff; }

/* ---- buttons ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 11px;
  font-weight: 600; font-size: 15px; border: 1px solid var(--border-strong); cursor: pointer; transition: 0.18s; }
.btn-accent { background: var(--accent); color: #04101f; border-color: var(--accent); box-shadow: 0 8px 30px rgba(59,167,255,0.35); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(59,167,255,0.5); }
.btn-ghost { background: rgba(255,255,255,0.04); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: #fff; }
.btn-lg { padding: 14px 24px; font-size: 16px; }

/* ---- logo / brand ---- */
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -0.3px; }
.logo { width: 26px; height: 26px; border-radius: 8px; flex: none; position: relative;
  background: radial-gradient(circle at 30% 30%, var(--accent), var(--accent-2)); box-shadow: 0 0 20px rgba(59,167,255,0.6); }
.logo::after { content: ""; position: absolute; inset: 6px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.9); border-right-color: transparent; transform: rotate(25deg); }

/* ---- nav ---- */
.nav { position: sticky; top: 0; z-index: 40; backdrop-filter: blur(14px);
  background: rgba(5,8,15,0.7); border-bottom: 1px solid var(--border); }
.nav-inner { width: min(1180px, 92vw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 15px; transition: 0.15s; }
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; gap: 10px; }

/* ---- hero ---- */
.hero { position: relative; padding: 56px 0 44px; overflow: hidden; }
.hero-glow { position: absolute; top: -240px; left: 60%; transform: translateX(-50%);
  width: 1000px; height: 700px; background: radial-gradient(circle, rgba(59,167,255,0.22), transparent 60%); filter: blur(30px); z-index: 0; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 75%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 46px; align-items: center; }
.badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #bcd9ff;
  background: rgba(59,167,255,0.1); border: 1px solid rgba(59,167,255,0.3); padding: 7px 14px; border-radius: 999px; margin-bottom: 20px; }
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.hero h1 { font-size: clamp(32px, 4.4vw, 54px); line-height: 1.06; font-weight: 800; letter-spacing: -1.3px; }
.grad { background: linear-gradient(120deg, var(--accent), #8bd0ff 60%, #fff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { max-width: 560px; margin: 18px 0 0; color: var(--muted); font-size: 17px; }
.hero-actions { display: flex; gap: 14px; justify-content: flex-start; margin-top: 26px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; justify-content: flex-start; margin-top: 30px; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats b { font-size: 28px; font-weight: 800; }
.hero-stats span { color: var(--muted); font-size: 13px; }

/* ---- window preview ---- */
.hero-preview { margin-top: 0; }
.window { border: 1px solid var(--border-strong); border-radius: 14px; overflow: hidden;
  background: #0a0f1d; box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 0 1px rgba(59,167,255,0.08); }
.window-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #0d1426; border-bottom: 1px solid var(--border); }
.window-bar span { width: 11px; height: 11px; border-radius: 50%; background: #2a3552; }
.window-bar span:nth-child(1){ background:#ff5f57; } .window-bar span:nth-child(2){ background:#febc2e; } .window-bar span:nth-child(3){ background:#28c840; }
.window-bar em { margin-left: 10px; color: var(--muted); font-style: normal; font-size: 13px; }
.window iframe { width: 100%; height: 430px; border: 0; display: block; background: #070b14; }

/* ---- strip ---- */
.strip { display: flex; align-items: center; gap: 22px; justify-content: center; padding: 22px 0; color: var(--muted); font-size: 14px; flex-wrap: wrap; }
.strip b { color: #c5d3e8; font-weight: 700; opacity: 0.8; }

/* ---- sections ---- */
.section { padding: 52px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 32px; }
.kicker { color: var(--accent); font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -1px; margin: 12px 0; }
.section-head p { color: var(--muted); font-size: 17px; }

/* ---- features ---- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; transition: 0.2s; }
.feature:hover { border-color: rgba(59,167,255,0.4); transform: translateY(-4px); background: rgba(59,167,255,0.05); }
.f-ico { width: 46px; height: 46px; display: grid; place-items: center; font-size: 22px; border-radius: 12px;
  background: rgba(59,167,255,0.12); border: 1px solid rgba(59,167,255,0.25); margin-bottom: 16px; }
.feature h3 { font-size: 19px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; }

/* ---- checks (grouped by pipeline) ---- */
.check-groups { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: start; }
.check-group { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 18px 18px 6px; }
.check-group .cat { display: inline-block; margin-bottom: 6px; }
.check-group ul { list-style: none; }
.check-group li { font-size: 12.5px; color: var(--muted); line-height: 1.4; padding: 10px 0; border-top: 1px solid var(--border); }
.check-group li:first-of-type { border-top: 0; }
.check-group li b { display: block; color: var(--text); font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.cat { font-size: 10.5px; font-weight: 800; letter-spacing: 0.8px; padding: 4px 9px; border-radius: 6px; text-transform: uppercase; }
.cat-packet { background: rgba(139,123,255,0.15); color: #b3a7ff; }
.cat-combat { background: rgba(255,92,108,0.15); color: #ff8a96; }
.cat-move { background: rgba(70,211,154,0.15); color: #6fe0b4; }
.cat-inter { background: rgba(255,194,75,0.15); color: #ffd281; }

/* ---- panel pages (compact showcase) ---- */
.panel-pages { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ppage { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 16px 16px 14px; transition: 0.18s; }
.ppage:hover { border-color: rgba(59,167,255,0.4); transform: translateY(-2px); }
.ppage i { font-style: normal; font-size: 17px; color: var(--accent); }
.ppage b { display: block; font-size: 15px; margin: 8px 0 2px; }
.ppage span { color: var(--muted); font-size: 12.5px; }

/* ---- panel split ---- */
.panel-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: center; }
.panel-split h2 { font-size: clamp(26px, 3.6vw, 38px); font-weight: 800; letter-spacing: -0.8px; margin: 12px 0 18px; }
.ticks { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.ticks li { position: relative; padding-left: 30px; color: #cdd8ea; }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(59,167,255,0.15); color: var(--accent); display: grid; place-items: center; font-size: 12px; font-weight: 800; }
.panel-frame .window iframe { height: 480px; }

/* ---- get started ---- */
.get-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 30px; }
.step { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.step .num { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; font-weight: 800;
  background: var(--accent); color: #04101f; margin-bottom: 14px; }
.step h4 { font-size: 17px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15px; }
.card.download { display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: linear-gradient(120deg, rgba(59,167,255,0.12), rgba(59,167,255,0.02)); border: 1px solid rgba(59,167,255,0.3);
  border-radius: var(--radius); padding: 30px 34px; flex-wrap: wrap; }
.card.download h3 { font-size: 24px; }
.download-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- live network activity ---- */
.live-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #46d39a;
  box-shadow: 0 0 10px #46d39a; vertical-align: middle; margin-right: 6px; animation: livePulse 1.6s infinite; }
@keyframes livePulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.live-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 30px; }
.live-stat { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 20px; text-align: center; }
.live-stat b { display: block; font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; letter-spacing: -1px; font-variant-numeric: tabular-nums; }
.live-stat span { color: var(--muted); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.6px; }

.live-feed-wrap { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.live-feed-head { display: flex; align-items: center; gap: 12px; padding: 15px 22px; border-bottom: 1px solid var(--border);
  background: rgba(70,211,154,0.04); }
.pill-live { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; letter-spacing: 0.6px;
  padding: 5px 11px; border-radius: 999px; background: rgba(70,211,154,0.12); color: #6fe0b4; border: 1px solid rgba(70,211,154,0.25); }
.pill-live .live-dot { margin-right: 0; }
.live-feed { display: flex; flex-direction: column; }
.live-row { display: flex; align-items: center; gap: 12px; padding: 13px 22px; border-bottom: 1px solid var(--border); font-size: 14px; }
.live-row:last-child { border-bottom: 0; }
.lr-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.lr-dot.cat-packet { background: #b3a7ff; } .lr-dot.cat-combat { background: #ff8a96; }
.lr-dot.cat-move { background: #6fe0b4; } .lr-dot.cat-inter { background: #ffd281; }
.lr-player { font-weight: 700; }
.lr-action { font-size: 11px; font-weight: 800; padding: 3px 8px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.4px; }
.lr-flagged { background: rgba(255,194,75,0.15); color: #ffd281; }
.lr-setback { background: rgba(59,167,255,0.15); color: var(--accent); }
.lr-banned  { background: rgba(255,92,108,0.15); color: #ff8a96; }
.lr-check { color: #cdd8ea; font-weight: 600; }
.lr-server { margin-left: auto; font-size: 13px; }
.lr-time { font-size: 12px; min-width: 60px; text-align: right; }
.live-row.enter { animation: rowIn 0.5s ease; }
@keyframes rowIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
.live-head-link { margin-left: auto; color: var(--accent); font-size: 13px; font-weight: 600; }
.live-head-link:hover { color: #fff; }
.pill-live.offline { background: rgba(255,255,255,0.06); color: var(--muted); border-color: var(--border-strong); }
.pill-live.offline .live-dot { background: var(--muted); box-shadow: none; animation: none; }
.lv-num { font-variant-numeric: tabular-nums; }
/* detections-by-type breakdown bars */
.lr-bar { flex: 1; height: 8px; background: rgba(255,255,255,0.06); border-radius: 999px; overflow: hidden; min-width: 60px; }
.lr-bar-fill { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), #1a5fb4); border-radius: 999px; transition: width 0.5s; }
.lr-count { font-variant-numeric: tabular-nums; font-weight: 700; min-width: 64px; text-align: right; }
.live-row .lr-check { min-width: 96px; }

/* connect / empty state inside the feed */
.live-connect { padding: 34px 24px; text-align: center; }
.live-connect .lc-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.live-connect .muted { max-width: 460px; margin: 0 auto; }
.lc-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.lc-actions .btn { width: auto; }

/* ---- hero static preview ---- */
.hero-shot { padding: 16px; background: #070b14; min-height: 360px; display: flex; flex-direction: column; gap: 14px; }
.hs-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.hs-stat { background: rgba(17,24,41,0.7); border: 1px solid var(--border); border-radius: 10px; padding: 12px 10px; text-align: center; }
.hs-stat b { display: block; font-size: 22px; font-weight: 800; }
.hs-stat span { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
.hs-feed { display: flex; flex-direction: column; gap: 8px; }
.hs-row { display: flex; align-items: center; gap: 10px; background: rgba(17,24,41,0.55); border: 1px solid var(--border); border-radius: 9px; padding: 10px 12px; font-size: 13px; }
.hs-row b { font-weight: 700; }
.hs-row i { font-style: normal; color: #ffd281; font-weight: 600; }
.hs-row .hs-mut { color: var(--muted); font-size: 12px; }
.hs-row .hs-t { margin-left: auto; color: var(--muted); font-size: 12px; }
.hs-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.hs-dot.d-combat { background: #ff8a96; } .hs-dot.d-move { background: #6fe0b4; }
.hs-dot.d-inter { background: #ffd281; } .hs-dot.d-packet { background: #b3a7ff; }

/* ---- auth pages ---- */
.nav-user { color: #fff; font-weight: 600; font-size: 14px; padding: 0 4px; }
.auth-wrap { min-height: calc(100vh - 66px); display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-card { width: 420px; max-width: 100%; background: var(--panel); border: 1px solid var(--border-strong); border-radius: 18px; padding: 34px; box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.auth-brand { justify-content: center; margin-bottom: 18px; }
.auth-card h1 { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; text-align: center; }
.auth-card > .muted { text-align: center; margin: 8px 0 22px; }
.auth-card label { display: block; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.6px; margin: 14px 2px 6px; }
.auth-card input { width: 100%; background: rgba(0,0,0,0.28); border: 1px solid var(--border-strong); border-radius: 10px; padding: 12px 14px; color: var(--text); font-size: 15px; font-family: inherit; outline: none; transition: 0.15s; }
.auth-card input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(59,167,255,0.18); }
.auth-submit { width: 100%; justify-content: center; margin-top: 22px; }
.auth-msg { min-height: 20px; margin-top: 12px; font-size: 14px; text-align: center; }
.auth-msg.err { color: #ff8a96; } .auth-msg.ok { color: var(--muted); }
.auth-alt { text-align: center; margin-top: 20px; }

/* ---- pricing ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price-card { position: relative; display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 26px; transition: 0.2s; }
.price-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.price-card.featured { border-color: rgba(59,167,255,0.5); background: linear-gradient(180deg, rgba(59,167,255,0.10), rgba(59,167,255,0.02));
  box-shadow: 0 20px 60px rgba(59,167,255,0.12); }
.ribbon { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.6px; text-transform: uppercase; color: #04101f;
  background: var(--accent); padding: 5px 14px; border-radius: 999px; box-shadow: 0 8px 24px rgba(59,167,255,0.4); }
.price-head h3 { font-size: 22px; font-weight: 800; }
.price-desc { color: var(--muted); font-size: 14px; margin-top: 6px; min-height: 40px; }
.price { display: flex; align-items: baseline; gap: 8px; margin: 18px 0 22px; }
.price .amount { font-size: 40px; font-weight: 800; letter-spacing: -1px; }
.price .per { color: var(--muted); font-size: 14px; }
.price-cta { width: 100%; justify-content: center; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-top: 24px; }
.price-feats li { position: relative; padding-left: 28px; color: #cdd8ea; font-size: 14.5px; }
.price-feats li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(59,167,255,0.15); color: var(--accent); display: grid; place-items: center; font-size: 11px; font-weight: 800; }
.price-feats li b { color: #fff; }
.price-note { text-align: center; margin-top: 28px; font-size: 13.5px; }

/* ---- footer ---- */
.footer { border-top: 1px solid var(--border); padding: 38px 0; margin-top: 20px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--muted); font-size: 14px; transition: 0.15s; }
.footer-links a:hover { color: #fff; }

/* ---- reveal ---- */
.section, .hero-preview { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.section.in, .hero-preview.in { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .feature-grid, .get-grid, .pricing-grid { grid-template-columns: 1fr; }
  .check-groups { grid-template-columns: 1fr 1fr; }
  .hero-grid, .panel-split { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .live-stats { grid-template-columns: repeat(2, 1fr); }
  .lr-server { display: none; }
}
