:root {
  --bg: #12161C;
  --surface: #1A2028;
  --surface-2: #222A34;
  --line: #2E3742;
  --line-strong: #3C4757;
  --text: #ECEFF3;
  --muted: #97A2B0;
  --faint: #6B7684;
  --accent: #F0B23E;
  --accent-ink: #1A1400;
  --accent-soft: rgba(240, 178, 62, 0.14);
  --link: #8DBDEA;
  --ok: #6CCB8A;
  --shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
  --radius: 10px;
  --display: "Bricolage Grotesque", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --body: "IBM Plex Sans", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "SF Mono", Menlo, Consolas, monospace;
  color-scheme: dark;
}
@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --bg: #F3F4F6; --surface: #FFFFFF; --surface-2: #EBEEF2; --line: #D8DDE4; --line-strong: #BFC7D1;
    --text: #161B22; --muted: #5B6673; --faint: #8A94A1; --accent: #B8800E; --accent-ink: #FFFFFF;
    --accent-soft: rgba(184, 128, 14, 0.12); --link: #2A67A8; --ok: #23874F;
    --shadow: 0 30px 60px -30px rgba(20, 30, 45, 0.35); color-scheme: light;
  }
}
:root[data-theme="light"] {
  --bg: #F3F4F6; --surface: #FFFFFF; --surface-2: #EBEEF2; --line: #D8DDE4; --line-strong: #BFC7D1;
  --text: #161B22; --muted: #5B6673; --faint: #8A94A1; --accent: #B8800E; --accent-ink: #FFFFFF;
  --accent-soft: rgba(184, 128, 14, 0.12); --link: #2A67A8; --ok: #23874F;
  --shadow: 0 30px 60px -30px rgba(20, 30, 45, 0.35); color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--body); font-size: 17px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3 { font-family: var(--display); margin: 0; text-wrap: balance; letter-spacing: -0.01em; }
p { margin: 0; }

.wrap { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }
.eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.lead { color: var(--muted); max-width: 60ch; font-size: 18px; }
.lead.spaced { margin-top: 20px; }
section { padding: 96px 0; border-top: 1px solid var(--line); }
.sec-head { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 40px; align-items: end; margin-bottom: 48px; }
.sec-head h2, .h2 { font-size: clamp(34px, 4.4vw, 52px); font-weight: 700; line-height: 1.02; margin-top: 12px; }
@media (max-width: 760px) { .sec-head { grid-template-columns: 1fr; gap: 16px; } }

nav { position: sticky; top: 0; z-index: 10; background: color-mix(in srgb, var(--bg) 82%, transparent); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); font-family: var(--display); font-weight: 700; font-size: 20px; }
.brand:hover { text-decoration: none; }
.brand svg { width: 26px; height: 26px; }
nav ul { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; align-items: center; }
nav ul a { color: var(--muted); font-size: 15px; font-weight: 500; }
nav ul a:hover { color: var(--text); text-decoration: none; }
nav ul a.cta { color: var(--text); border: 1px solid var(--line-strong); padding: 8px 14px; border-radius: 999px; }
nav ul a.cta:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 640px) { nav ul li:not(:last-child) { display: none; } }

.hero { border-top: 0; padding: 72px 0 88px; }
.hero .wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(52px, 7.5vw, 96px); font-weight: 800; line-height: 0.95; margin: 18px 0 22px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lead { font-size: 19px; }
.actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; align-items: center; }
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--body); font-weight: 600; font-size: 15px; padding: 12px 20px; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, background .15s ease; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-ghost { color: var(--text); border-color: var(--line-strong); background: transparent; }
.btn-ghost:hover { border-color: var(--text); }
@media (max-width: 900px) { .hero .wrap { grid-template-columns: 1fr; } }

