/* Scene-specific styles — thread, ideation, kanban, graph, artifacts. */

/* ---------------- Thread (Agents/conversation) ---------------- */
.ws-thread {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  overflow: hidden;
  position: relative;
  padding-bottom: 60px;
}
.thread-entry { margin-bottom: 18px; }
.thread-user .thread-text,
.thread-system .thread-text {
  display: block;
}
.thread-system {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px;
  background: hsla(14 100% 60% / 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
}
.thread-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
}
.thread-time {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-faint);
  margin-top: 4px;
}
.thread-system .thread-time { margin-left: auto; margin-top: 1px; }
.thread-user { padding: 4px 0; }

.ideation-card {
  background: hsl(220 10% 9%);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 12px;
}
.ideation-card .badge-mini {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 8px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.ideation-card-body { color: var(--text-primary); font-size: 12.5px; margin-bottom: 8px; }
.ideation-card-tags { display: flex; gap: 6px; }
.tag {
  display: inline-flex; align-items: center;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.tag-ideation { background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-border); }
.tag-open     { background: hsla(14 100% 60% / 0.20); color: var(--accent); border: 1px solid var(--accent-border); }

.thread-scroll-pill {
  position: absolute;
  bottom: 16px; right: 24px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px;
  background: var(--bg-deep);
  border: 1px solid var(--border-default);
  border-radius: 999px;
  font-size: 10.5px;
  color: var(--text-secondary);
}
.thread-scroll-pill svg { color: var(--text-muted); }

.agent-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 9px;
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-secondary);
}
.agent-tag .dot { width: 5px; height: 5px; border-radius: 50%; box-shadow: 0 0 6px currentColor; }

/* ---------------- Ideation ---------------- */
.ideation-feed { display: flex; flex-direction: column; gap: 14px; }
.msg { display: flex; gap: 10px; align-items: flex-start; }
.msg-avatar {
  width: 26px; height: 26px;
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  border: 1px solid;
  flex-shrink: 0;
}
.msg-body { flex: 1; min-width: 0; }
.msg-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.msg-agent { font-size: 11.5px; font-weight: 600; }
.msg-time { font-family: var(--font-mono); font-size: 10px; color: var(--text-faint); }
.msg-text { font-size: 12.5px; color: var(--text-primary); line-height: 1.5; }

.typing-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 4px;
  animation: typingDot 1.2s var(--ease-apple) infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.30s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* ---------------- Graph ---------------- */
.thread-graph { position: relative; height: 100%; }
.graph-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.graph-node {
  position: absolute;
  padding: 10px 14px;
  border: 1px solid var(--border-default);
  border-radius: 8px;
  min-width: 110px;
  text-align: center;
  font-size: 12px;
  z-index: 1;
}
.graph-node-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 4px;
  box-shadow: 0 0 8px currentColor;
}
.graph-node-label { font-weight: 600; color: var(--text-primary); }
.graph-node-role {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------------- Kanban ---------------- */
.thread-kanban { padding: 8px 16px 16px; height: 100%; }
.kb-board {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  height: 100%;
  position: relative;
}
.kb-col {
  background: hsl(220 10% 7%);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 10px;
  min-height: 320px;
}
.kb-col-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.kb-col-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-secondary); }
.kb-col-count { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); }

.kb-cards-layer {
  position: absolute;
  inset: 36px 0 0 0;
  pointer-events: none;
}
.kb-card {
  position: absolute;
  background: hsl(220 10% 10%);
  border: 1px solid var(--border-default);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 11px;
  color: var(--text-primary);
  transition: left 700ms var(--ease-apple), top 700ms var(--ease-apple), transform 400ms var(--ease-apple);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.kb-card.is-moving {
  background: hsl(220 10% 13%);
  border-color: var(--accent-border);
  box-shadow: 0 12px 28px hsla(14 100% 60% / 0.20), 0 4px 8px hsla(0 0% 0% / 0.4);
  z-index: 3;
}
.kb-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.kb-prio {
  font-family: var(--font-mono);
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1px 5px;
  border-radius: 3px;
}
.kb-prio-high { background: hsla(14 100% 60% / 0.15); color: var(--accent); }
.kb-prio-med  { background: hsla(40 100% 60% / 0.15); color: var(--status-warning); }
.kb-prio-low  { background: hsla(220 10% 30% / 0.5);  color: var(--text-muted); }
.kb-id { font-family: var(--font-mono); font-size: 9px; color: var(--text-faint); }
.kb-card-title { font-size: 11px; line-height: 1.3; margin-bottom: 6px; }
.kb-card-foot { display: flex; align-items: center; justify-content: space-between; }
.kb-agent { display: inline-flex; align-items: center; gap: 4px; font-size: 9.5px; color: var(--text-muted); }
.kb-agent-dot { width: 5px; height: 5px; border-radius: 50%; }
.kb-busy { display: inline-flex; align-items: center; gap: 4px; font-size: 9px; color: var(--accent); font-family: var(--font-mono); }
.kb-pulse { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.4); } }

