.ux-command-panel {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(260px, 0.85fr) minmax(300px, 1fr);
  gap: 14px;
  align-items: stretch;
  margin-bottom: 18px;
}

.ux-command-copy,
.ux-command-flow,
.ux-command-roles {
  border: 1px solid var(--border-soft);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.ux-command-copy {
  padding: 18px 20px;
}

.ux-eyebrow {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 9px;
  text-transform: uppercase;
}

.ux-command-copy h2 {
  font-size: 21px;
  line-height: 1.25;
  margin: 0;
}

.ux-command-copy p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin: 10px 0 0;
}

.ux-command-flow {
  align-content: center;
  display: grid;
  gap: 8px;
  padding: 14px;
}

.ux-command-flow span {
  align-items: center;
  background: rgba(125, 211, 252, 0.07);
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 999px;
  color: var(--text);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: space-between;
  min-height: 30px;
  padding: 6px 12px;
}

.ux-command-roles {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.ux-command-roles div {
  border-bottom: 1px solid var(--border-soft);
  padding: 13px 16px;
}

.ux-command-roles div:last-child {
  border-bottom: 0;
}

.ux-command-roles strong,
.ux-command-roles span {
  display: block;
}

.ux-command-roles strong {
  color: var(--text);
  font-size: 13px;
}

.ux-command-roles span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  margin-top: 4px;
}

@media (max-width: 1280px) {
  .ux-command-panel {
    grid-template-columns: 1fr;
  }
}