.desk { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); overflow: hidden; font-size: 12px; }
.menubar { display: flex; align-items: center; justify-content: space-between; height: 30px; padding: 0 12px; background: var(--surface-2); border-bottom: 1px solid var(--line); font-size: 12px; color: var(--muted); }
.menubar b { color: var(--text); font-weight: 600; margin-right: 12px; }
.menubar span { margin-right: 12px; }
.zones { display: grid; grid-template-columns: 1.6fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; padding: 10px; min-height: 340px;
  background: linear-gradient(var(--line) 1px, transparent 1px) 0 0 / 100% 56px, linear-gradient(90deg, var(--line) 1px, transparent 1px) 0 0 / 56px 100%; }
.zone { position: relative; border: 1px solid var(--line-strong); border-radius: 8px; background: var(--surface); display: flex; flex-direction: column; overflow: hidden; }
.zone.main { grid-row: 1 / span 2; outline: 2px solid var(--accent); outline-offset: -2px; }
.zone .tag { position: absolute; top: 8px; right: 8px; font-family: var(--mono); font-size: 9.5px; letter-spacing: .12em; color: var(--accent); background: var(--accent-soft); padding: 3px 6px; border-radius: 4px; }
.win-bar { display: flex; align-items: center; gap: 6px; height: 26px; padding: 0 10px; border-bottom: 1px solid var(--line); background: var(--surface-2); }
.lights { display: flex; gap: 5px; }
.lights i { width: 9px; height: 9px; border-radius: 50%; display: block; box-shadow: inset 0 0 0 .5px rgba(0,0,0,.2); }
.lights i:nth-child(1) { background: #FF5F57; } .lights i:nth-child(2) { background: #FEBC2E; } .lights i:nth-child(3) { background: #28C840; }
.win-bar .name { color: var(--muted); margin-left: 6px; }
.win-body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.win-body .kicker { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; color: var(--faint); }
.win-body .doc { font-family: var(--display); font-size: 22px; line-height: 1.1; font-weight: 700; text-wrap: balance; }
.win-body .para { color: var(--muted); font-size: 12px; max-width: 32ch; }
.lines span { display: block; height: 7px; border-radius: 4px; background: var(--surface-2); margin-bottom: 6px; }
.lines span:nth-child(2) { width: 82%; } .lines span:nth-child(3) { width: 60%; }
.term { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.term .p { color: var(--text); }
.term .ok { color: var(--ok); }
.status { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 12px; background: var(--surface-2); border-top: 1px solid var(--line); font-family: var(--mono); font-size: 11px; letter-spacing: .06em; }
.status .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--ok); margin-right: 8px; }
.status .muted { color: var(--muted); letter-spacing: 0; }
@media (max-width: 520px) { .zones { grid-template-columns: 1fr; grid-template-rows: auto; } .zone.main { grid-row: auto; } }

