/* OMNIS — design system. Deep black, charcoal, restrained warm gold, off-white type. No frameworks, no external assets. */
:root {
  --bg: #060608;
  --s1: #0d0d11;
  --s2: #131317;
  --s3: #1a1a1f;
  --line: rgba(236, 228, 210, .075);
  --line-2: rgba(236, 228, 210, .13);
  --text: #ece6d8;
  --dim: #9b9584;
  --faint: #5d594f;
  --gold: #c9a96b;
  --gold-hi: #e6cd93;
  --gold-lo: #8a7444;
  --gold-glow: rgba(201, 169, 107, .16);
  --ok: #86b294;
  --warn: #d59b52;
  --bad: #d2675d;
  --info: #8fa3b8;
  --serif: "Didot", "Bodoni 72", "Bodoni MT", "Playfair Display", "Iowan Old Style", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Helvetica Neue", system-ui, sans-serif;
  --mono: "SF Mono", ui-monospace, "JetBrains Mono", Menlo, Consolas, monospace;
  --r: 14px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}
* { box-sizing: border-box; }
html { color-scheme: dark; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text); font: 14px/1.55 var(--sans); letter-spacing: .005em;
  -webkit-font-smoothing: antialiased; min-height: 100vh; overflow-x: hidden;
}
body::before { /* atmosphere: a low gold horizon glow + vignette, fixed behind everything */
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(1100px 520px at 50% -8%, rgba(201, 169, 107, .10), transparent 62%),
    radial-gradient(900px 600px at 100% 110%, rgba(201, 169, 107, .045), transparent 60%),
    radial-gradient(1400px 900px at 50% 50%, transparent 55%, rgba(0, 0, 0, .55) 100%);
}
body::after { /* fine grain */
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
#app { position: relative; z-index: 1; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
::selection { background: rgba(201, 169, 107, .3); }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.mono { font-family: var(--mono); font-feature-settings: "tnum"; }
.num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum", "lnum"; }
.serif { font-family: var(--serif); }
.dim { color: var(--dim); } .faint { color: var(--faint); } .gold { color: var(--gold); }
.ok { color: var(--ok); } .warn { color: var(--warn); } .bad { color: var(--bad); }

/* ---------- top bar ---------- */
.top { position: sticky; top: 0; z-index: 30; display: flex; align-items: center; gap: 28px; padding: 14px 32px;
  background: linear-gradient(180deg, rgba(6, 6, 8, .92), rgba(6, 6, 8, .72)); backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); letter-spacing: .42em; font-size: 15px; padding-left: .1em; }
.brand svg { width: 22px; height: 22px; }
.nav { display: flex; gap: 4px; margin-left: 12px; }
.nav a { padding: 8px 14px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--dim); border-radius: 8px; transition: color .25s, background .25s; }
.nav a:hover { color: var(--text); }
.nav a.on { color: var(--gold-hi); background: rgba(201, 169, 107, .07); }
.top .grow { flex: 1; }
.sys { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); }
.link-btn { background: none; border: 0; color: var(--dim); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; padding: 8px 10px; border-radius: 8px; }
.link-btn:hover { color: var(--text); }

.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); display: inline-block; flex: none; }
.dot.live { box-shadow: 0 0 0 0 var(--gold-glow); animation: pulse 2.4s var(--ease) infinite; }
.dot.ok { background: var(--ok); } .dot.warn { background: var(--warn); } .dot.bad { background: var(--bad); } .dot.info { background: var(--info); } .dot.off { background: var(--faint); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(201, 169, 107, .5); } 70% { box-shadow: 0 0 0 9px rgba(201, 169, 107, 0); } 100% { box-shadow: 0 0 0 0 rgba(201, 169, 107, 0); } }

/* ---------- layout ---------- */
.wrap { max-width: 1680px; margin: 0 auto; padding: 28px 32px 90px; }
.view { animation: rise .6s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.eyebrow { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.label { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); }
h1, h2, h3 { margin: 0; font-weight: 400; }
.grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; }
.grid > * { min-width: 0; }
.c12 { grid-column: span 12; } .c8 { grid-column: span 8; } .c7 { grid-column: span 7; } .c6 { grid-column: span 6; } .c5 { grid-column: span 5; } .c4 { grid-column: span 4; } .c3 { grid-column: span 3; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 20px; align-items: start; }
.rail { position: sticky; top: 76px; max-height: calc(100vh - 96px); display: flex; flex-direction: column; }
.stack > * + * { margin-top: 16px; }
.row { display: flex; align-items: center; gap: 12px; }
.between { justify-content: space-between; }
.wrapflex { flex-wrap: wrap; }