/* ---------------- Artifacts (Commit & Publish) ---------------- */
.thread-artifacts { font-size: 12.5px; line-height: 1.55; }

/* ---------------- Design System ---------------- */
.thread-design {
  display: flex; flex-direction: column; gap: 20px;
  padding: 22px 28px;
}
.ds-intro p { margin: 0 0 8px; color: var(--text-secondary); font-size: 12.5px; line-height: 1.55; }
.ds-intro p strong { color: var(--text-primary); font-weight: 600; }
.ds-approved { color: var(--status-success); font-weight: 500; }

.ds-table {
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
  background: hsl(220 10% 6%);
}
.ds-row {
  display: grid;
  grid-template-columns: 110px 1fr 110px 100px;
  gap: 12px;
  padding: 10px 14px;
  font-size: 12px;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
}
.ds-row:last-child { border-bottom: none; }
.ds-row-head {
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted);
  background: hsl(220 10% 7.5%);
}
.ds-row .ds-item { color: var(--text-primary); font-weight: 500; }
.ds-row > span:first-child { color: var(--text-secondary); font-family: var(--font-mono); font-size: 10.5px; }
.ds-conf {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px;
  text-transform: capitalize;
}
.ds-conf::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: currentColor;
}
.ds-conf-high { color: var(--status-success); }
.ds-conf-low { color: var(--status-warning); }
.ds-status {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--status-success);
  font-size: 11px;
}

.ds-soon {
  margin-top: 8px;
  padding: 22px 24px;
  border: 1px solid var(--accent-border);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-soft), transparent 70%);
}
.ds-soon-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.ds-soon h3 { font-size: 16px; font-weight: 600; color: var(--text-primary); margin: 0 0 8px; line-height: 1.3; }
.ds-soon p  { font-size: 12.5px; color: var(--text-secondary); margin: 0; line-height: 1.55; }
.art-head h3 { font-size: 14px; font-weight: 600; color: var(--text-primary); margin: 0 0 8px; }
.art-head p  { color: var(--text-secondary); margin: 0 0 16px; }
.art-section { font-size: 12.5px; font-weight: 600; color: var(--text-primary); margin: 14px 0 6px; }
.art-bullet  { padding: 4px 0 4px 8px; color: var(--text-secondary); }
.art-code {
  font-family: var(--font-mono);
  font-size: 11px;
  background: hsl(220 10% 5%);
  border: 1px solid var(--border-subtle);
  border-radius: 5px;
  padding: 8px 10px;
  margin: 4px 0;
  color: var(--text-primary);
  white-space: pre-wrap;
  word-break: break-word;
}