.grid { display: grid; gap: 16px; }
.grid.after { margin-top: 40px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.tile { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.tile .num { font-family: var(--mono); font-size: 12px; color: var(--faint); letter-spacing: .1em; }
.tile .glyph { width: 40px; height: 40px; border-radius: 8px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); font-size: 20px; }
.tile h3 { font-size: 22px; font-weight: 700; line-height: 1.15; }
.tile p { color: var(--muted); font-size: 15.5px; }
.roles { margin-top: 36px; }
.role { padding: 18px 20px; gap: 6px; }
.role .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.role .val { font-family: var(--display); font-size: 19px; font-weight: 600; }
.role.lead-role { border-color: var(--accent); }

.engine { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 20px; }
@media (max-width: 900px) { .engine { grid-template-columns: 1fr; } }
.events { display: flex; flex-direction: column; gap: 10px; }
.event { text-align: left; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; cursor: pointer; color: var(--text); font-family: var(--body); display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: center; transition: border-color .15s ease; }
.event .n { font-family: var(--mono); font-size: 12px; color: var(--faint); }
.event .t { font-weight: 600; font-size: 16px; }
.event .s { color: var(--muted); font-size: 13px; }
.event[aria-pressed="true"] { border-color: var(--accent); background: var(--accent-soft); }
.event:hover { border-color: var(--line-strong); }
.pipeline { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 18px; }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
@media (max-width: 760px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.step { border: 1px solid var(--line); border-radius: 8px; padding: 14px; background: var(--bg); opacity: .45; transition: opacity .35s ease, border-color .35s ease; position: relative; min-height: 118px; }
.step.on { opacity: 1; border-color: var(--accent); }
.step .k { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; color: var(--faint); display: flex; justify-content: space-between; }
.step .k b { color: var(--accent); font-weight: 500; }
.step .v { margin-top: 10px; font-weight: 600; font-size: 15px; line-height: 1.3; }
.step .arrow { position: absolute; right: -11px; top: 50%; transform: translateY(-50%); color: var(--faint); font-size: 14px; background: var(--surface); padding: 0 2px; }
.step:last-child .arrow { display: none; }
.verdict { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 16px; }
.verdict .ok { color: var(--ok); font-weight: 600; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.verdict code { font-family: var(--mono); font-size: 12.5px; color: var(--muted); }
@media (prefers-reduced-motion: reduce) { .step, .btn, .event { transition: none; } html { scroll-behavior: auto; } }

.prio { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 32px; align-items: start; }
@media (max-width: 900px) { .prio { grid-template-columns: 1fr; } }
.ladder { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-family: var(--mono); font-size: 14px; margin-top: 28px; }
.ladder span { padding: 8px 14px; border: 1px solid var(--line); border-radius: 6px; background: var(--surface); color: var(--muted); }
.ladder span.you { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); font-weight: 500; }
.ladder i { color: var(--faint); font-style: normal; }
.ws { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.ws .bar { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; border-bottom: 1px solid var(--line); background: var(--surface-2); font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--muted); }
.ws .cells { display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; padding: 10px; min-height: 250px; }
.cell { border: 1px solid var(--line-strong); border-radius: 8px; padding: 12px; display: flex; flex-direction: column; justify-content: space-between; background: var(--bg); }
.cell.main { grid-row: 1 / span 2; outline: 2px solid var(--accent); outline-offset: -2px; }
.cell .lbl { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; color: var(--accent); }
.cell .app { font-family: var(--display); font-size: 20px; font-weight: 700; }
.ws .note { padding: 12px 14px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 12px; color: var(--text); display: flex; gap: 10px; align-items: center; }
.ws .note b { color: var(--accent); font-weight: 500; }

.signup { text-align: center; }
.signup h2 { font-size: clamp(38px, 5vw, 64px); font-weight: 800; line-height: 1; margin: 14px auto 18px; }
.signup .lead { margin: 0 auto; }
.join { display: flex; justify-content: center; margin: 34px auto 0; }
.fine { color: var(--faint); font-size: 13px; margin: 14px auto 0; max-width: 52ch; }

footer { border-top: 1px solid var(--line); padding: 32px 0; color: var(--faint); font-size: 14px; }
footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
footer .brand { font-size: 16px; }

/* privacy notice — truthful EU-style information bar, no consent theatre */
.notice { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 30; margin: 0 auto; max-width: 720px; display: flex; gap: 16px; align-items: center; justify-content: space-between;
  background: var(--surface); color: var(--text); border: 1px solid var(--line-strong); border-radius: 12px; padding: 14px 16px; box-shadow: var(--shadow); font-size: 14px; }
.notice[hidden] { display: none; }
.notice p { margin: 0; color: var(--muted); }
.notice strong { color: var(--text); }
.notice button { font: inherit; font-weight: 600; background: var(--accent); color: var(--accent-ink); border: 0; border-radius: 999px; padding: 8px 16px; cursor: pointer; white-space: nowrap; }
@media (max-width: 560px) { .notice { flex-direction: column; align-items: stretch; text-align: center; } }

/* ─── animated scene: observe → plan → commit → verify ─── */
.scene { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); overflow: hidden; }
.monitors { position: relative; aspect-ratio: 16 / 9; background: var(--bg); overflow: hidden;
  background-image: radial-gradient(ellipse at 30% 20%, color-mix(in srgb, var(--accent) 6%, transparent), transparent 60%); }
.monitor { position: absolute; top: 6%; bottom: 14%; border: 1px solid var(--line-strong); border-radius: 9px; background: var(--surface); box-shadow: 0 0 0 3px color-mix(in srgb, var(--bg) 70%, var(--line)), 0 18px 30px -20px rgba(0,0,0,.7);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1), box-shadow .7s ease; }
.monitor.main { left: 3%; width: 58%; }
.monitor.studio { left: 64%; width: 33%; }
.monitor.off { opacity: .42; border-style: dashed; transform: translateX(10px) scale(.985); box-shadow: none; }
.monitor.off .mon-zones { opacity: 0; }
.mon-off { position: absolute; inset: 22px 5px 5px; display: grid; place-items: center; opacity: 0; transition: opacity .5s ease; }
.monitor.off .mon-off { opacity: 1; }
.surface-ghost { font-family: var(--mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); text-align: center; border: 1px dashed var(--line-strong); border-radius: 6px; padding: 8px 10px; line-height: 1.5; opacity: 0; transform: translateY(6px); transition: opacity .5s ease .2s, transform .5s ease .2s; }
.surface-ghost small { font-size: 8.5px; letter-spacing: .08em; text-transform: none; color: var(--faint); }
.surface-ghost.show { opacity: 1; transform: none; }
.mon-bar { display: flex; justify-content: space-between; align-items: center; height: 18px; padding: 0 8px; font-family: var(--mono); font-size: 8.5px; letter-spacing: .06em; color: var(--muted); border-bottom: 1px solid var(--line); background: var(--surface-2); }
.mon-bar b { color: var(--text); font-weight: 600; margin-right: 4px; }
.mon-scheme { color: var(--faint); }
.mon-zones { position: absolute; top: 22px; left: 5px; right: 5px; bottom: 5px; display: grid; gap: 4px; transition: opacity .4s ease; }
.mon-zones i { display: block; position: relative; border: 1px dashed var(--line-strong); border-radius: 5px; transition: border-color .4s ease, background .4s ease; }
.mon-zones i::after { content: attr(data-label); position: absolute; left: 5px; top: 3px; font-family: var(--mono); font-size: 7.5px; letter-spacing: .12em; color: var(--faint); transition: color .4s ease; }
.mon-zones i.hot { border-color: var(--accent); border-style: solid; background: color-mix(in srgb, var(--accent) 5%, transparent); }
.mon-zones i.hot::after { color: var(--accent); }
.mon-zones.z3 { grid-template-columns: 1.6fr 1fr; grid-template-rows: 1fr 1fr; }
.mon-zones.z3 i:first-child { grid-row: 1 / span 2; }
.mon-zones.z2 { grid-template-rows: 1fr 1fr; }
.ghosts, .windows { position: absolute; inset: 0; }
.ghost { position: absolute; border: 1.5px dashed var(--accent); border-radius: 6px; background: color-mix(in srgb, var(--accent) 8%, transparent); opacity: 0; transition: opacity .35s ease; pointer-events: none; }
.ghost.show { opacity: 1; }
.win { position: absolute; border-radius: 6px; background: var(--surface-2); border: 1px solid var(--line-strong); box-shadow: 0 10px 24px -12px rgba(0,0,0,.6); display: flex; flex-direction: column; font-size: 10px; overflow: hidden;
  --snap: cubic-bezier(.22, 1.12, .36, 1);
  transition: left .9s var(--snap), top .9s var(--snap), width .9s var(--snap), height .9s var(--snap), opacity .4s ease, transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease, border-color .4s ease; }