.panel { position: relative; background: linear-gradient(180deg, rgba(255, 255, 255, .028), rgba(255, 255, 255, .008)), var(--s1);
  border: 1px solid var(--line); border-radius: var(--r); padding: 20px 22px; backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 18px 40px -24px rgba(0, 0, 0, .8); }
.panel.gilt::before { content: ""; position: absolute; left: 22px; right: 22px; top: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold-hi) 50%, var(--gold) 70%, transparent); opacity: .7; }
.panel h3 { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--dim); font-family: var(--sans); font-weight: 500; margin-bottom: 14px; display: flex; align-items: center; gap: 4px 10px; flex-wrap: wrap; }
.panel h3 .sub { margin-left: auto; letter-spacing: .06em; text-transform: none; color: var(--faint); font-weight: 400; font-size: 11px; }
.note { font-size: 12px; color: var(--dim); line-height: 1.5; }
.hair { height: 1px; background: var(--line); margin: 16px 0; border: 0; }

/* ---------- chips ---------- */
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 3px 9px; border: 1px solid var(--line-2); border-radius: 999px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); white-space: nowrap; }
.chip.gold { color: var(--gold-hi); border-color: rgba(201, 169, 107, .45); background: rgba(201, 169, 107, .06); }
.chip.ok { color: var(--ok); border-color: rgba(134, 178, 148, .35); } .chip.warn { color: var(--warn); border-color: rgba(213, 155, 82, .4); }
.chip.bad { color: var(--bad); border-color: rgba(210, 103, 93, .4); } .chip.info { color: var(--info); border-color: rgba(143, 163, 184, .35); }
.wrapflex .chip { white-space: normal; text-align: left; line-height: 1.3; }
.chip.solid { background: var(--gold); color: #120f07; border-color: var(--gold); }
.fresh { font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; padding: 2px 7px; border-radius: 4px; border: 1px solid var(--line-2); color: var(--dim); }
.fresh.REAL_TIME { color: var(--ok); border-color: rgba(134, 178, 148, .4); } .fresh.NEAR_REAL_TIME { color: var(--info); } .fresh.DELAYED { color: var(--warn); border-color: rgba(213, 155, 82, .35); }

/* ---------- buttons / forms ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 10px 18px; background: transparent; border: 1px solid var(--line-2); border-radius: 10px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--text); transition: border-color .25s, background .25s, color .25s, transform .25s var(--ease); }
.btn:hover { border-color: var(--gold); color: var(--gold-hi); }
.btn:active { transform: translateY(1px); }
.btn.gold { border-color: rgba(201, 169, 107, .6); color: var(--gold-hi); background: rgba(201, 169, 107, .06); }
.btn.gold:hover { background: linear-gradient(180deg, var(--gold-hi), var(--gold)); color: #100c05; border-color: var(--gold-hi); }
.btn.sm { padding: 6px 12px; font-size: 10px; border-radius: 8px; }
.btn[disabled] { opacity: .35; pointer-events: none; }
input[type=text], input[type=email], input[type=password], input[type=url], input[type=number], input[type=date], select {
  width: 100%; background: rgba(255, 255, 255, .025); border: 1px solid var(--line-2); border-radius: 10px; padding: 11px 14px; color: var(--text); font: inherit; outline: none;
  transition: border-color .25s, background .25s; }
input:focus, select:focus { border-color: var(--gold); background: rgba(201, 169, 107, .035); }
input::placeholder { color: var(--faint); }
label.f { display: block; font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--dim); margin: 0 0 7px; }
.field { margin-bottom: 16px; }
.err { color: var(--bad); font-size: 12.5px; min-height: 18px; margin-top: 10px; }

/* ---------- auth ---------- */
.auth { min-height: 100vh; display: grid; place-items: center; padding: 24px; position: relative; z-index: 1; }
.auth .card { width: min(440px, 100%); }
.auth .mark { display: flex; flex-direction: column; align-items: center; gap: 18px; margin-bottom: 38px; }
.auth .mark svg { width: 46px; height: 46px; }
.auth .mark .word { font-family: var(--serif); font-size: 26px; letter-spacing: .6em; padding-left: .6em; }

/* ---------- hero (home) ---------- */
.hero { padding: 9vh 0 6vh; text-align: center; max-width: 880px; margin: 0 auto; }
.hero .eyebrow { display: block; margin-bottom: 26px; }
.hero h1 { font-family: var(--serif); font-size: clamp(54px, 9vw, 112px); line-height: .98; letter-spacing: -.01em; font-weight: 400;
  background: linear-gradient(180deg, #f4ecd8 0%, #cbb27c 62%, #8f7a4b 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .sub { margin: 26px auto 0; max-width: 560px; color: var(--dim); font-size: 15px; }
.deploy { margin: 46px auto 0; max-width: 720px; text-align: left; }
.deploy .input { position: relative; display: flex; align-items: center; border: 1px solid var(--line-2); border-radius: 16px; padding: 4px 6px 4px 22px; background: rgba(255, 255, 255, .02);
  transition: border-color .35s, box-shadow .35s; }
.deploy .input:focus-within { border-color: rgba(201, 169, 107, .7); box-shadow: 0 0 0 4px rgba(201, 169, 107, .07), 0 30px 60px -30px rgba(201, 169, 107, .35); }
.deploy input { border: 0; background: transparent; font-family: var(--serif); font-size: 22px; padding: 18px 8px; letter-spacing: .01em; }
.deploy input:focus { background: transparent; }
.deploy .go { flex: none; padding: 16px 26px; border-radius: 12px; border: 1px solid rgba(201, 169, 107, .7); background: transparent; color: var(--gold-hi); letter-spacing: .3em; font-size: 11px; text-transform: uppercase;
  position: relative; overflow: hidden; transition: color .3s, background .3s; }
.deploy .go::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .35) 50%, transparent 70%); transform: translateX(-120%); }
.deploy .go:hover { background: linear-gradient(180deg, var(--gold-hi), var(--gold)); color: #100c05; }
.deploy .go:hover::after { transform: translateX(120%); transition: transform .9s var(--ease); }
.deploy .go[disabled] { opacity: .5; pointer-events: none; }
.deploy .under { display: flex; justify-content: space-between; gap: 16px; margin-top: 14px; font-size: 12px; color: var(--faint); flex-wrap: wrap; }
.modes { display: inline-flex; gap: 6px; }
.modes button { background: none; border: 1px solid var(--line); color: var(--faint); border-radius: 999px; padding: 3px 11px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.modes button.on { color: var(--gold-hi); border-color: rgba(201, 169, 107, .5); }

.dlist { margin-top: 60px; }
.drow { display: grid; grid-template-columns: minmax(200px, 1.3fr) minmax(220px, 2fr) 140px 150px 90px; gap: 18px; align-items: center; padding: 18px 22px; border: 1px solid var(--line); border-radius: var(--r);
  background: rgba(255, 255, 255, .015); transition: border-color .3s, background .3s, transform .3s var(--ease); margin-bottom: 10px; }
.drow:hover { border-color: rgba(201, 169, 107, .35); background: rgba(201, 169, 107, .03); transform: translateY(-1px); }
.drow .host { font-family: var(--serif); font-size: 21px; letter-spacing: .01em; }

/* ---------- deployment header ---------- */
.dhead { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 22px; flex-wrap: wrap; }
.dhead h1 { font-family: var(--serif); font-size: clamp(30px, 4vw, 44px); letter-spacing: 0; line-height: 1.05; }
.dhead .meta { margin-top: 10px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; color: var(--dim); font-size: 12px; }
.tabs { display: flex; gap: 2px; border-bottom: 1px solid var(--line); margin-bottom: 22px; overflow-x: auto; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tabs a { padding: 12px 18px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); border-bottom: 1px solid transparent; margin-bottom: -1px; white-space: nowrap; transition: color .25s; }
.tabs a:hover { color: var(--text); }
.tabs a.on { color: var(--gold-hi); border-bottom-color: var(--gold); }
.seg { display: inline-flex; border: 1px solid var(--line-2); border-radius: 10px; overflow: hidden; }
.seg button { background: none; border: 0; padding: 8px 12px; font-size: 11px; color: var(--dim); border-right: 1px solid var(--line); min-width: 34px; font-family: var(--mono); }
.seg button:last-child { border-right: 0; }
.seg button.on { background: rgba(201, 169, 107, .14); color: var(--gold-hi); }
.seg button[disabled] { opacity: .3; cursor: not-allowed; }
.lock { display: inline-flex; align-items: center; gap: 8px; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201, 169, 107, .3); border-radius: 999px; padding: 4px 12px 4px 9px; background: rgba(201, 169, 107, .05); }
.lock svg { width: 12px; height: 12px; }

/* ---------- constraint hero ---------- */
.constraint .stage { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.constraint h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 38px); line-height: 1.12; margin-bottom: 14px; letter-spacing: 0; }
.constraint p { color: var(--dim); font-size: 14px; max-width: 78ch; margin: 0 0 18px; }
.kv { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px 24px; margin: 16px 0; }
.kv .k { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); margin-bottom: 3px; }
.kv .v { font-size: 13.5px; }
.chain { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; font-size: 12px; color: var(--dim); }
.chain .arrow { color: var(--gold-lo); }

