/* Module UI previews — styles ported from landing v1, scoped under .v1p */
.v1p {
  --app-surface: #0f1419;
  --app-surface-elevated: #1a2129;
  --app-surface-hover: #232d38;
  --app-border: rgba(255, 255, 255, 0.06);
  --app-border-strong: rgba(255, 255, 255, 0.1);
  --app-text: #e8edf3;
  --app-text-muted: #8b98a8;
  --app-accent: #2aabee;
  --app-accent-soft: rgba(42, 171, 238, 0.15);
  --app-success: #3dd68c;
  --app-danger: #f2555a;
  --app-warning: #fcd34d;
  --app-primary: #60a5fa;
  --app-primary-soft: rgba(96, 165, 250, 0.16);
  --app-control-bg: #232d38;
  --app-control-border: rgba(255, 255, 255, 0.12);
  --app-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --app-border-solid: rgba(255, 255, 255, 0.07);
  --secondary: #00a5b4;
  --primary: #ed1c24;
  color: var(--app-text);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, #161d26, #0f1419);
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
  overflow: hidden;
  min-height: 0;
}
.v1p *, .v1p *::before, .v1p *::after { box-sizing: border-box; }
.v1p button { font: inherit; color: inherit; background: none; border: 0; padding: 0; text-align: left; cursor: default; }
.mod-show__preview .v1p { width: 100%; }


/* extracted 313-352 */

.v1p .page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px 8px;
  flex: 0 0 auto;
}
.v1p .eyebrow {
  margin: 0 0 4px;
  color: var(--app-accent);
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 800;
  text-transform: uppercase;
}
.v1p .page-head h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.v1p .page-head p { margin: 4px 0 0; color: var(--app-text-muted); font-size: 13px; }
.v1p .stats {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  flex: 0 0 auto;
}
.v1p .stat {
  padding: 6px 10px;
  border: 1px solid var(--app-border-solid);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  color: var(--app-text-muted);
  white-space: nowrap;
}
.v1p .stat strong { color: var(--app-text); font-weight: 800; }


/* extracted 353-631 */

.v1p .kanban {
  display: flex;
  gap: 10px;
  padding: 8px 16px 16px;
  overflow: hidden;
  flex: 1;
  min-height: 0;
  align-items: stretch;
}
.v1p .col {
  --column-accent: #6b7280;
  flex: 1 1 0;
  min-width: 0;
  border: 1px solid var(--app-border);
  border-top: 4px solid var(--column-accent);
  border-radius: 24px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--app-surface-elevated) 92%, white), var(--app-surface-elevated));
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.v1p .col--collapsed {
  flex: 0 0 46px;
  min-width: 46px;
  max-width: 46px;
  width: 46px;
}
.v1p .col__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 12px 12px 10px;
  border-bottom: 1px solid var(--app-border);
  min-height: 48px;
  box-sizing: border-box;
}
.v1p .col--collapsed .col__head {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex: 1 1 auto;
  min-height: 0;
  padding: 8px 6px 10px;
  border-bottom: 0;
}
.v1p .col__name {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 14px;
  line-height: 1.2;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v1p .col--collapsed .col__name {
  flex: 1 1 auto;
  min-height: 0;
  max-height: 220px;
  font-size: 12px;
  line-height: 1.25;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
  white-space: normal;
  text-overflow: clip;
  overflow: hidden;
}
.v1p .col__count {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  min-width: 28px;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--app-border);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--app-text-muted);
  background: color-mix(in srgb, var(--app-surface-elevated) 88%, white);
  box-sizing: border-box;
}
.v1p .col--collapsed .col__count {
  width: 26px;
  height: 26px;
  min-width: 26px;
  flex-basis: 26px;
  font-size: 11px;
}
.v1p .col__cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  overflow-x: hidden;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}
.v1p .col--collapsed .col__cards { display: none; }

.v1p .kanban-card {
  --card-accent: var(--column-accent, #6b7280);
  position: relative;
  padding: 10px 11px 11px;
  border-radius: 16px;
  border: 1px solid var(--app-border);
  background: var(--app-surface-elevated);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  min-width: 0;
  flex: 0 0 auto;
}
.v1p .kanban-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--card-accent) 0%, transparent 92%);
}
.v1p .kanban-card[data-task-type="feature"] { --card-accent: #2563eb; }
.v1p .kanban-card[data-task-type="improvement"] { --card-accent: #0891b2; }
.v1p .kanban-card[data-task-type="optimization"] { --card-accent: #0f766e; }
.v1p .kanban-card[data-task-type="research"] { --card-accent: #7c3aed; }
.v1p .kanban-card[data-task-type="bug"] { --card-accent: #dc2626; }
.v1p .kanban-card[data-task-type="other"] { --card-accent: #64748b; }
.v1p .kanban-card--in-report {
  border-color: var(--app-accent);
  box-shadow: inset 0 0 0 1px rgba(42, 171, 238, 0.22), 0 14px 28px rgba(0, 0, 0, 0.22);
}
.v1p .kanban-card.is-overdue {
  border-color: color-mix(in srgb, var(--app-danger) 35%, var(--app-border));
}
.v1p .kanban-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}
.v1p .kanban-card__title {
  display: block;
  min-width: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v1p .kanban-card__meta {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: center;
  min-height: 24px;
  overflow: hidden;
}
.v1p .kanban-card__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--app-border-solid);
  background: rgba(255, 255, 255, 0.04);
  color: var(--app-text-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}
.v1p .kanban-card__chip--gid { font-weight: 800; }
.v1p .kanban-card__chip--icon {
  padding: 1px 5px;
  min-width: 22px;
  min-height: 22px;
  font-size: 0.9rem;
  font-weight: 500;
}
.v1p .kanban-card__chip--prio {
  padding: 1px 5px;
  min-width: 22px;
  min-height: 22px;
  border-color: transparent;
  color: #fff;
}
.v1p .kanban-card__chip--due { font-variant-numeric: tabular-nums; }
.v1p .kanban-card__chip--overdue {
  border-color: color-mix(in srgb, var(--app-danger) 45%, var(--app-border-solid));
  background: color-mix(in srgb, var(--app-danger) 12%, transparent);
  color: var(--app-danger);
}
.v1p .kanban-card__chip--waiting {
  border-color: color-mix(in srgb, var(--app-warning) 45%, var(--app-border-solid));
  background: color-mix(in srgb, var(--app-warning) 12%, transparent);
  color: var(--app-warning);
}
.v1p .kanban-card__executor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(42, 171, 238, 0.35);
  background: var(--app-accent-soft);
  color: var(--app-accent);
  font-size: 9px;
  font-weight: 800;
  flex: 0 0 22px;
}
.v1p .prio-ico {
  display: inline-flex;
  gap: 1.5px;
  align-items: flex-end;
  height: 12px;
  width: 14px;
}
.v1p .prio-ico i {
  display: block;
  width: 3px;
  border-radius: 0.5px;
  background: currentColor;
}
.v1p .prio-ico i:nth-child(1) { height: 5px; }
.v1p .prio-ico i:nth-child(2) { height: 8px; }
.v1p .prio-ico i:nth-child(3) { height: 12px; }
.v1p .kanban-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.v1p .kanban-card__report-btn,
.v1p .kanban-card__move-btn {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--app-control-border);
  border-radius: 999px;
  background: var(--app-surface-elevated);
  color: var(--app-text-muted);
  font-size: 13px;
  line-height: 1;
  flex: 0 0 26px;
}
.v1p .kanban-card__report-btn.is-active {
  border-color: var(--app-accent);
  background: rgba(42, 171, 238, 0.16);
  color: var(--app-accent);
}

.v1p .chips { display: flex; flex-wrap: wrap; gap: 6px; }
.v1p .chip {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--app-border-strong);
  color: var(--app-text-muted);
  background: rgba(255, 255, 255, 0.03);
}
.v1p .chip--bug { color: #fecaca; border-color: rgba(237, 28, 36, 0.35); background: rgba(237, 28, 36, 0.12); }
.v1p .chip--ok { color: var(--app-success); border-color: rgba(61, 214, 140, 0.35); }


/* extracted 1022-1455 */

.v1p .mrw {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1.08fr);
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px 8px;
  padding: 4px 16px 16px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.v1p .mrw__week {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a2129;
}
.v1p .mrw__week > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 28px;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--app-text-muted);
}
.v1p .mrw__week > span.is-on {
  background: color-mix(in srgb, #00a5b4 18%, #121820);
  color: #5eead4;
  box-shadow: 0 0 0 1px color-mix(in srgb, #00a5b4 40%, transparent);
}
.v1p .mrw__now {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #fecaca;
}
.v1p .mrw__now i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ed1c24;
  box-shadow: 0 0 0 0 rgba(237, 28, 36, 0.7);
  animation: mrw-live 1.6s ease-out infinite;
}
.v1p .mrw-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.v1p .mrw-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ed1c24;
  animation: mrw-live 1.6s ease-out infinite;
}
.v1p .mrw__pane {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a2129;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  overflow: auto;
}
.v1p .hero-pane#hero-meetreport.is-on .mrw__pane:first-of-type {
  animation: mrw-pane-in 0.55s ease both;
}
.v1p .hero-pane#hero-meetreport.is-on .mrw__pane--report {
  animation: mrw-pane-in 0.55s ease 0.12s both;
}
.v1p .mrw__pane--report {
  background:
    linear-gradient(180deg, rgba(42, 171, 238, 0.08), transparent 28%),
    #1a2129;
}
.v1p .mrw__bridge {
  position: relative;
  align-self: stretch;
  width: 18px;
}
.v1p .mrw__spark {
  position: absolute;
  left: 50%;
  top: 18%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: #7dd3fc;
  box-shadow: 0 0 12px #2aabee, 0 0 2px #fff;
  opacity: 0;
}
.hero-pane#hero-meetreport.is-on .mrw__spark,
.v1p .hero-pane#hero-meetreport.is-xfer .mrw__spark {
  animation: mrw-spark 3.2s ease-in-out infinite;
}
.v1p .mrw__bridge::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12%;
  bottom: 12%;
  width: 2px;
  margin-left: -1px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(42, 171, 238, 0.7), transparent);
  opacity: 0.55;
}
.v1p .mrw__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 2px 2px;
}
.v1p .mrw__toolbar strong {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.v1p .mrw__toolbar > span {
  font-size: 11px;
  font-weight: 700;
  color: var(--app-text-muted);
}
.v1p .mrw__badge,
.v1p .mrw__tpl span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #121820;
  color: var(--app-text-muted);
  font-size: 11px;
  font-weight: 800;
}
.v1p .mrw__tpl { display: flex; gap: 5px; }
.v1p .mrw__tpl span.is-on {
  border-color: color-mix(in srgb, var(--app-accent) 40%, transparent);
  background: color-mix(in srgb, var(--app-accent) 14%, #121820);
  color: #7dd3fc;
}
.v1p .mrw__list {
  display: grid;
  gap: 5px;
}
.v1p .mrw__slot {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 8px 11px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #121820;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: default;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.v1p .mrw__slot time {
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #8b9aab;
}
.v1p .mrw__slot > span {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v1p .mrw__slot em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: var(--app-text-muted);
}
.v1p .mrw__slot.is-on {
  border-color: color-mix(in srgb, #00a5b4 42%, transparent);
  background: color-mix(in srgb, #00a5b4 12%, #121820);
  box-shadow: 0 0 0 1px rgba(0, 165, 180, 0.08), 0 10px 24px rgba(0, 0, 0, 0.2);
  transform: translateX(3px);
  animation: mrw-slot-glow 1.8s ease-in-out infinite;
}
.v1p .mrw__slot.is-on time { color: #5eead4; }
.v1p .mrw__card {
  margin-top: 2px;
  animation: mrw-card-swap 0.45s ease;
}
.v1p .mrw__meter {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.v1p .mrw__meter-fill {
  width: 70%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00a5b4, #2aabee);
}
.v1p .hero-pane#hero-meetreport.is-on .mrw__meter-fill {
  animation: mrw-meter 5s ease-in-out infinite;
}
.v1p .mrw__lines {
  display: grid;
  gap: 6px;
}
.v1p .mrw__line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #121820;
  opacity: 0;
  transform: translateY(8px);
}
.v1p .hero-pane#hero-meetreport.is-on .mrw__line {
  animation: mrw-line-in 0.5s ease forwards;
  animation-delay: calc(0.25s + var(--i, 0) * 0.18s);
}
.v1p .mrw__line.is-meet {
  border-color: color-mix(in srgb, #00a5b4 35%, transparent);
  background: color-mix(in srgb, #00a5b4 8%, #121820);
}
.v1p .hero-pane#hero-meetreport.is-on .mrw__line.is-meet {
  animation:
    mrw-line-in 0.5s ease forwards,
    mrw-meet-flash 3.2s ease-in-out 1.4s infinite;
  animation-delay: calc(0.25s + var(--i, 0) * 0.18s), 1.6s;
}
.v1p .mrw__line.is-git { border-style: dashed; }
.v1p .mrw__gid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--app-accent-soft);
  color: var(--app-accent);
  font-size: 11px;
  font-weight: 800;
}
.v1p .mrw__line.is-meet .mrw__gid {
  background: rgba(0, 165, 180, 0.14);
  color: #5eead4;
}
.v1p .mrw__line.is-git .mrw__gid {
  background: rgba(148, 163, 184, 0.14);
  color: #cbd5e1;
}
.v1p .mrw__line strong {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}
.v1p .mrw__line p {
  margin: 0;
  font-size: 12px;
  color: var(--app-text-muted);
}
.v1p .mrw__line > em {
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #7dd3fc;
}
.v1p .mrw__team {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}
.v1p .mrw__team > div {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 6px;
  padding: 7px 8px;
  border-radius: 12px;
  background: #121820;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
}
.v1p .mrw__team b {
  grid-row: 1 / span 2;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #232d38;
  font-size: 8px;
  align-self: center;
}
.v1p .mrw__team span { font-weight: 700; }
.v1p .mrw__team em { font-style: normal; font-weight: 800; }
.v1p .mrw__team .is-ok em { color: #3dd68c; }
.v1p .mrw__team .is-wait em { color: #fcd34d; }
.v1p .mrw__ai {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--app-accent) 28%, transparent);
  background: color-mix(in srgb, var(--app-accent) 10%, #121820);
  font-size: 12px;
  font-weight: 700;
  color: #c9d3de;
}
.v1p .hero-pane#hero-meetreport.is-on .mrw__ai {
  animation: mrw-ai-pulse 2.4s ease-in-out infinite;
}
.v1p .mrw__ai img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: contain;
  flex: 0 0 22px;
  background: color-mix(in srgb, var(--app-accent) 16%, #121820);
}
.v1p .mrw__ai-text { flex: 1; min-width: 0; }
.v1p .mrw__dots {
  display: inline-flex;
  gap: 3px;
  margin-left: 6px;
  vertical-align: middle;
}
.v1p .mrw__dots i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #7dd3fc;
  animation: mrw-dot 1s ease-in-out infinite;
}
.v1p .mrw__dots i:nth-child(2) { animation-delay: 0.15s; }
.v1p .mrw__dots i:nth-child(3) { animation-delay: 0.3s; }
.v1p .mrw__ai-btn {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--app-accent) 18%, #121820);
  border: 1px solid color-mix(in srgb, var(--app-accent) 40%, transparent);
  color: #7dd3fc;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