.win .wb { display: flex; align-items: center; gap: 5px; padding: 4px 7px; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 60%, var(--surface-2)); }
.win .lights { display: flex; gap: 3px; }
.win .lights i { width: 6px; height: 6px; }
.win b { font-family: var(--display); font-weight: 700; font-size: 10.5px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.win em { font-style: normal; font-family: var(--mono); font-size: 7.5px; letter-spacing: .12em; color: var(--accent); margin-left: auto; }
.win .wc { flex: 1; padding: 7px 8px; display: flex; flex-direction: column; gap: 5px; overflow: hidden; }
.win .wc span { display: block; height: 5px; border-radius: 3px; background: var(--line); width: 90%; }
.win .wc span.h { height: 8px; width: 60%; background: var(--line-strong); }
.win .wc span.s { width: 55%; }
.win .wc.term span { height: auto; width: auto; background: none; font-family: var(--mono); font-size: 8px; color: var(--muted); white-space: nowrap; }
.win .wc.term span.ok { color: var(--ok); }
.win.lift { transform: scale(1.035); box-shadow: 0 28px 44px -16px rgba(0,0,0,.75); z-index: 3; }
.win.gone { opacity: 0; transform: scale(.85); }
.win.snapped { border-color: var(--accent); }
.win.pinned { border-color: var(--ok); }
.pointer { position: absolute; left: 50%; top: 50%; opacity: 0; z-index: 5; transition: left .9s cubic-bezier(.3,.7,.3,1), top .9s cubic-bezier(.3,.7,.3,1), opacity .3s ease; pointer-events: none; filter: drop-shadow(0 2px 4px rgba(0,0,0,.5)); }
.pointer.show { opacity: 1; }
.verify { position: absolute; right: 3%; bottom: 3.5%; font-family: var(--mono); font-size: 9.5px; letter-spacing: .08em; color: var(--ok); background: color-mix(in srgb, var(--ok) 12%, transparent); border: 1px solid color-mix(in srgb, var(--ok) 40%, transparent); border-radius: 999px; padding: 3px 9px; opacity: 0; transform: translateY(4px); transition: opacity .3s ease, transform .3s ease; }
.verify.show { opacity: 1; transform: none; }
.scene-bar { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 10px 12px; border-top: 1px solid var(--line); background: var(--surface-2); font-size: 12px; }
.scene-step { font-family: var(--mono); font-size: 11px; color: var(--faint); font-variant-numeric: tabular-nums; }
.scene-caption { color: var(--text); font-weight: 500; }
.scene-why { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); background: var(--accent-soft); padding: 3px 7px; border-radius: 4px; white-space: nowrap; }
.scene-trace { list-style: none; margin: 0; padding: 8px 12px 10px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; background: var(--surface); font-family: var(--mono); font-size: 10.5px; color: var(--muted); }
.scene-trace li { display: flex; gap: 8px; align-items: baseline; min-height: 2.6em; }
.scene-trace b { color: var(--accent); font-weight: 600; flex: 0 0 auto; }
.precedence { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; margin-top: 28px; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); font-family: var(--mono); font-size: 12.5px; }
.precedence span { padding: 5px 10px; border: 1px solid var(--line-strong); border-radius: 6px; color: var(--muted); }
.precedence span.p-you { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.precedence span.p-fact { border-style: dashed; }
.precedence i { color: var(--faint); font-style: normal; }
.precedence em { flex-basis: 100%; font-style: normal; font-family: var(--body); font-size: 14px; color: var(--muted); margin-top: 4px; }
@media (max-width: 520px) { .scene-bar { grid-template-columns: 1fr; gap: 4px; } .scene-trace { grid-template-columns: 1fr; } .win b { font-size: 9.5px; } .win em, .win .wc { display: none; } .mon-zones i::after { display: none; } .mon-bar span:first-child { display: none; } }
@media (prefers-reduced-motion: reduce) { .win, .monitor, .mon-zones, .mon-off, .mon-zones i, .ghost, .pointer, .verify, .surface-ghost { transition: none; } .win.lift { transform: none; } }