/* Right panel cards */
.rp-card {
  background: hsl(220 10% 8%);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
}
.rp-row {
  display: flex; flex-direction: column; gap: 2px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.rp-row:last-child { border-bottom: 0; }
.rp-key { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.rp-val { font-size: 11px; color: var(--text-primary); word-break: break-all; }
.rp-warn {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  background: hsla(40 100% 60% / 0.08);
  border: 1px solid hsla(40 100% 60% / 0.25);
  border-radius: 6px;
  font-size: 10.5px;
  color: var(--status-warning);
  margin-bottom: 12px;
}
.rp-warn svg { color: var(--status-warning); flex-shrink: 0; }
.rp-section-title { font-size: 12px; font-weight: 600; color: var(--text-primary); }
.rp-section-sub { font-size: 10.5px; color: var(--text-muted); margin: 4px 0 10px; }
.rp-actions { display: flex; flex-direction: column; gap: 6px; }
.rp-btn {
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid var(--border-default);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
}
.rp-btn-primary { background: var(--accent); color: var(--bg-deep); border-color: var(--accent); }
.rp-btn-ghost   { background: transparent; }


/* ============================================================
   LAUNCHER (empty state — "Start your feature")
   ============================================================ */
.launcher-stage {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: stretch; justify-content: center;
  padding: 40px 80px 60px;
  position: relative;
  min-height: 0;
  overflow: hidden;
}
.launcher-center { text-align: center; max-width: 720px; margin: 0 auto 28px; align-self: center; }
.launcher-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 9.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 16px;
}
.launcher-badge svg { color: var(--accent); }
.launcher-title {
  font-size: 36px; font-weight: 600; line-height: 1.1;
  color: var(--text-primary);
  margin: 0 0 10px;
  margin-left: 100px;
  letter-spacing: -0.02em;
  text-align: center;
}
.launcher-title .accent {
  color: var(--accent);
  display: inline-block;
  min-width: 10ch;
  text-align: left;
  vertical-align: baseline;
}
.launcher-title .caret { display: inline-block; margin-left: 1px; transform: translateY(-2px); }
.launcher-sub {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin: 0;
  text-align: center;
}

.launcher-composer {
  margin: 0 auto;
  width: min(720px, 100%);
  background: hsl(220 10% 8.5%);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  box-shadow: 0 30px 60px -30px rgb(0 0 0 / 0.55);
  overflow: hidden;
}
.launcher-textarea {
  padding: 16px 18px 8px;
  color: var(--text-faint);
  font-size: 13px;
  min-height: 60px;
}
.launcher-textarea-meta {
  padding: 0 18px 10px;
  font-size: 10.5px;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}
.launcher-textarea-meta .key {
  font-family: var(--font-mono);
  font-size: 9.5px;
  background: hsl(220 10% 12%);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 1px 5px;
  color: var(--text-secondary);
}
.launcher-textarea-meta .dot-sep { color: var(--text-faint); }

.launcher-controls {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid var(--border-subtle);
  background: hsl(220 10% 7.5%);
}
.launcher-plus {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  background: hsl(220 10% 11%);
  border: 1px solid var(--border-default);
  border-radius: 6px;
  color: var(--text-secondary);
  cursor: pointer;
}
.launcher-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 9px;
  background: hsl(220 10% 11%);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-size: 10.5px;
}
.launcher-pill .key {
  font-family: var(--font-mono);
  font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
}
.launcher-pill .val {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--text-primary);
  font-weight: 500;
}
.launcher-pill .val svg { color: var(--text-secondary); }
.launcher-pill .chev { color: var(--text-muted); }
.launcher-controls-spacer { flex: 1; }
.launcher-start {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: var(--accent);
  color: var(--bg-deep);
  font-size: 11.5px; font-weight: 600;
  border: 1px solid var(--accent);
  border-radius: 6px;
  cursor: pointer;
}

.launcher-plus-wrap {
  position: relative;
  display: inline-flex;
}

.launcher-dropdown {
  position: absolute;
  left: 0;
  bottom: calc(100% + 8px);
  width: 280px;
  background: hsl(220 10% 9%);
  border: 1px solid var(--border-default);
  border-radius: 10px;
  box-shadow: 0 24px 48px -12px rgb(0 0 0 / 0.6);
  padding: 6px;
  font-size: 11.5px;
  z-index: 5;
  transform-origin: bottom left;
}
.ld-row {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 9px;
  border-radius: 6px;
  color: var(--text-primary);
}
.ld-row svg { color: var(--text-muted); }
.ld-row-static:hover { background: hsl(220 10% 11%); }
.ld-section {
  font-family: var(--font-mono);
  font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 9px 4px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 4px;
}
.ld-mode {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 8px 9px;
  border-radius: 6px;
}
.ld-mode.is-active { background: var(--accent-soft); color: var(--text-primary); }
.ld-mode.is-active svg { color: var(--accent); margin-top: 2px; }
.ld-mode-spacer { width: 11px; flex-shrink: 0; }
.ld-mode-label { font-size: 12px; font-weight: 600; color: var(--text-primary); }
.ld-mode-sub   { font-size: 10.5px; color: var(--text-muted); margin-top: 1px; }