/* ---------- KPI ---------- */
.big { font-family: var(--serif); font-size: 64px; line-height: 1; letter-spacing: -.01em; }
.big.muted { color: var(--faint); }
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 18px; }
.kpis .k { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.kpis .v { font-family: var(--serif); font-size: 26px; margin-top: 2px; }
.spark { display: block; width: 100%; height: 52px; overflow: visible; }
.up { color: var(--ok); } .down { color: var(--bad); }

/* ---------- funnel / bars ---------- */
.stagebar { display: grid; grid-template-columns: 120px 1fr 110px; gap: 14px; align-items: center; padding: 9px 0; }
.stagebar + .stagebar { border-top: 1px solid var(--line); }
.stagebar .name { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); }
.stagebar .track { height: 6px; background: rgba(255, 255, 255, .05); border-radius: 3px; overflow: hidden; position: relative; }
.stagebar .track i { position: absolute; left: 0; top: 0; bottom: 0; background: linear-gradient(90deg, var(--gold-lo), var(--gold-hi)); border-radius: 3px; transition: width 1.1s var(--ease); }
.stagebar.unm .track { background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .05) 0 6px, transparent 6px 12px); }
.stagebar .val { text-align: right; font-family: var(--mono); font-size: 13px; }
.stagebar .src { grid-column: 2 / 4; font-size: 10.5px; color: var(--faint); margin-top: -4px; }
.meter { position: relative; height: 10px; border-radius: 5px; background: rgba(255, 255, 255, .05); overflow: visible; margin: 22px 0 30px; }
.meter i { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 5px; background: linear-gradient(90deg, var(--gold-lo), var(--gold-hi)); transition: width 1.2s var(--ease); min-width: 2px; }
.meter b { position: absolute; top: -5px; bottom: -5px; width: 1px; background: var(--line-2); }
.meter b span { position: absolute; top: 20px; left: -12px; font-size: 9.5px; color: var(--faint); font-weight: 400; font-family: var(--mono); }