@keyframes mrw-live {
  .v1p 0% { box-shadow: 0 0 0 0 rgba(237, 28, 36, 0.55); }
  .v1p 70% { box-shadow: 0 0 0 8px rgba(237, 28, 36, 0); }
  .v1p 100% { box-shadow: 0 0 0 0 rgba(237, 28, 36, 0); }
}
@keyframes mrw-slot-glow {
  .v1p 0%,
  .v1p 100% { box-shadow: 0 0 0 1px rgba(0, 165, 180, 0.12), 0 8px 18px rgba(0, 0, 0, 0.2); }
  .v1p 50% { box-shadow: 0 0 0 1px rgba(0, 165, 180, 0.4), 0 0 22px rgba(0, 165, 180, 0.25); }
}
@keyframes mrw-spark {
  .v1p 0% { top: 16%; opacity: 0; }
  .v1p 12% { opacity: 1; }
  .v1p 88% { opacity: 1; }
  .v1p 100% { top: 78%; opacity: 0; }
}
@keyframes mrw-line-in {
  .v1p to { opacity: 1; transform: none; }
}
@keyframes mrw-meet-flash {
  .v1p 0%,
  .v1p 100% { box-shadow: none; }
  .v1p 40% { box-shadow: 0 0 0 1px rgba(0, 165, 180, 0.45), 0 0 18px rgba(0, 165, 180, 0.2); }
}
@keyframes mrw-meter {
  .v1p 0% { width: 18%; }
  .v1p 55% { width: 78%; }
  .v1p 100% { width: 70%; }
}
@keyframes mrw-ai-pulse {
  .v1p 0%,
  .v1p 100% { border-color: color-mix(in srgb, var(--app-accent) 28%, transparent); }
  .v1p 50% { border-color: color-mix(in srgb, var(--app-accent) 70%, transparent); }
}
@keyframes mrw-dot {
  .v1p 0%,
  .v1p 80%,
  .v1p 100% { opacity: 0.25; transform: translateY(0); }
  .v1p 40% { opacity: 1; transform: translateY(-2px); }
}
@keyframes mrw-pane-in {
  .v1p from { opacity: 0; transform: translateY(10px); }
  .v1p to { opacity: 1; transform: none; }
}
@keyframes mrw-card-swap {
  .v1p from { opacity: 0.4; transform: translateY(6px); }
  .v1p to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .v1p .mrw {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    overflow: auto;
  }
  .v1p .mrw__bridge { display: none; }
  .v1p .mrw__week { flex-wrap: wrap; }
  .v1p .mrw__team { grid-template-columns: 1fr; }
}


/* extracted 1456-1924 */