.launcher-foot {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-base);
  font-size: 10.5px;
  color: var(--text-secondary);
}
.launcher-foot svg { color: var(--text-muted); }
.launcher-foot-item { display: inline-flex; align-items: center; gap: 6px; }
.launcher-foot-item .key {
  font-family: var(--font-mono);
  font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
}
.launcher-foot-item strong { font-weight: 500; color: var(--text-primary); }
.launcher-foot-item .chev { color: var(--text-faint); }
.launcher-foot-spacer { flex: 1; }


/* ============================================================
   NETWORK (multi-agent task network)
   ============================================================ */
.thread-network { padding: 14px 16px; height: 100%; overflow: hidden; }
.net-stage {
  position: relative;
  background: hsl(220 10% 7%);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  height: 100%;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.net-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 11.5px;
}
.net-title { color: var(--text-primary); font-weight: 600; }
.net-actions { display: flex; gap: 8px; color: var(--text-muted); }
.net-canvas {
  position: relative;
  flex: 1;
  margin: 0 auto;
  width: 280px;
  padding: 0;
}
.net-arrows {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.net-card {
  position: absolute;
  left: 16px; right: 16px;
  background: hsl(220 10% 10%);
  border: 1px solid var(--border-default);
  border-radius: 8px;
  padding: 10px 12px;
  box-shadow: 0 8px 16px -8px rgb(0 0 0 / 0.5);
}
.net-card-small { padding: 8px 12px; }
.net-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; margin-bottom: 6px; }
.net-card-title { font-size: 11.5px; font-weight: 600; color: var(--text-primary); flex: 1; line-height: 1.3; }
.net-card-pills { display: flex; gap: 4px; flex-shrink: 0; }
.net-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px;
  border-radius: 4px;
  font-size: 9px; font-weight: 700;
  font-family: var(--font-mono);
}
.net-pill-ok   { background: hsla(140 60% 45% / 0.18); color: hsl(140 60% 60%); }
.net-pill-warn { background: hsla(40 100% 55% / 0.18); color: hsl(40 100% 65%); }
.net-pill-busy { background: var(--accent-soft); color: var(--accent); }
.net-pill-busy .dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; animation: pulse 1.4s ease-in-out infinite; }
.net-card-body { font-size: 10.5px; color: var(--text-secondary); line-height: 1.45; }
.net-card-body strong { color: var(--text-primary); font-weight: 600; }
.net-gauge { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.net-gauge-label { font-family: var(--font-mono); font-size: 9px; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.net-gauge-track { flex: 1; height: 4px; background: hsl(220 10% 15%); border-radius: 999px; overflow: hidden; }
.net-gauge-fill  { display: block; height: 100%; background: var(--accent); border-radius: 999px; }
.net-gauge-val   { font-family: var(--font-mono); font-size: 9.5px; color: var(--text-primary); font-weight: 600; }
.net-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px;
  border-top: 1px solid var(--border-subtle);
  font-size: 10.5px;
}
.net-foot-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 8px;
  background: hsl(220 10% 10%);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  color: var(--text-secondary);
}
.net-foot-pill svg { color: var(--text-muted); }
.net-foot-pill .chev { color: var(--text-faint); }
.net-zoom { display: flex; gap: 2px; }
.net-zoom span {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  background: hsl(220 10% 10%);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
}


/* ============================================================
   TERMINAL (slide-up panel)
   ============================================================ */
