*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
  background: radial-gradient(circle at top left, #ffffff, #f3f5f9 55%);
  color: #18212f;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sb-canvas-wrap {
  min-width: 320px;
}

.nx-stack {
  display: grid;
  gap: 16px;
}

.nx-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.nx-demo-card {
  width: min(720px, 92vw);
  border: 1px solid #dce3ee;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  padding: 24px;
}

.nx-demo-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.nx-heading-serif,
.nx-type-serif {
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

.nx-heading-serif {
  letter-spacing: 0;
  font-weight: 600;
}

.nx-heading-mixed {
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

.nx-heading-mixed em,
.nx-heading-mixed .is-serif {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-style: normal;
}

.nx-demo-subtle {
  margin: 0;
  color: #607086;
  font-size: 14px;
}

.nx-code {
  font-family: "IBM Plex Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 12px;
  background: #f8fafc;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  padding: 2px 6px;
}

.nx-inline-icon {
  display: inline-flex;
  vertical-align: middle;
}

body.nx-no-scroll {
  overflow: hidden;
}

.nx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  transition: background-color 120ms ease, border-color 120ms ease, color 120ms ease, box-shadow 120ms ease;
  white-space: nowrap;
}
.nx-btn:disabled, .nx-btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.nx-btn:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-btn--md {
  min-height: 38px;
  padding: 0 14px;
  font-size: 14px;
}

.nx-btn--sm {
  min-height: 32px;
  padding: 0 12px;
  font-size: 12px;
  border-radius: 8px;
}

.nx-btn--lg {
  min-height: 44px;
  padding: 0 18px;
  font-size: 15px;
}

.nx-btn--icon {
  width: 38px;
  min-height: 38px;
  padding: 0;
}

.nx-btn--primary {
  background: #234a45;
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}
.nx-btn--primary:hover:not(:disabled):not(.is-disabled) {
  background: #1c3b37;
}

.nx-btn--outline {
  background: #ffffff;
  border-color: #dce3ee;
  color: #18212f;
}
.nx-btn--outline:hover:not(:disabled):not(.is-disabled) {
  background: #eef2f8;
}

.nx-btn--ghost {
  background: transparent;
  color: #18212f;
}
.nx-btn--ghost:hover:not(:disabled):not(.is-disabled) {
  background: rgba(24, 33, 47, 0.06);
}

.nx-btn--danger {
  background: #b83b3b;
  color: #fff;
}
.nx-btn--danger:hover:not(:disabled):not(.is-disabled) {
  background: #9f2f2f;
}

.nx-btn__label-desktop {
  display: none;
}

.nx-btn__label-mobile {
  display: inline;
}

@media (min-width: 768px) {
  .nx-btn__label-desktop {
    display: inline;
  }
  .nx-btn__label-mobile {
    display: none;
  }
}
.nx-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 22px;
  border-radius: 999px;
  padding: 0 10px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.nx-badge--default {
  background: rgba(35, 74, 69, 0.12);
  color: #234a45;
}

.nx-badge--muted {
  background: #f8fafc;
  color: #607086;
  border-color: #dce3ee;
}

.nx-badge--danger {
  background: rgba(184, 59, 59, 0.12);
  color: #b83b3b;
}

.nx-badge--solid {
  background: #234a45;
  color: #fff;
}

.nx-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #dce3ee;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.nx-card__header {
  padding: 20px 20px 12px;
  display: grid;
  gap: 8px;
}

.nx-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  color: #18212f;
}

.nx-card__description {
  margin: 0;
  font-size: 13px;
  color: #607086;
  line-height: 1.45;
}

.nx-card__body {
  padding: 0 20px 20px;
}

.nx-card__footer {
  padding: 16px 20px;
  border-top: 1px solid #dce3ee;
  background: rgba(248, 250, 252, 0.7);
}

.nx-dialog {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.nx-dialog[hidden] {
  display: none !important;
}

.nx-dialog__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 19, 30, 0.62);
  opacity: 0;
  transition: opacity 140ms ease;
}

.nx-dialog__panel {
  position: relative;
  width: min(560px, 100vw - 32px);
  margin: 8vh auto 0;
  background: #ffffff;
  border: 1px solid #dce3ee;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.18);
  transform: translateY(10px) scale(0.985);
  opacity: 0;
  transition: transform 160ms ease, opacity 160ms ease;
  overflow: hidden;
}

.nx-dialog.is-open .nx-dialog__overlay {
  opacity: 1;
}
.nx-dialog.is-open .nx-dialog__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.nx-dialog__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 12px;
}

.nx-dialog__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  color: #18212f;
}

.nx-dialog__description {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: #607086;
}

.nx-dialog__close {
  border: 1px solid transparent;
  background: transparent;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #607086;
}
.nx-dialog__close:hover {
  background: #f8fafc;
  color: #18212f;
}
.nx-dialog__close:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-dialog__body {
  padding: 0 20px 20px;
  display: grid;
  gap: 16px;
}

.nx-dialog__footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 0 20px 20px;
}

.nx-field {
  display: grid;
  gap: 8px;
}

.nx-field__label {
  font-size: 13px;
  font-weight: 600;
  color: #18212f;
}

.nx-input,
.nx-textarea {
  width: 100%;
  border: 1px solid #dce3ee;
  background: #ffffff;
  color: #18212f;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.nx-textarea {
  min-height: 92px;
  resize: vertical;
}

.nx-input:focus-visible,
.nx-textarea:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  color: currentColor;
  flex: 0 0 auto;
}

.nx-inline-icon > svg.nx-icon {
  display: block;
  stroke: currentColor;
}

.nx-icon--sm {
  font-size: 14px;
}

.nx-icon--md {
  font-size: 16px;
}

.nx-icon--lg {
  font-size: 20px;
}

.nx-btn .nx-icon {
  margin-inline: -1px;
}

.nx-btn .nx-inline-icon {
  line-height: 0;
}

[data-lucide] {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  color: currentColor;
}

.nx-lucide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.nx-lucide-card {
  border: 1px solid #dce3ee;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px;
  display: grid;
  gap: 8px;
}

.nx-lucide-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f6f8fc;
  color: #243345;
}

.nx-lucide-card__icon [data-lucide] {
  width: 18px;
  height: 18px;
}

.nx-lucide-card__name {
  font-size: 13px;
  font-weight: 700;
  word-break: break-word;
  line-height: 1.2;
}

.nx-lucide-card__slug {
  font-size: 11px;
  color: #607086;
  font-family: "IBM Plex Mono", monospace;
}

.nx-dropdown {
  position: relative;
  display: inline-block;
}

.nx-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nx-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  border: 1px solid #dce3ee;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.18);
  padding: 8px;
  z-index: 1100;
}

.nx-dropdown__menu[hidden] {
  display: none !important;
}

.nx-dropdown__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #607086;
  padding: 8px 12px;
}

.nx-dropdown__separator {
  height: 1px;
  background: #dce3ee;
  margin: 8px 0;
}

.nx-dropdown__item {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  border-radius: 8px;
  padding: 9px 10px;
  color: #18212f;
  cursor: pointer;
  font-size: 14px;
}

.nx-dropdown__item:hover,
.nx-dropdown__item:focus-visible {
  background: #f8fafc;
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-dropdown__item--danger {
  color: #b83b3b;
}

.nx-field {
  display: grid;
  gap: 8px;
}

.nx-field__label,
.nx-label {
  font-size: 13px;
  font-weight: 600;
  color: #18212f;
}

.nx-field__hint {
  font-size: 12px;
  color: #607086;
}

.nx-input,
.nx-textarea,
.nx-select {
  width: 100%;
  border: 1px solid #dce3ee;
  background: #ffffff;
  color: #18212f;
  border-radius: 12px;
  padding: 10px 12px;
  line-height: 1.3;
  transition: border-color 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
}
.nx-input:hover,
.nx-textarea:hover,
.nx-select:hover {
  border-color: #c9d5e5;
}
.nx-input:focus-visible,
.nx-textarea:focus-visible,
.nx-select:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
  border-color: rgba(35, 74, 69, 0.55);
}
.nx-input:disabled,
.nx-textarea:disabled,
.nx-select:disabled {
  opacity: 0.6;
  background: #f8fafc;
  cursor: not-allowed;
}

.nx-textarea {
  min-height: 92px;
  resize: vertical;
}

.nx-select {
  cursor: pointer;
}

.nx-form-grid {
  display: grid;
  gap: 16px;
}

.nx-form-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: calc(768px - 0.02px)) {
  .nx-form-grid--2 {
    grid-template-columns: 1fr;
  }
}
.nx-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #18212f;
  cursor: pointer;
  user-select: none;
}

.nx-check__control {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid #b6c4d8;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  flex: 0 0 auto;
}

.nx-check__control::after {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transform: rotate(-45deg) translateY(-1px);
}

.nx-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nx-check input:focus-visible + .nx-check__control {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-check input:checked + .nx-check__control {
  background: #234a45;
  border-color: #234a45;
}

.nx-check input:checked + .nx-check__control::after {
  border-left-color: #fff;
  border-bottom-color: #fff;
}

.nx-check__text {
  font-size: 14px;
}

.nx-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  color: #18212f;
}

.nx-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nx-radio__control {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid #b6c4d8;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nx-radio__control::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: transparent;
}

.nx-radio input:checked + .nx-radio__control {
  border-color: #234a45;
}

.nx-radio input:checked + .nx-radio__control::after {
  background: #234a45;
}

.nx-radio input:focus-visible + .nx-radio__control {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.nx-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nx-switch__track {
  width: 40px;
  height: 22px;
  border-radius: 999px;
  background: #c9d2e1;
  position: relative;
  transition: background-color 120ms ease;
  flex: 0 0 auto;
}

.nx-switch__track::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  transition: transform 120ms ease;
}

.nx-switch input:checked + .nx-switch__track {
  background: #234a45;
}

.nx-switch input:checked + .nx-switch__track::after {
  transform: translateX(18px);
}

.nx-switch input:focus-visible + .nx-switch__track {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-switch__text {
  font-size: 14px;
  color: #18212f;
}

.nx-table-wrap {
  border: 1px solid #dce3ee;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  overflow: auto;
}

.nx-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.nx-table th,
.nx-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid #dce3ee;
  font-size: 14px;
}

.nx-table thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #607086;
  background: rgba(248, 250, 252, 0.8);
}

.nx-table tbody tr:hover {
  background: rgba(35, 74, 69, 0.03);
}

.nx-table tbody tr:last-child td {
  border-bottom: 0;
}

.nx-tabs {
  display: grid;
  gap: 16px;
}

.nx-tabs__list {
  display: inline-flex;
  gap: 8px;
  padding: 4px;
  border: 1px solid #dce3ee;
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.85);
}

.nx-tabs__trigger {
  border: 0;
  background: transparent;
  color: #607086;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: background-color 120ms ease, color 120ms ease;
}
.nx-tabs__trigger:hover {
  color: #18212f;
}
.nx-tabs__trigger:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-tabs__trigger[aria-selected=true] {
  background: #fff;
  color: #18212f;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}

.nx-tabs__panel {
  border: 1px solid #dce3ee;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
}

.nx-tabs__panel[hidden] {
  display: none !important;
}

.nx-accordion {
  border: 1px solid #dce3ee;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  overflow: hidden;
}

.nx-accordion__item + .nx-accordion__item {
  border-top: 1px solid #dce3ee;
}

.nx-accordion__trigger {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-weight: 600;
  color: #18212f;
}

.nx-accordion__trigger:hover {
  background: rgba(248, 250, 252, 0.85);
}

.nx-accordion__trigger:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-accordion__icon {
  color: #607086;
  transition: transform 120ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nx-accordion__trigger[aria-expanded=true] .nx-accordion__icon {
  transform: rotate(180deg);
}

.nx-accordion__content {
  padding: 0 20px 16px;
  color: #607086;
  font-size: 14px;
  line-height: 1.5;
}

.nx-accordion__content[hidden] {
  display: none !important;
}

.nx-accordion__header-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

.nx-accordion__leading {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #ece8dd;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.nx-accordion__summary {
  min-width: 0;
  display: grid;
  gap: 2px;
  text-align: left;
}

.nx-accordion__title {
  font-size: 14px;
  font-weight: 700;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  color: #18212f;
  line-height: 1.25;
}

.nx-accordion__desc {
  font-size: 13px;
  color: #607086;
  line-height: 1.35;
  font-weight: 500;
}

.nx-toast-stack {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  display: grid;
  gap: 12px;
  width: min(360px, 100vw - 32px);
}

.nx-toast {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  border-radius: 12px;
  border: 1px solid #dce3ee;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.18);
  padding: 16px;
}

.nx-toast__title {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 700;
  color: #18212f;
}

.nx-toast__desc {
  margin: 0;
  font-size: 13px;
  color: #607086;
  line-height: 1.45;
}

.nx-toast__close {
  border: 0;
  background: transparent;
  color: #607086;
  cursor: pointer;
  border-radius: 8px;
  width: 28px;
  height: 28px;
}

.nx-toast__close:hover {
  background: #f8fafc;
  color: #18212f;
}

.nx-toast--success {
  border-left: 4px solid #3a9d68;
}

.nx-toast--warning {
  border-left: 4px solid #d1921b;
}

.nx-toast--danger {
  border-left: 4px solid #b83b3b;
}

.nx-toolkit-card {
  position: relative;
  border: 1px solid #dce3ee;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.nx-toolkit-card:hover {
  border-color: rgba(35, 74, 69, 0.25);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.1);
  transform: translateY(-1px);
}

.nx-toolkit-card__inner {
  padding: 20px;
  position: relative;
}

.nx-toolkit-card__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.nx-toolkit-card__icon-tile {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #ece8dd;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.nx-toolkit-card__icon-tile [data-lucide] {
  width: 18px;
  height: 18px;
}

.nx-toolkit-card__content {
  min-width: 0;
  flex: 1 1 auto;
}

.nx-toolkit-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.nx-toolkit-card__title {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  color: #18212f;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  transition: color 140ms ease;
}

.nx-toolkit-card:hover .nx-toolkit-card__title {
  color: #0f766e;
}

.nx-toolkit-card__description {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: #607086;
  font-family: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.nx-line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .nx-toolkit-card--stack-lg .nx-toolkit-card__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.nx-toolkit-highlights {
  display: grid;
  gap: 16px;
}

.nx-toolkit-highlights__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nx-toolkit-highlights__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
  color: #18212f;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

.nx-toolkit-highlights__subtitle {
  margin: 4px 0 0;
  font-size: 13px;
  color: #607086;
}

.nx-toolkit-highlights__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.nx-toolkit-highlights__link {
  text-decoration: none;
  color: inherit;
}

.nx-toolkit-highlights__card {
  height: 100%;
}

.nx-toolkit-highlights__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  border-radius: 8px;
  border: 1px solid #bbf7d0;
  background: #dcfce7;
  color: #15803d;
  font-size: 11px;
  font-weight: 600;
  font-family: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.nx-toolkit-highlights__badge [data-lucide] {
  width: 12px;
  height: 12px;
}

.nx-toolkit-highlights__badge--desktop {
  position: absolute;
  top: 12px;
  right: 12px;
  display: none;
}

.nx-toolkit-highlights__badge--mobile {
  display: inline-flex;
  flex: 0 0 auto;
}

@media (min-width: 1024px) {
  .nx-toolkit-highlights__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .nx-toolkit-highlights__badge--desktop {
    display: inline-flex;
  }
  .nx-toolkit-highlights__badge--mobile {
    display: none;
  }
}
@media (max-width: calc(768px - 0.02px)) {
  .nx-toolkit-highlights__header {
    align-items: flex-start;
    flex-direction: column;
  }
}
.nx-insight-feed {
  display: grid;
  gap: 16px;
}

.nx-insight-feed__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nx-insight-feed__title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nx-insight-feed__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
  color: #18212f;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

.nx-insight-feed__new-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #99f6e4;
  background: #ccfbf1;
  color: #0f766e;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  font-family: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.nx-insight-feed__subtitle {
  margin: 4px 0 0;
  font-size: 13px;
  color: #607086;
  font-family: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.nx-insight-feed__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nx-insight-feed__timestamp {
  font-size: 11px;
  color: #607086;
  font-family: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.nx-insight-feed__refresh-btn {
  appearance: none;
  border: 1px solid #dce3ee;
  background: #fff;
  color: #607086;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  cursor: pointer;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease;
}

.nx-insight-feed__refresh-btn:hover {
  background: #f8fafc;
  color: #18212f;
}

.nx-insight-feed__refresh-btn:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-insight-feed__refresh-btn [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-insight-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .nx-insight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.nx-insight-card {
  width: 100%;
  text-align: left;
  padding: 0;
  appearance: none;
  border-radius: 14px;
  border: 1px solid #ece8dd;
  background: #f7f7f3;
  color: #18212f;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  cursor: pointer;
  transition: box-shadow 140ms ease, transform 140ms ease, border-color 140ms ease;
}

.nx-insight-card:hover {
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.1);
  transform: translateY(-1px);
}

.nx-insight-card:focus {
  outline: none;
}

.nx-insight-card:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-insight-card__inner {
  padding: 16px;
}

.nx-insight-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.nx-insight-card__pill {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  border: 1px solid rgba(24, 33, 47, 0.12);
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #18212f;
  background: rgba(255, 255, 255, 0.55);
}

.nx-insight-card__title {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  color: #18212f;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

.nx-insight-card__summary {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: #607086;
  font-family: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.nx-insight-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.nx-insight-pill--news {
  background: #dbeafe;
  color: #1d4ed8;
}

.nx-insight-pill--trend {
  background: #ede9fe;
  color: #6d28d9;
}

.nx-insight-pill--reg {
  background: #dcfce7;
  color: #166534;
}

.nx-insight-modal {
  max-width: 760px;
  max-height: 80vh;
  overflow-y: auto;
}

.nx-insight-modal__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.nx-insight-modal__date {
  font-size: 12px;
  color: #607086;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nx-insight-modal__date [data-lucide] {
  width: 12px;
  height: 12px;
}

.nx-insight-modal__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  color: #18212f;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

.nx-insight-modal__body {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}

.nx-prose-sm {
  color: #18212f;
  font-size: 14px;
  line-height: 1.6;
}

.nx-prose-sm p {
  margin: 0;
}

.nx-prose-sm a {
  color: #0f766e;
  text-decoration: underline;
}

.nx-insight-modal__callout {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 10px;
  padding: 14px;
}

.nx-insight-modal__callout-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #115e59;
  font-weight: 700;
  font-size: 13px;
}

.nx-insight-modal__callout-header [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-insight-modal__callout p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #0f766e;
}

.nx-insight-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #dce3ee;
  padding-top: 14px;
}

.nx-insight-modal__source {
  font-size: 13px;
  color: #607086;
}

.nx-insight-modal__source strong {
  color: #18212f;
  font-weight: 600;
}

@media (max-width: calc(640px - 0.02px)) {
  .nx-insight-feed__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .nx-insight-feed__new-badge,
  .nx-insight-feed__subtitle,
  .nx-insight-feed__timestamp {
    display: none;
  }
  .nx-insight-modal__title {
    font-size: 20px;
  }
  .nx-insight-modal__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
.nx-tasklist-card {
  border-radius: 14px;
  border: 1px solid rgba(186, 220, 246, 0.7);
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.9), rgba(239, 246, 255, 0.72));
  color: #18212f;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.nx-tasklist-card__header {
  padding: 24px 24px 16px;
  display: grid;
  gap: 8px;
}

.nx-tasklist-card__header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.nx-tasklist-card__header-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.nx-tasklist-card__hero {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #38bdf8, #3b82f6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.nx-tasklist-card__hero [data-lucide] {
  width: 18px;
  height: 18px;
}

.nx-tasklist-card__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 600;
  font-family: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
  color: #18212f;
}

.nx-tasklist-card__progress {
  margin: 0;
  font-size: 14px;
  color: #607086;
  white-space: nowrap;
  padding-top: 2px;
}

.nx-tasklist-card__body {
  padding: 0 24px 24px;
}

.nx-tasklist-list {
  display: grid;
  gap: 8px;
}

.nx-tasklist-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 10px;
}