/* ---------- tables ---------- */
table.t { width: 100%; border-collapse: collapse; }
table.t td:last-child, table.t th:last-child { padding-right: 0; }
.panel { overflow-wrap: anywhere; }
table.t th { text-align: left; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); font-weight: 500; padding: 0 12px 10px 0; }
table.t td { padding: 12px 12px 12px 0; border-top: 1px solid var(--line); vertical-align: top; font-size: 13px; }
table.t tr.click { cursor: pointer; }
table.t tr.click:hover td { background: rgba(201, 169, 107, .03); }
.score { font-family: var(--serif); font-size: 24px; line-height: 1; color: var(--gold-hi); min-width: 44px; }
.rng { position: relative; height: 18px; width: 100%; min-width: 80px; max-width: 150px; }
.rng .axis { position: absolute; left: 0; right: 0; top: 8px; height: 1px; background: var(--line-2); }
.rng .band { position: absolute; top: 5px; height: 8px; border-radius: 4px; background: rgba(201, 169, 107, .28); border: 1px solid rgba(201, 169, 107, .5); }
.rng .p50 { position: absolute; top: 2px; width: 2px; height: 14px; background: var(--gold-hi); }
.gate { display: grid; grid-template-columns: 16px 1fr; gap: 8px; font-size: 12.5px; margin: 6px 0; color: var(--dim); }
.gate.fail { color: var(--text); }
.gate .g { font-family: var(--mono); }
.expand { background: rgba(255, 255, 255, .02); border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; margin: 6px 0 14px; }

/* ---------- pulse ---------- */
.pulse { flex: 1; min-height: 0; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--s3) transparent; padding-right: 4px; }
.ev { display: grid; grid-template-columns: 62px 1fr; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line); font-size: 12.5px; }
.ev:first-child { border-top: 0; }
.ev .ts { font-family: var(--mono); font-size: 10.5px; color: var(--faint); padding-top: 2px; }
.ev .who { font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 2px; display: flex; align-items: center; gap: 7px; color: var(--dim); }
.ev .msg { color: var(--text); word-break: break-word; }
.ev.success .who { color: var(--ok); } .ev.warn .who { color: var(--warn); } .ev.error .who, .ev.critical .who { color: var(--bad); }
.ev.new { animation: flash 2.2s var(--ease); }
@keyframes flash { 0% { background: rgba(201, 169, 107, .16); } 100% { background: transparent; } }
.ev .who .dot { width: 5px; height: 5px; }
.thinking { display: flex; gap: 5px; padding: 12px 0 2px 74px; }
.thinking i { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; animation: blink 1.4s infinite; opacity: .3; }
.thinking i:nth-child(2) { animation-delay: .2s; } .thinking i:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 100% { opacity: .2; } 50% { opacity: 1; } }