.thread-terminal-host {
  position: relative;
  padding: 14px 24px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.term-thread-fade { opacity: 0.55; filter: saturate(0.8); }
.term-thread-fade .art-link { color: var(--accent); text-decoration: underline; text-decoration-color: var(--accent-border); }
.term-thread-fade code { background: hsl(220 10% 11%); padding: 1px 5px; border-radius: 3px; font-family: var(--font-mono); font-size: 11px; color: var(--text-primary); }

.term-panel {
  position: absolute;
  left: 8px; right: 8px; bottom: 8px;
  height: 58%;
  background: hsl(220 10% 5%);
  border: 1px solid var(--border-default);
  border-radius: 10px;
  box-shadow: 0 -16px 32px -16px rgb(0 0 0 / 0.6);
  display: flex; flex-direction: column;
  overflow: hidden;
  z-index: 5;
}
.term-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px;
  background: hsl(220 10% 7.5%);
  border-bottom: 1px solid var(--border-subtle);
  flex-shrink: 0;
}
.term-panel-title {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px;
  color: var(--text-primary);
  font-weight: 600;
  min-width: 0;
}
.term-panel-title svg { color: var(--text-muted); flex-shrink: 0; }
.term-running { color: var(--accent); font-weight: 500; }
.term-agent-id code {
  font-family: var(--font-mono);
  font-size: 10px;
  background: hsl(220 10% 11%);
  border: 1px solid var(--border-subtle);
  padding: 1px 5px;
  border-radius: 3px;
  color: var(--text-secondary);
}
.term-worktree {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--text-faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.term-panel-actions { display: flex; gap: 8px; color: var(--text-muted); flex-shrink: 0; }

.term-panel-body {
  flex: 1;
  overflow: hidden;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.6;
  color: hsl(220 10% 75%);
  background: hsl(220 12% 4%);
}
.term-line {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.term-prompt   { color: var(--accent); margin-right: 6px; }
.term-line .term-text { white-space: nowrap; }
.term-prompt-line .term-text { color: hsl(220 10% 65%); }
.term-info .term-text  { color: var(--text-muted); }
.term-branch .term-text { color: hsl(140 60% 65%); }
.term-cursor { display: inline-block; color: var(--accent); animation: termblink 0.8s steps(2) infinite; }
@keyframes termblink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ============================================================
   LAUNCHER v27 — Start new (preset chips · config row · PR toggle)
   ============================================================ */
.launcher-stage-v27 {
  padding: 32px 64px 16px;
  position: relative;
  display: flex; flex-direction: column;
  gap: 18px;
  height: 100%;
  overflow: hidden;
}
.launcher-title-v27 {
  font-size: 28px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 6px;
  text-align: center;
}
.launcher-stage-v27 .launcher-sub { font-size: 13px; }

.launcher-composer-v27 {
  width: min(620px, 100%);
  margin: 0 auto;
  border-radius: 14px;
  border: 1px solid var(--accent-border);
  background: hsl(220 10% 8.5%);
  box-shadow: 0 0 0 4px hsla(14 100% 60% / 0.04), 0 24px 48px -16px rgb(0 0 0 / 0.55);
  overflow: hidden;
}
.launcher-presets {
  display: flex; gap: 6px;
  padding: 12px 14px 4px;
  flex-wrap: wrap;
}
.launcher-preset {
  padding: 5px 11px;
  font-size: 11.5px;
  font-weight: 500;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  cursor: pointer;
  transition: background 200ms var(--ease-apple), color 200ms var(--ease-apple), border-color 200ms var(--ease-apple);
}
.launcher-preset:hover { color: var(--text-primary); border-color: var(--border-default); }
.launcher-preset.is-active {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--accent-border);
}
.launcher-textarea-v27 {
  padding: 10px 16px 14px;
  color: var(--text-secondary);
  font-size: 12.5px;
  line-height: 1.55;
  min-height: 56px;
}
.launcher-config {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  border-top: 1px solid var(--border-subtle);
}
.launcher-config-cell {
  display: flex; flex-direction: column; gap: 3px;
  padding: 9px 12px;
  background: hsl(220 10% 8.5%);
  min-width: 0;
}
.launcher-config-key {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono);
  font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
}
.launcher-config-val {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.launcher-config-val .chev { color: var(--text-muted); flex-shrink: 0; }

.launcher-foot-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  background: hsl(220 10% 7.5%);
  border-top: 1px solid var(--border-subtle);
}
.launcher-attach {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  background: hsl(220 10% 11%);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  color: var(--text-muted);
}
.pr-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 10px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  font-size: 11px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 200ms var(--ease-apple), border-color 200ms var(--ease-apple), color 200ms var(--ease-apple);
}
.pr-toggle.is-on {
  background: var(--accent-soft);
  border-color: var(--accent-border);
  color: var(--text-primary);
}
.pr-toggle-track {
  position: relative;
  width: 22px; height: 12px;
  background: hsl(220 10% 22%);
  border-radius: 999px;
  transition: background 200ms var(--ease-apple);
}
.pr-toggle.is-on .pr-toggle-track { background: var(--accent); }
.pr-toggle-thumb {
  position: absolute; top: 2px; left: 2px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-primary);
  transition: transform 200ms var(--ease-apple), background 200ms var(--ease-apple);
}
.pr-toggle.is-on .pr-toggle-thumb {
  background: var(--bg-deep);
  transform: translateX(10px);
}
.pr-toggle-info { color: var(--text-faint); }
.launcher-foot-spacer { flex: 1; }
.launcher-foot-meta {
  font-size: 10.5px;
  color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 5px;
}
.launcher-foot-meta .key {
  font-family: var(--font-mono);
  font-size: 9px;
  background: hsl(220 10% 12%);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 1px 5px;
  color: var(--text-secondary);
}
.launcher-start-v27 {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px 6px 14px;
  background: var(--accent);
  color: var(--bg-deep);
  font-size: 11.5px; font-weight: 600;
  border: 1px solid var(--accent);
  border-radius: 6px;
  cursor: pointer;
}
.launcher-start-v27 .kbd {
  font-family: var(--font-mono);
  font-size: 9.5px;
  background: hsla(0 0% 0% / 0.18);
  border-radius: 3px;
  padding: 1px 5px;
}