.v1p .kbw {
  display: grid;
  grid-template-columns: minmax(200px, 0.9fr) minmax(0, 1.55fr);
  gap: 10px;
  padding: 4px 16px 16px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.v1p .kbw__tree,
.v1p .kbw__stage {
  min-height: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a2129;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}
.v1p .kbw__tree {
  padding: 10px;
  overflow: auto;
  background: #121820;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v1p .kbw__folder {
  display: grid;
  gap: 4px;
}
.v1p .kbw__folder-btn {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 8px 10px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: default;
}
.v1p .kbw__fold-ico {
  width: 16px;
  height: 12px;
  border-radius: 3px 3px 2px 2px;
  background: linear-gradient(180deg, #fbbf24, #d97706);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  position: relative;
}
.v1p .kbw__fold-ico::before {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 7px;
  height: 4px;
  border-radius: 2px 2px 0 0;
  background: #f59e0b;
}
.v1p .kbw__folder-btn strong {
  font-size: 12px;
  font-weight: 800;
}
.v1p .kbw__folder-btn em {
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  color: var(--app-text-muted);
}
.v1p .kbw__folder-body {
  display: grid;
  gap: 4px;
  padding: 4px 0 2px 12px;
  border-left: 1px dashed rgba(255, 255, 255, 0.1);
  margin: 0 0 0 16px;
}
.v1p .kbw__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 7px 9px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #c9d3de;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.v1p .kbw__kind {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.14);
  color: #cbd5e1;
  font-size: 9px;
  font-weight: 800;
  text-transform: lowercase;
}
.v1p .kbw__kind--db { background: rgba(42, 171, 238, 0.16); color: #7dd3fc; }
.v1p .kbw__kind--draw { background: rgba(234, 88, 12, 0.16); color: #fdba74; }
.v1p .kbw__kind--ai { background: rgba(124, 58, 237, 0.18); color: #c4b5fd; }
.v1p .kbw__item.is-on {
  background: color-mix(in srgb, #7c3aed 18%, #121820);
  color: #f5f3ff;
  transform: translateX(2px);
  box-shadow: 0 0 0 1px color-mix(in srgb, #7c3aed 35%, transparent);
}
.v1p .kbw__new {
  margin-top: auto;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  color: var(--app-text-muted);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}
.v1p .kbw__stage {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.08), transparent 28%),
    #1a2129;
}
.v1p .kbw__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 12px 0;
}
.v1p .kbw__tabs button {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #121820;
  color: var(--app-text-muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.v1p .kbw__tabs button.is-on {
  border-color: color-mix(in srgb, #7c3aed 45%, transparent);
  background: color-mix(in srgb, #7c3aed 16%, #121820);
  color: #ede9fe;
}
.v1p .kbw__views {
  position: relative;
  flex: 1;
  min-height: 0;
  padding: 12px;
}
.v1p .kbw__view {
  display: none;
  height: 100%;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}
.v1p .kbw__view.is-on {
  display: flex;
  animation: kbw-swap 0.4s ease;
}
.v1p .kbw__doc-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.v1p .kbw__doc-head h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.v1p .kbw__tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, #7c3aed 35%, transparent);
  background: color-mix(in srgb, #7c3aed 12%, #121820);
  color: #c4b5fd;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}
.v1p .kbw__lines {
  display: grid;
  gap: 6px;
  flex: 1;
  min-height: 0;
  overflow: auto;
}
.v1p .kbw__row {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 9px 11px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #121820;
  font-size: 13px;
  line-height: 1.4;
}
.v1p .kbw__row > span {
  font-size: 11px;
  font-weight: 800;
  color: var(--app-text-muted);
  font-variant-numeric: tabular-nums;
  padding-top: 2px;
}
.v1p .kbw__row p { margin: 0; }
.v1p .kbw__row.is-edit {
  border-color: color-mix(in srgb, #2aabee 40%, transparent);
  background: color-mix(in srgb, #2aabee 8%, #121820);
}
.v1p .kbw__row.is-caret p { position: relative; padding-right: 8px; }
.v1p .kbw__row.is-caret i {
  display: inline-block;
  width: 2px;
  height: 14px;
  margin-left: 3px;
  vertical-align: -2px;
  background: #7dd3fc;
  animation: kbw-caret 1s steps(1) infinite;
}
.v1p .kbw__comment {
  grid-column: 2;
  margin-top: 6px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, #f59e0b 35%, transparent);
  background: color-mix(in srgb, #f59e0b 10%, #121820);
  font-size: 12px;
  color: #fde68a;
  animation: kbw-comment 2.4s ease-in-out infinite;
}
.v1p .kbw__comment strong {
  display: block;
  margin-bottom: 2px;
  color: #fbbf24;
  font-size: 11px;
}
.v1p .kbw__db {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background: #121820;
}
.v1p .kbw__db-head,
.v1p .kbw__db-row {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 0.7fr 0.7fr;
  gap: 0;
}
.v1p .kbw__db-head span,
.v1p .kbw__db-row span {
  padding: 9px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
}
.v1p .kbw__db-head span {
  font-size: 11px;
  font-weight: 800;
  color: #7dd3fc;
  background: color-mix(in srgb, #2aabee 10%, #121820);
}
.v1p .kbw__db-row.is-on span {
  background: color-mix(in srgb, #2aabee 12%, transparent);
}
.v1p .hero-pane#hero-kb.is-on .kbw__db-row.is-on {
  animation: kbw-db-pulse 2s ease-in-out infinite;
}
.v1p .kbw__db-add {
  padding: 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--app-text-muted);
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}
.v1p .kbw__canvas {
  position: relative;
  flex: 1;
  min-height: 180px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 20% 30%, rgba(234, 88, 12, 0.12), transparent 40%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 24px 24px,
    #121820;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  overflow: hidden;
}
.v1p .kbw__shape {
  min-width: 78px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1a2129;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.v1p .kbw__shape--a { border-color: color-mix(in srgb, #2aabee 45%, transparent); }
.v1p .kbw__shape--b { border-color: color-mix(in srgb, #00a5b4 45%, transparent); }
.v1p .kbw__shape--c {
  border-color: color-mix(in srgb, #ea580c 50%, transparent);
  background: color-mix(in srgb, #ea580c 12%, #1a2129);
}
.v1p .hero-pane#hero-kb.is-on .kbw__shape--c {
  animation: kbw-shape 1.8s ease-in-out infinite;
}
.v1p .kbw__wire {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(253, 186, 116, 0.2), #fdba74, rgba(253, 186, 116, 0.2));
}
.v1p .kbw__pen {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50% 50% 50% 2px;
  background: #fdba74;
  box-shadow: 0 0 12px rgba(234, 88, 12, 0.55);
  opacity: 0;
}
.v1p .hero-pane#hero-kb.is-on .kbw__view[data-view="draw"].is-on .kbw__pen {
  animation: kbw-pen 2.8s ease-in-out infinite;
}
.v1p .kbw__ai-box {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, #7c3aed 40%, transparent);
  background: color-mix(in srgb, #7c3aed 10%, #121820);
}
.v1p .kbw__ai-head {
  display: flex;
  gap: 10px;
  align-items: center;
}
.v1p .kbw__ai-head img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.06);
}
.v1p .kbw__ai-head strong {
  display: block;
  font-size: 13px;
}
.v1p .kbw__ai-head p {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--app-text-muted);
}
.v1p .kbw__ai-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.v1p .kbw__ai-box li {
  padding: 8px 10px;
  border-radius: 10px;
  background: #1a2129;
  font-size: 12px;
  font-weight: 700;
}
.v1p .kbw__ai-box li.is-ok { color: #86efac; }
.v1p .kbw__ai-box li.is-warn { color: #fcd34d; }
.v1p .kbw__ai-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.v1p .kbw__ai-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}
.v1p .kbw__ai-actions .is-ghost {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--app-text-muted);
}
.v1p .kbw__ai-actions .is-ok {
  border: 1px solid color-mix(in srgb, #22c55e 40%, transparent);
  background: color-mix(in srgb, #22c55e 14%, #121820);
  color: #86efac;
}
.v1p .hero-pane#hero-kb.is-on .kbw__ai-actions .is-ok {
  animation: kbw-cta 2.4s ease-in-out infinite;
}

@keyframes kbw-swap {
  .v1p from { opacity: 0.4; transform: translateY(8px); }
  .v1p to { opacity: 1; transform: none; }
}
@keyframes kbw-caret {
  .v1p 50% { opacity: 0; }
}
@keyframes kbw-comment {
  .v1p 0%,
  .v1p 100% { transform: translateY(0); }
  .v1p 50% { transform: translateY(-2px); }
}
@keyframes kbw-db-pulse {
  .v1p 0%,
  .v1p 100% { filter: none; }
  .v1p 50% { filter: brightness(1.12); }
}
@keyframes kbw-shape {
  .v1p 0%,
  .v1p 100% { transform: translateY(0); }
  .v1p 50% { transform: translateY(-3px); }
}
@keyframes kbw-pen {
  .v1p 0% { left: 18%; top: 70%; opacity: 0; }
  .v1p 15% { opacity: 1; }
  .v1p 50% { left: 48%; top: 42%; opacity: 1; }
  .v1p 85% { left: 72%; top: 38%; opacity: 1; }
  .v1p 100% { left: 78%; top: 30%; opacity: 0; }
}
@keyframes kbw-cta {
  .v1p 0%,
  .v1p 100% { box-shadow: none; }
  .v1p 50% { box-shadow: 0 0 16px rgba(34, 197, 94, 0.25); }
}

@media (max-width: 900px) {
  .v1p .kbw {
    grid-template-columns: 1fr;
    overflow: auto;
  }
  .v1p .kbw__canvas { flex-wrap: wrap; }
  .v1p .kbw__wire { width: 18px; }
}


/* extracted 1925-2284 */

.v1p .pm {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(210px, 0.75fr);
  gap: 10px;
  padding: 4px 16px 16px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.v1p .pm__board,
.v1p .pm__side {
  min-height: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a2129;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.v1p .pm__toolbar,
.v1p .pm__side-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 12px 14px 8px;
}
.v1p .pm__toolbar strong,
.v1p .pm__side-head strong {
  font-size: 13px;
  font-weight: 800;
}
.v1p .pm__toolbar span,
.v1p .pm__side-head span {
  font-size: 11px;
  font-weight: 700;
  color: var(--app-text-muted);
}
.v1p .pm__canvas {
  position: relative;
  flex: 1;
  min-height: 0;
  margin: 0 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 28px 28px,
    #0f1419;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.v1p .pm__flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 18px 12px;
  position: relative;
  z-index: 1;
}
.v1p .pm__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.v1p .pm__pill--start {
  background: rgba(0, 165, 180, 0.18);
  border: 1.5px solid #00a5b4;
  color: #5eead4;
}
.v1p .pm__pill--end {
  background: #1a2129;
  border: 2px solid #8b9aab;
  color: #c5d0dc;
}
.v1p .pm__wire {
  width: 2px;
  height: 18px;
  background: #5a6573;
  position: relative;
  flex: 0 0 auto;
}
.v1p .pm__wire::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #5a6573;
  transform: translateX(-50%);
}
.v1p .pm__node {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  width: min(220px, 72vw);
  margin: 0;
  padding: 12px 14px 12px 12px;
  border-radius: 14px;
  border: 1.5px solid #3d4a57;
  background: linear-gradient(180deg, #1f2832 0%, #171e26 100%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s, transform 0.25s;
}
.v1p .pm__node em {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: #2a3340;
  color: #c5d0dc;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}
.v1p .pm__node strong {
  font-size: 13px;
  font-weight: 800;
  color: #e8edf3;
  line-height: 1.2;
}
.v1p .pm__node > span {
  font-size: 11px;
  font-weight: 600;
  color: #8b9aab;
}
.v1p .pm__node:hover {
  border-color: #7dd3fc;
  transform: translateY(-1px);
}
.v1p .pm__node.is-on {
  border-color: #ea580c;
  background: linear-gradient(180deg, #2f1a12 0%, #23140e 100%);
  box-shadow: 0 0 0 1px rgba(234, 88, 12, 0.35), 0 0 28px rgba(234, 88, 12, 0.28), 0 12px 28px rgba(0, 0, 0, 0.4);
  animation: pm-node-glow 1.8s ease-in-out infinite;
}
.v1p .pm__node.is-on em {
  background: #ea580c;
  color: #fff7ed;
}
.v1p .pm__node.is-on strong { color: #ffedd5; }
.v1p .pm__node.is-on > span { color: #fdba74; }
.v1p .pm__node--dia {
  border-radius: 16px;
  border-style: dashed;
}
.v1p .pm__node--dia.is-on {
  border-style: solid;
}
.v1p .pm__fork {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 340px;
}
.v1p .pm__branch {
  position: absolute;
  left: calc(50% + 118px);
  top: 50%;
  display: flex;
  align-items: center;
  transform: translateY(-50%);
  pointer-events: none;
}
.v1p .pm__branch-line {
  width: 28px;
  height: 2px;
  background: #ea580c;
  position: relative;
}
.v1p .pm__branch-line::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #ea580c;
  transform: translateY(-50%);
}
.v1p .pm__chip {
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(234, 88, 12, 0.45);
  background: rgba(234, 88, 12, 0.16);
  color: #fdba74;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 0 16px rgba(234, 88, 12, 0.2);
}
.v1p .pm__tip {
  margin: 0 12px 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, #ea580c 30%, transparent);
  background: color-mix(in srgb, #ea580c 10%, #121820);
  flex: 0 0 auto;
}
.v1p .hero-pane#hero-maps.is-xfer .pm__tip {
  animation: pm-detail-in 0.4s ease;
}
.v1p .pm__tip-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
}
.v1p .pm__tip-head strong {
  font-size: 12px;
  color: #fdba74;
}
.v1p .pm__detail-tag {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(234, 88, 12, 0.18);
  color: #fdba74;
  font-size: 10px;
  font-weight: 800;
}
.v1p .pm__tip p {
  margin: 0 0 10px;
  font-size: 11px;
  line-height: 1.4;
  color: #e8d5c4;
}
.v1p .pm__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.v1p .pm__links span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a2129;
  color: #c5d0dc;
  font-size: 10px;
  font-weight: 800;
}
.v1p .pm__side {
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.08), transparent 30%),
    #1a2129;
}
.v1p .pm__glossary {
  display: grid;
  gap: 8px;
  padding: 0 12px 12px;
  overflow: auto;
  flex: 1;
  min-height: 0;
}
.v1p .pm__term {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #121820;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.v1p .pm__term strong {
  font-size: 13px;
  font-weight: 800;
}
.v1p .pm__term p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--app-text-muted);
}
.v1p .pm__term.is-on {
  border-color: color-mix(in srgb, #7c3aed 50%, transparent);
  background: color-mix(in srgb, #7c3aed 14%, #121820);
  transform: translateX(3px);
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.15), 0 0 22px rgba(124, 58, 237, 0.18);
  animation: pm-term-glow 1.8s ease-in-out infinite;
}
.v1p .pm__term.is-on strong { color: #ddd6fe; }
.v1p .pm__term.is-on p { color: #c4b5fd; }
.v1p .pm-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.v1p .pm-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ea580c;
  animation: mrw-live 1.6s ease-out infinite;
}

@keyframes pm-node-glow {
  .v1p 0%,
  .v1p 100% { box-shadow: 0 0 0 1px rgba(234, 88, 12, 0.25), 0 0 18px rgba(234, 88, 12, 0.18), 0 12px 28px rgba(0, 0, 0, 0.35); }
  .v1p 50% { box-shadow: 0 0 0 1px rgba(234, 88, 12, 0.5), 0 0 34px rgba(234, 88, 12, 0.32), 0 14px 32px rgba(0, 0, 0, 0.4); }
}
@keyframes pm-term-glow {
  .v1p 0%,
  .v1p 100% { box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.12); }
  .v1p 50% { box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.4), 0 0 20px rgba(124, 58, 237, 0.2); }
}
@keyframes pm-detail-in {
  .v1p from { opacity: 0.5; transform: translateY(6px); }
  .v1p to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .v1p .pm {
    grid-template-columns: 1fr;
    overflow: auto;
  }
  .v1p .pm__branch { display: none; }
}





/* extracted 2285-3036 */

.v1p .gai {
  display: grid;
  grid-template-columns: minmax(200px, 0.78fr) minmax(0, 1.4fr);
  gap: 10px;
  padding: 4px 16px 16px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.v1p .gai__side,
.v1p .gai__stage {
  min-height: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a2129;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.v1p .gai__side {
  padding: 10px;
  gap: 8px;
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.12), transparent 30%),
    #121820;
}
.v1p .gai__side-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 4px 2px;
}
.v1p .gai__side-head strong { font-size: 13px; font-weight: 800; }
.v1p .gai__side-head span {
  font-size: 11px;
  font-weight: 700;
  color: var(--app-text-muted);
}
.v1p .gai__modes { display: grid; gap: 6px; }
.v1p .gai__mode {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #1a2129;
  color: #c5d0dc;
  font-size: 12px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.25s;
}
.v1p .gai__mode:hover { border-color: rgba(167, 139, 250, 0.35); }
.v1p .gai__mode.is-on {
  border-color: color-mix(in srgb, #7c3aed 50%, transparent);
  background: color-mix(in srgb, #7c3aed 16%, #1a2129);
  color: #ddd6fe;
  transform: translateX(2px);
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.12), 0 10px 22px rgba(0, 0, 0, 0.22);
}
.v1p .gai__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
}
.v1p .gai__badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a2129;
  color: #c5d0dc;
  font-size: 10px;
  font-weight: 800;
}
.v1p .gai__badge--local {
  border-color: color-mix(in srgb, #00a5b4 40%, transparent);
  background: color-mix(in srgb, #00a5b4 12%, #1a2129);
  color: #5eead4;
}
.v1p .gai__badge--train {
  border-color: color-mix(in srgb, #f59e0b 45%, transparent);
  background: color-mix(in srgb, #f59e0b 12%, #1a2129);
  color: #fcd34d;
}
.v1p .gai__badge--rag {
  border-color: color-mix(in srgb, #7c3aed 45%, transparent);
  background: color-mix(in srgb, #7c3aed 14%, #1a2129);
  color: #ddd6fe;
}
.v1p .gai__note {
  margin: 0;
  padding: 0 2px;
  font-size: 11px;
  line-height: 1.4;
  color: #9aa8b8;
}
.v1p .gai__stage {
  position: relative;
  padding: 12px;
  background:
    radial-gradient(ellipse 55% 45% at 100% 0%, rgba(124, 58, 237, 0.14), transparent 55%),
    #1a2129;
}
.v1p .gai__view {
  display: none;
  height: 100%;
  min-height: 0;
}
.v1p .gai__view.is-on {
  display: flex;
  flex-direction: column;
}
.v1p .hero-pane#hero-ai.is-xfer .gai__view.is-on {
  animation: pm-detail-in 0.35s ease;
}

/* personalized AI message */
.v1p .gai__letter {
  flex: 1;
  min-height: 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, #7c3aed 28%, transparent);
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.12), transparent 45%),
    #121820;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  overflow: auto;
}
.v1p .gai__letter-ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  flex: 0 0 40px;
  background: color-mix(in srgb, #7c3aed 16%, #1a2129);
  box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.25);
}
.v1p .gai__letter-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v1p .gai__letter-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.v1p .gai__letter-who {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.v1p .gai__letter-who strong {
  font-size: 13px;
  font-weight: 800;
}
.v1p .gai__letter-tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, #7c3aed 40%, transparent);
  background: color-mix(in srgb, #7c3aed 14%, #1a2129);
  color: #ddd6fe;
  font-size: 10px;
  font-weight: 800;
}
.v1p .gai__letter-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: #a78bfa;
  box-shadow: 0 0 8px rgba(167, 139, 250, 0.7);
}
.v1p .gai__letter-time {
  font-size: 11px;
  font-weight: 700;
  color: var(--app-text-muted);
}
.v1p .gai__letter-ask {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, #7c3aed 40%, transparent);
  background: color-mix(in srgb, #7c3aed 12%, #121820);
  color: #ddd6fe;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}
.v1p .gai__letter-body {
  display: grid;
  gap: 0.7em;
  font-size: 13px;
  line-height: 1.5;
  color: #e8edf3;
}
.v1p .gai__letter-body p { margin: 0; }
.v1p .gai__letter-body b {
  color: #ddd6fe;
  font-weight: 800;
}
.v1p .gai__view[data-view="task"] .gai__letter {
  border-color: color-mix(in srgb, #ea580c 28%, transparent);
  background:
    linear-gradient(135deg, rgba(234, 88, 12, 0.1), transparent 45%),
    #121820;
}
.v1p .gai__view[data-view="task"] .gai__letter-tag {
  border-color: color-mix(in srgb, #ea580c 40%, transparent);
  background: color-mix(in srgb, #ea580c 12%, #1a2129);
  color: #fdba74;
}
.v1p .gai__view[data-view="task"] .gai__letter-tag::before { background: #fb923c; box-shadow: 0 0 8px rgba(251, 146, 60, 0.7); }
.v1p .gai__view[data-view="task"] .gai__letter-ask {
  border-color: color-mix(in srgb, #ea580c 40%, transparent);
  background: color-mix(in srgb, #ea580c 12%, #121820);
  color: #fdba74;
}
.v1p .gai__view[data-view="task"] .gai__letter-body b { color: #fdba74; }
.v1p .gai__view[data-view="client"] .gai__letter {
  border-color: color-mix(in srgb, #00a5b4 28%, transparent);
  background:
    linear-gradient(135deg, rgba(0, 165, 180, 0.1), transparent 45%),
    #121820;
}
.v1p .gai__view[data-view="client"] .gai__letter-tag {
  border-color: color-mix(in srgb, #00a5b4 40%, transparent);
  background: color-mix(in srgb, #00a5b4 12%, #1a2129);
  color: #5eead4;
}
.v1p .gai__view[data-view="client"] .gai__letter-tag::before { background: #2dd4bf; box-shadow: 0 0 8px rgba(45, 212, 191, 0.7); }
.v1p .gai__view[data-view="client"] .gai__letter-ask {
  border-color: color-mix(in srgb, #00a5b4 40%, transparent);
  background: color-mix(in srgb, #00a5b4 12%, #121820);
  color: #5eead4;
}
.v1p .gai__view[data-view="client"] .gai__letter-body b { color: #5eead4; }
.v1p .gai__view[data-view="chat"] .gai__letter {
  border-color: color-mix(in srgb, #2aabee 28%, transparent);
  background:
    linear-gradient(135deg, rgba(42, 171, 238, 0.1), transparent 45%),
    #121820;
}
.v1p .gai__view[data-view="chat"] .gai__letter-tag {
  border-color: color-mix(in srgb, #2aabee 40%, transparent);
  background: color-mix(in srgb, #2aabee 12%, #1a2129);
  color: #7dd3fc;
}
.v1p .gai__view[data-view="chat"] .gai__letter-tag::before { background: #38bdf8; box-shadow: 0 0 8px rgba(56, 189, 248, 0.7); }
.v1p .gai__view[data-view="chat"] .gai__letter-ask {
  border-color: color-mix(in srgb, #2aabee 40%, transparent);
  background: color-mix(in srgb, #2aabee 12%, #121820);
  color: #7dd3fc;
}
.v1p .gai__view[data-view="chat"] .gai__letter-body b { color: #7dd3fc; }



.v1p .gai__pill {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a2129;
  color: #c5d0dc;
}
.v1p .gai__pill--back {
  border-color: rgba(234, 88, 12, 0.4);
  background: rgba(234, 88, 12, 0.14);
  color: #fdba74;
}
.v1p .gai__pill--meet {
  border-color: rgba(0, 165, 180, 0.4);
  background: rgba(0, 165, 180, 0.14);
  color: #5eead4;
}
.v1p .gai__pill--test {
  border-color: rgba(220, 38, 38, 0.35);
  background: rgba(220, 38, 38, 0.12);
  color: #fecaca;
}
.v1p .gai__pill--bug {
  border-color: rgba(220, 38, 38, 0.35);
  background: rgba(220, 38, 38, 0.12);
  color: #fecaca;
}
.v1p .gai__pill--col {
  border-color: rgba(0, 165, 180, 0.35);
  background: rgba(0, 165, 180, 0.12);
  color: #5eead4;
}
.v1p .gai__sources {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.v1p .gai__sources span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.28);
  background: color-mix(in srgb, #7c3aed 12%, #1a2129);
  color: #ddd6fe;
  font-size: 10px;
  font-weight: 800;
}

/* briefing */
.v1p .gai__brief {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, #7c3aed 30%, transparent);
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.14), transparent 42%),
    #121820;
}
.v1p .gai__brief-top {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}
.v1p .gai__brief-top img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: contain;
  background: color-mix(in srgb, #7c3aed 16%, #1a2129);
}
.v1p .gai__brief-top strong { display: block; font-size: 13px; font-weight: 800; }
.v1p .gai__brief-top span { font-size: 12px; color: #c4b5fd; }
.v1p .gai__brief-top em { font-style: normal; font-size: 11px; font-weight: 800; color: var(--app-text-muted); }
.v1p .gai__attn { display: grid; gap: 8px; }
.v1p .gai__attn-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 2px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #1a2129;
}
.v1p .gai__attn-item .gai__pill { grid-row: 1 / span 2; align-self: center; }
.v1p .gai__attn-item strong { font-size: 13px; }
.v1p .gai__attn-item p { margin: 0; font-size: 11px; color: var(--app-text-muted); }
.v1p .gai__attn-item.is-hot {
  border-color: color-mix(in srgb, #ea580c 40%, transparent);
  background: color-mix(in srgb, #ea580c 10%, #1a2129);
  box-shadow: 0 0 18px rgba(234, 88, 12, 0.12);
}

/* task */
.v1p .gai__task {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 10px;
}
.v1p .gai__task-card,
.v1p .gai__task-ai {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #121820;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}
.v1p .gai__task-meta { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.v1p .gai__task-meta > span:first-child {
  font-size: 12px;
  font-weight: 800;
  color: #7dd3fc;
}
.v1p .gai__task-card > strong { font-size: 16px; font-weight: 800; letter-spacing: -0.02em; }
.v1p .gai__task-card > p { margin: 0; font-size: 12px; color: var(--app-text-muted); }
.v1p .gai__task-card > p b { color: #fdba74; }
.v1p .gai__task-links { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.v1p .gai__task-links span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a2129;
  font-size: 10px;
  font-weight: 800;
  color: #c5d0dc;
}
.v1p .gai__task-ai {
  border-color: color-mix(in srgb, #7c3aed 32%, transparent);
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.12), transparent 45%),
    #121820;
}
.v1p .gai__task-ai-head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.v1p .gai__task-ai-head img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: contain;
}
.v1p .gai__task-ai-head strong { font-size: 12px; color: #ddd6fe; }
.v1p .gai__task-ai > p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #e8edf3;
}
.v1p .gai__task-ai ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.v1p .gai__task-ai li {
  padding: 8px 10px;
  border-radius: 10px;
  background: #1a2129;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: #c5d0dc;
}
.v1p .gai__task-ai b { color: #ddd6fe; }

/* client */
.v1p .gai__client {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(160deg, rgba(0, 165, 180, 0.1), transparent 40%),
    #121820;
}
.v1p .gai__client-head {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}
.v1p .gai__client-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00a5b4, #2aabee);
  color: #041016;
  font-size: 16px;
  font-weight: 900;
}
.v1p .gai__client-head strong { display: block; font-size: 14px; font-weight: 800; }
.v1p .gai__client-head span { font-size: 11px; color: var(--app-text-muted); }
.v1p .gai__client-head em { font-style: normal; font-size: 10px; font-weight: 800; color: #5eead4; }
.v1p .gai__client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.v1p .gai__client-grid > div {
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #1a2129;
  text-align: center;
}
.v1p .gai__client-grid b { display: block; font-size: 18px; font-weight: 800; color: #5eead4; }
.v1p .gai__client-grid span { font-size: 10px; font-weight: 700; color: var(--app-text-muted); }
.v1p .gai__client-list { display: grid; gap: 7px; }
.v1p .gai__client-list > div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 10px 11px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #1a2129;
}
.v1p .gai__client-list span { font-size: 11px; font-weight: 800; color: #7dd3fc; }
.v1p .gai__client-list strong { font-size: 12px; }
.v1p .gai__client-list em { font-style: normal; font-size: 10px; font-weight: 800; color: var(--app-text-muted); }

/* digest from chat */
.v1p .gai__digest {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 10px;
}
.v1p .gai__digest-feed {
  position: relative;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #0f1419;
  display: grid;
  gap: 8px;
  opacity: 0.72;
  overflow: hidden;
}
.v1p .gai__digest-feed::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(transparent, #0f1419);
  pointer-events: none;
}
.v1p .gai__bubble {
  max-width: 92%;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #1a2129;
  font-size: 12px;
  color: #c5d0dc;
}
.v1p .gai__bubble b { color: #e8edf3; margin-right: 6px; }
.v1p .gai__bubble:nth-child(2) { margin-left: 18px; }
.v1p .gai__digest-card {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, #7c3aed 35%, transparent);
  background:
    linear-gradient(180deg, rgba(124, 58, 237, 0.14), transparent 50%),
    #121820;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}
.v1p .gai__digest-head {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}
.v1p .gai__digest-head img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: contain;
}
.v1p .gai__digest-head strong { font-size: 12px; color: #ddd6fe; }
.v1p .gai__digest-head em { font-style: normal; font-size: 10px; font-weight: 800; color: var(--app-text-muted); }
.v1p .gai__digest-card ol {
  margin: 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: #e8edf3;
}

/* ask chat */
.v1p .gai__chat {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #121820;
}
.v1p .gai__msg {
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #1a2129;
}
.v1p .gai__msg--user {
  background: color-mix(in srgb, #2aabee 10%, #121820);
  border-color: color-mix(in srgb, #2aabee 28%, transparent);
  align-self: flex-end;
  max-width: 92%;
}
.v1p .gai__msg > span {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 800;
  color: var(--app-text-muted);
}
.v1p .gai__msg p { margin: 0; font-size: 13px; line-height: 1.45; }
.v1p .gai__compose {
  margin-top: auto;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: #0f1419;
  color: var(--app-text-muted);
  font-size: 12px;
  font-weight: 700;
}

/* report */
.v1p .gai__report {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, #2aabee 28%, transparent);
  background:
    linear-gradient(180deg, rgba(42, 171, 238, 0.1), transparent 40%),
    #121820;
}
.v1p .gai__report-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.v1p .gai__report-bar strong { font-size: 13px; }
.v1p .gai__report-bar > span {
  font-size: 11px;
  font-weight: 700;
  color: var(--app-text-muted);
}
.v1p .gai__typing {
  margin-left: auto;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  color: #7dd3fc;
}
.v1p .gai__typing span {
  animation: gai-dot 1.2s infinite;
}
.v1p .gai__typing span:nth-child(2) { animation-delay: 0.15s; }
.v1p .gai__typing span:nth-child(3) { animation-delay: 0.3s; }
.v1p .gai__report-lines { display: grid; gap: 8px; }
.v1p .gai__report-lines > div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #1a2129;
}
.v1p .gai__report-lines.is-in,
.v1p .gai__report-lines > div.is-in {
  animation: gai-line-in 0.45s ease both;
  animation-delay: calc(var(--i, 0) * 0.12s);
}
.v1p .gai__report-lines b { font-size: 11px; font-weight: 800; color: #7dd3fc; }
.v1p .gai__report-lines span { font-size: 12px; font-weight: 700; }
.v1p .gai__report-lines em { font-style: normal; font-size: 12px; font-weight: 800; color: #7dd3fc; }
.v1p .gai__report-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  font-size: 11px;
  color: var(--app-text-muted);
}
.v1p .gai__cta {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--app-accent) 40%, transparent);
  background: color-mix(in srgb, var(--app-accent) 14%, #121820);
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 800;
}
.v1p .gai-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.v1p .gai-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a78bfa;
  animation: mrw-live 1.6s ease-out infinite;
}
@keyframes gai-dot {
  .v1p 0%,
  .v1p 80%,
  .v1p 100% { opacity: 0.25; }
  .v1p 40% { opacity: 1; }
}
@keyframes gai-line-in {
  .v1p from { opacity: 0; transform: translateY(6px); }
  .v1p to { opacity: 1; transform: none; }
}
@media (max-width: 900px) {
  .v1p .gai { grid-template-columns: 1fr; overflow: auto; }
  .v1p .gai__task { grid-template-columns: 1fr; }
  .v1p .gai__client-grid { grid-template-columns: 1fr; }
}





/* extracted 3037-3540 */

.v1p .tw {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.4fr);
  gap: 10px;
  padding: 4px 16px 16px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.v1p .tw__side,
.v1p .tw__main {
  min-height: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a2129;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.v1p .tw__side {
  padding: 10px;
  gap: 8px;
  background:
    linear-gradient(180deg, rgba(220, 38, 38, 0.08), transparent 28%),
    #121820;
}
.v1p .tw__side-head,
.v1p .tw__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.v1p .tw__side-head {
  padding: 4px 4px 2px;
}
.v1p .tw__side-head strong,
.v1p .tw__toolbar strong {
  font-size: 13px;
  font-weight: 800;
}
.v1p .tw__side-head span,
.v1p .tw__toolbar > div > span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
  color: var(--app-text-muted);
}
.v1p .tw__side-head span {
  margin: 0;
  font-weight: 700;
}
.v1p .tw__pack {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #1a2129;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.v1p .tw__pack strong {
  font-size: 13px;
  font-weight: 800;
}
.v1p .tw__pack span {
  font-size: 11px;
  font-weight: 600;
  color: var(--app-text-muted);
}
.v1p .tw__pack.is-on {
  border-color: color-mix(in srgb, #dc2626 45%, transparent);
  background: color-mix(in srgb, #dc2626 12%, #1a2129);
  transform: translateX(2px);
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.12), 0 10px 22px rgba(0, 0, 0, 0.22);
}
.v1p .tw__pack.is-on strong { color: #fecaca; }
.v1p .tw__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 6px;
}
.v1p .tw__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a2129;
  color: #c5d0dc;
  font-size: 10px;
  font-weight: 800;
}
.v1p .tw__main {
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(220, 38, 38, 0.1), transparent 55%),
    #1a2129;
}
.v1p .tw__toolbar {
  padding: 12px 14px 8px;
  align-items: flex-start;
}
.v1p .tw__badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(220, 38, 38, 0.35);
  background: rgba(220, 38, 38, 0.14);
  color: #fecaca;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}
.v1p .tw__progress {
  position: relative;
  height: 8px;
  margin: 0 14px 10px;
  border-radius: 999px;
  background: #121820;
  overflow: hidden;
}
.v1p .tw__progress i {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, #dc2626, #f97316);
  animation: tw-bar 2.4s ease-in-out infinite;
}
.v1p .tw__progress em {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-style: normal;
  font-size: 9px;
  font-weight: 800;
  color: #ffedd5;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.v1p .tw__list {
  display: grid;
  gap: 7px;
  padding: 0 12px;
  overflow: auto;
  flex: 1;
  min-height: 0;
}
.v1p .tw__case {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #121820;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.v1p .tw__case strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 2px;
}
.v1p .tw__case div > span {
  font-size: 11px;
  font-weight: 600;
  color: var(--app-text-muted);
}
.v1p .tw__case em {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}
.v1p .tw__code {
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--app-text-muted);
}
.v1p .tw__case.is-fail {
  border-color: rgba(220, 38, 38, 0.22);
  background: color-mix(in srgb, #dc2626 7%, #121820);
}
.v1p .tw__case.is-fail em { color: #fecaca; }
.v1p .tw__case.is-ok em { color: #86efac; }
.v1p .tw__case.is-ok {
  border-color: rgba(34, 197, 94, 0.2);
  background: color-mix(in srgb, #22c55e 6%, #121820);
}
.v1p .tw__case.is-on {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.2), 0 12px 26px rgba(0, 0, 0, 0.28);
}
.v1p .tw__case.is-fail.is-on {
  border-color: rgba(220, 38, 38, 0.5);
  animation: tw-case-glow 1.8s ease-in-out infinite;
}
.v1p .tw__case.is-ok.is-on {
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.18), 0 12px 26px rgba(0, 0, 0, 0.28);
}
.v1p .tw__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin: 10px 12px 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, #dc2626 35%, transparent);
  background: color-mix(in srgb, #dc2626 9%, #121820);
}
.v1p .tw__foot.is-ok {
  border-color: color-mix(in srgb, #22c55e 35%, transparent);
  background: color-mix(in srgb, #22c55e 8%, #121820);
}
.v1p .hero-pane#hero-test.is-xfer .tw__foot {
  animation: pm-detail-in 0.35s ease;
}
.v1p .tw__foot strong {
  display: block;
  font-size: 13px;
  color: #fecaca;
  margin-bottom: 2px;
}
.v1p .tw__foot.is-ok strong { color: #86efac; }
.v1p .tw__foot p {
  margin: 0;
  font-size: 12px;
  color: #e8d5c4;
}
.v1p .tw__foot.is-ok p { color: #bbf7d0; }
.v1p .tw__cta {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--app-accent) 40%, transparent);
  background: color-mix(in srgb, var(--app-accent) 14%, #121820);
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.v1p .tw__cta.is-ok {
  border-color: color-mix(in srgb, #22c55e 40%, transparent);
  background: color-mix(in srgb, #22c55e 12%, #121820);
  color: #86efac;
}
.v1p .tw-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.v1p .tw-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f87171;
  animation: mrw-live 1.6s ease-out infinite;
}
@keyframes tw-bar {
  .v1p 0%,
  .v1p 100% { filter: brightness(1); }
  .v1p 50% { filter: brightness(1.15); }
}
@keyframes tw-case-glow {
  .v1p 0%,
  .v1p 100% { box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.18), 0 10px 22px rgba(0, 0, 0, 0.25); }
  .v1p 50% { box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.45), 0 0 22px rgba(220, 38, 38, 0.2), 0 12px 26px rgba(0, 0, 0, 0.3); }
}
@media (max-width: 900px) {
  .v1p .tw {
    grid-template-columns: 1fr;
    overflow: auto;
  }
}

.v1p .feat-panel__tag--fail {
  border-color: rgba(220, 38, 38, 0.35);
  background: rgba(220, 38, 38, 0.14);
  color: #fecaca;
}
.v1p .test-feat__crumb {
  margin: 0 0 2px;
  font-size: 11px;
  font-weight: 700;
  color: var(--app-text-muted);
}
.v1p .test-feat__list {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.v1p .test-feat__row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #121820;
}
.v1p .test-feat__row.is-fail {
  border-color: rgba(220, 38, 38, 0.28);
  background: color-mix(in srgb, #dc2626 8%, #121820);
}
.v1p .test-feat__row.is-ok {
  border-color: rgba(34, 197, 94, 0.22);
  background: color-mix(in srgb, #22c55e 7%, #121820);
}
.v1p .test-feat__code {
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--app-text-muted);
}
.v1p .test-feat__row strong {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  line-height: 1.3;
}
.v1p .test-feat__row p {
  margin: 0;
  font-size: 11px;
  color: var(--app-text-muted);
}
.v1p .test-feat__row em {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}
.v1p .test-feat__row.is-fail em { color: #fecaca; }
.v1p .test-feat__row.is-ok em { color: #86efac; }
.v1p .test-feat__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px dashed color-mix(in srgb, #dc2626 35%, transparent);
  background: color-mix(in srgb, #dc2626 8%, #121820);
}
.v1p .test-feat__foot p {
  margin: 0;
  flex: 1 1 200px;
  font-size: 12px;
  line-height: 1.45;
  color: #c9d3de;
}
.v1p .test-feat__foot strong { color: #fecaca; }
.v1p .test-feat__cta {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--app-accent) 40%, transparent);
  background: color-mix(in srgb, var(--app-accent) 14%, #121820);
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.v1p .feat-panel--ai { padding: 0; overflow: hidden; }
.v1p .ai-feat {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  background: #121820;
}
.v1p .ai-feat__head {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: #1a2129;
}
.v1p .ai-feat__ava {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: color-mix(in srgb, var(--app-accent) 16%, #121820);
  flex: 0 0 36px;
}
.v1p .ai-feat__ava img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.v1p .ai-feat__head strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
}
.v1p .ai-feat__head p {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--app-text-muted);
}
.v1p .ai-feat__thread {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  padding: 14px 16px;
}
.v1p .ai-feat__msg {
  max-width: 92%;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a2129;
}
.v1p .ai-feat__msg--user {
  align-self: flex-end;
  border-color: color-mix(in srgb, var(--app-accent) 30%, transparent);
  background: color-mix(in srgb, var(--app-accent) 12%, #121820);
}
.v1p .ai-feat__msg > span {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--app-text-muted);
}
.v1p .ai-feat__msg p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #e8edf3;
}
.v1p .ai-feat__cites {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.v1p .ai-feat__cites span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--app-accent) 28%, transparent);
  background: color-mix(in srgb, var(--app-accent) 10%, #121820);
  color: #7dd3fc;
  font-size: 11px;
  font-weight: 800;
}
.v1p .ai-feat__compose {
  margin: 0 16px 16px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a2129;
  color: var(--app-text-muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .feat__hero,
  .v1p .feat__grid { grid-template-columns: 1fr; }
  .v1p .feat__stats { grid-template-columns: repeat(3, 1fr); }
  .v1p .test-feat__row { grid-template-columns: 64px minmax(0, 1fr); }
  .v1p .test-feat__row em { grid-column: 2; }
}

.v1p .tp {
  display: grid;
  gap: 12px;
  padding: 12px 14px 16px;
  min-height: 100%;
  background: #0f1419;
}

/* extracted 5235-5594 */

.v1p .ix {
  display: grid;
  grid-template-columns: minmax(200px, 0.78fr) minmax(0, 1.4fr);
  gap: 10px;
  padding: 4px 16px 16px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.v1p .ix__side,
.v1p .ix__stage {
  min-height: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a2129;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.v1p .ix__side {
  padding: 10px;
  gap: 8px;
  background:
    linear-gradient(180deg, rgba(42, 171, 238, 0.1), transparent 30%),
    #121820;
}
.v1p .ix__side-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 4px 2px;
}
.v1p .ix__side-head strong { font-size: 13px; font-weight: 800; }
.v1p .ix__side-head span {
  font-size: 11px;
  font-weight: 700;
  color: var(--app-text-muted);
}
.v1p .ix__modes { display: grid; gap: 6px; }
.v1p .ix__mode {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #1a2129;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.v1p .ix__mode strong { font-size: 13px; font-weight: 800; }
.v1p .ix__mode span {
  font-size: 11px;
  font-weight: 600;
  color: var(--app-text-muted);
}
.v1p .ix__mode.is-on {
  border-color: color-mix(in srgb, #2aabee 45%, transparent);
  background: color-mix(in srgb, #2aabee 12%, #1a2129);
  transform: translateX(2px);
  box-shadow: 0 0 0 1px rgba(42, 171, 238, 0.12), 0 10px 22px rgba(0, 0, 0, 0.22);
}
.v1p .ix__mode.is-on strong { color: #7dd3fc; }
.v1p .ix__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 6px;
}
.v1p .ix__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a2129;
  color: #c5d0dc;
  font-size: 10px;
  font-weight: 800;
}
.v1p .ix__stage {
  padding: 12px;
  background:
    radial-gradient(ellipse 55% 45% at 100% 0%, rgba(42, 171, 238, 0.12), transparent 55%),
    #1a2129;
}
.v1p .ix__view { display: none; height: 100%; min-height: 0; }
.v1p .ix__view.is-on { display: flex; flex-direction: column; }
.v1p .hero-pane#hero-bind.is-xfer .ix__view.is-on {
  animation: pm-detail-in 0.35s ease;
}
.v1p .ix__status {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  color: var(--app-text-muted);
}
.v1p .ix__status.is-ok { color: #86efac; }
.v1p .ix__hint {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #9aa8b8;
}

.v1p .ix__ldap {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, #2aabee 28%, transparent);
  background:
    linear-gradient(135deg, rgba(42, 171, 238, 0.12), transparent 42%),
    #121820;
  overflow: auto;
}
.v1p .ix__ldap-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}
.v1p .ix__ldap-head strong { display: block; font-size: 14px; font-weight: 800; }
.v1p .ix__ldap-head span { font-size: 11px; color: var(--app-text-muted); }
.v1p .ix__ldap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.v1p .ix__ldap-grid > div {
  padding: 10px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #1a2129;
  text-align: center;
}
.v1p .ix__ldap-grid b {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #7dd3fc;
  margin-bottom: 2px;
}
.v1p .ix__ldap-grid span {
  font-size: 10px;
  font-weight: 700;
  color: var(--app-text-muted);
}
.v1p .ix__feed { display: grid; gap: 7px; }
.v1p .ix__feed > div {
  display: grid;
  grid-template-columns: 8px 58px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #1a2129;
}
.v1p .ix__feed > div > i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5a6573;
}
.v1p .ix__feed > div.is-on {
  border-color: color-mix(in srgb, #ea580c 40%, transparent);
  background: color-mix(in srgb, #ea580c 10%, #1a2129);
}
.v1p .ix__feed > div.is-on > i {
  background: #ea580c;
  box-shadow: 0 0 10px rgba(234, 88, 12, 0.6);
  animation: mrw-live 1.6s ease-out infinite;
}
.v1p .ix__feed strong { font-size: 11px; color: #fdba74; }
.v1p .ix__feed span { font-size: 12px; font-weight: 600; }
.v1p .ix__feed em {
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  color: var(--app-text-muted);
}

/* GitLab */
.v1p .ix__gl {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, #ea580c 28%, transparent);
  background:
    linear-gradient(135deg, rgba(234, 88, 12, 0.12), transparent 42%),
    #121820;
  overflow: auto;
}
.v1p .ix__gl-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
}
.v1p .ix__gl-head strong { display: block; font-size: 14px; font-weight: 800; }
.v1p .ix__gl-head span { font-size: 11px; color: var(--app-text-muted); }
.v1p .ix__gl-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.v1p .ix__gl-grid > div {
  padding: 10px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #1a2129;
  text-align: center;
}
.v1p .ix__gl-grid b {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #fdba74;
  margin-bottom: 2px;
}
.v1p .ix__gl-grid span {
  font-size: 10px;
  font-weight: 700;
  color: var(--app-text-muted);
}

/* REST */
.v1p .ix__rest {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, #2aabee 28%, transparent);
  background:
    linear-gradient(135deg, rgba(42, 171, 238, 0.12), transparent 42%),
    #121820;
  overflow: auto;
}
.v1p .ix__rest-head strong { display: block; font-size: 14px; font-weight: 800; }
.v1p .ix__rest-head span { font-size: 11px; color: var(--app-text-muted); }
.v1p .ix__rest-list { display: grid; gap: 8px; }
.v1p .ix__rest-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #1a2129;
}
.v1p .ix__rest-list article.is-on {
  border-color: color-mix(in srgb, #2aabee 40%, transparent);
  background: color-mix(in srgb, #2aabee 10%, #1a2129);
  box-shadow: 0 0 18px rgba(42, 171, 238, 0.12);
}
.v1p .ix__verb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 8px;
  background: rgba(34, 197, 94, 0.14);
  color: #86efac;
  font-size: 10px;
  font-weight: 900;
  font-family: ui-monospace, Consolas, monospace;
}
.v1p .ix__verb--get {
  background: rgba(42, 171, 238, 0.14);
  color: #7dd3fc;
}
.v1p .ix__rest-list strong { display: block; font-size: 12px; margin-bottom: 2px; }
.v1p .ix__rest-list p { margin: 0; font-size: 11px; color: var(--app-text-muted); }
.v1p .ix__rest-list em {
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  color: #86efac;
}
.v1p .ix__rest-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  font-size: 11px;
  color: var(--app-text-muted);
}
.v1p .ix__cta {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--app-accent) 40%, transparent);
  background: color-mix(in srgb, var(--app-accent) 14%, #121820);
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 800;
}

/* webhooks */
.v1p .ix__hooks {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, #7c3aed 28%, transparent);
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.12), transparent 42%),
    #121820;
  overflow: auto;
}
.v1p .ix__hooks-head strong { display: block; font-size: 14px; font-weight: 800; }
.v1p .ix__hooks-head span { font-size: 11px; color: var(--app-text-muted); }
.v1p .ix__bot {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #1a2129;
}
.v1p .ix__bot-ava {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0f766e;
  color: #ecfeff;
  font-size: 14px;
  font-weight: 800;
}
.v1p .ix__bot-ava--ai {
  background: color-mix(in srgb, #7c3aed 18%, #1a2129);
  overflow: hidden;
}
.v1p .ix__bot-ava--ai img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.v1p .ix__bot strong { display: block; font-size: 13px; margin-bottom: 2px; }
.v1p .ix__bot p { margin: 0; font-size: 11px; color: var(--app-text-muted); }
.v1p .ix__hook-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(167, 139, 250, 0.35);
  background: color-mix(in srgb, #7c3aed 8%, #0f1419);
  font-size: 11px;
  color: #c4b5fd;
}
.v1p .ix__hook-line code {
  padding: 4px 8px;
  border-radius: 8px;
  background: #1a2129;
  color: #ddd6fe;
  font-size: 10px;
  font-weight: 700;
}
.v1p .bind-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.v1p .bind-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38bdf8;
  animation: mrw-live 1.6s ease-out infinite;
}
@media (max-width: 900px) {
  .v1p .ix { grid-template-columns: 1fr; overflow: auto; }
  .v1p .ix__gl-grid { grid-template-columns: 1fr 1fr; }
}


/* extracted 5595-5925 */

.v1p .gr {
  display: grid;
  grid-template-columns: minmax(190px, 0.78fr) minmax(0, 1.4fr);
  gap: 10px;
  padding: 4px 16px 16px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.v1p .gr__side,
.v1p .gr__main {
  min-height: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a2129;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.v1p .gr__side {
  padding: 10px;
  gap: 8px;
  background:
    linear-gradient(180deg, rgba(0, 165, 180, 0.1), transparent 28%),
    #121820;
}
.v1p .gr__side-head,
.v1p .gr__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.v1p .gr__side-head {
  padding: 4px 4px 2px;
  align-items: center;
}
.v1p .gr__side-head strong,
.v1p .gr__toolbar strong {
  font-size: 13px;
  font-weight: 800;
}
.v1p .gr__side-head span,
.v1p .gr__toolbar > div > span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
  color: var(--app-text-muted);
}
.v1p .gr__side-head span { margin: 0; font-weight: 700; }
.v1p .gr__repo {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #1a2129;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.v1p .gr__repo strong { font-size: 13px; font-weight: 800; }
.v1p .gr__repo span {
  font-size: 11px;
  font-weight: 600;
  color: var(--app-text-muted);
}
.v1p .gr__repo.is-on {
  border-color: color-mix(in srgb, #00a5b4 45%, transparent);
  background: color-mix(in srgb, #00a5b4 12%, #1a2129);
  transform: translateX(2px);
  box-shadow: 0 0 0 1px rgba(0, 165, 180, 0.12), 0 10px 22px rgba(0, 0, 0, 0.22);
}
.v1p .gr__repo.is-on strong { color: #5eead4; }
.v1p .gr__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 6px;
}
.v1p .gr__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a2129;
  color: #c5d0dc;
  font-size: 10px;
  font-weight: 800;
}
.v1p .gr__main {
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(0, 165, 180, 0.1), transparent 55%),
    #1a2129;
}
.v1p .gr__toolbar { padding: 12px 14px 8px; }
.v1p .gr__modes {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}
.v1p .gr__mode {
  margin: 0;
  padding: 7px 10px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--app-text-muted);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.v1p .gr__mode.is-on {
  background: color-mix(in srgb, #00a5b4 16%, #121820);
  color: #5eead4;
  box-shadow: 0 0 0 1px color-mix(in srgb, #00a5b4 35%, transparent);
}
.v1p .gr__views {
  flex: 1;
  min-height: 0;
  padding: 0 12px 12px;
  overflow: auto;
}
.v1p .gr__view { display: none; }
.v1p .gr__view.is-on { display: grid; gap: 8px; }
.v1p .hero-pane#hero-git.is-xfer .gr__view.is-on {
  animation: pm-detail-in 0.35s ease;
}
.v1p .gr__commit {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #121820;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.v1p .gr__commit strong {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}
.v1p .gr__commit p {
  margin: 0;
  font-size: 11px;
  color: var(--app-text-muted);
}
.v1p .gr__commit > em {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  color: #7dd3fc;
}
.v1p .gr__commit.is-on {
  border-color: color-mix(in srgb, #00a5b4 45%, transparent);
  background: color-mix(in srgb, #00a5b4 9%, #121820);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(0, 165, 180, 0.12), 0 12px 26px rgba(0, 0, 0, 0.28);
}
.v1p .gr__hash {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a2129;
  color: #5eead4;
  font-size: 11px;
  font-weight: 800;
  font-family: ui-monospace, Consolas, monospace;
}
.v1p .gr__pill {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.12);
  color: #fcd34d;
  font-size: 10px;
  font-weight: 800;
}
.v1p .gr__mr {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, #f59e0b 28%, transparent);
  background:
    linear-gradient(180deg, rgba(245, 158, 11, 0.1), transparent 40%),
    #121820;
  display: grid;
  gap: 10px;
}
.v1p .gr__mr-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
}
.v1p .gr__mr-top strong { font-size: 14px; }
.v1p .gr__mr > p {
  margin: 0;
  font-size: 12px;
  color: var(--app-text-muted);
}
.v1p .gr__mr b { color: #5eead4; font-weight: 800; }
.v1p .gr__mr-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.v1p .gr__mr-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a2129;
  font-size: 10px;
  font-weight: 800;
  color: #c5d0dc;
}
.v1p .gr__diff {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #0f1419;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 11px;
}
.v1p .gr__diff .is-del { color: #fecaca; }
.v1p .gr__diff .is-add { color: #86efac; }
.v1p .gr__cardlink {
  display: grid;
  gap: 10px;
}
.v1p .gr__cardlink-task {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #121820;
}
.v1p .gr__cardlink-task > span:first-child {
  font-size: 12px;
  font-weight: 800;
  color: #7dd3fc;
}
.v1p .gr__cardlink-task strong { font-size: 13px; }
.v1p .gr__cardlink-task em {
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  color: #5eead4;
}
.v1p .gr__cardlink-box {
  padding: 14px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, #00a5b4 30%, transparent);
  background:
    linear-gradient(180deg, rgba(0, 165, 180, 0.1), transparent 45%),
    #121820;
  display: grid;
  gap: 10px;
}
.v1p .gr__cardlink-label {
  font-size: 11px;
  font-weight: 800;
  color: #5eead4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.v1p .gr__cardlink-box > p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}
.v1p .gr__cardlink-box b { color: #5eead4; }
.v1p .gr__cardlink-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #1a2129;
  font-size: 12px;
  font-weight: 700;
}
.v1p .git-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.v1p .git-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2dd4bf;
  animation: mrw-live 1.6s ease-out infinite;
}
@media (max-width: 900px) {
  .v1p .gr {
    grid-template-columns: 1fr;
    overflow: auto;
  }
  .v1p .gr__toolbar { flex-direction: column; }
}


/* extracted 5926-6987 */

.v1p .im {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(0, 1.35fr);
  min-height: 320px;
  max-height: 420px;
  border: 1px solid var(--app-border-strong);
  border-radius: 16px;
  background: var(--app-surface);
  overflow: hidden;
}
.v1p .im__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 8px 12px;
  border-right: 1px solid var(--app-border);
  background: linear-gradient(180deg, #1a2129 0%, #151c24 100%);
  min-width: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.v1p .im__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin: 0 2px 8px;
  padding: 4px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}
.v1p .im__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--app-text-muted);
}
.v1p .im__tab.is-on {
  background: var(--app-surface-elevated);
  color: var(--app-accent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
}
.v1p .im__sec {
  margin: 8px 8px 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--app-text-muted);
}
.v1p .im__item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 7px 8px;
  border-radius: 10px;
  min-width: 0;
}
.v1p .im__item.is-on {
  background: var(--app-accent-soft);
}
.v1p .im__ava {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  overflow: hidden;
  flex: 0 0 32px;
}
.v1p .im__ava--task {
  border-radius: 8px;
  font-size: 8px;
  letter-spacing: -0.04em;
  background: #1e3a5f;
  color: #93c5fd;
}
.v1p .im__ava--group { background: linear-gradient(135deg, #2563eb, #0f766e); }
.v1p .im__ava--bot {
  background: color-mix(in srgb, var(--app-accent) 22%, #121820);
  padding: 2px;
}
.v1p .im__ava--bot img { width: 100%; height: 100%; object-fit: contain; }
.v1p .im__ava--standup { background: #0f766e; font-size: 13px; }
.v1p .im__copy { min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.v1p .im__name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v1p .im__prev,
.v1p .im__sub {
  font-size: 12px;
  color: var(--app-text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v1p .im__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex: 0 0 auto;
}
.v1p .im__time { font-size: 10px; font-weight: 600; color: var(--app-text-muted); }
.v1p .im__badge {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.v1p .im__thread {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: linear-gradient(180deg, #0f1419 0%, #121820 100%);
}
.v1p .im__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--app-border);
  flex: 0 0 auto;
}
.v1p .im__msgs {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v1p .im__msg {
  max-width: 92%;
  padding: 8px 10px;
  border-radius: 12px;
  background: var(--app-control-bg);
  font-size: 13px;
  line-height: 1.4;
}
.v1p .im__msg--bot {
  background: var(--app-accent-soft);
  color: #d7f0ff;
}
.v1p .im__who {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--app-text-muted);
  margin-bottom: 2px;
}
.v1p .im__msg--bot .im__who { color: #9dd8f5; }
.v1p .im__msg--me {
  align-self: flex-end;
  margin-left: auto;
  text-align: right;
  border-color: color-mix(in srgb, #2aabee 28%, transparent);
  background: color-mix(in srgb, #2aabee 10%, #121820);
}
.v1p .im__msg--me .im__who {
  color: #7dd3fc;
}
.v1p .im__msg--sticker {
  background: transparent;
  padding: 4px 0;
  max-width: 148px;
  border: 0;
  box-shadow: none;
}
.v1p .im__msg--me.im__msg--sticker {
  align-self: flex-end;
  margin-left: auto;
}
.v1p .im__sticker {
  margin: 4px 0 0;
  display: grid;
  justify-items: end;
  gap: 6px;
}
.v1p .im__sticker img {
  display: block;
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--app-border);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  background: #fff;
}
.v1p .im__sticker figcaption {
  font-size: 11px;
  font-weight: 600;
  color: var(--app-text-muted);
}
.v1p .im__msg a {
  font-weight: 700;
  color: var(--app-accent);
  text-decoration: none;
}
.v1p .im__compose {
  margin: 0 12px 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 13px;
  position: relative;
  overflow: visible;
  z-index: 3;
  flex: 0 0 auto;
}
.v1p .im__compose-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: stretch;
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid var(--app-control-border);
  background: var(--app-control-bg);
  overflow: visible;
  position: relative;
}
.v1p .im__kind {
  position: relative;
  align-self: stretch;
  display: flex;
  z-index: 2;
}
.v1p .im__kind-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 78px;
  min-height: 44px;
  margin: 0;
  padding: 6px 8px;
  border: 0;
  border-right: 1px solid var(--app-control-border);
  border-radius: 12px 0 0 12px;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: default;
}
.v1p .im__kind-btn--linked {
  background: color-mix(in srgb, #2aabee 16%, transparent);
  color: #7dd3fc;
}
.v1p .im__kind-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.v1p .im__kind-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  max-width: 64px;
}
.v1p .im__kind-menu {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  width: 220px;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid var(--app-border);
  background: #151b22;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
.v1p .im__kind-option {
  display: grid;
  gap: 2px;
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--app-text);
}
.v1p .im__kind-option strong {
  font-size: 12px;
  font-weight: 700;
}
.v1p .im__kind-option small {
  font-size: 11px;
  color: var(--app-text-muted);
}
.v1p .im__kind-option.is-active {
  background: color-mix(in srgb, #2aabee 14%, transparent);
}
.v1p .im__kind-option.is-active strong {
  color: #7dd3fc;
}
.v1p .im__compose-input {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: var(--app-text-muted);
  font-size: 12px;
  min-width: 0;
}
.v1p .im__compose-tools {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-left: 1px solid var(--app-control-border);
  color: #7dd3fc;
}
.v1p .im__compose-send {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}


.v1p .im--hero .im__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.v1p .im--hero .im__scroll {
  flex: 1;
  min-height: 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.v1p .im--hero .im__item {
  width: 100%;
  margin: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.v1p .im--hero .im__item:hover {
  background: rgba(255, 255, 255, 0.04);
}
.v1p .im--hero .im__tab {
  border: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  background: transparent;
}
.v1p .im--hero .im__msgs {
  flex: 1;
  min-height: 0;
  overflow: auto;
}
.v1p .im--hero .im__msg b {
  color: #7dd3fc;
  font-weight: 800;
}
.v1p .hero-pane#hero-im.is-xfer .im__msgs {
  animation: pm-detail-in 0.35s ease;
}
.v1p .im-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.v1p .im-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2aabee;
  animation: mrw-live 1.6s ease-out infinite;
}
@media (max-width: 900px) {
  .v1p .im--hero {
    grid-template-columns: 1fr;
    overflow: auto;
    max-height: none;
  }
}

.attn,
.aichat,
.v1p .splan {
  border: 1px solid var(--app-border);
  border-radius: 16px;
  background: var(--app-surface-elevated);
  overflow: hidden;
}
.attn__head,
.v1p .splan__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px 10px;
}
.attn__head h3,
.v1p .splan__head h3 {
  margin: 0;
  font-size: 16px;
}
.attn__count,
.v1p .splan__count {
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--app-border);
  font-size: 12px;
  font-weight: 800;
  color: var(--app-text-muted);
}
.v1p .attn__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.v1p .attn__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid var(--app-border);
}
.v1p .attn__main { min-width: 0; flex: 1; }
.v1p .attn__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}
.v1p .attn__title a {
  color: var(--app-accent);
  text-decoration: none;
  font-weight: 700;
}
.v1p .attn__status {
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 800;
  border: 1px solid transparent;
  white-space: nowrap;
}
.v1p .attn__status--open {
  border-color: rgba(61, 214, 140, 0.35);
  background: rgba(61, 214, 140, 0.12);
  color: var(--app-success);
}
.v1p .attn__status--urgent {
  border-color: rgba(242, 85, 90, 0.4);
  background: rgba(242, 85, 90, 0.12);
  color: var(--app-danger);
}
.v1p .attn__meta {
  margin: 6px 0 0;
  color: var(--app-text-muted);
  font-size: 13px;
  line-height: 1.45;
}
.v1p .attn__btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.v1p .attn__btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}

.v1p .aichat__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--app-border);
}
.v1p .aichat__ava {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: color-mix(in srgb, var(--app-accent) 18%, #121820);
  flex: 0 0 36px;
}
.v1p .aichat__ava img { width: 100%; height: 100%; object-fit: contain; display: block; }
.v1p .aichat__ava--sm { width: 28px; height: 28px; flex-basis: 28px; margin-top: 2px; }
.v1p .aichat__name { font-size: 14px; font-weight: 700; }
.v1p .aichat__sub { font-size: 12px; color: var(--app-text-muted); }
.v1p .aichat__thread {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
}
.v1p .aichat__row { display: flex; align-items: flex-end; gap: 8px; max-width: 92%; }
.v1p .aichat__row--user { align-self: flex-end; flex-direction: row-reverse; margin-left: auto; }
.v1p .aichat__bubble {
  padding: 10px 12px;
  border-radius: 16px;
  border-bottom-left-radius: 6px;
  background: #121820;
  border: 1px solid var(--app-border);
  font-size: 14px;
  line-height: 1.5;
}
.v1p .aichat__bubble--user {
  background: color-mix(in srgb, var(--app-accent) 22%, #1a2129);
  border-color: color-mix(in srgb, var(--app-accent) 35%, var(--app-border));
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 6px;
}
.v1p .aichat__who {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--app-text-muted);
  margin-bottom: 4px;
}
.v1p .aichat__bubble a {
  font-weight: 700;
  color: var(--app-accent);
  text-decoration: none;
}
.v1p .aichat__cites { display: block; margin-top: 8px; }
.v1p .aichat__compose {
  margin: 0 12px 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--app-control-border);
  background: var(--app-control-bg);
  color: var(--app-text-muted);
  font-size: 13px;
}

.v1p .splan__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 0 16px 12px;
}
.v1p .splan__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border: 1px solid var(--app-border);
  border-radius: 12px;
  background: #121820;
}
.v1p .splan__stat span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--app-text-muted);
}
.v1p .splan__stat strong { font-size: 18px; line-height: 1.2; }
.v1p .splan__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.v1p .splan__table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--app-text-muted);
  padding: 8px 12px;
  border-top: 1px solid var(--app-border);
  border-bottom: 1px solid var(--app-border);
  background: #151c24;
}
.v1p .splan__table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--app-border);
  vertical-align: top;
}
.v1p .splan__table tr:last-child td { border-bottom: 0; }
.v1p .splan__table code {
  font-size: 12px;
  color: var(--app-text-muted);
}
.v1p .splan__table a {
  color: var(--app-accent);
  font-weight: 600;
  text-decoration: none;
}
.v1p .splan__stage {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--stage) 40%, var(--app-border));
  background: color-mix(in srgb, var(--stage) 16%, transparent);
  color: var(--app-text);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.v1p .splan__table .is-spent { color: var(--secondary); font-weight: 700; }

.v1p .day__label span { display: block; font-weight: 500; font-size: 13px; color: var(--app-text-muted); margin-top: 4px; }

.v1p .mini {
  border: 1px solid var(--app-border);
  border-radius: 12px;
  background: #121820;
  padding: 10px 12px;
  font-size: 13px;
}
.v1p .mini--chat .bubble {
  max-width: 92%;
  padding: 8px 10px;
  border-radius: 12px;
  background: var(--app-control-bg);
  margin-bottom: 6px;
}
.v1p .mini--chat .bubble--bot {
  background: var(--app-accent-soft);
  color: #d7f0ff;
}
.v1p .mini--meet { border-left: 3px solid var(--secondary); }
.v1p .mini--git { font-family: ui-monospace, Consolas, monospace; font-size: 12px; color: var(--app-text-muted); }
.v1p .mini--git strong { color: var(--app-text); font-family: var(--font); }

.v1p .briefing {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 16px 18px 18px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--app-accent) 16%, var(--app-border-solid));
  background:
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--app-accent) 7%, var(--app-surface-elevated)) 0%,
      var(--app-surface-elevated) 48%,
      color-mix(in srgb, var(--app-accent) 3%, var(--app-surface-elevated)) 100%
    );
}
.v1p .briefing::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: -35% auto auto -18%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--app-accent) 20%, transparent), transparent 68%);
  opacity: 0.5;
  z-index: -1;
}
.v1p .briefing__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.v1p .briefing__avatar {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin-top: 2px;
  border-radius: 50%;
  overflow: hidden;
  background: color-mix(in srgb, var(--app-accent) 18%, #121820);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--app-accent) 14%, transparent);
}
.v1p .briefing__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.v1p .briefing__main { flex: 1 1 auto; min-width: 0; }
.v1p .briefing__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.v1p .briefing__who {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
  min-width: 0;
  font-size: 13px;
  line-height: 1.3;
}
.v1p .briefing__who strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.v1p .briefing__tag {
  color: var(--app-accent);
  font-weight: 650;
}
.v1p .briefing__tag::before {
  content: "В·";
  margin-right: 8px;
  color: var(--app-text-muted);
  font-weight: 500;
}
.v1p .briefing__time {
  color: var(--app-text-muted);
  font-size: 12px;
}
.v1p .briefing__time::before {
  content: "В·";
  margin-right: 8px;
}
.v1p .briefing__actions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}
.v1p .briefing__ask {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 9px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--app-accent);
  background: color-mix(in srgb, var(--app-accent) 9%, transparent);
}
.v1p .briefing__refresh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  color: var(--app-text-muted);
}
.v1p .briefing__body {
  font-size: 14.5px;
  line-height: 1.55;
}
.v1p .briefing__body p { margin: 0 0 0.8em; }
.v1p .briefing__body p:last-child { margin-bottom: 0; }
.v1p .briefing__body a {
  font-weight: 700;
  color: var(--app-accent);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--app-accent) 28%, transparent);
}

/* Theater */
.v1p .theater__groups {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.v1p .theater__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.v1p .theater__group-label {
  width: 76px;
  flex: 0 0 76px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--app-text-muted);
}
.v1p .theater__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.v1p .theater__tabs button {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--app-control-border);
  background: var(--app-control-bg);
  color: var(--app-text-muted);
  font-weight: 600;
  cursor: pointer;
}
.theater__tabs button.is-on,
.v1p .theater__tabs button:hover {
  color: var(--app-text);
  border-color: rgba(42, 171, 238, 0.35);
}
.v1p .theater__tabs button.is-on {
  box-shadow: inset 0 0 0 1px rgba(42, 171, 238, 0.35);
  color: var(--app-accent);
}
.v1p .panel { display: none; }
.v1p .panel.is-on { display: block; }
.v1p .panel-note {
  margin: 12px 0 0;
  color: var(--app-text-muted);
  font-size: 14px;
  max-width: 720px;
}

.v1p .report-line {
  display: grid;
  grid-template-columns: 72px 1fr 88px;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--app-border);
  border-radius: 12px;
  background: var(--app-surface-elevated);
  margin-bottom: 8px;
}
.v1p .report-line__hours { font-weight: 800; color: var(--secondary); }
.v1p .kb-tree { font-size: 13px; }
.v1p .kb-tree div { padding: 6px 8px; border-radius: 8px; }
.v1p .kb-tree .is-on { background: var(--app-accent-soft); color: var(--app-text); }
.v1p .ai-cite {
  display: inline-flex;
  margin: 4px 4px 0 0;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(42, 171, 238, 0.4);
  color: var(--app-accent);
  font-size: 11px;
  font-weight: 700;
}

/* Zoo */
.v1p .zoo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
}
.zoo__pile,
.v1p .zoo__one {
  border-radius: 16px;
  border: 1px solid var(--app-border);
  padding: 20px;
  background: var(--app-surface-elevated);
}
.v1p .zoo__pile { opacity: 0.85; }
.v1p .tags { display: flex; flex-wrap: wrap; gap: 8px; }
.v1p .tag {
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--app-control-bg);
  border: 1px dashed var(--app-control-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--app-text-muted);
  transform: rotate(var(--r, 0deg));
}
.v1p .zoo__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--app-text);
}
.v1p .zoo__vs {
  display: grid;
  place-items: center;
  color: var(--app-text-muted);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
}

/* On-prem */
.v1p .prem {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}
.v1p .nest {
  border: 1px solid var(--app-border-strong);
  border-radius: 16px;
  padding: 18px;
  background: #121820;
}
.v1p .nest + .nest,
.v1p .nest .nest { margin-top: 12px; }
.v1p .nest__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--app-text-muted);
  margin-bottom: 8px;
}
.v1p .cloud-out {
  border: 1px dashed rgba(242, 85, 90, 0.45);
  border-radius: 16px;
  padding: 20px;
  color: var(--app-danger);
  position: relative;
  text-align: center;
  background: rgba(242, 85, 90, 0.06);
}
.v1p .cloud-out::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-top: 2px solid rgba(242, 85, 90, 0.7);
  transform: rotate(-18deg);
  top: 48%;
}

/* Spec */
.v1p .spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.v1p .spec article {
  border: 1px solid var(--app-border);
  border-radius: 16px;
  padding: 20px;
  background: var(--app-surface-elevated);
}
.v1p .spec h3 { margin: 0 0 12px; font-size: 16px; }
.v1p .spec ul { margin: 0; padding: 0 0 0 18px; color: var(--app-text-muted); }
.v1p .spec li { margin: 6px 0; }
.v1p .spec--3 { grid-template-columns: 1fr 1fr 1fr; }

.v1p .thread { display: grid; gap: 8px; }
.v1p .thread__item {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--app-border);
  background: #121820;
  font-size: 13px;
}
.v1p .thread__item strong { display: block; font-size: 12px; color: var(--app-text-muted); margin-bottom: 2px; }
.v1p .meta { font-size: 13px; color: var(--app-text-muted); margin: 0 0 12px; }

.v1p .plan-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.v1p .plan-table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--app-text-muted);
  padding: 8px 10px;
  border-bottom: 1px solid var(--app-border);
}
.v1p .plan-table td {
  padding: 10px;
  border-bottom: 1px solid var(--app-border);
}
.v1p .plan-table tr:last-child td { border-bottom: 0; }
.v1p .badge {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.v1p .badge--draft { background: var(--app-accent-soft); color: var(--app-accent); }
.v1p .badge--rev { background: rgba(252, 211, 77, 0.14); color: var(--app-warning); }
.v1p .badge--ok { background: rgba(61, 214, 140, 0.14); color: var(--app-success); }

.v1p .flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.v1p .flow__node {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--app-border-strong);
  background: var(--app-surface-elevated);
  font-size: 13px;
  font-weight: 600;
  min-width: 120px;
}
.v1p .flow__node span { display: block; font-size: 11px; font-weight: 500; color: var(--app-text-muted); margin-top: 2px; }
.v1p .flow__arrow { color: var(--secondary); font-weight: 800; }

.v1p .test-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--app-border);
  border-radius: 12px;
  background: var(--app-surface-elevated);
  margin-bottom: 8px;
  font-size: 13px;
}
.v1p .chip--fail { color: #fecaca; border-color: rgba(237, 28, 36, 0.35); background: rgba(237, 28, 36, 0.12); }
.v1p .chip--skip { color: var(--app-warning); border-color: rgba(252, 211, 77, 0.35); }

.v1p .bind {
  display: grid;
  gap: 8px;
}
.v1p .bind__item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--app-border);
  border-radius: 12px;
  background: var(--app-surface-elevated);
}
.v1p .bind__item p { margin: 0; font-size: 13px; color: var(--app-text-muted); }
.v1p .bind__item strong { display: block; color: var(--app-text); margin-bottom: 2px; }

.v1p .map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.v1p .map article {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--app-border);
  background: var(--app-surface-elevated);
  min-height: 128px;
}
.v1p .map h3 { margin: 0 0 6px; font-size: 15px; }
.v1p .map p { margin: 0; font-size: 13px; color: var(--app-text-muted); }

.v1p .who {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.v1p .who article {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--app-border);
  background: var(--app-surface-elevated);
}
.v1p .who h3 { margin: 0 0 8px; font-size: 16px; }
.v1p .who p { margin: 0; color: var(--app-text-muted); font-size: 14px; }
.v1p .who ul { margin: 12px 0 0; padding: 0 0 0 18px; color: var(--app-text-muted); font-size: 14px; }

.v1p .presence {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--app-text-muted);
}
.v1p .presence i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--app-success);
  display: inline-block;
}

/* Form */
.v1p .contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.v1p .field { margin-bottom: 12px; }
.v1p .field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.field input,
.v1p .field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--app-control-border);
  background: var(--app-control-bg);
  color: var(--app-text);
}
.field input:focus,
.v1p .field textarea:focus {
  outline: none;
  border-color: var(--app-accent);
  box-shadow: var(--app-focus-ring);
}

.v1p .lp-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.v1p .lp-footer {
  padding: 28px;
  border-top: 1px solid var(--app-border);
  color: var(--app-text-muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
}
.v1p .lp-footer__note {
  font-size: 12px;
  color: var(--app-text-muted);
}

@media (max-width: 980px) {
  .v1p .lp-nav { display: none; }
  .v1p .shell { grid-template-columns: 1fr; max-height: none; }
  .v1p .sidebar { display: none; }
  .v1p .kanban { overflow: hidden; }
  .v1p .hero__copy { margin-top: 16px; }
  .day__body,
  .v1p .day__body--wide { grid-template-columns: 1fr; }
  .v1p .im { grid-template-columns: 1fr; max-height: none; }
  .v1p .schedule { grid-template-columns: 1fr; }
  .v1p .schedule__controls { justify-content: flex-start; }
  .v1p .kb-mini { grid-template-columns: 1fr; }
  .v1p .test-run__row { grid-template-columns: 64px minmax(0, 1fr); }
  .test-run__row .chip,
  .v1p .test-run__row .test-run__action { grid-column: 2; justify-self: start; }
  .v1p .splan { overflow-x: auto; }
  .v1p .attn__row { flex-wrap: wrap; }
  .v1p .zoo,
  .v1p .prem,
  .v1p .spec,
  .v1p .spec--3,
  .v1p .contact,
  .v1p .map,
  .v1p .who,
  .v1p .beats { grid-template-columns: 1fr; }
  .v1p .zoo__vs { display: none; }
  .v1p .theater__group-label { width: 100%; flex-basis: 100%; }
}



.v1p .hero-pane#hero-org.is-on {
  display: flex;
  flex-direction: column;
}
.v1p .hero-pane#hero-org.is-on > .page-head { flex: 0 0 auto; }
.v1p .hero-pane#hero-org.is-on > .od { flex: 1 1 auto; min-height: 0; }

/* Org desk */


/* Compact preview layout — show full widgets, no mid-card clipping */
.v1p .page-head,
.v1p .stats { display: none !important; }

.v1p {
  display: flex;
  flex-direction: column;
  padding: 12px;
  min-height: 0;
}

.v1p .kanban {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  min-height: 0;
  max-height: none;
  overflow: visible;
  flex: none;
  align-items: start;
}
.v1p .col--collapsed,
.v1p .col:nth-child(n+3) { display: none; }
.v1p .kanban-card:nth-child(n+3) { display: none; }
.v1p .col {
  min-height: 0;
  height: auto;
  max-height: none;
  overflow: visible;
}
.v1p .col__cards {
  max-height: none !important;
  overflow: visible !important;
  height: auto;
}
.v1p .kanban-card {
  flex: 0 0 auto;
}

.v1p .kbw,
.v1p .pm,
.v1p .tw,
.v1p .gr,
.v1p .im,
.v1p .gai,
.v1p .ix,
.v1p .mrw {
  margin: 0;
  max-height: none;
  min-height: 0;
  overflow: visible;
  flex: 1 1 auto;
}

.v1p .kbw { grid-template-columns: 0.95fr 1.05fr !important; gap: 10px; }
.v1p .kbw__tree,
.v1p .kbw__search { display: none; }
.v1p .kbw--preview .kbw__tree {
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  overflow: visible;
  max-height: none;
}
.v1p .kbw--preview .kbw__stage {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px;
  min-height: 0;
  overflow: visible;
}
.v1p .kbw--preview .kbw__tabs,
.v1p .kbw--preview .kbw__views { display: none; }
.v1p .kbw--preview .kbw__doc-head,
.v1p .kbw--preview .kbw__lines { display: block; }
.v1p .kbw__stage { min-height: 0; overflow: visible; }
.v1p .kbw__row.is-caret { display: none; }

.v1p .pm { grid-template-columns: 1fr !important; }
.v1p .pm__side,
.v1p .pm__tip { display: none !important; }
.v1p .pm__board {
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.v1p .pm__toolbar {
  flex: 0 0 auto;
}
.v1p .pm__canvas,
.v1p .pm__canvas--flow {
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 12px 12px;
  padding: 14px 12px;
  overflow: hidden;
  min-height: 280px;
  flex: 1 1 auto;
}
.v1p .pm--preview .pm__flow {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 4px 8px;
  width: 100%;
  max-width: 280px;
  overflow: visible;
}
.v1p .pm--preview .pm__node {
  transform: none;
  width: 100%;
  max-width: 220px;
  min-width: 0;
  padding: 10px 12px 10px 10px;
  flex: 0 0 auto;
}
.v1p .pm--preview .pm__wire {
  width: 2px;
  height: 14px;
  min-width: 0;
  flex: 0 0 14px;
}
.v1p .pm--preview .pm__fork {
  display: flex;
  width: 100%;
  max-width: 220px;
  position: relative;
}
.v1p .pm--preview .pm__branch {
  display: flex;
  left: calc(100% + 4px);
  top: 50%;
}
.v1p .pm--preview .pm__branch-line {
  width: 18px;
}
.v1p .pm--preview .pm__pill {
  min-width: 64px;
  height: 24px;
  font-size: 10px;
}

.v1p .tw { grid-template-columns: 1fr !important; }
.v1p .tw__side { display: none; }
.v1p .tw__list { overflow: visible; max-height: none; }
.v1p .tw__case:nth-child(n+4) { display: none; }

.v1p .gr { grid-template-columns: 1fr !important; }
.v1p .gr__side { display: none; }
.v1p .gr__views { overflow: visible; max-height: none; }
.v1p .gr__modes .gr__mode:nth-child(n+3) { display: none; }

.v1p .im { grid-template-columns: 1fr !important; min-height: 0 !important; max-height: none !important; overflow: visible; }
.v1p .im__list { display: none; }
.v1p .im--hero { min-height: 0 !important; max-height: none !important; overflow: visible; }
.v1p .im__msgs { max-height: none !important; overflow: visible !important; }
.v1p .im__thread { min-height: 0; overflow: visible; }

.v1p .gai { display: flex; flex-direction: column; }
.v1p .gai__stage { padding: 0; overflow: visible; }
.v1p .gai__letter { margin: 0; }

.v1p .ix { grid-template-columns: 148px 1fr !important; }
.v1p .ix__chips,
.v1p .ix__hint { display: none; }
.v1p .ix__side { overflow: visible; }
.v1p .ix__mode:nth-child(n+4) { display: none; }
.v1p .ix__feed > div:nth-child(n+3) { display: none; }
.v1p .ix--preview .ix__ldap,
.v1p .ix--preview .ix__gl {
  overflow: visible;
  min-height: 0;
}
.v1p .ix--preview .ix__ldap-grid,
.v1p .ix--preview .ix__gl-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.v1p .ix--preview .ix__mode strong {
  font-size: 12px;
}
.v1p .ix--preview .ix__mode span {
  font-size: 10px;
}

.v1p .mrw { grid-template-columns: 1fr !important; }
.v1p .mrw__week { display: none; }
.v1p .mrw__ai { margin-top: 8px; }
.v1p .mrw__pane--report { overflow: visible; max-height: none; }
.v1p .mrw__line {
  opacity: 1;
  transform: none;
}
.v1p .mrw__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0 4px;
}
.v1p .mrw__summary span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--app-text-muted);
  font-size: 11px;
  font-weight: 700;
}
.v1p .mrw__body {
  margin: 2px 0 6px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.v1p .mrw__body-label {
  margin-bottom: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--app-text-muted);
}
.v1p .mrw__body p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--app-text);
}
.v1p .mrw__sec {
  margin: 4px 2px 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--app-text-muted);
}
.v1p .mrw__line > em {
  white-space: nowrap;
  font-size: 11px;
}

@media (max-width: 900px) {
  .v1p .kbw--preview { grid-template-columns: 1fr !important; }
  .v1p .kbw--preview .kbw__stage { display: none; }
  .v1p .pm--preview .pm__branch { display: none; }
  .v1p .ix { grid-template-columns: 1fr !important; }
  .v1p .ix__side { display: none; }
}