:root{
  --ink:#0B1622;
  --ink-2:#15263A;
  --ink-3:#22384F;
  --paper:#EFF3F6;
  --surface:#FFFFFF;
  --surface-2:#F7FAFC;
  --pulse:#00C2A8;
  --pulse-deep:#0B7A6C;
  --pulse-soft:#D6F4EE;
  --amber:#F2A900;
  --amber-soft:#FCEFD0;
  --rose:#E5484D;
  --rose-soft:#FBE0E1;
  --line:#E0E7ED;
  --line-strong:#C9D4DD;
  --muted:#5B6B7B;
  --muted-2:#869AAB;
  --display:'Space Grotesk',sans-serif;
  --body:'IBM Plex Sans',sans-serif;
  --mono:'IBM Plex Mono',monospace;
  --r:14px;
  --r-sm:9px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:var(--body);color:var(--ink);background:var(--paper);-webkit-font-smoothing:antialiased;overflow-x:hidden}
h1,h2,h3,h4{font-family:var(--display);font-weight:600;margin:0;letter-spacing:-.01em}
a{color:inherit;text-decoration:none}
button{font-family:var(--body);cursor:pointer;border:none;background:none}
.mono{font-family:var(--mono);font-variant-numeric:tabular-nums}
:focus-visible{outline:2px solid var(--pulse);outline-offset:2px;border-radius:6px}

/* Hebrew / RTL uses a Hebrew-capable font stack for display + body + mono.
   For mono, IBM Plex Mono has no Hebrew glyphs, so Heebo is added as a
   per-glyph fallback: digits/Latin stay monospaced, Hebrew renders in Heebo. */
html[lang="he"]{
  --display:'Heebo','Space Grotesk',sans-serif;
  --body:'Heebo','IBM Plex Sans',sans-serif;
  --mono:'IBM Plex Mono','Heebo',monospace;
}