.launcher-stripe {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border-top: 1px solid var(--border-subtle);
  font-size: 11px;
  color: var(--text-secondary);
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: var(--bg-base);
}
.launcher-stripe-item .key {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 5px;
}
.launcher-stripe-item strong { font-weight: 500; color: var(--text-primary); }
.launcher-stripe .dot-sep { color: var(--text-faint); }
.launcher-stripe-ok { color: var(--status-success); }
.launcher-stripe-ok .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--status-success);
  box-shadow: 0 0 6px currentColor;
  margin-right: 5px;
}

/* ============================================================
   KANBAN v29a — Tasks board with execution bar
   ============================================================ */
.ws-main-kanban {
  display: flex; flex-direction: column;
  height: 100%;
  background: hsl(220 10% 6.5%);
  overflow: hidden;
}
.kb-toolbar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-subtle);
  background: hsl(220 10% 8%);
  flex-shrink: 0;
}
.kb-search {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px;
  background: hsl(220 10% 10%);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-size: 11px;
  color: var(--text-muted);
  width: 200px;
}
.kb-tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  font-size: 11px;
  color: var(--text-secondary);
}
.kb-tab.is-active {
  background: var(--accent-soft);
  border-color: var(--accent-border);
  color: var(--text-primary);
}
.kb-tab.is-active svg { color: var(--accent); }
.kb-tab-count {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--text-muted);
}
.kb-tab .num {
  font-family: var(--font-mono);
  font-size: 9.5px;
  background: hsl(220 10% 11%);
  padding: 1px 6px;
  border-radius: 999px;
  color: var(--text-muted);
}
.kb-toolbar-spacer { flex: 1; }
.kb-icon-btn {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  background: hsl(220 10% 10%);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  color: var(--text-muted);
}