.nx-tasklist-row--actionable {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid #ece8dd;
}

.nx-tasklist-row--completed {
  background: transparent;
  border: 1px solid transparent;
}

.nx-tasklist-row__icon {
  width: 20px;
  height: 20px;
  color: #0284c7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.nx-tasklist-row__icon [data-lucide] {
  width: 20px;
  height: 20px;
}

.nx-tasklist-row__icon-svg {
  width: 20px;
  height: 20px;
}

.nx-tasklist-row--completed .nx-tasklist-row__icon {
  color: #22c55e;
}

.nx-tasklist-row__content {
  min-width: 0;
  flex: 1 1 auto;
}

.nx-tasklist-row__title {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
  color: #18212f;
  font-family: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.nx-tasklist-row__desc {
  margin: 2px 0 0;
  font-size: 12px;
  line-height: 1.35;
  color: #607086;
}

.nx-tasklist-row--completed .nx-tasklist-row__title {
  color: #607086;
}

.nx-tasklist-row__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.nx-btn--sky {
  background: #fff;
  color: #0369a1;
  border-color: #bfdbfe;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}

.nx-btn--sky:hover:not(:disabled):not(.is-disabled) {
  background: #f0f9ff;
  border-color: #93c5fd;
  color: #075985;
}

.nx-btn--xs {
  min-height: 32px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
}

.nx-btn--text {
  background: transparent;
  border: 0;
  color: #607086;
  box-shadow: none;
  min-height: auto;
  padding: 0 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
}

.nx-btn--text:hover:not(:disabled):not(.is-disabled) {
  color: #18212f;
  background: rgba(24, 33, 47, 0.05);
}

@media (max-width: calc(1024px - 0.02px)) {
  .nx-tasklist-row {
    align-items: flex-start;
  }
  .nx-tasklist-row__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .nx-tasklist-card__header-row {
    flex-direction: column;
  }
  .nx-tasklist-card__progress {
    white-space: normal;
  }
}
@media (max-width: calc(640px - 0.02px)) {
  .nx-tasklist-card__header,
  .nx-tasklist-card__body {
    padding-left: 16px;
    padding-right: 16px;
  }
  .nx-tasklist-row {
    gap: 12px;
    padding: 12px;
  }
  .nx-tasklist-row__actions {
    width: 100%;
    margin-top: 6px;
  }
}
.nx-progress-card {
  margin-bottom: 32px;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #dce3ee;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}

.nx-progress-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.nx-progress-card__left {
  min-width: 0;
}

.nx-progress-card__pill {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #3b82f6;
  margin-bottom: 8px;
}

.nx-progress-card__topic {
  margin: 0;
  font-size: 14px;
  color: #607086;
}

.nx-progress-card__right {
  text-align: right;
  flex: 0 0 auto;
}

.nx-progress-card__stage {
  margin: 0 0 4px;
  font-size: 13px;
  color: #607086;
}

.nx-progress-card__percent {
  margin: 0;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: #18212f;
  font-family: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.nx-progress-card__track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

.nx-progress-card__fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
  transition: width 300ms ease;
}

@media (max-width: calc(640px - 0.02px)) {
  .nx-progress-card {
    padding: 16px;
    margin-bottom: 20px;
  }
  .nx-progress-card__header {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }
  .nx-progress-card__right {
    text-align: left;
  }
  .nx-progress-card__percent {
    font-size: 24px;
  }
}
.nx-pipeline-progress {
  display: grid;
  gap: 16px;
}

.nx-pipeline-progress__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nx-pipeline-progress__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
  color: #18212f;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

.nx-pipeline-progress__body {
  display: grid;
  gap: 16px;
}

.nx-pipeline-stage-card {
  background: #f5f3ee;
  border-radius: 10px;
  padding: 16px;
}

.nx-pipeline-stage-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.nx-pipeline-stage-card__title {
  margin: 0;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  color: #18212f;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

.nx-pipeline-stage-card__meta {
  margin: 0;
  font-size: 13px;
  color: #607086;
  white-space: nowrap;
}

.nx-pipeline-stage-card__tasks {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin: 0 -4px;
  padding-left: 4px;
  padding-right: 4px;
}

.nx-pipeline-stage-card__tasks::-webkit-scrollbar {
  height: 8px;
}

.nx-pipeline-stage-card__tasks::-webkit-scrollbar-thumb {
  background: rgba(96, 112, 134, 0.3);
  border-radius: 999px;
}

.nx-pipeline-task-chip {
  flex: 0 0 auto;
  width: 120px;
  min-height: 70px;
  border-radius: 10px;
  border: 1px solid #dce3ee;
  background: #fff;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.nx-pipeline-task-chip:hover {
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.nx-pipeline-task-chip:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-pipeline-task-chip__row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.nx-pipeline-task-chip__status {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 2px;
}

.nx-pipeline-task-chip__status--pending {
  border: 2px solid #cbd5e1;
}

.nx-pipeline-task-chip__status--done {
  background: #22c55e;
  color: white;
}

.nx-pipeline-task-chip__status--done [data-lucide] {
  width: 11px;
  height: 11px;
}

.nx-pipeline-task-chip--done {
  background: #f0fdf4;
  border-color: #86efac;
}

.nx-pipeline-task-chip--done .nx-pipeline-task-chip__label {
  color: #607086;
}

.nx-pipeline-task-chip__label {
  font-size: 12px;
  line-height: 1.25;
  color: #18212f;
  font-family: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.nx-pipeline-task-chip__label.nx-line-clamp-3 {
  -webkit-line-clamp: 3;
}

@media (max-width: calc(768px - 0.02px)) {
  .nx-pipeline-progress__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .nx-pipeline-stage-card__header {
    flex-direction: column;
  }
  .nx-pipeline-stage-card__meta {
    white-space: normal;
  }
}
.nx-pip-input-wrap {
  display: grid;
  gap: 12px;
}

.nx-pip-input-wrap--compact {
  gap: 0;
}

.nx-pip-glow-border {
  border-radius: 999px;
  padding: 4px;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(120deg, #22c55e, #3b82f6, #22c55e) border-box;
  border: 4px solid transparent;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8) inset, 0 12px 24px rgba(17, 24, 39, 0.08);
}

.nx-pip-glow-border--compact {
  padding: 2px;
  border-width: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8) inset, 0 8px 16px rgba(17, 24, 39, 0.06);
}

.nx-pip-input-inner {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  padding: 4px;
}

.nx-pip-input-inner--compact {
  padding: 2px;
}

.nx-pip-input-btn {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: text;
  border-radius: 999px;
  padding: 9px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  transition: background-color 120ms ease;
}

.nx-pip-input-btn--compact {
  padding: 10px 18px;
  gap: 10px;
}

.nx-pip-input-btn:hover {
  background: rgba(249, 250, 251, 0.8);
}

.nx-pip-input-btn:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-pip-orb {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #22c55e, #3b82f6);
}

.nx-pip-orb--compact {
  width: 32px;
  height: 32px;
}

.nx-pip-orb [data-lucide] {
  width: 20px;
  height: 20px;
  color: #fff;
}

.nx-pip-input-placeholder {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  color: #607086;
  font-style: italic;
  font-family: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.nx-pip-input-placeholder--compact {
  font-style: normal;
}

.nx-pip-input-field {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #18212f;
  font-size: 14px;
  font-style: italic;
  font-family: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.nx-pip-input-field::placeholder {
  color: #607086;
  opacity: 1;
}

.nx-pip-input-field--placeholder-fade::placeholder {
  animation: nx-pip-placeholder-fade 180ms ease;
}

@keyframes nx-pip-placeholder-fade {
  0% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: calc(640px - 0.02px)) {
  .nx-pip-input-btn {
    padding: 8px 14px;
  }
  .nx-pip-input-placeholder {
    font-size: 13px;
  }
}
.nx-pip-describe-project {
  position: relative;
  width: min(64rem, 100%);
  margin: 0 auto 32px;
  border-radius: 12px;
  border: 1px solid rgba(94, 234, 212, 0.4);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(59, 130, 246, 0.1), rgba(13, 148, 136, 0.1));
  padding: 24px;
  overflow: hidden;
}

.nx-pip-describe-project__overlay {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(45, 212, 191, 0.05), rgba(96, 165, 250, 0.05));
  pointer-events: none;
}

.nx-pip-describe-project__content {
  position: relative;
}

.nx-pip-describe-project__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.nx-pip-describe-project__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #18212f;
}

.nx-pip-describe-project__subtitle {
  margin: 4px 0 0;
  font-size: 14px;
  color: #607086;
}

.nx-pip-describe-project__form {
  display: grid;
  gap: 16px;
}

.nx-pip-describe-project__textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  padding: 10px 12px;
  color: #18212f;
  font-size: 15px;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}

.nx-pip-describe-project__textarea::placeholder {
  color: #607086;
}

.nx-pip-describe-project__textarea:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-pip-describe-project__actions {
  display: flex;
  justify-content: flex-end;
}

.nx-pip-describe-project__submit {
  border: 0;
  border-radius: 8px;
  height: 36px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  font-size: 14px;
  font-weight: 600;
  transition: filter 120ms ease, opacity 120ms ease;
}

.nx-pip-describe-project__submit:hover:not(:disabled) {
  filter: brightness(0.98);
}

.nx-pip-describe-project__submit:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-pip-describe-project__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.nx-pip-describe-project__submit-icon {
  width: 16px;
  height: 16px;
}

@media (max-width: calc(768px - 0.02px)) {
  .nx-pip-describe-project {
    padding: 16px;
    margin-bottom: 24px;
  }
  .nx-pip-describe-project__header {
    gap: 12px;
    margin-bottom: 12px;
  }
  .nx-pip-describe-project__title {
    font-size: 18px;
  }
}
.nx-pip-helper-shell {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  overflow: hidden;
  background: transparent;
}

.nx-pip-helper {
  width: 100%;
  height: 100%;
  min-height: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  background: rgb(244, 249, 254);
  overflow: hidden;
}

.nx-pip-helper__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
  border-top-left-radius: 12px;
}

.nx-pip-helper__header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nx-pip-helper__menu {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.nx-pip-helper__menu:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.nx-pip-helper__menu:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-pip-helper__menu [data-lucide] {
  width: 18px;
  height: 18px;
}

.nx-pip-helper__title {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.nx-pip-helper__scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nx-pip-helper__block {
  display: grid;
  gap: 8px;
}

.nx-pip-helper__pip-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.nx-pip-helper__orb {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #3b82f6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.nx-pip-helper__orb [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-pip-helper__status-title {
  padding-top: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #18212f;
}

.nx-pip-helper__steps {
  margin-left: 28px;
  display: grid;
  gap: 8px;
}

.nx-pip-helper__step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #94a3b8;
}

.nx-pip-helper__step [data-lucide] {
  width: 16px;
  height: 16px;
  color: #cbd5e1;
  flex: 0 0 auto;
}

.nx-pip-helper__bubble {
  flex: 1 1 auto;
  padding-top: 2px;
}

.nx-pip-helper__bubble.nx-pip-helper__bubble--prose {
  font-size: 12.8px;
  line-height: 1.5;
  color: #334155;
}

.nx-pip-helper__bubble p {
  margin: 0 0 8px;
}

.nx-pip-helper__bubble p:last-child {
  margin-bottom: 0;
}

.nx-pip-helper__bubble strong {
  color: #0f172a;
  font-weight: 700;
}

.nx-pip-helper__suggestions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nx-pip-helper__chip {
  border: 1px solid #99f6e4;
  background: #fff;
  color: #0f766e;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 120ms ease, border-color 120ms ease;
}

.nx-pip-helper__chip:hover {
  background: #f0fdfa;
  border-color: #2dd4bf;
}

.nx-pip-helper__chip:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-pip-helper__composer {
  flex: 0 0 auto;
  border-top: 1px solid #e2e8f0;
  background: rgb(244, 249, 254);
  padding: 16px 16px 20px;
}

.nx-pip-helper__form {
  display: grid;
  gap: 12px;
}

.nx-pip-helper__textarea {
  width: 100%;
  min-height: 70px;
  max-height: 140px;
  resize: none;
  border-radius: 8px;
  border: 1px solid #dce3ee;
  background: #fff;
  color: #18212f;
  padding: 10px 12px;
  font-size: 12.8px;
  line-height: 1.4;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}

.nx-pip-helper__textarea::placeholder {
  color: #607086;
}

.nx-pip-helper__textarea:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-pip-helper__actions {
  display: flex;
  justify-content: flex-end;
}

.nx-pip-helper__send {
  min-width: 40px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}

.nx-pip-helper__send [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-pip-helper__send:disabled {
  opacity: 0.55;
}

.nx-pip-helper__placeholder {
  flex: 1 1 auto;
  min-width: 0;
  background: linear-gradient(180deg, #fff, #fafbfd);
  display: grid;
  place-items: center;
  padding: 20px;
}

.nx-pip-helper__placeholder-card {
  width: min(320px, 100%);
  border: 1px dashed rgba(148, 163, 184, 0.55);
  border-radius: 12px;
  background: rgba(248, 250, 252, 0.75);
  color: #64748b;
  padding: 18px 16px;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.nx-pip-helper__placeholder-card [data-lucide] {
  width: 22px;
  height: 22px;
  color: #94a3b8;
}

.nx-pip-helper__placeholder-card p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: calc(768px - 0.02px)) {
  .nx-pip-helper__placeholder {
    display: none;
  }
}
@media (max-width: calc(640px - 0.02px)) {
  .nx-pip-helper__scroll,
  .nx-pip-helper__composer {
    padding: 12px;
  }
  .nx-pip-helper__suggestions {
    gap: 6px;
  }
}
.nx-toolkit-library-shell {
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.nx-toolkit-library {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: transparent;
}

.nx-toolkit-library__inner {
  padding: 0;
}

.nx-toolkit-library__banner {
  margin-left: -999px;
  margin-right: -999px;
  padding-left: 999px;
  padding-right: calc(999px + 1rem);
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
  color: #fff;
  padding-top: 16px;
  padding-bottom: 16px;
}

.nx-toolkit-library__banner-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nx-toolkit-library__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

.nx-toolkit-library__content {
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
  gap: 24px;
  max-width: 100%;
}

.nx-toolkit-library__guidance {
  border-radius: 10px;
  border: 1px solid #bceee8;
  background: linear-gradient(135deg, #f0fdfa, #eff6ff, #f0fdfa);
  padding: 20px;
}

.nx-toolkit-library__guidance-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.nx-toolkit-library__guidance-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.nx-toolkit-library__guidance-icon [data-lucide] {
  width: 18px;
  height: 18px;
}

.nx-toolkit-library__guidance-title {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  color: #18212f;
}

.nx-toolkit-library__guidance-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #18212f;
}

.nx-toolkit-library__list {
  display: grid;
  gap: 12px;
}

.nx-toolkit-tool {
  border: 1px solid #dce3ee;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.nx-toolkit-tool:hover {
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}

.nx-toolkit-tool__trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.nx-toolkit-tool__trigger:hover {
  background: rgba(248, 250, 252, 0.6);
}

.nx-toolkit-tool__trigger:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-toolkit-tool__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #ece8dd;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.nx-toolkit-tool__icon [data-lucide] {
  width: 18px;
  height: 18px;
}

.nx-toolkit-tool__main {
  flex: 1 1 auto;
  min-width: 0;
}

.nx-toolkit-tool__name {
  margin: 0 0 2px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  color: #18212f;
}

.nx-toolkit-tool__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: #607086;
  font-family: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.nx-toolkit-tool__right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #607086;
  flex: 0 0 auto;
}

.nx-toolkit-tool__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 140ms ease;
}

.nx-toolkit-tool__trigger[aria-expanded=true] .nx-toolkit-tool__chevron {
  transform: rotate(180deg);
}

.nx-toolkit-tool__panel {
  border-top: 1px solid rgba(220, 227, 238, 0.55);
  background: #fff;
  padding: 8px 16px 16px;
  display: grid;
  gap: 12px;
}

.nx-toolkit-tool__panel[hidden] {
  display: none !important;
}

.nx-toolkit-tool__panel-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.nx-toolkit-tool__panel-copy {
  background: rgba(248, 250, 252, 0.7);
  border-radius: 10px;
  padding: 12px;
}

.nx-toolkit-tool__panel-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #18212f;
}

.nx-toolkit-tool__cta {
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}

.nx-toolkit-tool__cta:hover:not(:disabled):not(.is-disabled) {
  background: linear-gradient(90deg, #0ea5a4, #2563eb);
  color: #fff;
}

.nx-toolkit-tool__cta [data-lucide] {
  width: 14px;
  height: 14px;
}

.nx-toolkit-tool__panel-actions .nx-btn--text {
  min-height: 28px;
}

.nx-toolkit-tool--disabled {
  opacity: 0.6;
}

.nx-toolkit-tool--disabled:hover {
  box-shadow: none;
}

.nx-toolkit-tool--disabled .nx-toolkit-tool__trigger {
  cursor: not-allowed;
}

.nx-toolkit-tool--disabled .nx-toolkit-tool__trigger:hover {
  background: transparent;
}

.nx-toolkit-tool__coming-soon {
  font-size: 14px;
  color: #607086;
}

@media (max-width: calc(768px - 0.02px)) {
  .nx-toolkit-library__banner {
    padding-right: calc(999px + 0.5rem);
  }
  .nx-toolkit-tool__trigger {
    align-items: flex-start;
  }
  .nx-toolkit-tool__right {
    align-self: center;
  }
}
.nx-toolkit-doc-shell {
  width: min(1280px, 99vw);
  height: 720px;
  display: flex;
  background: #fff;
  border: 1px solid rgba(220, 227, 238, 0.7);
  border-radius: 12px;
  overflow: hidden;
}

.nx-toolkit-doc {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  position: relative;
}

.nx-toolkit-doc__toolbar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 24px;
  border-bottom: 1px solid #dce3ee;
  background: #faf9f5;
}

.nx-toolkit-doc__toolbar-left {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.nx-toolkit-doc__toolbar-left [data-lucide=file-text] {
  width: 20px;
  height: 20px;
  color: #607086;
  flex: 0 0 auto;
}

.nx-toolkit-doc__toolbar-title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #18212f;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  line-height: 1.25;
}

.nx-toolkit-doc__toolbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.nx-toolkit-doc__version-dd {
  position: relative;
}

.nx-toolkit-doc__version {
  min-width: 90px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid #dce3ee;
  background: #fff;
  color: #18212f;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}

.nx-toolkit-doc__version-dd .nx-toolkit-doc__version {
  cursor: pointer;
}

.nx-toolkit-doc__version-left {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nx-toolkit-doc__version-left [data-lucide=clock] {
  width: 14px;
  height: 14px;
  color: #607086;
}

.nx-toolkit-doc__version-label {
  font-weight: 600;
}

.nx-toolkit-doc__version [data-lucide=chevron-down] {
  width: 14px;
  height: 14px;
  color: rgba(96, 112, 134, 0.7);
}

.nx-toolkit-doc__version-dd .nx-dropdown__menu.nx-toolkit-doc__version-menu {
  top: calc(100% + 4px);
  left: 0;
  right: auto;
  min-width: max(8rem, 100%);
  max-height: 24rem;
  padding: 4px;
  border-radius: 8px;
  border: 1px solid #dce3ee;
  background: rgba(255, 255, 255, 0.98);
  color: #18212f;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.18);
  z-index: 1200;
}

.nx-toolkit-doc__version-option {
  position: relative;
  width: 100%;
  min-height: 32px;
  padding: 7px 30px 7px 8px !important;
  border-radius: 6px !important;
  font-size: 13px !important;
  line-height: 1.2;
  color: #18212f;
  display: flex;
  align-items: center;
  text-align: left;
}

.nx-toolkit-doc__version-option-check {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #18212f;
}

.nx-toolkit-doc__version-option-check [data-lucide] {
  width: 14px;
  height: 14px;
}

.nx-toolkit-doc__icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid #dce3ee;
  background: #fff;
  color: #18212f;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.nx-toolkit-doc__icon-btn:hover {
  background: #f8fafc;
}

.nx-toolkit-doc__icon-btn:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-toolkit-doc__icon-btn[disabled] {
  cursor: default;
  opacity: 1;
}

.nx-toolkit-doc__icon-btn [data-lucide] {
  width: 18px;
  height: 18px;
}

.nx-toolkit-doc__saved-badge {
  position: absolute;
  right: -4px;
  top: -4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #22c55e;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.nx-toolkit-doc__saved-badge [data-lucide] {
  width: 10px;
  height: 10px;
}

.nx-toolkit-doc__scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 32px;
  position: relative;
}

.nx-toolkit-doc__container {
  max-width: 56rem;
}

.nx-toolkit-doc__head {
  margin-bottom: 24px;
}

.nx-toolkit-doc__doc-title {
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #18212f;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

.nx-toolkit-doc__doc-title [data-lucide] {
  width: 20px;
  height: 20px;
  color: #607086;
  flex: 0 0 auto;
}

.nx-toolkit-doc__project {
  margin: 0;
  font-size: 13px;
  color: #607086;
}

.nx-toolkit-doc__prose {
  color: #18212f;
  font-size: 14px;
  line-height: 1.6;
}

.nx-toolkit-doc__prose p {
  margin: 0 0 12px;
  color: #18212f;
}

.nx-toolkit-doc__prose p:last-child {
  margin-bottom: 0;
}

.nx-toolkit-doc__prose strong {
  font-weight: 700;
  color: #18212f;
}

.nx-toolkit-doc__prose em {
  color: #475569;
}

.nx-toolkit-doc__prose ul,
.nx-toolkit-doc__prose ol {
  margin: 0 0 12px 18px;
  padding: 0;
  display: grid;
  gap: 6px;
}

.nx-toolkit-doc__prose li {
  color: #18212f;
}

.nx-toolkit-doc__prose a {
  color: #0f766e;
  text-decoration: underline;
  background: #ecfdf5;
  border-radius: 6px;
  padding: 1px 4px;
  font-weight: 600;
}

.nx-toolkit-doc__section-title {
  margin-top: 6px;
}

.nx-toolkit-doc__confirm-modal {
  width: min(28rem, 100vw - 32px) !important;
  max-width: 28rem;
  margin-top: 14vh !important;
  padding: 32px !important;
  display: grid;
  gap: 12px;
  text-align: center;
  border-radius: 12px;
}

.nx-toolkit-doc__confirm-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #fef3c7;
  color: #d97706;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 4px;
}

.nx-toolkit-doc__confirm-icon [data-lucide] {
  width: 32px;
  height: 32px;
}

.nx-toolkit-doc__confirm-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: #18212f;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

.nx-toolkit-doc__confirm-copy {
  margin: 0 0 4px;
  color: #607086;
  font-size: 14px;
  line-height: 1.45;
}

.nx-toolkit-doc__confirm-actions {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.nx-toolkit-doc__confirm-btn {
  flex: 1 1 0;
  justify-content: center;
}

.nx-toolkit-doc__confirm-btn--primary {
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
  color: #fff;
  border-color: transparent;
}

.nx-toolkit-doc__confirm-btn--primary:hover {
  background: linear-gradient(90deg, #0ea5a4, #2563eb);
  color: #fff;
}

@media (max-width: calc(768px - 0.02px)) {
  .nx-toolkit-doc-shell {
    height: 640px;
  }
  .nx-toolkit-doc__toolbar {
    padding: 10px 16px;
    align-items: flex-start;
    flex-direction: column;
  }
  .nx-toolkit-doc__toolbar-right {
    width: 100%;
    justify-content: flex-end;
  }
  .nx-toolkit-doc__scroll {
    padding: 20px 16px;
  }
  .nx-toolkit-doc__doc-title {
    font-size: 18px;
  }
  .nx-toolkit-doc__confirm-modal {
    margin-top: 10vh !important;
    padding: 24px !important;
  }
}
@media (max-width: calc(640px - 0.02px)) {
  .nx-toolkit-doc__toolbar-right {
    gap: 6px;
  }
  .nx-toolkit-doc__version {
    min-width: 84px;
  }
  .nx-toolkit-doc__confirm-actions {
    flex-direction: column;
  }
}
.nx-toolkit-q {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: transparent;
}

.nx-toolkit-q-shell {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.nx-toolkit-q__panel {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  overflow: hidden;
  border-top-left-radius: 12px;
  background: rgb(244, 249, 254);
  border: 1px solid rgba(220, 227, 238, 0.9);
}

.nx-toolkit-q__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
}

.nx-toolkit-q__header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nx-toolkit-q__icon-btn {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nx-toolkit-q__icon-btn:hover {
  background: rgba(255, 255, 255, 0.18);
}

.nx-toolkit-q__icon-btn:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-toolkit-q__title {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

.nx-toolkit-q__scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nx-toolkit-q__msg {
  display: grid;
  gap: 8px;
}

.nx-toolkit-q__msg-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.nx-toolkit-q__pip-orb {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #3b82f6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.nx-toolkit-q__pip-orb [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-toolkit-q__msg-title {
  padding-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #18212f;
}

.nx-toolkit-q__checklist {
  margin-left: 44px;
  display: grid;
  gap: 8px;
}

.nx-toolkit-q__check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 14px;
}

.nx-toolkit-q__check-row [data-lucide] {
  width: 16px;
  height: 16px;
  color: #16a34a;
  flex: 0 0 auto;
}

.nx-toolkit-q__bubble {
  flex: 1 1 auto;
  padding-top: 2px;
}

.nx-toolkit-q__bubble p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.45;
  color: #334155;
}

.nx-toolkit-q__bubble p:last-child {
  margin-bottom: 0;
}

.nx-toolkit-q__bubble strong {
  color: #0f172a;
  font-weight: 700;
}

.nx-toolkit-q__composer {
  flex: 0 0 auto;
  border-top: 1px solid #e2e8f0;
  background: rgb(244, 249, 254);
  padding: 20px 24px 24px;
}

.nx-toolkit-q__progress-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.nx-toolkit-q__progress-meta span {
  font-size: 12px;
  color: #607086;
}

.nx-toolkit-q__progress-meta strong {
  font-weight: 600;
}

.nx-toolkit-q__progress-track {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #e2e8f0;
  margin-bottom: 16px;
  overflow: hidden;
}

.nx-toolkit-q__progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
  transition: width 300ms ease;
}

.nx-toolkit-q__question {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  color: #18212f;
}

.nx-toolkit-q__textarea {
  width: 100%;
  min-height: 120px;
  resize: none;
  border-radius: 8px;
  border: 1px solid #dce3ee;
  background: #fff;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.4;
  color: #18212f;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}

.nx-toolkit-q__textarea::placeholder {
  color: #607086;
}

.nx-toolkit-q__textarea:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-toolkit-q__footer {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nx-toolkit-q__footer-right {
  display: flex;
  gap: 8px;
}

.nx-toolkit-q__skip {
  background: transparent;
  border: 0;
  color: #607086;
  font-size: 12px;
  border-radius: 8px;
  padding: 6px 10px;
}

.nx-toolkit-q__skip:hover {
  background: rgba(24, 33, 47, 0.05);
  color: #18212f;
}

.nx-toolkit-q__next {
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
  color: #fff;
  border-color: transparent;
}

.nx-toolkit-q__next:hover:not(:disabled):not(.is-disabled) {
  background: linear-gradient(90deg, #0ea5a4, #2563eb);
  color: #fff;
}

@media (max-width: calc(640px - 0.02px)) {
  .nx-toolkit-q__scroll {
    padding: 12px;
  }
  .nx-toolkit-q__composer {
    padding: 16px;
  }
  .nx-toolkit-q__footer {
    flex-direction: column;
    align-items: stretch;
  }
  .nx-toolkit-q__footer-right {
    justify-content: flex-end;
  }
}
.nx-rt-nav {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-right: 8px;
  width: 20rem;
  background: rgb(247, 247, 243);
  border-top-left-radius: 12px;
  border: 1px solid rgba(220, 227, 238, 0.7);
  overflow: hidden;
}

.nx-rt-nav__top {
  border-bottom: 1px solid #dce3ee;
}

.nx-rt-nav__header {
  height: 54px;
  padding: 0 24px;
  border-bottom: 1px solid #dce3ee;
  display: flex;
  align-items: center;
}

.nx-rt-nav__header-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nx-rt-nav__header-row [data-lucide=lightbulb] {
  width: 18px;
  height: 18px;
  color: #607086;
}

.nx-rt-nav__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #18212f;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

.nx-rt-nav__actions {
  padding: 12px;
}

.nx-rt-nav__launch {
  width: 100%;
  gap: 8px;
  background: #111827;
  color: #fff;
  border-color: #111827;
}

.nx-rt-nav__launch [data-lucide=plus] {
  width: 14px;
  height: 14px;
}

.nx-rt-nav__launch:hover:not(:disabled):not(.is-disabled) {
  background: #0b1220;
  color: #fff;
}

.nx-rt-nav__list {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 8px;
}

.nx-rt-item {
  border-radius: 10px;
  margin-bottom: 4px;
  cursor: pointer;
  transition: background-color 140ms ease;
}

.nx-rt-item:hover {
  background: rgba(255, 255, 255, 0.4);
}

.nx-rt-item--active {
  background: #ece8dd;
}

.nx-rt-item__inner {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.nx-rt-item__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 auto;
  min-width: 0;
  gap: 4px;
}

.nx-rt-item__name {
  font-size: 14px;
  color: #18212f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 auto;
}

.nx-rt-item__time {
  font-size: 10px;
  color: rgba(96, 112, 134, 0.55);
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 200ms ease, opacity 200ms ease;
  flex: 0 0 auto;
}

.nx-rt-item:hover .nx-rt-item__time {
  max-width: 80px;
  opacity: 1;
}

.nx-rt-item__menu {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 0;
  background: transparent;
  color: #607086;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 160ms ease, background-color 120ms ease;
  flex: 0 0 auto;
}

.nx-rt-item:hover .nx-rt-item__menu {
  opacity: 1;
}

.nx-rt-item__menu:hover {
  background: rgba(24, 33, 47, 0.06);
  color: #18212f;
}

.nx-rt-item__menu:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-rt-item__menu [data-lucide] {
  width: 14px;
  height: 14px;
}

.nx-rt-item__menu-dd {
  position: relative;
  flex: 0 0 auto;
}

.nx-rt-item__menu-dd .nx-dropdown__menu {
  right: 0;
  left: auto;
  top: calc(100% + 8px);
  min-width: 190px;
}

.nx-rt-item__menu-dd.is-open .nx-rt-item__menu {
  opacity: 1;
  background: rgba(24, 33, 47, 0.08);
  color: #18212f;
}

.nx-rt-item__menu-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nx-rt-item__menu-item [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-rt-item__menu-overlay .nx-dropdown__item:hover {
  box-shadow: none;
}

.nx-rt-item__menu-item--danger {
  color: #b83b3b;
}

@media (max-width: calc(768px - 0.02px)) {
  .nx-rt-nav {
    width: 100%;
    margin-right: 0;
  }
}
.nx-pipeline-stages {
  max-width: 960px;
}

.nx-pipeline-stages__stack {
  display: grid;
  gap: 24px;
}

.nx-pipeline-stages__header-strip {
  background: #f6f6f0;
  border-bottom: 1px solid #dce3ee;
  padding: 16px 24px;
  margin-top: -24px;
  margin-bottom: 24px;
  margin-left: -16px;
  margin-right: -16px;
}

.nx-pipeline-stages__header-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nx-pipeline-stages__menu-btn {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #607086;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nx-pipeline-stages__menu-btn:hover {
  background: rgba(0, 0, 0, 0.06);
}

.nx-pipeline-stages__menu-btn [data-lucide] {
  width: 14px;
  height: 14px;
  transform: rotate(180deg);
}

.nx-pipeline-stages__header-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nx-pipeline-stages__stage-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #f59e0b;
}

.nx-pipeline-stages__stage-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #18212f;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

.nx-pipeline-stages__guidance {
  position: relative;
  border-radius: 10px;
  border: 1px solid #bceee8;
  background: linear-gradient(135deg, #f0fdfa, #eff6ff, #f0fdfa);
  padding: 24px;
}

.nx-pipeline-stages__guidance-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #607086;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nx-pipeline-stages__guidance-close:hover {
  background: rgba(24, 33, 47, 0.05);
  color: #18212f;
}

.nx-pipeline-stages__guidance-close [data-lucide] {
  width: 14px;
  height: 14px;
}

.nx-pipeline-stages__guidance-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.nx-pipeline-stages__guidance-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.nx-pipeline-stages__guidance-icon [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-pipeline-stages__guidance-title {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #18212f;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

.nx-pipeline-stages__guidance-title [data-lucide=sparkles] {
  width: 14px;
  height: 14px;
  color: #14b8a6;
}

.nx-pipeline-stages__guidance-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #18212f;
}

.nx-pipeline-stages__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.nx-pipeline-stages__summary-left {
  font-size: 14px;
  color: #607086;
}

.nx-pipeline-stages__summary-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nx-pipeline-stages__summary-right strong {
  font-size: 14px;
  color: #18212f;
}

.nx-pipeline-stages__accordion {
  display: grid;
  gap: 12px;
}

.nx-pipeline-stage-task {
  border: 1px solid #dce3ee;
  border-radius: 10px;
  background: #fff;
}

.nx-pipeline-stage-task__trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
}

.nx-pipeline-stage-task__trigger:hover {
  background: rgba(248, 250, 252, 0.6);
}

.nx-pipeline-stage-task__trigger:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-pipeline-stage-task__left {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.nx-pipeline-stage-task__status {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid #d1d5db;
  flex: 0 0 auto;
}

.nx-pipeline-stage-task__status--done {
  background: #22c55e;
  border-color: #22c55e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.nx-pipeline-stage-task__status--done [data-lucide] {
  width: 14px;
  height: 14px;
}

.nx-pipeline-stage-task__label {
  font-size: 14px;
  font-weight: 600;
  color: #18212f;
  min-width: 0;
}

.nx-pipeline-stage-task__chevron {
  color: #607086;
  transition: transform 140ms ease;
  flex: 0 0 auto;
}

.nx-pipeline-stage-task__trigger[aria-expanded=true] .nx-pipeline-stage-task__chevron {
  transform: rotate(180deg);
}

.nx-pipeline-stage-task__chevron [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-pipeline-stage-task__panel {
  overflow: hidden;
  padding: 0;
}

.nx-pipeline-stage-task__panel[hidden] {
  display: none !important;
}

.nx-pipeline-stage-task__panel-inner {
  padding: 0 16px 16px;
}

.nx-pipeline-stage-task__panel p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.55;
  color: #607086;
}

.nx-pipeline-stage-task__actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px 12px;
  flex-wrap: wrap;
}

.nx-pipeline-stage-task__actions-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nx-pipeline-stage-task__btn-dark {
  background: #242428;
  color: #fff;
  border-color: #242428;
}

.nx-pipeline-stage-task__btn-dark:hover:not(:disabled):not(.is-disabled) {
  background: #1c1c20;
  color: #fff;
}

.nx-pipeline-stage-task__btn-gradient {
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
  color: #fff;
  border-color: transparent;
}

.nx-pipeline-stage-task__btn-gradient:hover:not(:disabled):not(.is-disabled) {
  background: linear-gradient(90deg, #0ea5a4, #2563eb);
  color: #fff;
}

.nx-pipeline-stage-task__btn-neutral {
  border-color: #dce3ee;
}

.nx-pipeline-stage-task__btn-neutral:hover:not(:disabled):not(.is-disabled) {
  background: #f1f5f9;
}

.nx-pipeline-stage-task__btn-success {
  border-color: #22c55e;
  color: #15803d;
}

.nx-pipeline-stage-task__btn-success:hover:not(:disabled):not(.is-disabled) {
  background: #f0fdf4;
}

.nx-pipeline-stage-task__actions [data-lucide] {
  width: 14px;
  height: 14px;
}

.nx-pipeline-stages__gate {
  margin-top: 24px;
  border: 1px solid #fcd34d;
  background: #fffbeb;
  border-radius: 10px;
  padding: 24px;
}

.nx-pipeline-stages__gate-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nx-pipeline-stages__gate h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: #78350f;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

.nx-pipeline-stages__gate p {
  margin: 0;
  font-size: 14px;
  color: #92400e;
}

.nx-pipeline-stages__next-btn {
  background: #9ca3af;
  color: #fff;
  border-color: #9ca3af;
}

.nx-pipeline-stages__next-btn:hover:not(:disabled):not(.is-disabled) {
  background: #9ca3af;
  color: #fff;
}

.nx-pipeline-stages__next-btn [data-lucide] {
  width: 14px;
  height: 14px;
}

.nx-pipeline-stages__locked-card {
  margin-top: 16px;
  border: 1px solid #dce3ee;
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}

.nx-pipeline-stages__locked-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: rgba(96, 112, 134, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nx-pipeline-stages__locked-card-icon [data-lucide] {
  width: 48px;
  height: 48px;
}

.nx-pipeline-stages__locked-card h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #18212f;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

.nx-pipeline-stages__locked-card p {
  margin: 0;
  font-size: 14px;
  color: #607086;
}

.nx-pipeline-stages__locked-card .nx-btn {
  margin-top: 16px;
}

@media (min-width: 768px) {
  .nx-pipeline-stages__gate-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: calc(768px - 0.02px)) {
  .nx-pipeline-stages__header-strip {
    margin-left: -8px;
    margin-right: -8px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .nx-pipeline-stage-task__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .nx-pipeline-stage-task__actions-group {
    width: 100%;
  }
}
.nx-pp-nav-shell {
  width: 100%;
  max-width: none;
  min-height: 100%;
  height: 100%;
  display: flex;
}

.nx-pp-nav-shell__frame {
  display: flex;
  min-height: 100%;
  height: 100%;
  width: 100%;
}

.nx-pp-nav {
  width: 20rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-right: 8px;
  border-top-left-radius: 12px;
  background: rgb(247, 247, 243);
  border: 1px solid rgba(220, 227, 238, 0.75);
  overflow: hidden;
}

.nx-pp-nav__top {
  border-bottom: 1px solid #dce3ee;
}

.nx-pp-nav__header {
  padding: 16px 24px;
  border-bottom: 1px solid #dce3ee;
}

.nx-pp-nav__header-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nx-pp-nav__header-row [data-lucide] {
  width: 18px;
  height: 18px;
  color: #607086;
}

.nx-pp-nav__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #18212f;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

.nx-pp-nav__close {
  margin-left: auto;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #607086;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nx-pp-nav__close:hover {
  background: rgba(0, 0, 0, 0.06);
}

.nx-pp-nav__summary {
  padding: 16px 24px;
}

.nx-pp-nav__type-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
  background: rgba(89, 189, 163, 0.125);
  color: rgb(89, 189, 163);
  border: 1px solid rgb(89, 189, 163);
}

.nx-pp-nav__progress-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.nx-pp-nav__stage-meta {
  font-size: 13px;
  color: #607086;
}

.nx-pp-nav__percent {
  margin-left: auto;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  color: #18212f;
}

.nx-pp-nav__track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #e2e8f0;
  margin-top: 8px;
  overflow: hidden;
}

.nx-pp-nav__fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
}

.nx-pp-nav__list {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 16px;
}

.nx-pp-nav__list-inner {
  display: grid;
  gap: 8px;
}

.nx-pp-stage {
  width: 100%;
  border: 2px solid transparent;
  background: transparent;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  transition: background-color 140ms ease, border-color 140ms ease;
}

.nx-pp-stage:hover {
  background: rgba(255, 255, 255, 0.5);
}

.nx-pp-stage:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-pp-stage__num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
  background: rgba(226, 232, 240, 0.2);
  color: #64748b;
}

.nx-pp-stage__label {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
  color: #607086;
}

.nx-pp-stage--active {
  background: rgba(245, 158, 11, 0.1);
  border-color: #f59e0b;
}

.nx-pp-stage--active .nx-pp-stage__num {
  background: #f59e0b;
  color: #fff;
}

.nx-pp-stage--active .nx-pp-stage__label {
  color: #18212f;
}

.nx-pp-stage--done .nx-pp-stage__num {
  background: #59bda3;
  color: #fff;
}

.nx-pp-stage--done .nx-pp-stage__label {
  color: #18212f;
}

.nx-pp-stage--current .nx-pp-stage__num {
  background: #f59e0b;
  color: #fff;
}

.nx-pp-stage--current .nx-pp-stage__label {
  color: #18212f;
}

.nx-pp-stage--selected {
  background: rgba(255, 255, 255, 0.25);
  border-color: #d1d5db;
}

.nx-pp-stage--selected:hover {
  background: rgba(255, 255, 255, 0.32);
}

@media (max-width: calc(768px - 0.02px)) {
  .nx-pp-nav-shell {
    min-height: 620px;
  }
  .nx-pp-nav {
    width: 100%;
    margin-right: 0;
  }
}
.nx-pipeline-view {
  width: min(1500px, 98vw);
  overflow: hidden;
  background: transparent;
}

.nx-pipeline-view__scroller {
  display: flex;
  gap: 12px;
  min-width: max-content;
  overflow-x: auto;
  padding-bottom: 4px;
}

.nx-pipeline-view__lane {
  width: 200px;
  flex: 0 0 200px;
}

.nx-pipeline-view__lane-head {
  background: #f3f4f6;
  border-bottom: 1px solid #d3d5db;
  padding: 10px 14px;
}

.nx-pipeline-view__lane-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.nx-pipeline-view__lane-title {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #607086;
}

.nx-pipeline-view__lane-count {
  background: transparent;
  color: #2f3340;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
}

.nx-pipeline-view__lane-body {
  background: transparent;
  min-height: 400px;
  padding: 8px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.nx-pipeline-view__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  color: #607086;
  font-size: 12px;
}

.nx-pipeline-view__card-link {
  text-decoration: none;
  color: inherit;
}

.nx-pipeline-view__card {
  border-radius: 12px;
  border: 1px solid #d3d6de;
  border-left-width: 4px;
  background: #f9f9fb;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  transition: box-shadow 130ms ease, transform 130ms ease;
  cursor: pointer;
}

.nx-pipeline-view__card:hover {
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.18);
  transform: translateY(-1px);
}

.nx-pipeline-view__card--attention {
  box-shadow: 0 0 0 2px #f59e0b, 0 1px 2px rgba(17, 24, 39, 0.06);
}

.nx-pipeline-view__card-content {
  padding: 10px;
}

.nx-pipeline-view__card-title-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.nx-pipeline-view__card-signal {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.nx-pipeline-view__card-title-wrap {
  min-width: 0;
  flex: 1 1 auto;
}

.nx-pipeline-view__card-title {
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 600;
  color: #18212f;
  word-break: break-word;
}

.nx-pipeline-view__code {
  font-family: "IBM Plex Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 11px;
  color: #607086;
  margin-right: 6px;
}

.nx-pipeline-view__card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.nx-pipeline-view__type {
  border: 1px solid;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}

.nx-pipeline-view__warn {
  width: 16px;
  height: 16px;
  color: #f59e0b;
  flex: 0 0 auto;
}

.nx-pipeline-view__age {
  margin: 8px 0 0;
  font-size: 12px;
  color: #607086;
}

.nx-project-header-demo {
  width: min(1360px, 98vw);
  background: #ece8dd;
  border-radius: 12px;
  border: 1px solid rgba(212, 203, 185, 0.7);
  padding: 0 0 8px;
  overflow: hidden;
}

.nx-project-header-shell {
  width: 100%;
  min-width: 0;
  background: transparent;
  padding: 0;
}

.nx-project-header__bar {
  background: rgba(237, 233, 223, 0.95);
  border-bottom: 0;
  padding: 0 10px;
}

.nx-project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  background: transparent;
}

.nx-project-header__body {
  min-height: 44px;
  margin: 8px;
  border-radius: 14px 14px 0 0;
  background: #faf9f5;
  border: 1px solid rgba(220, 227, 238, 0.45);
  border-bottom: 0;
}

.nx-project-header__brand {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #3db7a4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  cursor: pointer;
}

.nx-project-header__brand--swap {
  position: relative;
}

.nx-project-header__brand-arrow,
.nx-project-header__brand-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 180ms ease;
}

.nx-project-header__brand-arrow {
  opacity: 0;
  color: #607086;
}

.nx-project-header__brand-arrow [data-lucide] {
  width: 20px;
  height: 20px;
}

.nx-project-header__brand-logo {
  opacity: 1;
}

.nx-project-header__brand-mark {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}

.nx-project-header__brand--swap:hover .nx-project-header__brand-arrow,
.nx-project-header__brand--swap:focus-visible .nx-project-header__brand-arrow {
  opacity: 1;
}

.nx-project-header__brand--swap:hover .nx-project-header__brand-logo,
.nx-project-header__brand--swap:focus-visible .nx-project-header__brand-logo {
  opacity: 0;
}

.nx-project-header__brand:hover {
  opacity: 0.8;
}

.nx-project-header__brand [data-lucide] {
  width: 18px;
  height: 18px;
}

.nx-project-header__left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1 1 auto;
}

.nx-project-header__icon-btn {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #607086;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
}

.nx-project-header__icon-btn:hover {
  background: rgba(24, 33, 47, 0.05);
  color: #18212f;
}

.nx-project-header__icon-btn:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-project-header__icon-btn [data-lucide] {
  width: 18px;
  height: 18px;
}

.nx-project-header__back-link {
  display: none;
  color: #607086;
  flex: 0 0 auto;
  border-radius: 8px;
}

.nx-project-header__back-link:hover {
  color: #18212f;
  opacity: 0.8;
}

.nx-project-header__back-link:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-project-header__back-link [data-lucide] {
  width: 18px;
  height: 18px;
}

.nx-project-header__crumb {
  display: none;
  color: #607086;
  flex: 0 0 auto;
}

.nx-project-header__crumb [data-lucide] {
  width: 18px;
  height: 18px;
}

.nx-project-header__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
  color: #18212f;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nx-project-header__right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.nx-project-header__member-cluster {
  display: none;
  align-items: center;
  gap: 10px;
}

.nx-project-header__avatars {
  display: flex;
  align-items: center;
  margin-right: 2px;
}

.nx-project-header__avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid #fff;
  margin-left: -8px;
  background: #f2f2f2;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.nx-project-header__avatar:first-child {
  margin-left: 0;
}