/* ---------- mockup chrome: view switcher + language, grouped & centered ---------- */
.chrome{
  position:fixed;z-index:1000;top:14px;left:50%;transform:translateX(-50%);
  display:flex;gap:10px;align-items:center;justify-content:center;max-width:96vw;flex-wrap:wrap;
}
.switcher{
  display:flex;gap:4px;padding:5px;border-radius:100px;
  background:rgba(11,22,34,.86);backdrop-filter:blur(10px);
  box-shadow:0 8px 30px rgba(11,22,34,.28);
}
.switcher button{
  color:#9FB2C2;font-size:13px;font-weight:600;padding:8px 16px;border-radius:100px;
  display:flex;align-items:center;gap:7px;transition:.18s;white-space:nowrap;
}
.switcher button .dot{width:7px;height:7px;border-radius:50%;background:currentColor;opacity:.6}
.switcher button.on{background:var(--pulse);color:var(--ink)}
.switcher button.on .dot{opacity:1;background:var(--ink)}
.switcher button:not(.on):hover{color:#fff}

/* ---------- language toggle ---------- */
.langtoggle{
  display:flex;gap:3px;padding:4px;border-radius:100px;
  background:rgba(11,22,34,.86);backdrop-filter:blur(10px);
  box-shadow:0 8px 30px rgba(11,22,34,.28);
}
.langtoggle button{
  color:#9FB2C2;font-size:12.5px;font-weight:700;padding:7px 13px;border-radius:100px;transition:.18s;
}
.langtoggle button.on{background:var(--pulse);color:var(--ink)}
.langtoggle button:not(.on):hover{color:#fff}

.view{display:none}
.view.active{display:block}

/* ---------- shared bits ---------- */
.logo{display:flex;align-items:center;gap:9px;font-family:var(--display);font-weight:700;letter-spacing:-.02em}
.logo .mark{width:26px;height:26px;border-radius:8px;background:var(--pulse);display:flex;align-items:center;justify-content:center;flex:none}
.logo .mark svg{width:16px;height:16px}
.pill{display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:600;padding:4px 10px;border-radius:100px;font-family:var(--body)}
.pill .led{width:7px;height:7px;border-radius:50%}
.s-active{background:var(--pulse-soft);color:var(--pulse-deep)} .s-active .led{background:var(--pulse)}
.s-idle{background:var(--amber-soft);color:#9A6B00} .s-idle .led{background:var(--amber)}
.s-away{background:var(--rose-soft);color:#B5292E} .s-away .led{background:var(--rose)}
.s-break{background:#E8EEF3;color:#475a6b} .s-break .led{background:#7E93A4}
.s-offline{background:#EDF1F4;color:#8A9AA8} .s-offline .led{background:#B6C2CC}
.live-led{width:8px;height:8px;border-radius:50%;background:var(--pulse);box-shadow:0 0 0 0 rgba(0,194,168,.6);animation:ping 1.8s infinite}
@keyframes ping{0%{box-shadow:0 0 0 0 rgba(0,194,168,.55)}70%{box-shadow:0 0 0 8px rgba(0,194,168,0)}100%{box-shadow:0 0 0 0 rgba(0,194,168,0)}}

/* =====================================================
   MARKETING SITE
===================================================== */
#site{background:var(--paper)}
.nav{position:sticky;top:0;z-index:50;display:flex;align-items:center;justify-content:space-between;
  padding:60px 40px 18px;background:rgba(239,243,246,.82);backdrop-filter:blur(12px);border-bottom:1px solid var(--line)}
.nav .links{display:flex;gap:30px;font-size:14px;font-weight:500;color:var(--muted)}
.nav .links a:hover{color:var(--ink)}
.btn{display:inline-flex;align-items:center;gap:8px;font-weight:600;font-size:14px;padding:11px 18px;border-radius:100px;transition:.18s}
.btn-primary{background:var(--ink);color:#fff}
.btn-primary:hover{background:var(--ink-2)}
.btn-ghost{color:var(--ink);border:1px solid var(--line-strong)}
.btn-ghost:hover{background:#fff;border-color:var(--ink)}
.btn-pulse{background:var(--pulse);color:var(--ink)}
.btn-pulse:hover{background:#00d8bb}

.hero{display:grid;grid-template-columns:1.05fr .95fr;gap:50px;align-items:center;
  max-width:1180px;margin:0 auto;padding:78px 40px 60px}
.eyebrow{display:inline-flex;align-items:center;gap:9px;font-family:var(--mono);font-size:12px;letter-spacing:.04em;
  text-transform:uppercase;color:var(--pulse-deep);background:var(--pulse-soft);padding:6px 12px;border-radius:100px;margin-bottom:22px}
.hero h1{font-size:60px;line-height:1.02;font-weight:600;letter-spacing:-.03em}
.hero h1 em{font-style:normal;color:var(--pulse-deep);position:relative}
.hero p.lead{font-size:18px;line-height:1.55;color:var(--muted);max-width:480px;margin:22px 0 30px}
.hero .cta{display:flex;gap:12px;flex-wrap:wrap}
.hero .micro{margin-top:20px;font-size:13px;color:var(--muted-2);display:flex;align-items:center;gap:8px}

.hero-card{background:var(--ink);border-radius:20px;padding:22px;color:#fff;box-shadow:0 30px 70px -30px rgba(11,22,34,.6);position:relative;overflow:hidden}
.hero-card .hc-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px}
.hero-card .hc-top .l{display:flex;align-items:center;gap:9px;font-family:var(--mono);font-size:12px;color:#9FB2C2}
.wave-wrap{background:var(--ink-2);border-radius:12px;height:96px;position:relative;overflow:hidden;border:1px solid #243a52}
.wave-wrap canvas{display:block;width:100%;height:100%}
.hc-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:14px}
.hc-stat{background:var(--ink-2);border:1px solid #243a52;border-radius:11px;padding:12px}
.hc-stat .n{font-family:var(--mono);font-size:22px;font-weight:600}
.hc-stat .k{font-size:11px;color:#8FA3B5;margin-top:3px}
.hc-roster{margin-top:12px;background:var(--ink-2);border:1px solid #243a52;border-radius:11px;padding:6px}
.hc-row{display:flex;align-items:center;justify-content:space-between;padding:8px 10px;border-radius:8px;font-size:13px}
.hc-row:hover{background:#1c2e43}
.hc-row .who{display:flex;align-items:center;gap:9px}
.hc-av{width:26px;height:26px;border-radius:50%;background:linear-gradient(135deg,#2c4763,#1a2c40);display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:600;color:#cfe}
.hc-row .mono{font-size:12px;color:#9FB2C2}

.statband{border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:#fff}
.statband .inner{max-width:1180px;margin:0 auto;padding:26px 40px;display:grid;grid-template-columns:repeat(4,1fr);gap:30px}
.stat .n{font-family:var(--display);font-size:34px;font-weight:600;letter-spacing:-.02em}
.stat .n span{color:var(--pulse-deep)}
.stat .k{font-size:13px;color:var(--muted);margin-top:4px}

.section{max-width:1180px;margin:0 auto;padding:74px 40px}
.section-head{max-width:620px;margin-bottom:42px}
.section-head .eyebrow{margin-bottom:16px}
.section-head h2{font-size:38px;letter-spacing:-.025em;line-height:1.08}
.section-head p{color:var(--muted);font-size:16px;line-height:1.55;margin-top:14px}

.features{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.feature{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:26px;transition:.2s}
.feature:hover{border-color:var(--line-strong);transform:translateY(-2px);box-shadow:0 18px 40px -28px rgba(11,22,34,.4)}
.feature .ic{width:42px;height:42px;border-radius:11px;background:var(--pulse-soft);display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.feature .ic svg{width:21px;height:21px;stroke:var(--pulse-deep)}
.feature h3{font-size:19px;margin-bottom:8px}
.feature p{font-size:14.5px;color:var(--muted);line-height:1.55}
.feature .tag{display:inline-block;margin-top:14px;font-family:var(--mono);font-size:11px;color:var(--pulse-deep);background:var(--pulse-soft);padding:3px 9px;border-radius:6px}

.states{background:var(--ink);border-radius:20px;padding:40px;color:#fff;display:grid;grid-template-columns:1fr 1.1fr;gap:40px;align-items:center}
.states h3{font-size:26px;margin-bottom:12px}
.states p{color:#9FB2C2;font-size:15px;line-height:1.6}
.state-list{display:flex;flex-direction:column;gap:10px}
.state-item{display:flex;align-items:center;gap:14px;background:var(--ink-2);border:1px solid #243a52;border-radius:12px;padding:14px 16px}
.state-item .led{width:11px;height:11px;border-radius:50%;flex:none}
.state-item .t{font-weight:600;font-size:15px}
.state-item .d{font-size:13px;color:#8FA3B5}
.state-item .mono{margin-left:auto;font-size:13px;color:#cfe}
html[dir="rtl"] .state-item .mono{margin-left:0;margin-right:auto}

.trust{display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:center;
  background:#fff;border:1px solid var(--line);border-radius:20px;padding:40px}
.trust h2{font-size:30px;letter-spacing:-.02em}
.trust p{color:var(--muted);font-size:15px;line-height:1.6;margin-top:14px}
.trust ul{list-style:none;padding:0;margin:22px 0 0;display:flex;flex-direction:column;gap:12px}
.trust li{display:flex;gap:12px;font-size:14.5px;align-items:flex-start}
.trust li svg{width:20px;height:20px;flex:none;stroke:var(--pulse-deep);margin-top:1px}
.trust-card{background:var(--surface-2);border:1px solid var(--line);border-radius:16px;padding:24px}
.trust-card .row{display:flex;align-items:center;justify-content:space-between;padding:13px 0;border-bottom:1px solid var(--line);font-size:14px}
.trust-card .row:last-child{border:none}
.trust-card .row .k{color:var(--muted)}
.toggle{width:38px;height:22px;border-radius:100px;background:var(--line-strong);position:relative;flex:none}
.toggle.on{background:var(--pulse)}
.toggle::after{content:"";position:absolute;top:2px;left:2px;width:18px;height:18px;border-radius:50%;background:#fff;transition:.2s}
.toggle.on::after{left:18px}
html[dir="rtl"] .toggle::after{left:auto;right:2px}
html[dir="rtl"] .toggle.on::after{right:18px}

.foot{background:var(--ink);color:#9FB2C2;margin-top:30px}
.foot .inner{max-width:1180px;margin:0 auto;padding:48px 40px;display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;gap:24px}
.foot .logo{color:#fff}
.foot small{display:block;margin-top:14px;font-size:12.5px;max-width:280px;line-height:1.5}
.foot .cols{display:flex;gap:64px}
.foot .col h5{color:#fff;font-family:var(--display);font-size:13px;margin-bottom:12px;letter-spacing:.02em}
.foot .col a{display:block;font-size:13px;padding:5px 0;color:#9FB2C2}
.foot .col a:hover{color:var(--pulse)}
.foot .bar{border-top:1px solid #243a52;text-align:center;padding:16px;font-size:12px;color:#6F8496}

/* =====================================================
   DASHBOARD
===================================================== */
#dash{background:var(--paper);min-height:100vh;display:none}
#dash.active{display:grid;grid-template-columns:236px 1fr}
.side{background:var(--ink);color:#fff;min-height:100vh;position:sticky;top:0;height:100vh;display:flex;flex-direction:column;padding:20px 14px}
.side .logo{color:#fff;padding:6px 8px 22px}
.side .org{display:flex;align-items:center;gap:10px;background:var(--ink-2);border:1px solid #243a52;border-radius:11px;padding:10px 12px;margin-bottom:18px;cursor:pointer}
.side .org .ico{width:28px;height:28px;border-radius:7px;background:var(--pulse-deep);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:13px;font-family:var(--display)}
.side .org .meta{font-size:13px;font-weight:600}
.side .org .meta small{display:block;color:#8FA3B5;font-weight:400;font-size:11px}
.side .org svg{margin-left:auto;width:14px;stroke:#8FA3B5}
html[dir="rtl"] .side .org svg{margin-left:0;margin-right:auto}
.navg{display:flex;flex-direction:column;gap:2px}
.navg .lbl{font-family:var(--mono);font-size:10.5px;text-transform:uppercase;letter-spacing:.08em;color:#6F8496;padding:14px 10px 6px}
.navg a{display:flex;align-items:center;gap:11px;padding:10px 11px;border-radius:9px;font-size:14px;color:#B7C6D3;font-weight:500;transition:.15s;cursor:pointer}
.navg a svg{width:18px;height:18px;stroke:currentColor}
.navg a:hover{background:#16273b;color:#fff}
.navg a.on{background:var(--pulse);color:var(--ink);font-weight:600}
.side .me{margin-top:auto;display:flex;align-items:center;gap:10px;padding:10px;border-top:1px solid #243a52}
.side .me .av{width:32px;height:32px;border-radius:50%;background:linear-gradient(135deg,#2c4763,#1a2c40);display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:600;color:#cfe}
.side .me .meta{font-size:13px;font-weight:600}
.side .me .meta small{display:block;color:#8FA3B5;font-weight:400;font-size:11px}

.main{padding:0 0 40px}
.topbar{display:flex;align-items:center;justify-content:space-between;padding:18px 28px;background:rgba(239,243,246,.85);backdrop-filter:blur(8px);border-bottom:1px solid var(--line);position:sticky;top:0;z-index:20}
.topbar .h{display:flex;align-items:center;gap:14px}
.topbar h2{font-size:21px}
.topbar .livechip{display:flex;align-items:center;gap:8px;font-size:12.5px;font-weight:600;color:var(--pulse-deep);background:var(--pulse-soft);padding:6px 12px;border-radius:100px}
.topbar .right{display:flex;align-items:center;gap:14px}
.topbar .clock{font-family:var(--mono);font-size:15px;font-weight:500}
.topbar .date{font-size:12.5px;color:var(--muted)}
.icbtn{width:38px;height:38px;border-radius:10px;border:1px solid var(--line);background:#fff;display:flex;align-items:center;justify-content:center}
.icbtn svg{width:18px;stroke:var(--muted)}
.icbtn:hover{border-color:var(--line-strong)}

.content{padding:24px 28px;display:flex;flex-direction:column;gap:20px}
.kpis{display:grid;grid-template-columns:repeat(5,1fr);gap:14px}
.kpi{background:#fff;border:1px solid var(--line);border-radius:var(--r);padding:18px}
.kpi .k{font-size:12.5px;color:var(--muted);display:flex;align-items:center;gap:7px}
.kpi .k .led{width:8px;height:8px;border-radius:50%}
.kpi .n{font-family:var(--display);font-size:30px;font-weight:600;margin-top:8px;letter-spacing:-.02em}
.kpi .sub{font-size:12px;color:var(--muted-2);margin-top:3px;font-family:var(--mono)}
.kpi .sub .up{color:var(--pulse-deep)}.kpi .sub .down{color:var(--rose)}

.grid-2{display:grid;grid-template-columns:1fr 320px;gap:20px;align-items:start}
.panel{background:#fff;border:1px solid var(--line);border-radius:var(--r);overflow:hidden}
.panel .ph{display:flex;align-items:center;justify-content:space-between;padding:16px 18px;border-bottom:1px solid var(--line)}
.panel .ph h3{font-size:15px}
.panel .ph .sub{font-size:12px;color:var(--muted)}
.segmented{display:flex;gap:2px;background:var(--surface-2);border:1px solid var(--line);border-radius:9px;padding:3px}
.segmented button{font-size:12px;font-weight:600;color:var(--muted);padding:5px 11px;border-radius:6px}
.segmented button.on{background:#fff;color:var(--ink);box-shadow:0 1px 3px rgba(0,0,0,.08)}

table{width:100%;border-collapse:collapse}
thead th{text-align:left;font-family:var(--mono);font-size:10.5px;letter-spacing:.05em;text-transform:uppercase;color:var(--muted-2);padding:11px 18px;border-bottom:1px solid var(--line);font-weight:500}
html[dir="rtl"] thead th{text-align:right}
tbody td{padding:13px 18px;border-bottom:1px solid var(--line);font-size:13.5px;vertical-align:middle}
tbody tr:last-child td{border-bottom:none}
tbody tr:hover{background:var(--surface-2)}
.agent-cell{display:flex;align-items:center;gap:11px}
.av-sm{width:30px;height:30px;border-radius:50%;background:linear-gradient(135deg,#cfe4f5,#a9c6e0);display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:700;color:#2c4763;flex:none}
.agent-cell .nm{font-weight:600}.agent-cell .tm{font-size:11.5px;color:var(--muted)}
.bar-mini{height:6px;border-radius:100px;background:var(--line);overflow:hidden;width:64px;display:inline-block;vertical-align:middle;margin-right:8px}
html[dir="rtl"] .bar-mini{margin-right:0;margin-left:8px}
.bar-mini i{display:block;height:100%;background:var(--pulse);border-radius:100px;transition:width .6s}
.app-chip{font-family:var(--mono);font-size:11.5px;color:var(--muted);background:var(--surface-2);border:1px solid var(--line);padding:3px 8px;border-radius:6px}
.spark{display:flex;align-items:flex-end;gap:2px;height:24px}
.spark i{width:3px;background:var(--pulse);border-radius:2px;opacity:.85}

.alerts{display:flex;flex-direction:column}
.alert-item{display:flex;gap:12px;padding:14px 18px;border-bottom:1px solid var(--line)}
.alert-item:last-child{border:none}
.alert-item .dotwrap{flex:none;margin-top:2px}
.alert-item .ad{width:9px;height:9px;border-radius:50%}
.alert-item .at{font-size:13px;font-weight:600;line-height:1.3}
.alert-item .am{font-size:12px;color:var(--muted);margin-top:2px}
.alert-item .ax{font-family:var(--mono);font-size:11px;color:var(--muted-2);margin-top:4px}

.donut-wrap{padding:20px 18px;display:flex;align-items:center;gap:20px}
.donut{width:120px;height:120px;flex:none}
.legend{display:flex;flex-direction:column;gap:9px;font-size:13px}
.legend .li{display:flex;align-items:center;gap:9px}
.legend .sw{width:11px;height:11px;border-radius:3px}
.legend .li .v{margin-left:auto;font-family:var(--mono);font-weight:600}
html[dir="rtl"] .legend .li .v{margin-left:0;margin-right:auto}

/* =====================================================
   WINDOWS DESKTOP APP
===================================================== */
#desktop{display:none;min-height:100vh;background:
  radial-gradient(900px 600px at 18% 12%,#13415a 0%,transparent 60%),
  radial-gradient(800px 700px at 88% 88%,#0c5a52 0%,transparent 55%),
  linear-gradient(135deg,#0B1622 0%,#11283a 60%,#0e3a40 100%);
  position:relative;overflow:hidden;font-family:var(--body)}
#desktop.active{display:block}
.desk-hint{position:absolute;top:64px;left:50%;transform:translateX(-50%);color:#cfe;font-size:12.5px;font-family:var(--mono);opacity:.7;text-align:center;width:90%;max-width:560px}

.win{position:absolute;top:96px;left:50%;transform:translateX(-50%);width:560px;
  background:var(--surface);border-radius:14px;overflow:hidden;
  box-shadow:0 40px 90px -20px rgba(0,0,0,.6),0 0 0 1px rgba(255,255,255,.06);}
.titlebar{display:flex;align-items:center;justify-content:space-between;padding:10px 14px;background:var(--surface);border-bottom:1px solid var(--line)}
.titlebar .l{display:flex;align-items:center;gap:9px;font-weight:700;font-size:13px;font-family:var(--display)}
.titlebar .l .mark{width:20px;height:20px;border-radius:6px;background:var(--pulse);display:flex;align-items:center;justify-content:center}
.titlebar .l .mark svg{width:12px;height:12px}
.winbtns{display:flex;gap:6px}
.winbtns span{width:13px;height:13px;border-radius:50%;display:inline-block}
.winbtns .mn{background:#FEBC2E}.winbtns .mx{background:#28C840}.winbtns .cl{background:#FF5F57;cursor:pointer}

.apptabs{display:flex;gap:0;padding:0 14px;background:var(--surface);border-bottom:1px solid var(--line)}
.apptabs button{font-size:13px;font-weight:600;color:var(--muted);padding:12px 14px;border-bottom:2px solid transparent;margin-bottom:-1px}
.apptabs button.on{color:var(--ink);border-color:var(--pulse)}

.apptab{display:none;padding:24px}
.apptab.on{display:block}

.clockface{text-align:center;padding:6px 0 18px}
.clockface .stt{display:inline-flex;align-items:center;gap:8px;font-size:13px;font-weight:600;color:var(--pulse-deep);background:var(--pulse-soft);padding:6px 14px;border-radius:100px;margin-bottom:18px}
.clockface .timer{font-family:var(--mono);font-size:52px;font-weight:600;letter-spacing:-.02em;line-height:1}
.clockface .since{font-size:13px;color:var(--muted);margin-top:8px}
.bigbtn{width:100%;padding:16px;border-radius:13px;font-size:16px;font-weight:700;font-family:var(--display);transition:.18s;margin-top:18px}
.bigbtn.out{background:var(--ink);color:#fff}.bigbtn.out:hover{background:var(--ink-2)}
.bigbtn.in{background:var(--pulse);color:var(--ink)}.bigbtn.in:hover{background:#00d8bb}

.breakrow{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;margin-top:12px}
.breakbtn{padding:11px 6px;border:1px solid var(--line);border-radius:10px;background:var(--surface-2);font-size:12px;font-weight:600;color:var(--muted);display:flex;flex-direction:column;align-items:center;gap:6px;transition:.15s}
.breakbtn svg{width:18px;height:18px;stroke:var(--muted)}
.breakbtn:hover{border-color:var(--pulse);color:var(--pulse-deep)}
.breakbtn:hover svg{stroke:var(--pulse-deep)}

.todaybox{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:18px}
.tcard{background:var(--surface-2);border:1px solid var(--line);border-radius:11px;padding:13px;text-align:center}
.tcard .n{font-family:var(--mono);font-size:20px;font-weight:600}
.tcard .k{font-size:11px;color:var(--muted);margin-top:3px}

.monitor-note{display:flex;align-items:center;gap:11px;margin-top:18px;padding:13px 15px;background:var(--pulse-soft);border:1px solid #BCEAE1;border-radius:11px}
.monitor-note .led{width:9px;height:9px;border-radius:50%;background:var(--pulse);flex:none;box-shadow:0 0 0 0 rgba(0,194,168,.6);animation:ping 1.8s infinite}
.monitor-note .t{font-size:12.5px;color:var(--pulse-deep);font-weight:600}
.monitor-note .t small{display:block;font-weight:400;color:#3f7a70;margin-top:2px}
.monitor-note a{margin-left:auto;font-size:12px;font-weight:600;color:var(--pulse-deep);white-space:nowrap;cursor:pointer}
html[dir="rtl"] .monitor-note a{margin-left:0;margin-right:auto}

/* my activity tab */
.mini-kpis{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-bottom:18px}
.mk{background:var(--surface-2);border:1px solid var(--line);border-radius:11px;padding:14px}
.mk .k{font-size:12px;color:var(--muted)}
.mk .n{font-family:var(--display);font-size:24px;font-weight:600;margin-top:5px}
.cat-bars{display:flex;flex-direction:column;gap:12px;margin-bottom:18px}
.cat-bars .cb .top{display:flex;justify-content:space-between;font-size:13px;margin-bottom:6px}
.cat-bars .cb .top .v{font-family:var(--mono);color:var(--muted)}
.cat-bars .track{height:9px;border-radius:100px;background:var(--line);overflow:hidden}
.cat-bars .track i{display:block;height:100%;border-radius:100px}
.collected{border:1px solid var(--line);border-radius:12px;overflow:hidden}
.collected .ch{padding:13px 15px;background:var(--surface-2);border-bottom:1px solid var(--line);font-size:13px;font-weight:600;display:flex;align-items:center;gap:8px}
.collected .crow{display:flex;align-items:center;justify-content:space-between;padding:12px 15px;border-bottom:1px solid var(--line);font-size:13px}
.collected .crow:last-child{border:none}
.collected .crow .meta small{display:block;color:var(--muted);font-size:11.5px;margin-top:2px}
.cstat{font-family:var(--mono);font-size:11.5px;font-weight:600;padding:3px 9px;border-radius:6px}
.cstat.on{background:var(--pulse-soft);color:var(--pulse-deep)}
.cstat.off{background:#EDF1F4;color:#8A9AA8}
.cstat.mask{background:var(--amber-soft);color:#9A6B00}

/* taskbar */
.taskbar{position:absolute;bottom:0;left:0;right:0;height:48px;background:rgba(11,22,34,.72);backdrop-filter:blur(16px);
  display:flex;align-items:center;justify-content:center;gap:8px;border-top:1px solid rgba(255,255,255,.06)}
.taskbar .tbicon{width:34px;height:34px;border-radius:8px;display:flex;align-items:center;justify-content:center;transition:.15s;cursor:pointer}
.taskbar .tbicon:hover{background:rgba(255,255,255,.12)}
.taskbar .tbicon.wp{background:var(--pulse)}
.taskbar .tbicon.wp svg{width:18px;height:18px}
.taskbar .tray{position:absolute;right:14px;display:flex;align-items:center;gap:14px;color:#cfe;font-size:12px;font-family:var(--mono)}
html[dir="rtl"] .taskbar .tray{right:auto;left:14px}
.tray .tray-led{display:flex;align-items:center;gap:6px}

/* tray flyout */
.flyout{position:absolute;bottom:56px;right:14px;width:240px;background:var(--surface);border-radius:12px;
  box-shadow:0 20px 50px rgba(0,0,0,.4);overflow:hidden;border:1px solid var(--line)}
html[dir="rtl"] .flyout{right:auto;left:14px}
.flyout .fh{padding:13px 15px;border-bottom:1px solid var(--line);display:flex;align-items:center;gap:9px}
.flyout .fh .av{width:30px;height:30px;border-radius:50%;background:linear-gradient(135deg,#cfe4f5,#a9c6e0);display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;color:#2c4763}
.flyout .fh .meta{font-size:13px;font-weight:600}.flyout .fh .meta small{display:block;color:var(--muted);font-weight:400;font-size:11px}
.flyout .fbody{padding:13px 15px}
.flyout .frow{display:flex;justify-content:space-between;font-size:12.5px;padding:6px 0;color:var(--muted)}
.flyout .frow b{color:var(--ink);font-family:var(--mono)}
.flyout .fbtn{width:100%;margin-top:10px;padding:9px;border-radius:9px;background:var(--ink);color:#fff;font-size:13px;font-weight:600}

@media(max-width:980px){
  .hero{grid-template-columns:1fr;gap:30px;padding-top:60px}
  .hero h1{font-size:42px}
  .features{grid-template-columns:1fr}
  .states,.trust,.grid-2{grid-template-columns:1fr}
  .statband .inner{grid-template-columns:repeat(2,1fr);gap:20px}
  #dash.active{grid-template-columns:1fr}.side{display:none}
  .kpis{grid-template-columns:repeat(2,1fr)}
  .win{width:94%;left:3%;transform:none}
  .nav .links{display:none}
  /* compact the floating chrome so switcher + language stay on ONE row */
  .chrome{gap:6px;max-width:98vw;flex-wrap:nowrap}
  .switcher{gap:2px;padding:4px}
  .switcher button{padding:6px 9px;font-size:11.5px;gap:5px}
  .switcher button .dot{display:none}
  .langtoggle{padding:3px}
  .langtoggle button{padding:6px 10px;font-size:11.5px}
  .nav{padding:58px 20px 16px}
}
@media(max-width:560px){
  /* keep header to one tidy line: drop the secondary CTA (still reachable in the hero) */
  .nav-actions .btn-ghost{display:none}
  .nav{padding:54px 16px 14px}
  .switcher button{padding:6px 8px;font-size:11px}
  .switcher button span[data-i18n]{max-width:none}
}
@media(prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important}}

/* ============ marketing v2: a11y · nav · principles · hero-card · faq · cta · cookie ============ */
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}}

.skip-link{position:absolute;left:12px;top:-60px;z-index:200;background:var(--ink);color:#fff;padding:10px 16px;border-radius:10px;font-weight:600;font-size:14px;transition:top .15s}
.skip-link:focus{top:12px}
header{position:relative}

/* mobile nav */
.nav-burger{display:none;background:none;border:0;color:var(--ink);padding:8px;cursor:pointer}
.nav-burger svg{width:24px;height:24px}
.nav-actions{display:flex;align-items:center;gap:10px}
@media(max-width:860px){
  .nav{flex-wrap:wrap}
  .nav-burger{display:inline-flex;order:3}
  .links{order:4;flex-basis:100%;display:none;flex-direction:column;gap:2px;padding:10px 0}
  .links.open{display:flex}
  .links a{padding:10px 4px}
  .nav-actions{order:2;margin-inline-start:auto}
}

/* principles strip (honest — replaces fabricated stat numbers) */
.principles{border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:var(--surface)}
.principles .inner{max-width:1180px;margin:0 auto;padding:20px 40px;list-style:none;display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.principles li{display:flex;align-items:flex-start;gap:10px;font-size:14px;font-weight:500;color:var(--ink-2)}
.principles li svg{width:18px;height:18px;flex:none;stroke:var(--pulse-deep);margin-top:1px}
@media(max-width:860px){.principles .inner{grid-template-columns:1fr 1fr;padding:18px 20px}}
@media(max-width:520px){.principles .inner{grid-template-columns:1fr}}

/* hero card: monitoring indicator + state chips (no fabricated live numbers) */
.dotpulse{width:8px;height:8px;border-radius:50%;background:var(--pulse);display:inline-block;box-shadow:0 0 0 0 rgba(0,194,168,.6);animation:ping 1.8s infinite}
.hc-states{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-top:14px}
.hc-chip{display:flex;align-items:center;gap:9px;background:var(--ink-2);border:1px solid #243a52;border-radius:11px;padding:11px 12px;font-size:13px;color:#cfe0ee;font-weight:500}
.hc-chip .led{width:9px;height:9px;border-radius:50%;flex:none}
.hc-note{margin-top:14px;font-size:12px;color:#8fa3b5;display:flex;align-items:center;gap:7px}
.state-list{list-style:none;margin:0;padding:0}

/* FAQ */
.faq{max-width:820px;display:flex;flex-direction:column;gap:10px}
.faq details{background:var(--surface);border:1px solid var(--line);border-radius:var(--r)}
.faq summary{cursor:pointer;list-style:none;padding:18px 20px;font-weight:600;font-size:16px;color:var(--ink);display:flex;justify-content:space-between;align-items:center;gap:14px;font-family:var(--display)}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";font-size:22px;font-weight:400;color:var(--muted-2);flex:none;line-height:1}
.faq details[open] summary::after{content:"–"}
.faq details p{margin:0;padding:0 20px 18px;color:var(--muted);font-size:15px;line-height:1.6;max-width:70ch}

/* final CTA */
.cta-final{background:var(--ink);color:#fff}
.cta-inner{max-width:1180px;margin:0 auto;padding:64px 40px;text-align:center}
.cta-inner h2{font-size:34px;letter-spacing:-.02em;color:#fff}
.cta-inner p{color:#9fb2c2;font-size:17px;margin:14px auto 26px;max-width:560px}
.cta-inner .cta{display:flex;gap:12px;flex-wrap:wrap;justify-content:center}
@media(max-width:600px){.cta-inner{padding:48px 20px}.cta-inner h2{font-size:26px}}

/* footer */
.col-h{font-family:var(--display);font-size:13px;font-weight:600;color:var(--ink);margin:0 0 12px}
.foot .col span{display:block;color:var(--muted);font-size:13.5px;padding:5px 0}
.foot .col a{padding:5px 0}
.defaults-row{border-top:1px solid var(--line);margin-top:6px;padding-top:14px}
.defaults-row .k{font-size:12px;color:var(--muted-2)}

/* cookie consent */
.cookie{position:fixed;left:16px;right:16px;bottom:16px;z-index:150;max-width:760px;margin:0 auto;background:var(--ink);color:#fff;border-radius:14px;padding:16px 18px;display:flex;align-items:center;gap:16px;box-shadow:0 20px 50px -20px rgba(11,22,34,.6);flex-wrap:wrap}
.cookie[hidden]{display:none}
.cookie-text{flex:1;min-width:240px;font-size:13.5px;line-height:1.5;color:#cfe0ee}
.cookie-text strong{display:block;color:#fff;font-size:14px;margin-bottom:2px;font-family:var(--display)}
.cookie-actions{display:flex;gap:10px;flex:none}
.cookie .btn-ghost{color:#fff;border-color:#33506e}
.cookie .btn-ghost:hover{border-color:#fff;background:transparent}
@media(max-width:520px){.cookie-actions{flex:1}.cookie-actions .btn{flex:1;justify-content:center}}

/* ============================================================
   Pricing · Contact · Product tour (added)
   ============================================================ */

/* pricing */
.pricing-section{background:var(--surface-2);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.tiers{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;max-width:1080px;margin:0 auto}
.tier{position:relative;background:var(--surface);border:1px solid var(--line);border-radius:var(--r);padding:26px 22px;display:flex;flex-direction:column}
.tier-featured{border-color:var(--pulse);box-shadow:0 18px 50px -28px rgba(0,194,168,.55)}
.tier-badge{position:absolute;top:-11px;inset-inline-start:22px;background:var(--pulse);color:var(--ink);font-family:var(--display);font-weight:600;font-size:11.5px;letter-spacing:.02em;padding:4px 11px;border-radius:100px}
.tier h3{font-family:var(--display);font-size:21px;font-weight:600;margin:0 0 4px;color:var(--ink)}
.tier-for{color:var(--muted);font-size:13.5px;min-height:38px;margin:0 0 16px}
.tier-feats{list-style:none;margin:0 0 22px;padding:0;display:flex;flex-direction:column;gap:11px;flex:1}
.tier-feats li{display:flex;gap:10px;align-items:flex-start;font-size:14px;color:var(--ink-2);line-height:1.4}
.tier-feats .ck{flex:none;width:18px;height:18px;border-radius:50%;background:var(--pulse-soft);position:relative;margin-top:1px}
.tier-feats .ck::after{content:"";position:absolute;left:5px;top:4px;width:5px;height:9px;border:solid var(--pulse-deep);border-width:0 2px 2px 0;transform:rotate(45deg)}
html[dir="rtl"] .tier-feats .ck::after{left:auto;right:5px}
.tier-cta{width:100%;justify-content:center}
.tier-note{text-align:center;color:var(--muted);font-size:13px;max-width:680px;margin:26px auto 0}
@media(max-width:860px){.tiers{grid-template-columns:1fr;max-width:440px}.tier-for{min-height:0}}

/* contact */
.contact{display:grid;grid-template-columns:1fr 1.1fr;gap:40px;max-width:1000px;margin:0 auto;align-items:start}
.contact-pitch h2{font-family:var(--display);font-size:28px;font-weight:600;color:var(--ink);margin:6px 0 12px;line-height:1.15}
.contact-pitch p{color:var(--muted);font-size:15.5px;line-height:1.6;margin:0 0 16px}
.contact-assure{list-style:none;margin:22px 0 0;padding:0;display:flex;flex-direction:column;gap:12px}
.contact-assure li{display:flex;gap:10px;align-items:flex-start;font-size:14px;color:var(--ink-2)}
.contact-assure svg{flex:none;width:20px;height:20px;stroke:var(--pulse);margin-top:1px}
.contact-form{position:relative;background:var(--surface);border:1px solid var(--line);border-radius:var(--r);padding:24px;box-shadow:0 18px 50px -34px rgba(11,22,34,.4)}
.cf-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.cf-field{display:block;margin-bottom:14px}
.cf-field>span{display:block;font-size:13px;font-weight:500;color:var(--ink);margin-bottom:6px}
.cf-field em{color:var(--muted-2);font-style:normal;font-weight:400}
.cf-field input,.cf-field textarea{width:100%;box-sizing:border-box;padding:11px 12px;border:1px solid var(--line-strong);border-radius:var(--r-sm);font:inherit;font-size:14px;color:var(--ink);background:var(--surface-2)}
.cf-field input:focus,.cf-field textarea:focus{outline:2px solid var(--pulse);outline-offset:1px;border-color:var(--pulse);background:#fff}
.cf-field textarea{resize:vertical;min-height:96px}
.cf-hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.cf-submit{width:100%;justify-content:center;margin-top:4px}
.cf-submit:disabled{opacity:.6;cursor:default}
.cf-status{margin:14px 0 0;font-size:13.5px;padding:10px 12px;border-radius:var(--r-sm)}
.cf-status[hidden]{display:none}
.cf-status.ok{background:var(--pulse-soft);color:var(--pulse-deep)}
.cf-status.err{background:var(--rose-soft);color:#b5292e}
.cf-fallback{margin:14px 0 0;font-size:13px;color:var(--muted)}
.cf-fallback a{color:var(--pulse-deep);font-weight:500}
@media(max-width:820px){.contact{grid-template-columns:1fr;gap:28px}}
@media(max-width:480px){.cf-row{grid-template-columns:1fr}}

/* product tour */
body.tour-lock{overflow:hidden}
.tour{position:fixed;inset:0;z-index:200;display:flex;align-items:center;justify-content:center;padding:20px}
.tour[hidden]{display:none}
.tour-backdrop{position:absolute;inset:0;background:rgba(11,22,34,.62);backdrop-filter:blur(3px)}
.tour-card{position:relative;width:min(560px,100%);max-height:92vh;overflow:auto;background:var(--surface);border-radius:18px;box-shadow:0 40px 90px -30px rgba(11,22,34,.7);animation:tourIn .22s ease}
@keyframes tourIn{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}
@media(prefers-reduced-motion:reduce){.tour-card{animation:none}}
.tour-close{position:absolute;top:12px;inset-inline-end:12px;z-index:2;width:34px;height:34px;border:none;border-radius:9px;background:rgba(255,255,255,.7);color:var(--ink);cursor:pointer;display:flex;align-items:center;justify-content:center}
.tour-close:hover{background:#fff}
.tour-close svg{width:18px;height:18px}
.tour-stage{position:relative;height:190px;background:linear-gradient(160deg,var(--ink) 0%,var(--ink-3) 100%);border-radius:18px 18px 0 0;overflow:hidden}
.tour-vis{position:absolute;inset:0;display:none;flex-direction:column;align-items:center;justify-content:center;gap:12px;padding:22px}
.tour-vis.active{display:flex}
.tour-stage .toggle{background:#33506e}
.tour-stage .toggle.on{background:var(--pulse)}
.tv-led{display:inline-flex;align-items:center;gap:7px;color:#cfe0ee;font-family:var(--mono);font-size:12px}
.tv-clockbtn{background:var(--pulse);color:var(--ink);font-family:var(--display);font-weight:600;font-size:17px;padding:11px 30px;border-radius:11px;box-shadow:0 10px 26px -10px rgba(0,194,168,.6)}
.tv-shift{color:#9fb2c2;font-size:12px;font-family:var(--mono)}
.tv-roster{gap:10px !important;align-items:stretch !important;padding:30px 40px}
.tv-rrow{display:flex;align-items:center;gap:10px}
.tv-rrow .led{width:9px;height:9px;border-radius:50%;flex:none}
.tv-bar{height:11px;border-radius:100px;background:linear-gradient(90deg,rgba(255,255,255,.5),rgba(255,255,255,.15))}
.tv-callwave{width:78%;height:64px}
.tv-callwave canvas{width:100%;height:100%}
.tv-callrow{display:inline-flex;align-items:center;gap:10px;color:#cfe0ee;font-size:13px}
.tv-phone{color:var(--pulse)}
.tv-pill{color:var(--ink);font-weight:600;font-size:11.5px;padding:3px 9px;border-radius:100px}
.tv-cats{gap:10px !important;align-items:stretch !important;padding:28px 40px}
.tv-cat{display:flex;align-items:center;gap:10px;color:#dce8f1;font-size:13px}
.tv-cat .tv-dot{width:9px;height:9px;border-radius:50%;flex:none}
.tv-catv{margin-inline-start:auto;font-family:var(--mono);font-size:11px;color:#9fb2c2}
.tv-catv.tv-prod{color:var(--pulse)}
.tv-catv.tv-unprod{color:#f5a0a3}
.tv-self{gap:8px !important;align-items:stretch !important;padding:24px 40px}
.tv-selfhead{color:#fff;font-family:var(--display);font-weight:600;font-size:13px;margin-bottom:4px}
.tv-srow{display:flex;align-items:center;justify-content:space-between;color:#cfe0ee;font-size:13px}
.tv-shield svg{width:58px;height:58px}
.tv-consenttext{color:#dce8f1;font-size:14px;text-align:center;max-width:260px}
.tour-body{padding:22px 26px 6px}
.tour-step{font-family:var(--mono);font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--pulse-deep)}
.tour-body h3{font-family:var(--display);font-size:21px;font-weight:600;color:var(--ink);margin:8px 0 8px}
.tour-body p{color:var(--muted);font-size:14.5px;line-height:1.55;margin:0}
.tour-nav{display:flex;align-items:center;justify-content:space-between;padding:14px 26px 22px;gap:14px}
.tour-dots{display:flex;gap:7px}
.tour-dot{width:7px;height:7px;border-radius:50%;background:var(--line-strong);transition:.2s}
.tour-dot.on{background:var(--pulse);width:20px;border-radius:100px}
.tour-btns{display:flex;gap:10px}
.tour-nav .btn{padding:9px 18px}
.tour-prev:disabled,.tour-btns button:disabled{opacity:.45;cursor:default}
@media(max-width:480px){.tour-stage{height:160px}.tour-body h3{font-size:19px}}