.kb-board-v29 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border-subtle);
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.kb-col-v29 {
  background: hsl(220 10% 7.5%);
  padding: 12px 10px 10px;
  display: flex; flex-direction: column;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
}
.kb-col-head-v29 {
  display: flex; align-items: center; gap: 8px;
  padding: 0 4px 6px;
}
.kb-col-head-v29 .kb-col-title {
  font-family: var(--font-mono);
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-secondary);
}
.kb-col-head-v29 .kb-col-count {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--text-muted);
}
.kb-col-empty {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  padding: 24px 0;
  font-size: 10.5px;
  color: var(--text-muted);
  border: 1px dashed var(--border-subtle);
  border-radius: 6px;
  background: hsla(220 10% 12% / 0.3);
}
.kb-col-empty svg { color: var(--text-faint); }
.kb-add-task {
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  padding: 6px 8px;
  background: transparent;
  border: 1px dashed var(--border-subtle);
  border-radius: 6px;
  font-size: 10.5px;
  color: var(--text-muted);
  cursor: pointer;
}
.kb-col-done { background: hsl(220 10% 8.5%); }
.kb-group { display: flex; flex-direction: column; gap: 6px; }
.kb-group-head {
  display: flex; align-items: center; gap: 5px;
  padding: 4px 4px;
}
.kb-group-head svg { color: var(--text-muted); }
.kb-group-label {
  font-size: 10.5px;
  color: var(--text-secondary);
  font-weight: 500;
}
.kb-group-escalated { color: var(--accent); }
.kb-group-num {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--text-muted);
}
.kb-card-v29 {
  position: relative;
  background: hsl(220 10% 11%);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 9px 10px;
}
.kb-card-escalated {
  background: hsla(14 100% 60% / 0.06);
  border-color: var(--accent-border);
}
.kb-card-v29-title {
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.35;
}
.kb-card-check { color: var(--status-success); flex-shrink: 0; }
.kb-card-v29-body {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
}
.kb-card-rating { display: flex; flex-direction: column; gap: 4px; margin-bottom: 5px; }
.kb-stars { display: inline-flex; gap: 2px; }
.kb-star {
  width: 8px; height: 8px;
  border-radius: 1px;
  background: hsl(220 10% 18%);
}
.kb-star-on { background: var(--status-success); }
.kb-card-progress { display: flex; align-items: center; gap: 6px; }
.kb-card-progress-bar {
  flex: 1;
  height: 3px;
  background: hsl(220 10% 16%);
  border-radius: 999px;
  overflow: hidden;
}
.kb-card-progress-fill {
  display: block; height: 100%;
  background: var(--status-success);
}
.kb-card-progress-pct {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--status-success);
}
.kb-card-meta-row { display: flex; align-items: center; gap: 6px; }
.kb-tag {
  display: inline-flex; align-items: center;
  padding: 1px 6px;
  font-size: 9.5px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  border-radius: 3px;
  background: hsl(220 10% 14%);
  color: var(--text-secondary);
}
.kb-tag-warn {
  background: hsla(40 100% 60% / 0.12);
  color: var(--status-warning);
}
.kb-tag-mini {
  font-size: 9px;
  background: hsl(220 10% 14%);
  color: var(--text-muted);
}

.exec-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border-top: 1px solid var(--border-subtle);
  background: hsl(220 10% 7.5%);
  font-size: 11px;
  color: var(--text-secondary);
  flex-shrink: 0;
}
.exec-stat { display: inline-flex; align-items: center; gap: 5px; }
.exec-stat strong { color: var(--text-primary); font-weight: 600; }
.exec-stat .dot.dot-accent {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px currentColor;
}
.exec-stat-warn { color: var(--accent); }
.exec-stat-warn strong { color: var(--accent); }
.exec-bar .dot-sep { color: var(--text-faint); }
.exec-bar-spacer { flex: 1; }
.exec-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 10px;
  background: hsl(220 10% 11%);
  border: 1px solid var(--border-subtle);
  border-radius: 5px;
  font-size: 11px;
  color: var(--text-secondary);
  cursor: pointer;
}
.exec-btn-stop { color: var(--text-muted); }

/* ============================================================
   SETTINGS v31 — Modal sheet with sidebar nav + Ideation Agents
   ============================================================ */
/* Modal root sits over the entire macwin body — covers everything below the
   chrome row. Rail/sidebar/main pane stay rendered behind, dimmed by the
   backdrop. */
.settings-modal-root {
  position: absolute;
  /* chrome row is ~38px (10px padding + content). Pin under it. */
  top: 38px; left: 0; right: 0; bottom: 0;
  z-index: 5;
  display: flex;
  overflow: hidden;
}
.settings-modal-backdrop {
  position: absolute; inset: 0;
  background: rgb(0 0 0 / 0.55);
  backdrop-filter: blur(2px);
}
.settings-sheet {
  position: relative;
  margin: 16px auto;
  width: min(1080px, calc(100% - 80px));
  max-height: calc(100% - 32px);
  background: hsl(220 10% 9%);
  border: 1px solid var(--border-default);
  border-radius: 12px;
  box-shadow: 0 24px 60px -12px rgb(0 0 0 / 0.7);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.settings-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-subtle);
  flex-shrink: 0;
}
.settings-breadcrumb {
  font-size: 11.5px;
  color: var(--text-secondary);
}
.settings-breadcrumb .chev { color: var(--text-muted); margin: 0 6px; }
.settings-close {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 5px;
  color: var(--text-muted);
  cursor: pointer;
}
.settings-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  flex: 1;
  min-height: 0;
}
.settings-nav {
  border-right: 1px solid var(--border-subtle);
  padding: 14px 8px;
  overflow-y: auto;
  font-size: 11.5px;
}
.settings-nav-group { margin-bottom: 14px; }
.settings-nav-label {
  font-family: var(--font-mono);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 8px 4px;
}
.settings-nav-item {
  padding: 6px 10px;
  border-radius: 5px;
  color: var(--text-secondary);
  cursor: pointer;
}
.settings-nav-item:hover { background: hsl(220 10% 11%); color: var(--text-primary); }
.settings-nav-item.is-active {
  background: hsl(220 10% 12%);
  color: var(--text-primary);
  font-weight: 500;
}
.settings-main {
  padding: 16px 18px 18px;
  overflow-y: auto;
  display: flex; flex-direction: column;
  gap: 12px;
}
.settings-main-header {
  display: flex; align-items: flex-start; gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}