.nx-project-header__avatar-add {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px dashed #d7dce6;
  background: rgba(255, 255, 255, 0.75);
  color: #607086;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nx-project-header__avatar-add:hover {
  background: #f8fafc;
  color: #18212f;
}

.nx-project-header__avatar-add:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-project-header__avatar-add [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-project-header__pip-btn {
  border: 0;
  border-radius: 10px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  cursor: pointer;
}

.nx-project-header__pip-btn:hover {
  background: linear-gradient(90deg, #0ea5a4, #2563eb);
}

.nx-project-header__pip-btn:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-project-header__pip-btn [data-lucide] {
  width: 18px;
  height: 18px;
}

.nx-project-header__pip-label,
.nx-project-header__pip-tail {
  display: none;
}

.nx-project-header__btn {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #607086;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nx-project-header__btn:hover {
  background: rgba(24, 33, 47, 0.05);
  color: #18212f;
}

.nx-project-header__btn:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-project-header__btn [data-lucide] {
  width: 18px;
  height: 18px;
}

.nx-project-header__btn--context {
  display: none;
}

@media (min-width: 768px) {
  .nx-project-header__bar {
    padding: 0 12px;
  }
  .nx-project-header {
    gap: 16px;
    padding: 12px 0;
  }
  .nx-project-header__mobile-menu {
    display: none;
  }
  .nx-project-header__back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
  }
  .nx-project-header__crumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nx-project-header__member-cluster {
    display: flex;
    gap: 6px;
  }
  .nx-project-header__btn--context {
    display: inline-flex;
  }
  .nx-project-header__pip-btn {
    width: auto;
    height: 32px;
    border-radius: 8px;
    padding: 0 12px;
    gap: 6px;
  }
  .nx-project-header__pip-label,
  .nx-project-header__pip-tail {
    display: inline;
  }
  .nx-project-header__pip-label {
    font-size: 12px;
    font-weight: 700;
  }
  .nx-project-header__pip-tail [data-lucide] {
    width: 12px;
    height: 12px;
  }
}
.nx-project-block-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.nx-project-block {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.nx-project-block-link:hover .nx-project-block {
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.12);
  transform: translateY(-1px);
}

.nx-project-block-link:hover .nx-project-block--create {
  transform: none;
  box-shadow: none;
}

.nx-project-block__body {
  padding: 20px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.nx-project-block--create {
  border: 2px dashed #e5e7eb;
  background: transparent;
  box-shadow: none;
  min-height: 200px;
  align-items: center;
  justify-content: center;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.nx-project-block-link:hover .nx-project-block--create {
  border-color: #c3c7cc;
  background: rgba(249, 250, 251, 0.5);
}

.nx-project-block__create-wrap {
  padding: 24px;
  text-align: center;
}

.nx-project-block__create-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #d1d5db;
  color: #4b5563;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.nx-project-block__create-icon [data-lucide] {
  width: 20px;
  height: 20px;
}

.nx-project-block__create-title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  color: #18212f;
  font-family: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.nx-project-block__create-copy {
  margin: 0;
  font-size: 11px;
  color: #607086;
}

.nx-project-block__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.nx-project-block__meta {
  min-width: 0;
  flex: 1 1 auto;
}

.nx-project-block__code {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 400;
  color: #607086;
}

.nx-project-block__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #18212f;
  font-family: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.nx-project-block__menu-btn {
  width: 24px;
  height: 24px;
  margin-top: -2px;
  margin-right: -2px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #607086;
  opacity: 0.6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
}

.nx-project-block-link:hover .nx-project-block__menu-btn {
  opacity: 1;
}

.nx-project-block__menu-btn:hover {
  background: #f3f4f6;
}

.nx-project-block__menu-btn [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-project-block__menu-btn svg {
  width: 16px;
  height: 16px;
}

.nx-project-block__menu-dropdown {
  position: relative;
  display: inline-flex;
}

.nx-project-block__menu-dropdown .nx-dropdown__menu {
  min-width: 190px;
}

.nx-project-block__menu-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nx-project-block__menu-item [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-project-block__progress {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
  background: #e5e7eb;
  margin-bottom: 16px;
}

.nx-project-block__progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(to right, #3b82f6, #10b981);
}

.nx-project-block__stage-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.nx-project-block__type {
  border: 0;
  border-radius: 999px;
  background: #5caa8e;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  padding: 7px 10px;
  white-space: nowrap;
}

.nx-project-block__stage {
  font-size: 12px;
  color: #607086;
  font-weight: 600;
}

.nx-project-block__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nx-project-block__indication {
  margin: 0;
  font-size: 12px;
  color: #607086;
}

.nx-project-block__docs {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #607086;
}

.nx-project-block__docs [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-project-block__docs-count {
  font-size: 12px;
  font-weight: 600;
}

.nx-project-block__code--light {
  font-weight: 300;
}

.nx-project-block__type--research {
  background: #b8876b;
}

.nx-project-block__menu-item--danger {
  color: #b83b3b;
}

@media (max-width: calc(640px - 0.02px)) {
  .nx-project-block__body {
    padding: 16px;
  }
  .nx-project-block__title {
    font-size: 18px;
  }
}
.nx-project-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nx-project-block-header__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #18212f;
  font-family: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

.nx-project-block-header__link {
  text-decoration: none;
}

.nx-project-block-header__button {
  border: 0;
  border-radius: 8px;
  background: #f2f0e8;
  color: #18212f;
  height: 32px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 160ms ease;
}

.nx-project-block-header__button:hover {
  background: #e0dace;
}

.nx-project-block-header__button:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-project-block-header__button [data-lucide] {
  width: 16px;
  height: 16px;
}

@media (max-width: calc(640px - 0.02px)) {
  .nx-project-block-header {
    align-items: flex-start;
    flex-direction: column;
  }
}
.nx-app-sidebar-demo {
  width: min(1240px, 98vw);
  height: 720px;
  display: flex;
  align-items: stretch;
  background: #faf9f5;
  border: 1px solid rgba(220, 227, 238, 0.65);
  border-radius: 12px;
  overflow: hidden;
}

.nx-app-sidebar-nav {
  width: 16rem;
  flex: 0 0 16rem;
  background: #ece8dd;
  color: #18212f;
  border-right: 1px solid rgba(220, 227, 238, 0.7);
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.nx-app-sidebar-nav__header {
  height: 68px;
  border-bottom: 1px solid rgba(220, 227, 238, 0.8);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nx-app-sidebar-nav__brand {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  color: #3fb89f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.nx-app-sidebar-nav__brand [data-lucide] {
  width: 20px;
  height: 20px;
}

.nx-app-sidebar-nav__brand .nx-brand-mark {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
}

.nx-app-sidebar-nav__workspace {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  overflow: visible;
}

.nx-app-sidebar-nav__workspace-dropdown {
  width: 100%;
}

.nx-app-sidebar-nav__workspace-btn {
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 8px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
}

.nx-app-sidebar-nav__workspace-btn:hover {
  background: rgba(255, 255, 255, 0.45);
}

.nx-app-sidebar-nav__workspace-main {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}

.nx-app-sidebar-nav__workspace-badge {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #18212f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex: 0 0 auto;
}

.nx-app-sidebar-nav__workspace-name {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #18212f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nx-app-sidebar-nav__workspace-btn [data-lucide=chevron-down] {
  width: 14px;
  height: 14px;
  color: #607086;
  flex: 0 0 auto;
}

.nx-app-sidebar-nav__workspace-menu {
  left: 0;
  right: auto;
  min-width: 256px;
  width: 256px;
  padding: 6px;
}

.nx-app-sidebar-nav__workspace-menu-label {
  margin: 0;
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #607086;
}

.nx-app-sidebar-nav__workspace-menu-separator {
  height: 1px;
  background: #dce3ee;
  margin: 6px 0;
}

.nx-app-sidebar-nav__workspace-menu-item {
  border: 0;
  background: transparent;
  width: 100%;
  min-height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #18212f;
  text-align: left;
  padding: 8px;
  cursor: pointer;
}

.nx-app-sidebar-nav__workspace-menu-item:hover,
.nx-app-sidebar-nav__workspace-menu-item:focus-visible {
  background: #f8fafc;
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-app-sidebar-nav__workspace-menu-item--active {
  background: rgba(35, 74, 69, 0.12);
}

.nx-app-sidebar-nav__workspace-menu-item--active:hover {
  background: rgba(35, 74, 69, 0.12);
}

.nx-app-sidebar-nav__workspace-menu-item--disabled,
.nx-app-sidebar-nav__workspace-menu-item--disabled:hover {
  opacity: 0.5;
  background: transparent;
  cursor: not-allowed;
}

.nx-app-sidebar-nav__workspace-menu-item [data-lucide] {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  color: #607086;
}

.nx-app-sidebar-nav__workspace-menu-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 2px;
}

.nx-app-sidebar-nav__workspace-menu-title {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  color: #18212f;
}

.nx-app-sidebar-nav__workspace-menu-subtitle {
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
  color: #607086;
  text-transform: capitalize;
}

.nx-app-sidebar-nav__content {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 8px 0;
}

.nx-app-sidebar-nav__group {
  padding: 0 16px;
}

.nx-app-sidebar-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.nx-app-sidebar-nav__item-link {
  width: 100%;
  min-height: 40px;
  border-radius: 10px;
  text-decoration: none;
  color: #607086;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  transition: background-color 140ms ease, color 140ms ease;
}

.nx-app-sidebar-nav__item-link:hover {
  background: rgba(255, 255, 255, 0.55);
  color: #18212f;
}

.nx-app-sidebar-nav__item-link--active {
  background: #123339;
  color: #fff;
  font-weight: 600;
}

.nx-app-sidebar-nav__item-link--active:hover {
  background: #123339;
  color: #fff;
}

.nx-app-sidebar-nav__item-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.nx-app-sidebar-nav__item-icon [data-lucide] {
  width: 18px;
  height: 18px;
}

.nx-app-sidebar-nav__item-label {
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nx-app-sidebar-nav__divider {
  height: 1px;
  margin: 12px 0;
  background: rgba(220, 227, 238, 0.75);
}

.nx-app-sidebar-nav__label {
  margin: 0 0 8px;
  padding: 0 12px;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #607086;
}

.nx-app-sidebar-nav__tool-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}

.nx-app-sidebar-nav__tool-item {
  border-radius: 8px;
}

.nx-app-sidebar-nav__tool-link {
  display: grid;
  gap: 2px;
  text-decoration: none;
  color: #607086;
  border-radius: 8px;
  padding: 6px 12px;
  transition: background-color 140ms ease;
}

.nx-app-sidebar-nav__tool-link:hover {
  background: rgba(255, 255, 255, 0.55);
}

.nx-app-sidebar-nav__tool-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.nx-app-sidebar-nav__tool-name {
  font-size: 13px;
  color: #18212f;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1 1 auto;
}

.nx-app-sidebar-nav__tool-time {
  font-size: 10px;
  color: rgba(96, 112, 134, 0.65);
  opacity: 0;
  transition: opacity 140ms ease;
  flex: 0 0 auto;
}

.nx-app-sidebar-nav__tool-item:hover .nx-app-sidebar-nav__tool-time {
  opacity: 1;
}

.nx-app-sidebar-nav__tool-project {
  font-size: 11px;
  color: rgba(96, 112, 134, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nx-app-sidebar-nav__footer {
  border-top: 1px solid rgba(220, 227, 238, 0.8);
  padding: 16px;
  display: grid;
  gap: 12px;
}

.nx-app-sidebar-nav__footer-link {
  width: 100%;
  min-height: 40px;
  border-radius: 10px;
  text-decoration: none;
  color: #607086;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  transition: background-color 140ms ease, color 140ms ease;
}

.nx-app-sidebar-nav__footer-link:hover {
  background: rgba(255, 255, 255, 0.55);
  color: #18212f;
}

.nx-app-sidebar-nav__account {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nx-app-sidebar-nav__account-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: #18212f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex: 0 0 auto;
}

.nx-app-sidebar-nav__account-meta {
  flex: 1 1 auto;
  min-width: 0;
}

.nx-app-sidebar-nav__account-name {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #18212f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nx-app-sidebar-nav__account-email {
  margin: 2px 0 0;
  font-size: 12px;
  color: #607086;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nx-app-sidebar-nav__logout {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #607086;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
}

.nx-app-sidebar-nav__logout:hover {
  background: rgba(255, 255, 255, 0.55);
  color: #18212f;
}

.nx-app-sidebar-nav__logout:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-app-sidebar-nav__logout [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-app-sidebar-demo__main {
  flex: 1 1 auto;
  min-width: 0;
  background: radial-gradient(circle at 10% 10%, rgba(20, 184, 166, 0.05), transparent 45%), radial-gradient(circle at 95% 8%, rgba(59, 130, 246, 0.04), transparent 40%), #faf9f5;
}

.nx-frame-demo {
  width: min(1360px, 98vw);
  height: 760px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(220, 227, 238, 0.65);
}

.nx-frame-demo--project {
  background: #ece8dd;
  padding: 0 8px 0 0;
  display: flex;
  gap: 8px;
}

.nx-frame-project-rail {
  width: 56px;
  flex: 0 0 56px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border-right: 0;
}

.nx-frame-project-rail__header {
  padding: 16px 8px;
  border-bottom: 1px solid rgba(220, 227, 238, 0.45);
  display: flex;
  justify-content: center;
}

.nx-frame-project-rail__logo {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #3db7a4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nx-frame-project-rail__logo--link {
  position: relative;
  text-decoration: none;
}

.nx-frame-project-rail__logo [data-lucide] {
  width: 22px;
  height: 22px;
}

.nx-frame-project-rail__logo-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px !important;
  height: 24px !important;
  color: #607086;
  opacity: 0;
  transition: opacity 180ms ease;
}

.nx-frame-project-rail__logo .nx-brand-mark {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
  opacity: 1;
  transition: opacity 180ms ease;
}

.nx-frame-project-rail__logo--link:hover .nx-frame-project-rail__logo-arrow,
.nx-frame-project-rail__logo--link:focus-visible .nx-frame-project-rail__logo-arrow {
  opacity: 1;
}

.nx-frame-project-rail__logo--link:hover .nx-brand-mark,
.nx-frame-project-rail__logo--link:focus-visible .nx-brand-mark {
  opacity: 0;
}

.nx-frame-project-rail__content {
  flex: 1 1 auto;
  min-height: 0;
  padding: 8px 0;
  display: grid;
  align-content: start;
  gap: 4px;
}

.nx-frame-project-rail__item-wrap {
  display: flex;
  justify-content: center;
}

.nx-frame-project-rail__item {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #607086;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nx-frame-project-rail__item:hover {
  background: rgba(255, 255, 255, 0.55);
  color: #18212f;
}

.nx-frame-project-rail__item--active {
  background: #123339;
  color: #fff;
}

.nx-frame-project-rail__item--active:hover {
  background: #123339;
  color: #fff;
}

.nx-frame-project-rail__item [data-lucide] {
  width: 20px;
  height: 20px;
}

.nx-frame-project-rail__footer {
  border-top: 1px solid rgba(220, 227, 238, 0.45);
  padding: 8px 0 10px;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.nx-frame-project-rail__avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: #18212f;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.nx-frame-project-main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.nx-frame-project-main .nx-project-header-shell {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.nx-frame-project-main .nx-project-header__body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

.nx-frame-project-pipeline {
  padding: 0 !important;
  gap: 8px !important;
  position: relative;
  flex-direction: row !important;
  height: 100%;
  background: transparent !important;
}

.nx-frame-project-pipeline__mobile-open {
  display: none;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 25;
}

.nx-frame-project-pipeline__backdrop {
  display: none;
  border: 0;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  z-index: 30;
}

.nx-frame-project-pipeline__nav {
  width: 20rem;
  flex: 0 0 20rem;
  min-height: 100%;
  position: relative;
  z-index: 2;
}

.nx-frame-project-pipeline__mobile-close {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #607086;
  z-index: 5;
}

.nx-frame-project-pipeline__mobile-close:hover {
  background: rgba(0, 0, 0, 0.08);
}

.nx-frame-project-pipeline__mobile-close [data-lucide] {
  width: 18px;
  height: 18px;
}

.nx-frame-project-pipeline__nav .nx-pp-nav-shell,
.nx-frame-project-pipeline__nav .nx-pp-nav-shell__frame,
.nx-frame-project-pipeline__nav .nx-pp-nav {
  min-height: 100%;
  height: 100%;
}

.nx-frame-project-pipeline__nav .nx-pp-nav {
  margin-right: 0;
  border-left: 0;
  border-top: 0;
  border-bottom: 0;
  border-top-left-radius: 0;
}

.nx-frame-project-pipeline__main {
  flex: 1 1 auto;
  min-width: 0;
  overflow-y: auto;
  background: #fff;
  border-top-right-radius: 12px;
  padding: 16px 16px 16px 10px;
}

.nx-frame-project-pipeline__main .nx-pipeline-stages {
  width: auto !important;
  max-width: 72rem;
}

.nx-frame-project-pipeline__stage-head {
  margin: -16px -16px 14px -10px;
  min-height: 56px;
  padding: 0 16px 0 22px;
  border-bottom: 1px solid rgba(220, 227, 238, 0.9);
  background: #f6f6f0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nx-frame-project-pipeline__stage-badge {
  display: inline-flex;
  align-items: center;
  height: 30px;
  border-radius: 999px;
  background: #10b981;
  color: #fff;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.nx-frame-project-pipeline__stage-title {
  margin: 0;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.2;
  color: #18212f;
  font-weight: 700;
}

.nx-frame-project-main__placeholder {
  border-radius: 12px;
  border: 1px solid rgba(220, 227, 238, 0.55);
  background: #fff;
  padding: 16px;
}

.nx-frame-project-main__placeholder--hero {
  height: 82px;
}

.nx-frame-project-main__placeholder--panel {
  height: 180px;
}

.nx-frame-project-main__placeholder--grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  height: auto;
  background: transparent;
  border: 0;
  padding: 0;
}

.nx-frame-project-main__placeholder-card {
  height: 110px;
  border-radius: 12px;
  border: 1px solid rgba(220, 227, 238, 0.55);
  background: #fff;
}

.nx-frame-toolkit-page {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.nx-frame-toolkit-page__header {
  flex: 0 0 auto;
  background: transparent;
  padding: 8px 0 8px 16px;
  display: flex;
  align-items: center;
}

.nx-frame-toolkit-page__header-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.nx-frame-toolkit-page__back {
  width: 20px;
  height: 20px;
  color: #18212f;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.nx-frame-toolkit-page__back [data-lucide] {
  width: 17px;
  height: 17px;
}

.nx-frame-toolkit-page__crumb {
  color: #607086;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.nx-frame-toolkit-page__crumb [data-lucide] {
  width: 18px;
  height: 18px;
}

.nx-frame-toolkit-page__title {
  margin: 0;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 700;
  color: #18212f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nx-frame-toolkit-page__body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  overflow: hidden;
}

.nx-frame-toolkit-page__runs {
  width: 20rem;
  flex: 0 0 20rem;
  margin-right: 8px;
  border-top-left-radius: 12px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
}

.nx-frame-toolkit-page__workspace {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  min-height: 0;
}

.nx-frame-toolkit-page__split {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  display: flex;
  overflow: hidden;
  background: transparent;
}

.nx-frame-toolkit-helper-panel {
  width: 50%;
  flex: 0 0 50%;
  min-width: 0;
  border-top-left-radius: 12px;
  border-top-right-radius: 0;
}

.nx-frame-toolkit-page__divider {
  width: 6px;
  flex: 0 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: col-resize;
}

.nx-frame-toolkit-page__divider:hover {
  background: rgba(45, 212, 191, 0.12);
}

.nx-frame-toolkit-page__divider-pill {
  width: 2px;
  height: 32px;
  border-radius: 999px;
  background: #cbd5e1;
  transition: background-color 140ms ease;
}

.nx-frame-toolkit-page__divider:hover .nx-frame-toolkit-page__divider-pill {
  background: #2dd4bf;
}

.nx-frame-toolkit-doc-panel {
  flex: 1 1 0%;
  min-width: 0;
}

.nx-frame-toolkit-doc-panel .nx-toolkit-doc__container {
  max-width: 64rem;
}

.nx-frame-demo--regular {
  background: #faf9f5;
  display: flex;
}

.nx-frame-demo--regular .nx-app-sidebar-nav {
  width: 20rem;
  flex: 0 0 20rem;
  transition: width 200ms ease, flex-basis 200ms ease;
}

.nx-frame-demo--regular .nx-app-sidebar-nav__header,
.nx-frame-demo--regular .nx-app-sidebar-nav__group,
.nx-frame-demo--regular .nx-app-sidebar-nav__footer {
  transition: padding 200ms ease;
}

.nx-frame-demo--regular .nx-app-sidebar-nav__workspace,
.nx-frame-demo--regular .nx-app-sidebar-nav__item-label,
.nx-frame-demo--regular .nx-app-sidebar-nav__label,
.nx-frame-demo--regular .nx-app-sidebar-nav__tool-list,
.nx-frame-demo--regular .nx-app-sidebar-nav__footer-link .nx-app-sidebar-nav__item-label,
.nx-frame-demo--regular .nx-app-sidebar-nav__account-meta,
.nx-frame-demo--regular .nx-app-sidebar-nav__logout {
  transition: opacity 140ms ease;
}

.nx-frame-demo--regular .nx-app-sidebar-nav__workspace-main {
  transition: opacity 140ms ease;
}

.nx-frame-demo--regular .nx-app-sidebar-nav__workspace-btn [data-lucide=chevron-down] {
  transition: opacity 140ms ease;
}

.nx-frame-demo--regular .nx-app-sidebar-nav__item-link,
.nx-frame-demo--regular .nx-app-sidebar-nav__footer-link {
  transition: background-color 140ms ease, color 140ms ease, padding 200ms ease;
}

.nx-frame-regular-main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.nx-frame-demo--regular[data-frame-sidebar=collapsed] .nx-app-sidebar-nav {
  width: 3.5rem;
  flex-basis: 3.5rem;
}

.nx-frame-demo--regular[data-frame-sidebar=collapsed] .nx-app-sidebar-nav__header {
  padding: 14px 8px;
}

.nx-frame-demo--regular[data-frame-sidebar=collapsed] .nx-app-sidebar-nav__workspace {
  width: 100%;
}

.nx-frame-demo--regular[data-frame-sidebar=collapsed] .nx-app-sidebar-nav__workspace-btn {
  justify-content: flex-start;
  padding: 0;
  min-height: 40px;
}

.nx-frame-demo--regular[data-frame-sidebar=collapsed] .nx-app-sidebar-nav__workspace-main {
  opacity: 0;
  width: 0;
  min-width: 0;
  overflow: hidden;
}

.nx-frame-demo--regular[data-frame-sidebar=collapsed] .nx-app-sidebar-nav__workspace-btn [data-lucide=chevron-down] {
  opacity: 0;
  width: 0;
  overflow: hidden;
}

.nx-frame-demo--regular[data-frame-sidebar=collapsed] .nx-app-sidebar-nav__header {
  gap: 0;
  justify-content: center;
}

.nx-frame-demo--regular[data-frame-sidebar=collapsed] .nx-app-sidebar-nav__workspace {
  display: none;
}

.nx-frame-demo--regular[data-frame-sidebar=collapsed] .nx-app-sidebar-nav__group {
  padding-left: 0;
  padding-right: 0;
}

.nx-frame-demo--regular[data-frame-sidebar=collapsed] .nx-app-sidebar-nav__menu {
  justify-items: center;
}

.nx-frame-demo--regular[data-frame-sidebar=collapsed] .nx-app-sidebar-nav__item-link,
.nx-frame-demo--regular[data-frame-sidebar=collapsed] .nx-app-sidebar-nav__footer-link {
  width: 40px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  gap: 0;
}

.nx-frame-demo--regular[data-frame-sidebar=collapsed] .nx-app-sidebar-nav__item-label,
.nx-frame-demo--regular[data-frame-sidebar=collapsed] .nx-app-sidebar-nav__label,
.nx-frame-demo--regular[data-frame-sidebar=collapsed] .nx-app-sidebar-nav__tool-list,
.nx-frame-demo--regular[data-frame-sidebar=collapsed] .nx-app-sidebar-nav__footer-link .nx-app-sidebar-nav__item-label,
.nx-frame-demo--regular[data-frame-sidebar=collapsed] .nx-app-sidebar-nav__account-meta,
.nx-frame-demo--regular[data-frame-sidebar=collapsed] .nx-app-sidebar-nav__logout {
  opacity: 0;
  display: none;
}

.nx-frame-demo--regular[data-frame-sidebar=collapsed] .nx-app-sidebar-nav__divider {
  margin: 10px 10px 12px;
}

.nx-frame-demo--regular[data-frame-sidebar=collapsed] .nx-app-sidebar-nav__footer {
  padding: 10px 8px;
  justify-items: center;
}

.nx-frame-demo--regular[data-frame-sidebar=collapsed] .nx-app-sidebar-nav__account {
  justify-content: center;
}

.nx-frame-regular-topbar {
  height: 68px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(220, 227, 238, 0.75);
}

.nx-frame-regular-topbar__left,
.nx-frame-regular-topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nx-frame-regular-topbar__title {
  margin: 0;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1;
  color: #18212f;
  font-weight: 700;
}

.nx-frame-regular-topbar__icon {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #607086;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nx-frame-regular-topbar__icon [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-frame-regular-topbar__pip {
  height: 36px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
}

.nx-frame-regular-topbar__pip [data-lucide] {
  width: 14px;
  height: 14px;
}

.nx-frame-regular-content {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  padding: 16px;
  display: grid;
  gap: 16px;
  align-content: start;
  background: #faf9f5;
}

.nx-frame-regular-content__row {
  border-radius: 12px;
  border: 1px solid rgba(220, 227, 238, 0.6);
  background: #fff;
}

.nx-frame-regular-content__row--a {
  height: 88px;
}

.nx-frame-regular-content__row--b {
  height: 210px;
}

.nx-frame-regular-content__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.nx-frame-regular-content__tile {
  height: 120px;
  border-radius: 12px;
  border: 1px solid rgba(220, 227, 238, 0.6);
  background: #fff;
}

@media (min-width: 768px) {
  .nx-frame-project-rail {
    display: flex;
  }
}
@media (max-width: calc(1024px - 0.02px)) {
  .nx-frame-regular-content__grid,
  .nx-frame-project-main__placeholder--grid {
    grid-template-columns: 1fr;
  }
  .nx-frame-toolkit-page__body {
    flex-direction: column;
    gap: 8px;
    overflow: auto;
  }
  .nx-frame-toolkit-page__runs {
    width: auto;
    flex-basis: auto;
    margin-right: 0;
    border-radius: 12px 12px 0 0;
  }
  .nx-frame-toolkit-page__split {
    flex-direction: column;
    overflow: visible;
  }
  .nx-frame-toolkit-helper-panel {
    width: 100%;
    flex-basis: auto;
    border-radius: 0;
  }
  .nx-frame-toolkit-page__divider {
    display: none;
  }
  .nx-frame-toolkit-doc-panel {
    min-height: 420px;
  }
  .nx-frame-project-pipeline__mobile-open {
    display: inline-flex;
  }
  .nx-frame-project-pipeline__main {
    border-top-right-radius: 0;
    padding-top: 56px;
  }
  .nx-frame-project-pipeline__stage-head {
    margin-top: -56px;
  }
  .nx-frame-project-pipeline__nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 40;
    width: min(20rem, 86vw);
    transform: translateX(-102%);
    transition: transform 220ms ease;
  }
  .nx-frame-project-pipeline[data-frame-pipeline-nav=open] .nx-frame-project-pipeline__nav {
    transform: translateX(0);
  }
  .nx-frame-project-pipeline[data-frame-pipeline-nav=open] .nx-frame-project-pipeline__backdrop {
    display: block;
  }
  .nx-frame-project-pipeline[data-frame-pipeline-nav=open] .nx-frame-project-pipeline__mobile-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: calc(768px - 0.02px)) {
  .nx-frame-toolkit-page__header {
    padding-left: 12px;
  }
  .nx-frame-toolkit-page__title {
    font-size: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nx-frame-demo--regular .nx-app-sidebar-nav,
  .nx-frame-demo--regular .nx-app-sidebar-nav__header,
  .nx-frame-demo--regular .nx-app-sidebar-nav__group,
  .nx-frame-demo--regular .nx-app-sidebar-nav__footer,
  .nx-frame-demo--regular .nx-app-sidebar-nav__workspace,
  .nx-frame-demo--regular .nx-app-sidebar-nav__item-link,
  .nx-frame-demo--regular .nx-app-sidebar-nav__footer-link {
    transition: none !important;
  }
}
.nx-team-modal-host {
  width: min(32rem, 100vw - 32px) !important;
  margin-top: 10vh !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.nx-team-modal {
  position: relative;
  width: 100%;
  background: #fff;
  border: 1px solid #dce3ee;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.18);
  padding: 24px;
  display: grid;
  gap: 16px;
}

.nx-team-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #607086;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nx-team-modal__close:hover {
  background: rgba(24, 33, 47, 0.06);
  color: #18212f;
}

.nx-team-modal__close:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-team-modal__close [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-team-modal__header {
  display: grid;
  gap: 6px;
  padding-right: 28px;
}

.nx-team-modal__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #18212f;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

.nx-team-modal__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #607086;
}

.nx-team-modal__tabs {
  display: grid;
  gap: 8px;
}

.nx-team-modal__tablist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 4px;
  border-radius: 10px;
  background: #eef2f7;
  color: #607086;
}

.nx-team-modal__tab {
  border: 0;
  background: transparent;
  border-radius: 8px;
  min-height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease, box-shadow 120ms ease;
}

.nx-team-modal__tab:hover {
  color: #18212f;
}

.nx-team-modal__tab.is-active {
  background: #fff;
  color: #18212f;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.08);
}

.nx-team-modal__tab [data-lucide] {
  width: 14px;
  height: 14px;
}

.nx-team-modal__tab-panel {
  margin-top: 2px;
  display: grid;
  gap: 16px;
}

.nx-team-modal__tab-panel[hidden] {
  display: none !important;
}

.nx-team-modal__list-shell {
  height: 300px;
  padding-right: 8px;
  overflow-y: auto;
}

.nx-team-modal__list {
  display: grid;
  gap: 8px;
}

.nx-team-modal__member {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(220, 227, 238, 0.85);
  border-radius: 10px;
  background: rgba(241, 245, 249, 0.6);
  padding: 12px;
}

.nx-team-modal__member-main {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
}

.nx-team-modal__avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #e5e7eb;
  color: #18212f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex: 0 0 auto;
}

.nx-team-modal__member-meta {
  min-width: 0;
  flex: 1 1 auto;
}

.nx-team-modal__member-name {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #18212f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nx-team-modal__member-email {
  margin: 2px 0 0;
  font-size: 12px;
  color: #607086;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nx-team-modal__role {
  border: 0;
  border-radius: 999px;
  background: #eef2f7;
  color: #18212f;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.nx-team-modal__empty {
  text-align: center;
  color: #607086;
  padding: 24px 8px;
}

.nx-team-modal__empty [data-lucide] {
  width: 48px;
  height: 48px;
  opacity: 0.5;
  margin: 0 auto 8px;
}

.nx-team-modal__empty p {
  margin: 0;
  font-size: 14px;
}

.nx-team-modal__add-panel {
  border: 1px dashed rgba(220, 227, 238, 0.9);
  border-radius: 10px;
  padding: 16px;
  display: grid;
  gap: 12px;
  background: rgba(248, 250, 252, 0.75);
}

.nx-team-modal__field {
  display: grid;
  gap: 6px;
}

.nx-team-modal__label {
  font-size: 13px;
  font-weight: 600;
  color: #18212f;
}

.nx-team-modal__input {
  width: 100%;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  background: #fff;
  color: #18212f;
  min-height: 36px;
  padding: 0 12px;
}

.nx-team-modal__input:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-team-modal__row {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.nx-team-modal__btn {
  min-height: 32px;
  border-radius: 8px;
  padding: 0 12px;
  border: 1px solid #dce3ee;
  background: #fff;
  color: #18212f;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nx-team-modal__btn:hover {
  background: #f8fafc;
}

.nx-team-modal__btn--primary {
  border-color: transparent;
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
  color: #fff;
}

.nx-team-modal__btn--primary:hover {
  background: linear-gradient(90deg, #0ea5a4, #2563eb);
  color: #fff;
}

.nx-profile-modal-host {
  width: calc(100vw - 24px) !important;
  height: 100vh !important;
  max-height: none !important;
  max-width: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}

.nx-profile-modal__panel {
  position: relative;
  width: min(80rem, 100vw - 24px);
  max-width: 80rem;
  height: min(85vh, 100vh - 24px);
  max-height: calc(100vh - 24px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #dce3ee;
  border-radius: 12px;
  box-shadow: 0 22px 48px rgba(17, 24, 39, 0.22);
  overflow: hidden;
}

.nx-profile-modal__inner {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.nx-profile-modal__side {
  width: 16rem;
  flex: 0 0 16rem;
  background: #f7f7f3;
  border-right: 1px solid #dce3ee;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.nx-profile-modal__side-header {
  padding: 20px 24px;
  border-bottom: 1px solid #dce3ee;
}

.nx-profile-modal__side-header-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nx-profile-modal__brand {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: block;
}

.nx-profile-modal__side-title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #18212f;
}

.nx-profile-modal__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  min-height: 0;
  overflow-y: auto;
}

.nx-profile-modal__nav-btn {
  width: 100%;
  border: 0;
  background: transparent;
  color: #607086;
  border-radius: 10px;
  padding: 10px 14px;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease, box-shadow 120ms ease;
}

.nx-profile-modal__nav-btn:hover {
  background: rgba(255, 255, 255, 0.55);
  color: #18212f;
}

.nx-profile-modal__nav-btn.is-active {
  background: #fff;
  color: #18212f;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}

.nx-profile-modal__nav-btn [data-lucide] {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.nx-profile-modal__main {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.nx-profile-modal__hero {
  border-bottom: 1px solid #dce3ee;
  padding: 24px 32px;
  flex: 0 0 auto;
}

.nx-profile-modal__hero-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nx-profile-modal__hero-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #ece8dd;
  color: #18212f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.nx-profile-modal__hero-name {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
  color: #18212f;
}

.nx-profile-modal__hero-email {
  margin: 4px 0 0;
  font-size: 14px;
  color: #607086;
}

.nx-profile-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 24px 32px;
}

.nx-profile-modal__panel-content[hidden] {
  display: none !important;
}

.nx-profile-modal__panel-content {
  display: grid;
  gap: 16px;
}

.nx-profile-modal__section-head h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: #18212f;
}

.nx-profile-modal__section-head p {
  margin: 0;
  font-size: 14px;
  color: #607086;
}

.nx-profile-modal__photo-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nx-profile-modal__photo-avatar {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  border: 4px solid #fff;
  box-shadow: 0 8px 16px rgba(17, 24, 39, 0.08);
  background: #ece8dd;
  color: #18212f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.nx-profile-modal__stack {
  display: grid;
  gap: 12px;
}

.nx-profile-modal__help {
  margin: 0;
  font-size: 13px;
  color: #607086;
}

.nx-profile-modal__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.nx-profile-modal__field {
  display: grid;
  gap: 6px;
}

.nx-profile-modal__field--full {
  grid-column: 1/-1;
}

.nx-profile-modal__label {
  font-size: 13px;
  font-weight: 600;
  color: #18212f;
}

.nx-profile-modal__input {
  width: 100%;
  min-height: 38px;
  border-radius: 8px;
  border: 1px solid #dce3ee;
  background: #fff;
  color: #18212f;
  padding: 0 12px;
  font-size: 14px;
}

.nx-profile-modal__input:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-profile-modal__placeholder {
  border: 1px dashed rgba(203, 213, 225, 0.9);
  background: rgba(248, 250, 252, 0.7);
  border-radius: 10px;
  padding: 16px;
  color: #607086;
  font-size: 14px;
}

.nx-profile-modal__footer {
  flex: 0 0 auto;
  border-top: 1px solid #dce3ee;
  background: #f7f7f3;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nx-profile-modal__footer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nx-profile-modal__btn {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid #dce3ee;
  background: #fff;
  color: #18212f;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.nx-profile-modal__btn:hover {
  background: #f8fafc;
}

.nx-profile-modal__btn:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-profile-modal__btn [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-profile-modal__btn--danger {
  border-color: transparent;
  background: #ef4444;
  color: #fff;
}

.nx-profile-modal__btn--danger:hover {
  background: #dc2626;
  color: #fff;
}

.nx-profile-modal__btn--primary {
  border-color: transparent;
  background: #111827;
  color: #fff;
  min-width: 140px;
}

.nx-profile-modal__btn--primary:hover {
  background: #0b1220;
}

.nx-profile-modal__btn--iconlabel [data-lucide] {
  margin-right: 2px;
}

.nx-profile-modal__upload-label {
  display: inline-flex;
}

.nx-profile-modal__file {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nx-profile-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #607086;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nx-profile-modal__close:hover {
  background: rgba(24, 33, 47, 0.06);
  color: #18212f;
}

.nx-profile-modal__close:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-profile-modal__close [data-lucide] {
  width: 16px;
  height: 16px;
}

@media (max-width: calc(640px - 0.02px)) {
  .nx-profile-modal__panel {
    margin: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
  }
  .nx-profile-modal-host {
    width: 100% !important;
    height: 100vh !important;
    padding: 0 !important;
  }
  .nx-profile-modal__inner {
    flex-direction: column;
  }
  .nx-profile-modal__side {
    width: 100%;
    flex-basis: auto;
    border-right: 0;
    border-bottom: 1px solid #dce3ee;
  }
  .nx-profile-modal__side-header {
    padding: 16px;
  }
  .nx-profile-modal__nav {
    flex-direction: row;
    padding: 8px 8px 10px;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .nx-profile-modal__nav-btn {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px 12px;
  }
  .nx-profile-modal__hero,
  .nx-profile-modal__body {
    padding-left: 20px;
    padding-right: 20px;
  }
  .nx-profile-modal__footer {
    padding: 14px 20px;
    flex-direction: column;
    align-items: stretch;
  }
  .nx-profile-modal__footer-actions {
    width: 100%;
    justify-content: stretch;
  }
  .nx-profile-modal__footer-actions .nx-profile-modal__btn {
    flex: 1 1 auto;
  }
  .nx-profile-modal__form-grid {
    grid-template-columns: 1fr;
  }
}
.nx-admin-panel {
  width: min(1100px, 96vw);
  background: #fff;
  border: 1px solid rgba(220, 227, 238, 0.75);
  border-radius: 12px;
  padding: 24px 24px 28px;
}

.nx-admin-panel__tabs {
  display: grid;
  gap: 0;
}

.nx-admin-panel__tablist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  width: 100%;
  gap: 0;
  background: #eef2f7;
  color: #607086;
  border-radius: 10px;
  padding: 4px;
}

.nx-admin-panel__tab {
  border: 0;
  background: transparent;
  border-radius: 8px;
  min-height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: inherit;
  cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease, box-shadow 120ms ease;
}

.nx-admin-panel__tab:hover {
  color: #18212f;
}

.nx-admin-panel__tab.is-active {
  background: #fff;
  color: #18212f;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.08);
}

.nx-admin-panel__tab [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-admin-panel__tabpanel {
  margin-top: 24px;
}

.nx-admin-panel__tabpanel[hidden] {
  display: none !important;
}

.nx-admin-panel__stack {
  display: grid;
  gap: 24px;
}

.nx-admin-card {
  border-radius: 12px;
  border: 1px solid rgba(220, 227, 238, 0.8);
  background: #fff;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}

.nx-admin-card__header {
  padding: 24px 24px 0;
  display: grid;
  gap: 6px;
}

.nx-admin-card__title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #18212f;
}

.nx-admin-card__title [data-lucide] {
  width: 18px;
  height: 18px;
}

.nx-admin-card__desc {
  margin: 0;
  font-size: 14px;
  color: #607086;
  line-height: 1.45;
}

.nx-admin-card__body {
  padding: 24px;
}

.nx-admin-subtabs {
  display: grid;
  gap: 0;
}

.nx-admin-subtabs__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #eef2f7;
  color: #607086;
  border-radius: 10px;
  padding: 4px;
}

.nx-admin-subtabs__tab {
  border: 0;
  background: transparent;
  border-radius: 8px;
  min-height: 36px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: inherit;
  cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease, box-shadow 120ms ease;
}

.nx-admin-subtabs__tab.is-active {
  background: #fff;
  color: #18212f;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.08);
}

.nx-admin-subtabs__panel {
  margin-top: 24px;
}

.nx-admin-subtabs__panel[hidden] {
  display: none !important;
}

.nx-admin-empty {
  text-align: center;
  padding: 48px 16px;
}

.nx-admin-empty [data-lucide] {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.nx-admin-empty [data-lucide=circle-check] {
  color: #22c55e;
}

.nx-admin-empty h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #18212f;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

.nx-admin-empty p {
  margin: 0;
  font-size: 14px;
  color: #607086;
}

.nx-admin-panel__devtools {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(220, 227, 238, 0.8);
}

.nx-admin-panel__devtools-title {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  color: #607086;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nx-admin-panel__devtools-btn {
  min-height: 36px;
  border-radius: 8px;
  border: 1px solid #dce3ee;
  background: #fff;
  color: #18212f;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}

.nx-admin-panel__devtools-btn:hover {
  background: #f8fafc;
}

.nx-admin-panel__devtools-btn [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-admin-panel__placeholder {
  border-radius: 12px;
  border: 1px dashed rgba(220, 227, 238, 0.9);
  background: #fafbfd;
  color: #607086;
  min-height: 280px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.nx-admin-panel__placeholder p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: calc(768px - 0.02px)) {
  .nx-admin-panel {
    padding: 16px;
  }
  .nx-admin-panel__tablist {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .nx-admin-subtabs__list {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
.nx-feedback-modal {
  max-width: 448px;
}

.nx-feedback-modal__title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nx-feedback-modal__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
  color: #fff;
}

.nx-feedback-modal__icon [data-lucide] {
  width: 14px;
  height: 14px;
}

.nx-feedback-modal__content {
  display: grid;
  gap: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.nx-feedback-modal__copy p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.45;
  color: #18212f;
}

.nx-feedback-modal__copy p:last-child {
  margin-bottom: 0;
  color: #607086;
}

.nx-feedback-modal__copy strong {
  font-weight: 700;
}

.nx-feedback-modal__scale {
  display: grid;
  gap: 12px;
}

.nx-feedback-modal__scale-label {
  font-size: 14px;
  font-weight: 600;
  color: #18212f;
}

.nx-feedback-modal__scale-grid {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.nx-feedback-modal__score {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #dce3ee;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  color: #18212f;
  transition: border-color 120ms ease, background-color 120ms ease, color 120ms ease;
}

.nx-feedback-modal__score:hover {
  border-color: #9ca3af;
}

.nx-feedback-modal__score.is-selected {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  color: #1d4ed8;
}

.nx-feedback-modal__score:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.35);
  outline-offset: 1px;
}

.nx-feedback-modal__scale-legend {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: #607086;
}

.nx-feedback-modal__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.nx-feedback-modal__submit {
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
  color: #fff;
  border-color: transparent;
}

.nx-feedback-modal__submit:hover:not(:disabled):not(.is-disabled) {
  background: linear-gradient(90deg, #0ea5a4, #2563eb);
  color: #fff;
}

.nx-feedback-modal__submit [data-lucide] {
  width: 14px;
  height: 14px;
}

@media (max-width: calc(640px - 0.02px)) {
  .nx-feedback-modal__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
.nx-pip-chat-shell {
  position: relative;
  width: 400px;
  height: min(820px, 100vh - 24px);
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(220, 227, 238, 0.8);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.12);
}

.nx-pip-chat {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: rgb(244, 249, 254);
}

.nx-pip-chat__header {
  height: 68px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex: 0 0 auto;
}

.nx-pip-chat__header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nx-pip-chat__avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #3b82f6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex: 0 0 auto;
}

.nx-pip-chat__avatar [data-lucide] {
  width: 18px;
  height: 18px;
}

.nx-pip-chat__title {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  font-family: "Lora", Georgia, "Times New Roman", serif;
}

.nx-pip-chat__icon-btn {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nx-pip-chat__icon-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.nx-pip-chat__icon-btn:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-pip-chat__icon-btn [data-lucide] {
  width: 18px;
  height: 18px;
}

.nx-pip-chat__main {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.nx-pip-chat__toolbar {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgb(244, 249, 254);
  border-bottom: 1px solid #e2e8f0;
  padding: 16px;
  flex: 0 0 auto;
}

.nx-pip-chat__toolbar[hidden] {
  display: none !important;
}

.nx-pip-chat__toolbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.nx-pip-chat__toolbar-row--history .nx-pip-chat__history-btn {
  color: #18212f;
}

.nx-pip-chat__toolbar-row--history .nx-pip-chat__history-btn span {
  font-weight: 700;
}

.nx-pip-chat__history-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #607086;
  border-radius: 8px;
  padding: 4px 6px;
  cursor: pointer;
}

.nx-pip-chat__history-btn:hover {
  color: #18212f;
  background: rgba(24, 33, 47, 0.04);
}

.nx-pip-chat__history-btn [data-lucide] {
  width: 14px;
  height: 14px;
}

.nx-pip-chat__history-btn span {
  font-size: 12px;
}

.nx-pip-chat__toolbar .nx-btn [data-lucide] {
  width: 14px;
  height: 14px;
}

.nx-pip-chat__messages {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 16px;
  display: grid;
  gap: 16px;
}

.nx-pip-chat__messages[hidden] {
  display: none !important;
}

.nx-pip-chat__message {
  display: grid;
  gap: 8px;
}

.nx-pip-chat__message--assistant .nx-pip-chat__message-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.nx-pip-chat__assistant-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #3b82f6);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.nx-pip-chat__assistant-avatar [data-lucide] {
  width: 14px;
  height: 14px;
}

.nx-pip-chat__assistant-content {
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 4px;
}

.nx-pip-chat__prose {
  font-size: 12.8px;
  color: #334155;
  line-height: 1.5;
}

.nx-pip-chat__prose p {
  margin: 0 0 8px;
}

.nx-pip-chat__prose p:last-child {
  margin-bottom: 0;
}

.nx-pip-chat__prose strong {
  color: #0f172a;
  font-weight: 700;
}

.nx-pip-chat__prose ul {
  margin: 8px 0;
  padding-left: 18px;
  display: grid;
  gap: 4px;
}

.nx-pip-chat__prose li {
  margin: 0;
}

.nx-pip-chat__prose a {
  color: #0f766e;
  text-decoration: underline;
}

.nx-pip-chat__user-wrap {
  display: flex;
  justify-content: flex-end;
}

.nx-pip-chat__user-bubble {
  max-width: 85%;
  margin-left: auto;
  background: #3b82f6;
  color: #fff;
  border-radius: 16px;
  border-bottom-right-radius: 0;
  padding: 12px;
}

.nx-pip-chat__user-bubble p {
  margin: 0;
  font-size: 12.8px;
  line-height: 1.45;
  white-space: pre-wrap;
}

.nx-pip-chat__user-time {
  margin-top: 4px;
  font-size: 11px;
  color: #bfdbfe;
}

.nx-pip-chat__composer {
  border-top: 1px solid #e2e8f0;
  background: rgb(244, 249, 254);
  padding: 16px;
  flex: 0 0 auto;
}

.nx-pip-chat__form {
  display: grid;
  gap: 12px;
}

.nx-pip-chat__textarea {
  width: 100%;
  min-height: 70px;
  max-height: 140px;
  resize: none;
  border-radius: 8px;
  border: 1px solid #dce3ee;
  background: #fff;
  padding: 10px 12px;
  font-size: 12.8px;
  line-height: 1.4;
  color: #18212f;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}

.nx-pip-chat__textarea::placeholder {
  color: #607086;
}

.nx-pip-chat__textarea:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-pip-chat__form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nx-pip-chat__chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nx-pip-chat__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 2px solid #59bda3;
  background: #59bda3;
  color: #fff;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
}

.nx-pip-chat__chip [data-lucide] {
  width: 12px;
  height: 12px;
}

.nx-pip-chat__send {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
  color: #fff;
  border-color: transparent;
}

.nx-pip-chat__send:hover:not(:disabled):not(.is-disabled) {
  background: linear-gradient(90deg, #0ea5a4, #2563eb);
  color: #fff;
}

.nx-pip-chat__send [data-lucide] {
  width: 14px;
  height: 14px;
}

.nx-pip-chat__hint {
  margin: 8px 0 0;
  text-align: center;
  font-size: 11px;
  color: #607086;
}

.nx-pip-chat__history-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nx-pip-chat__history-item {
  position: relative;
  height: auto;
}

.nx-pip-chat__history-card {
  width: 100%;
  text-align: left;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition: background-color 120ms ease, border-color 120ms ease;
}

.nx-pip-chat__history-card:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: #cbd5e1;
}

.nx-pip-chat__history-card:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-pip-chat__history-title {
  margin: 0;
  padding-right: 32px;
  font-size: 12.8px;
  font-weight: 600;
  color: #18212f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nx-pip-chat__history-time {
  margin: 4px 0 0;
  font-size: 11px;
  color: #607086;
}

.nx-pip-chat__history-delete {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #dc2626;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 140ms ease, background-color 120ms ease;
}

.nx-pip-chat__history-item:hover .nx-pip-chat__history-delete {
  opacity: 1;
}

.nx-pip-chat__history-delete:hover {
  background: rgba(220, 38, 38, 0.08);
}

.nx-pip-chat__history-delete [data-lucide] {
  width: 14px;
  height: 14px;
}

@media (max-width: calc(768px - 0.02px)) {
  .nx-pip-chat-shell {
    width: min(100%, 400px);
    height: min(760px, 100vh - 16px);
  }
  .nx-pip-chat__form-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .nx-pip-chat__chips {
    width: 100%;
  }
  .nx-pip-chat__send {
    align-self: flex-end;
  }
}
.nx-landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #f7f7f3 0%, #ece8dd 100%);
  color: #0f172a;
}

.nx-landing__shell {
  width: min(1180px, 94vw);
  margin: 0 auto;
}

.nx-landing-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.6);
}

.nx-landing-nav__inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nx-landing-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  color: #123339;
  text-decoration: none;
}

.nx-landing-brand__logo {
  width: 118px;
  height: 32px;
  max-width: 100%;
  display: block;
}

.nx-landing-brand__logo--light {
  filter: brightness(0) invert(1);
}

.nx-landing-nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nx-landing-btn {
  border-radius: 8px;
  min-height: 36px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.nx-landing-btn--ghost {
  color: #123339;
  border: 1px solid rgba(18, 51, 57, 0.42);
  background: #fff;
}

.nx-landing-btn--primary {
  border: 0;
  color: #fff;
  background: linear-gradient(90deg, #0d9488, #2563eb);
  box-shadow: 0 8px 20px rgba(18, 51, 57, 0.22);
}

.nx-landing-btn--primary:hover {
  filter: brightness(0.96);
}

.nx-landing-hero {
  flex: 1;
  padding: 76px 0 56px;
  text-align: center;
}

.nx-landing-title {
  margin: 0 auto;
  max-width: 14ch;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #1e293b;
}

.nx-landing-title__accent {
  background: linear-gradient(90deg, #0d9488, #2563eb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nx-landing-subtitle {
  margin: 20px auto 0;
  max-width: 46ch;
  font-size: clamp(20px, 2.2vw, 31px);
  line-height: 1.5;
  color: #475569;
}

.nx-landing-panel {
  margin: 44px auto 0;
  max-width: 820px;
  border: 1px solid rgba(220, 227, 238, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.nx-landing-panel__head {
  padding: 12px 16px 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nx-landing-pill {
  border: 0;
  background: #f1f5f9;
  color: #475569;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.nx-landing-pill--active {
  background: #1f2937;
  color: #fff;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.24);
}

.nx-landing-panel__body {
  padding: 16px;
  display: grid;
  gap: 14px;
}

.nx-landing-textarea {
  width: 100%;
  min-height: 140px;
  resize: none;
  border-radius: 12px;
  border: 1px solid #dce3ee;
  background: #fff;
  color: #0f172a;
  padding: 12px;
  font: inherit;
}

.nx-landing-textarea:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-landing-suggested {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.nx-landing-suggested__item {
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #334155;
  text-align: center;
  padding: 0 12px;
  font-size: 12px;
  line-height: 1.35;
  min-height: 32px;
  max-width: 100%;
  cursor: pointer;
}

.nx-landing-panel__actions {
  display: flex;
  justify-content: flex-end;
}

.nx-landing-try {
  margin: 24px auto 0;
  max-width: 1080px;
  display: grid;
  gap: 10px;
}

.nx-landing-try__label {
  font-size: 14px;
  color: #475569;
  font-weight: 700;
}

.nx-landing-try__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.nx-landing-footer {
  margin-top: 56px;
  background: #1e293b;
  color: #fff;
}

.nx-landing-footer__inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #64748b;
  font-size: 12px;
}

.nx-landing-brand--light {
  color: #fff;
}

@media (max-width: 1023.98px) {
  .nx-landing-title {
    max-width: 12ch;
  }
}
@media (max-width: 767.98px) {
  .nx-landing-hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .nx-landing-footer__inner {
    min-height: 84px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
  .nx-landing-suggested__item {
    width: 100%;
    min-height: 38px;
    border-radius: 10px;
  }
}
.nx-signin {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.nx-signin__shell {
  width: 100%;
  max-width: 456px;
}

.nx-signin__card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(8px);
}

.nx-signin__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e2e8f0, #cbd5e1, #e2e8f0);
}

.nx-signin__body {
  padding: 40px;
}

.nx-signin__stack {
  display: grid;
  gap: 24px;
  text-align: center;
}

.nx-signin__avatar-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  isolation: isolate;
}

.nx-signin__avatar-glow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(140deg, #e2e8f0, #cbd5e1);
  filter: blur(18px);
  opacity: 0.3;
  transition: opacity 300ms ease;
}

.nx-signin__avatar {
  position: relative;
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
  outline: 4px solid rgba(255, 255, 255, 0.5);
  transition: box-shadow 300ms ease;
}

.nx-signin__avatar-overlay {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nx-signin__avatar img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.nx-signin__avatar-wrap:hover .nx-signin__avatar-glow {
  opacity: 0.4;
}

.nx-signin__avatar-wrap:hover .nx-signin__avatar {
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.2);
}

.nx-signin__title {
  margin: 0;
  font-size: clamp(26px, 4vw, 30px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.nx-signin__subtitle {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 16px;
  font-weight: 500;
}

.nx-signin__form {
  display: grid;
  gap: 18px;
  text-align: left;
}

.nx-signin__field {
  display: grid;
  gap: 6px;
}

.nx-signin__label {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.nx-signin__input-wrap {
  position: relative;
}

.nx-signin__icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #94a3b8;
}

.nx-signin__input {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: rgba(248, 250, 252, 0.7);
  color: #0f172a;
  padding: 0 12px 0 40px;
  font-size: 14px;
}

.nx-signin__input:focus-visible {
  outline: 2px solid #94a3b8;
  outline-offset: 1px;
  border-color: #94a3b8;
}

.nx-signin__submit {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 12px;
  background: #0f172a;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 120ms ease;
}

.nx-signin__submit:hover {
  background: #1e293b;
}

.nx-signin__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.nx-signin__link {
  border: 0;
  background: transparent;
  color: #64748b;
  font-size: 14px;
  padding: 0;
  cursor: pointer;
}

.nx-signin__link:hover {
  color: #334155;
}

.nx-signin__link strong {
  color: #334155;
  font-weight: 600;
}

@media (max-width: 639.98px) {
  .nx-signin__body {
    padding: 32px 24px;
  }
  .nx-signin__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 640px) {
  .nx-signin__avatar {
    width: 100px;
    height: 100px;
  }
}
.nx-project-search {
  width: 100%;
  padding: 24px 0;
}

.nx-project-search__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.nx-project-search__input-wrap {
  min-width: 200px;
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nx-project-search__icon {
  width: 16px;
  height: 16px;
  color: #607086;
  flex: 0 0 auto;
}

.nx-project-search__input {
  width: 100%;
  border: 1px solid #dce3ee;
  background: #ffffff;
  color: #18212f;
  border-radius: 12px;
  height: 36px;
  padding: 6px 12px;
  line-height: 1.3;
  transition: border-color 120ms ease, box-shadow 120ms ease, background-color 120ms ease;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}

.nx-project-search__input:hover {
  border-color: #c9d5e5;
}

.nx-project-search__input:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
  border-color: rgba(35, 74, 69, 0.55);
}

.nx-project-search__filter {
  height: 36px;
  border-radius: 8px;
  border: 1px solid #dce3ee;
  background: #ffffff;
  padding: 8px 12px;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 180px;
  color: #18212f;
  font-size: 14px;
  cursor: pointer;
}

.nx-project-search__filter:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-project-search__filter-icon {
  width: 16px;
  height: 16px;
  color: #607086;
  flex: 0 0 auto;
}

.nx-project-search__filter-label {
  flex: 1 1 auto;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nx-project-search__filter-chevron {
  width: 16px;
  height: 16px;
  opacity: 0.5;
  color: #607086;
  flex: 0 0 auto;
}

.nx-project-search__filter-dropdown {
  position: relative;
}

.nx-project-search__filter-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 20;
  min-width: 100%;
  border-radius: 16px;
  border: 1px solid #d7dbe2;
  background: #fff;
  box-shadow: 0 6px 18px rgba(24, 33, 47, 0.16);
  padding: 8px;
  display: grid;
  gap: 4px;
}

.nx-project-search__filter-option {
  width: 100%;
  min-height: 40px;
  border: 0;
  background: transparent;
  border-radius: 10px;
  padding: 0 12px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  color: #2f3138;
  text-align: left;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.nx-project-search__filter-option:hover {
  background: #f3f4f6;
}

.nx-project-search__filter-option:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-project-search__filter-option--active {
  background: #f3f4f6;
}

.nx-project-search__filter-option [data-lucide=check] {
  width: 18px;
  height: 18px;
  color: #25272d;
  flex: 0 0 auto;
}

.nx-project-search__toggle {
  height: 36px;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  background: #ffffff;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nx-project-search__toggle-button {
  border: 0;
  background: transparent;
  padding: 0;
  width: 40px;
  height: 22px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.nx-project-search__toggle-button:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-project-search__toggle-switch {
  width: 40px;
  height: 22px;
  border-radius: 999px;
  background: #c9d2e1;
  position: relative;
  transition: background-color 120ms ease;
}

.nx-project-search__toggle-switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  transition: transform 120ms ease;
}

.nx-project-search__toggle-button[aria-checked=true] .nx-project-search__toggle-switch {
  background: #234a45;
}

.nx-project-search__toggle-button[aria-checked=true] .nx-project-search__toggle-switch::after {
  transform: translateX(18px);
}

.nx-project-search__toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: #18212f;
  cursor: pointer;
}

@media (max-width: calc(768px - 0.02px)) {
  .nx-project-search {
    padding-top: 0;
    padding-bottom: 16px;
  }
  .nx-project-search__row {
    gap: 12px;
  }
  .nx-project-search__filter,
  .nx-project-search__toggle,
  .nx-project-search__filter-menu {
    display: none;
  }
}
.nx-view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #e5e0d5;
  border-radius: 999px;
  padding: 4px;
  width: min(100%, 300px);
}

.nx-view-toggle__button {
  height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: transparent;
  color: #1f2937;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease;
  flex: 1 1 0;
}

.nx-view-toggle__button [data-lucide] {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.nx-view-toggle__button.is-active {
  background: #1f2937;
  color: #fff;
}

.nx-view-toggle__button:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-view-toggle__button:not(.is-active):hover {
  color: #111827;
}

.nx-doc-library-header {
  width: 100%;
  padding: 24px 24px 16px;
}

.nx-doc-library-header__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.nx-doc-library-header__title {
  margin: 0 0 8px;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  color: #18212f;
}

.nx-doc-library-header__subtitle {
  margin: 0;
  font-size: 15px;
  color: #607086;
}

.nx-doc-library-header__controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nx-doc-library-header__search-wrap {
  position: relative;
  flex: 1 1 auto;
}

.nx-doc-library-header__search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #607086;
}

.nx-doc-library-header__search-input {
  width: 100%;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #dce3ee;
  background: #fff;
  color: #18212f;
  padding: 6px 12px 6px 36px;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

.nx-doc-library-header__search-input::placeholder {
  color: #607086;
}

.nx-doc-library-header__search-input:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
  border-color: rgba(35, 74, 69, 0.55);
}

.nx-doc-library-header__toolbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nx-doc-library-header__filter {
  width: 100%;
}

.nx-doc-library-header__filter-trigger {
  height: 36px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #dce3ee;
  background: #fff;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  color: #18212f;
  font-size: 14px;
  cursor: pointer;
}

.nx-doc-library-header__filter-trigger:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-doc-library-header__filter-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nx-doc-library-header__filter-chevron {
  width: 16px;
  height: 16px;
  color: #607086;
  opacity: 0.65;
}

.nx-doc-library-header__view-toggle {
  display: none;
  gap: 8px;
}

.nx-doc-library-header__icon-button {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #dce3ee;
  background: #ffffff;
  color: #18212f;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nx-doc-library-header__icon-button:hover {
  background: #eef2f8;
}

.nx-doc-library-header__icon-button:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-doc-library-header__icon-button.is-active {
  border-color: transparent;
  background: #111827;
  color: #fff;
}

.nx-doc-library-header__icon-button [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-doc-library-header__upload {
  height: 36px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  background: #111827;
  color: #fff;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}

.nx-doc-library-header__upload:hover {
  background: #0b1220;
}

.nx-doc-library-header__upload:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-doc-library-header__upload--mobile {
  width: 36px;
  padding: 0;
  display: inline-flex;
}

.nx-doc-library-header__upload--mobile [data-lucide],
.nx-doc-library-header__upload--desktop [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-doc-library-header__upload--desktop {
  display: none;
}

.nx-doc-library-header__upload-label {
  line-height: 1;
}

@media (min-width: 768px) {
  .nx-doc-library-header__subtitle {
    display: block;
  }
  .nx-doc-library-header__controls {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .nx-doc-library-header__toolbar {
    width: auto;
    flex-direction: row;
    align-items: center;
  }
  .nx-doc-library-header__filter {
    width: 192px;
  }
  .nx-doc-library-header__view-toggle {
    display: inline-flex;
  }
  .nx-doc-library-header__upload--mobile {
    display: none;
  }
  .nx-doc-library-header__upload--desktop {
    display: inline-flex;
  }
}
@media (max-width: calc(768px - 0.02px)) {
  .nx-doc-library-header {
    padding: 24px 16px 16px;
  }
  .nx-doc-library-header__subtitle {
    display: none;
  }
}
.nx-doc-card {
  border-radius: 12px;
  border: 1px solid #dce3ee;
  background: rgba(255, 255, 255, 0.96);
  color: #18212f;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  cursor: pointer;
  transition: box-shadow 180ms ease;
}

.nx-doc-card:hover {
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
}

.nx-doc-card:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-doc-card__inner {
  padding: 16px;
}

.nx-doc-card__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.nx-doc-card__file-icon {
  width: 20px;
  height: 20px;
  color: #dc2626;
  flex: 0 0 auto;
}

.nx-doc-card__body {
  flex: 1 1 auto;
  min-width: 0;
}

.nx-doc-card__title {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  color: #18212f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nx-doc-card__meta {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.4;
  color: #607086;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nx-doc-card__calendar {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
}

.nx-doc-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.nx-doc-card__tag {
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nx-doc-card__tag--pip {
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
  color: #fff;
}

.nx-doc-card__tag-icon {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
}

.nx-doc-list {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #dce3ee;
  background: rgba(255, 255, 255, 0.96);
  color: #18212f;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  overflow: hidden;
}

.nx-doc-list__scroll {
  overflow-x: auto;
}

.nx-doc-list__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.nx-doc-list__head {
  background: #f1f5f9;
}

.nx-doc-list__heading {
  text-align: left;
  padding: 16px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  color: #18212f;
}

.nx-doc-list__row {
  border-top: 1px solid #dce3ee;
  cursor: pointer;
  transition: background-color 140ms ease;
}

.nx-doc-list__row:hover {
  background: rgba(241, 245, 249, 0.6);
}

.nx-doc-list__cell {
  padding: 16px;
  vertical-align: middle;
}

.nx-doc-list__doc-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nx-doc-list__file-icon {
  width: 20px;
  height: 20px;
  color: #dc2626;
  flex: 0 0 auto;
}

.nx-doc-list__doc-title {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  color: #18212f;
}

.nx-doc-list__type {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.nx-doc-list__badge {
  border-radius: 6px;
  border: 0;
  padding: 3px 10px;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}

.nx-doc-list__badge-icon {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
}

.nx-doc-list__badge--uploaded {
  background: #dbeafe;
  color: #1e40af;
}

.nx-doc-list__badge--trained {
  background: linear-gradient(90deg, #14b8a6, #3b82f6);
  color: #fff;
}

.nx-doc-list__muted {
  color: #607086;
  font-size: 14px;
}

.nx-doc-list__created {
  color: #607086;
  font-size: 14px;
}

.nx-doc-list__actions {
  display: flex;
  gap: 8px;
}

.nx-doc-list__action {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #18212f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease;
}

.nx-doc-list__action:hover {
  background: #eef2f7;
}

.nx-doc-list__action:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-doc-list__action [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-doc-list__action--danger {
  color: #b83b3b;
}

.nx-doc-list__action--danger:hover {
  color: #9f2f2f;
}

.nx-research-discovery-card {
  border: 1px solid rgba(203, 213, 225, 0.6);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  transition: box-shadow 300ms ease;
}

.nx-research-discovery-card:hover {
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.18);
}

.nx-research-discovery-card__body {
  padding: 24px;
}

.nx-research-discovery-card__header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.nx-research-discovery-card__icon-tile {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 144, 226, 0.125);
  color: #4a90e2;
  flex: 0 0 auto;
}

.nx-research-discovery-card__icon-tile [data-lucide] {
  width: 32px;
  height: 32px;
}

.nx-research-discovery-card__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #18212f;
}

.nx-research-discovery-card__subtitle {
  margin: 4px 0 0;
  font-size: 14px;
  color: #607086;
}

.nx-research-discovery-card__desc {
  margin: 0;
  color: #607086;
  font-size: 14px;
  line-height: 1.45;
}

.nx-research-discovery-card__footer {
  padding: 0 24px 24px;
  display: grid;
  gap: 16px;
}

.nx-research-discovery-card__list {
  display: grid;
  gap: 8px;
}

.nx-research-discovery-card__list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #607086;
}

.nx-research-discovery-card__list-item [data-lucide] {
  width: 16px;
  height: 16px;
  color: #4a90e2;
  flex: 0 0 auto;
}

.nx-research-discovery-card__cta {
  width: 100%;
  min-height: 36px;
  border: 0;
  border-radius: 8px;
  background: #4a90e2;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  transition: background-color 140ms ease;
}

.nx-research-discovery-card__cta:hover {
  background: #3a7bc8;
}

.nx-research-discovery-card__cta:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-research-discovery-card__cta [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-rd-setup-page {
  min-height: 100vh;
  background: #faf9f5;
  padding: 24px;
}

.nx-rd-setup-page__shell {
  max-width: 64rem;
  margin: 0 auto;
}

.nx-rd-setup-page__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.nx-rd-setup-page__back {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #dce3ee;
  background: #fff;
  color: #18212f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}

.nx-rd-setup-page__back [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-rd-setup-page__title {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
  color: #18212f;
}

.nx-rd-setup-page__subtitle {
  margin: 4px 0 0;
  color: #607086;
  font-size: 15px;
}

.nx-rd-setup-page__content {
  max-width: 42rem;
  margin: 0 auto;
}

.nx-rd-setup-card {
  border-radius: 12px;
  border: 1px solid rgba(203, 213, 225, 0.45);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 34px rgba(15, 23, 42, 0.12);
}

.nx-rd-setup-card__header {
  padding: 24px 24px 0;
}

.nx-rd-setup-card__header-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nx-rd-setup-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 144, 226, 0.125);
  color: #4a90e2;
}

.nx-rd-setup-card__icon [data-lucide] {
  width: 24px;
  height: 24px;
}

.nx-rd-setup-card__header-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 700;
  font-family: ui-sans-serif, "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
  color: #18212f;
}

.nx-rd-setup-card__body {
  padding: 24px;
}

.nx-rd-setup-form {
  display: grid;
  gap: 24px;
}

.nx-rd-setup-form__field {
  display: grid;
  gap: 8px;
}

.nx-rd-setup-form__label {
  font-size: 14px;
  font-weight: 700;
  color: #18212f;
}

.nx-rd-setup-form__input,
.nx-rd-setup-form__textarea {
  width: 100%;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  color: #18212f;
  font-size: 14px;
}

.nx-rd-setup-form__input {
  height: 36px;
  padding: 6px 12px;
}

.nx-rd-setup-form__textarea {
  min-height: 100px;
  padding: 10px 12px;
  resize: vertical;
}

.nx-rd-setup-form__input:focus-visible,
.nx-rd-setup-form__textarea:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-rd-setup-form__input::placeholder,
.nx-rd-setup-form__textarea::placeholder {
  font-size: 14px;
}

.nx-rd-setup-form__hint {
  margin: 0;
  font-size: 12px;
  color: #607086;
}

.nx-rd-setup-next {
  border-radius: 12px;
  border: 1px solid rgba(45, 212, 191, 0.4);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(59, 130, 246, 0.1), rgba(13, 148, 136, 0.1));
  padding: 16px;
}

.nx-rd-setup-next__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.nx-rd-setup-next__icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.nx-rd-setup-next__title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: #18212f;
}

.nx-rd-setup-next__copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #607086;
}

.nx-rd-setup-form__submit {
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: #111827;
  color: #fff;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
}

.nx-rd-setup-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16);
  background: #0b1220;
}

.nx-rd-setup-form__submit [data-lucide] {
  width: 18px;
  height: 18px;
}

.nx-rd-setup-form__footer {
  margin-top: 16px;
  text-align: center;
}

.nx-rd-setup-form__spark {
  border: 0;
  background: transparent;
  font-size: 12px;
  color: rgba(100, 116, 139, 0.55);
  text-decoration: underline;
  text-decoration-style: dotted;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .nx-rd-setup-page {
    padding: 24px 16px;
  }
  .nx-rd-setup-page__title {
    font-size: 26px;
  }
  .nx-rd-setup-card__header-title {
    font-size: 24px;
  }
}
.nx-dev-setup-page {
  min-height: 100vh;
  background: #faf9f5;
  padding: 24px;
}

.nx-dev-setup-page__shell {
  max-width: 64rem;
  margin: 0 auto;
}

.nx-dev-setup-page__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.nx-dev-setup-page__back {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #dce3ee;
  background: #fff;
  color: #18212f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}

.nx-dev-setup-page__back [data-lucide] {
  width: 16px;
  height: 16px;
}

.nx-dev-setup-page__title {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
  color: #18212f;
}

.nx-dev-setup-page__subtitle {
  margin: 4px 0 0;
  color: #607086;
  font-size: 15px;
}

.nx-dev-setup-page__content {
  max-width: 42rem;
  margin: 0 auto;
}

.nx-dev-setup-card {
  border-radius: 12px;
  border: 1px solid rgba(203, 213, 225, 0.45);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 34px rgba(15, 23, 42, 0.12);
}

.nx-dev-setup-card__header {
  padding: 24px 24px 0;
}

.nx-dev-setup-card__header-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nx-dev-setup-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(89, 189, 163, 0.125);
  color: #59bda3;
}

.nx-dev-setup-card__icon [data-lucide] {
  width: 24px;
  height: 24px;
}

.nx-dev-setup-card__header-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 700;
  font-family: ui-sans-serif, "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
  color: #18212f;
}

.nx-dev-setup-card__body {
  padding: 24px;
}

.nx-dev-setup-form {
  display: grid;
  gap: 24px;
}

.nx-dev-setup-form__field {
  display: grid;
  gap: 8px;
}

.nx-dev-setup-form__label {
  font-size: 14px;
  font-weight: 700;
  color: #18212f;
}

.nx-dev-setup-form__input,
.nx-dev-setup-form__textarea {
  width: 100%;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  color: #18212f;
  font-size: 14px;
}

.nx-dev-setup-form__input {
  height: 36px;
  padding: 6px 12px;
}

.nx-dev-setup-form__textarea {
  min-height: 100px;
  padding: 10px 12px;
  resize: vertical;
}

.nx-dev-setup-form__input::placeholder,
.nx-dev-setup-form__textarea::placeholder {
  font-size: 14px;
}

.nx-dev-setup-form__input:focus-visible,
.nx-dev-setup-form__textarea:focus-visible {
  outline: 2px solid rgba(35, 74, 69, 0.35);
  outline-offset: 2px;
}

.nx-dev-setup-form__hint {
  margin: 0;
  font-size: 12px;
  color: #607086;
}

.nx-dev-setup-types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.nx-dev-setup-types__item {
  border: 2px solid #dce3ee;
  border-radius: 10px;
  background: #fff;
  padding: 12px 10px;
  text-align: center;
  transition: border-color 140ms ease;
}

.nx-dev-setup-types__item:hover {
  border-color: #99a3ae;
}

.nx-dev-setup-types__item [data-lucide] {
  width: 24px;
  height: 24px;
  margin: 0 auto 4px;
}

.nx-dev-setup-types__item-label {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #18212f;
}

.nx-dev-setup-next {
  border-radius: 12px;
  border: 1px solid rgba(45, 212, 191, 0.4);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(59, 130, 246, 0.1), rgba(13, 148, 136, 0.1));
  padding: 16px;
}

.nx-dev-setup-next__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.nx-dev-setup-next__icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.nx-dev-setup-next__title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: #18212f;
}

.nx-dev-setup-next__copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #607086;
}

.nx-dev-setup-form__submit {
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: #111827;
  color: #fff;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.nx-dev-setup-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16);
  background: #0b1220;
}

.nx-dev-setup-form__submit [data-lucide] {
  width: 18px;
  height: 18px;
}

.nx-dev-setup-form__footer {
  margin-top: 16px;
  text-align: center;
}

.nx-dev-setup-form__spark {
  border: 0;
  background: transparent;
  font-size: 12px;
  color: rgba(100, 116, 139, 0.55);
  text-decoration: underline;
  text-decoration-style: dotted;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .nx-dev-setup-page {
    padding: 24px 16px;
  }
  .nx-dev-setup-page__title {
    font-size: 26px;
  }
  .nx-dev-setup-card__header-title {
    font-size: 22px;
  }
}
@media (max-width: 640px) {
  .nx-dev-setup-types {
    grid-template-columns: 1fr;
  }
}