/* ---------- ignorance / brain ---------- */
.ign { display: grid; grid-template-columns: 150px 1fr 70px; gap: 14px; align-items: start; padding: 12px 0; border-top: 1px solid var(--line); }
.ign:first-of-type { border-top: 0; }
.voi { height: 3px; background: rgba(255, 255, 255, .05); border-radius: 2px; margin-top: 8px; overflow: hidden; }
.voi i { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-lo), var(--gold-hi)); }
.tl { position: relative; padding-left: 20px; margin-left: 4px; border-left: 1px solid var(--line-2); }
.tl > div { position: relative; padding: 0 0 14px 6px; font-size: 12.5px; }
.tl > div::before { content: ""; position: absolute; left: -24px; top: 6px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 3px var(--bg); }
.pre { font-family: var(--mono); font-size: 11.5px; background: rgba(0, 0, 0, .35); border: 1px solid var(--line); border-radius: 10px; padding: 14px; overflow: auto; max-height: 340px; white-space: pre-wrap; word-break: break-word; color: var(--dim); }
.metric { padding: 16px 0; border-top: 1px solid var(--line); }
.metric .mv { font-family: var(--serif); font-size: 32px; line-height: 1; }
.metric .mn { font-size: 10px; letter-spacing: .1em; color: var(--faint); margin-left: 8px; font-family: var(--mono); }
.drop { border: 1px dashed var(--line-2); border-radius: 14px; padding: 34px 20px; text-align: center; color: var(--dim); transition: border-color .3s, background .3s; }
.drop:hover, .drop.over { border-color: var(--gold); background: rgba(201, 169, 107, .04); color: var(--text); }
.empty { padding: 26px 0; text-align: center; color: var(--faint); font-size: 13px; }
.toast { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 100; background: var(--s3); border: 1px solid var(--line-2); border-radius: 12px; padding: 12px 20px; font-size: 13px; box-shadow: 0 20px 50px rgba(0, 0, 0, .6); animation: rise .4s var(--ease); max-width: 90vw; }
.toast.bad { border-color: rgba(210, 103, 93, .5); }
.skeleton { background: linear-gradient(90deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .07), rgba(255, 255, 255, .03)); background-size: 200% 100%; animation: shimmer 1.6s infinite; border-radius: 8px; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ---------- responsive ---------- */
@media (max-width: 1280px) { .split { grid-template-columns: minmax(0, 1fr); } .rail { position: static; max-height: 560px; } }
@media (max-width: 980px) {
  .c8, .c7, .c6, .c5, .c4, .c3 { grid-column: span 12; }
  .top { padding: 12px 16px; gap: 6px 12px; flex-wrap: wrap; } .top .grow { display: none; } .brand { flex: 1; } .nav { order: 3; width: 100%; margin: 0 -6px; overflow-x: auto; scrollbar-width: none; } .nav a { white-space: nowrap; padding: 7px 11px; font-size: 10.5px; }
  .wrap { padding: 20px 16px 80px; }
  .drow { grid-template-columns: 1fr; gap: 10px; }
  .kpis { grid-template-columns: repeat(2, 1fr); }
  .nav { margin-left: 0; } .brand { letter-spacing: .3em; }
  .sys span.t { display: none; }
  .stagebar { grid-template-columns: 96px 1fr 84px; }
  .ign { grid-template-columns: 1fr; gap: 4px; }
  .deploy .input { flex-direction: column; align-items: stretch; padding: 8px; }
  .deploy input { font-size: 19px; } .deploy .go { width: 100%; }
  table.t.stackm thead { display: none; } table.t.stackm tr { display: block; border-top: 1px solid var(--line); padding: 12px 0; } table.t.stackm td { display: block; border: 0; padding: 3px 0; }
  .big { font-size: 52px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; } }

.attn { position: sticky; top: 55px; z-index: 25; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 9px 32px; background: linear-gradient(90deg, rgba(213,155,82,.14), rgba(213,155,82,.05)); border-bottom: 1px solid rgba(213,155,82,.35); backdrop-filter: blur(10px); font-size: 12.5px; }
.attn .grow { flex: 1; }
@media (max-width: 980px) { .attn { padding: 9px 16px; top: 96px; } }