.settings-main-icon {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: hsl(220 10% 12%);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-secondary);
  flex-shrink: 0;
}
.settings-main-title-block { min-width: 0; }
.settings-main-title {
  font-size: 14px; font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.settings-main-sub {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
.settings-tabs {
  display: flex; align-items: center; gap: 14px;
  font-size: 11.5px;
}
.settings-tab {
  padding: 4px 0;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.settings-tab.is-active {
  color: var(--text-primary);
  border-bottom-color: var(--accent);
  font-weight: 500;
}
.settings-tab-spacer { flex: 1; }
.settings-tab-meta {
  font-size: 10.5px;
  color: var(--text-muted);
}
.settings-tab-collapse {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10.5px;
  color: var(--text-muted);
  cursor: pointer;
}

.settings-status-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.settings-status-card {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: hsl(220 10% 11%);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
}
.status-tick, .status-lock {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-tick { background: hsla(140 60% 45% / 0.15); color: var(--status-success); }
.status-lock { background: hsl(220 10% 14%); color: var(--text-muted); }
.settings-status-title {
  font-size: 11.5px; font-weight: 500;
  color: var(--text-primary);
}
.settings-status-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
}

.settings-callout {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 9px 12px;
  background: hsla(40 100% 60% / 0.06);
  border: 1px solid hsla(40 100% 60% / 0.20);
  border-radius: 6px;
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.settings-callout svg { color: var(--status-warning); flex-shrink: 0; margin-top: 2px; }
.settings-callout strong { color: var(--text-primary); font-weight: 600; }

.settings-agents { display: flex; flex-direction: column; gap: 10px; }
.settings-agent-card {
  background: hsl(220 10% 10%);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 12px 14px;
}
.settings-agent-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  margin-bottom: 12px;
}
.settings-agent-title-block { min-width: 0; }
.settings-agent-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.settings-agent-role {
  font-family: var(--font-mono);
  font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
}
.role-lead       { background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-border); }
.role-verifier   { background: hsla(220 60% 60% / 0.10); color: hsl(220 60% 70%); border: 1px solid hsla(220 60% 60% / 0.25); }
.role-specialists{ background: hsl(220 10% 14%); color: var(--text-secondary); border: 1px solid var(--border-default); }
.settings-agent-sub {
  font-size: 11px;
  color: var(--text-muted);
}
.settings-agent-provider {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: hsl(220 10% 12%);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-size: 11px;
  color: var(--text-primary);
  flex-shrink: 0;
}
.settings-agent-provider svg { color: var(--text-muted); }

.settings-agent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.settings-field {
  display: flex; flex-direction: column; gap: 4px;
}
.settings-field-key {
  font-size: 10.5px;
  color: var(--text-muted);
}
.settings-field-val {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px;
  background: hsl(220 10% 8.5%);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-size: 11.5px;
  color: var(--text-primary);
}
.settings-field-val .chev,
.settings-field-locked svg { color: var(--text-muted); }
.settings-field-locked {
  background: hsl(220 10% 7.5%);
  color: var(--text-secondary);
}
.locked-tag {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 8px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1px 5px;
  border-radius: 3px;
  background: hsl(220 10% 12%);
  color: var(--text-muted);
}

/* Reduced motion — kill the decorative loops (typing dots, pulse glow,
   terminal cursor blink) and freeze tween transitions inside the scenes. */
@media (prefers-reduced-motion: reduce) {
  .typing-dot,
  .kb-pulse,
  .net-pill-busy .dot,
  .term-cursor { animation: none !important; }
}
