.canvas-wrap {
  background: radial-gradient(900px 600px at 15% -10%, #38bdf814, #0000 60%), radial-gradient(900px 600px at 100% 0, #a78bfa12, #0000 55%), linear-gradient(#0b1020, #0f1730);
  flex-direction: column;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.canvas-toolbar {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 5;
  background: #090d1c8c;
  border-bottom: 1px solid #ffffff1a;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  display: flex;
}

.canvas-toolbar .ct-title {
  letter-spacing: .2px;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 0 auto;
  min-width: 0;
  margin-right: 8px;
  font-weight: 700;
  overflow: hidden;
}

.canvas-toolbar .ct-btn {
  white-space: nowrap;
}

.canvas-toolbar .ct-spacer {
  flex: 1;
}

.ct-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  color: var(--ink, #eef2ff);
  background: #ffffff0d;
  border: 1px solid #ffffff24;
  border-radius: 10px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 600;
  transition: border-color .15s, background .15s, transform 50ms;
}

.ct-btn:hover:not(:disabled) {
  background: #ffffff17;
  border-color: #ffffff4d;
}

.ct-btn:active:not(:disabled) {
  transform: translateY(1px);
}

.ct-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.ct-btn.primary {
  color: #bae6fd;
  background: #38bdf829;
  border-color: #38bdf880;
}

.ct-btn.danger {
  color: #fecdd3;
  background: #fb718524;
  border-color: #fb718580;
}

.ct-btn.full {
  width: 100%;
  margin-top: 8px;
}

.ct-btn.emp-toggle {
  color: #6ee7b7;
  background: #34d3991a;
  border-color: #34d39973;
}

.ct-btn.emp-toggle:hover:not(:disabled) {
  background: #34d3992e;
  border-color: #34d399b3;
}

.ct-btn.emp-toggle.active {
  color: #a7f3d0;
  background: #34d3993d;
  border-color: #34d399cc;
}

.ct-btn.matrix-link {
  color: #fbcfe8;
  background: #f472b624;
  border-color: #f472b680;
}

.ct-btn.matrix-link:hover:not(:disabled) {
  background: #f472b638;
  border-color: #f472b6b3;
}

.ct-btn.plan-link {
  color: #bfdbfe;
  background: #60a5fa24;
  border-color: #60a5fa80;
}

.ct-btn.plan-link:hover:not(:disabled) {
  background: #60a5fa38;
  border-color: #60a5fab3;
}

.ct-status {
  text-align: right;
  min-width: 110px;
  font-size: 12px;
  font-weight: 600;
}

.ct-status.s-dirty {
  color: #fbbf24;
}

.ct-status.s-saving {
  color: #9aa6c7;
}

.ct-status.s-saved {
  color: #34d399;
}

.canvas-stage {
  flex: 1;
  min-height: 0;
  position: relative;
}

.canvas-stage .react-flow {
  background: none;
}

.react-flow__controls {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px #0006;
}

.react-flow__controls-button {
  color: #eef2ff;
  background: #131c38;
  border-bottom: 1px solid #ffffff14;
}

.react-flow__controls-button:hover {
  background: #1b2650;
}

.react-flow__controls-button svg {
  fill: #cbd5f5;
}

.cnode {
  --ac: #60a5fa;
  border: 2px solid color-mix(in srgb, var(--ac) 55%, #ffffff24);
  background: linear-gradient(#111832fa, #0b1022fa);
  border-radius: 14px;
  width: 268px;
  transition: border-color .15s, box-shadow .15s, transform 50ms;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px #00000080, inset 0 0 0 1px #0006;
}

.cnode:hover {
  border-color: color-mix(in srgb, var(--ac) 85%, transparent);
}

.cnode.selected {
  border-color: var(--ac);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ac) 65%, transparent), 0 14px 36px #0000008c;
}

.cnode-bar {
  background: var(--ac);
  height: 7px;
  box-shadow: 0 0 14px color-mix(in srgb, var(--ac) 60%, transparent);
}

.cnode-body {
  padding: 11px 14px 13px;
}

.cnode-kind {
  letter-spacing: .7px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ac) 90%, white);
  margin-bottom: 3px;
  font-size: 10px;
  font-weight: 800;
}

.cnode-label {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.cnode-role {
  color: #b7c1e0;
  margin-top: 4px;
  font-size: 12.5px;
  line-height: 1.35;
}

.cnode-person {
  background: color-mix(in srgb, var(--ac) 26%, transparent);
  color: color-mix(in srgb, var(--ac) 96%, white);
  border: 1.5px solid color-mix(in srgb, var(--ac) 60%, transparent);
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  margin-top: 9px;
  padding: 4px 11px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
}

.cnode-person.empty {
  color: #6b779b;
  background: none;
  border: 1px dashed #ffffff2e;
}

.cnode-desc {
  border: 1px dashed color-mix(in srgb, var(--ac) 45%, transparent);
  background: color-mix(in srgb, var(--ac) 8%, #090d1c66);
  border-radius: 8px;
  flex-direction: column;
  height: 150px;
  margin-top: 9px;
  display: flex;
}

.cnode-desc-h {
  letter-spacing: .4px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ac) 92%, white);
  border-bottom: 1px solid #ffffff14;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 800;
}

.cnode-desc-body {
  color: #c9d4f2;
  white-space: pre-wrap;
  flex: 1;
  min-height: 0;
  padding: 7px 10px;
  font-size: 11.5px;
  line-height: 1.45;
  overflow: auto;
}

.cnode-members {
  flex-direction: column;
  gap: 4px;
  margin-top: 9px;
  display: flex;
}

.cnode-members-empty {
  color: #6b779b;
  font-size: 11.5px;
  font-style: italic;
}

.cnode-member {
  background: color-mix(in srgb, var(--ac) 16%, transparent);
  border-left: 3px solid color-mix(in srgb, var(--ac) 70%, transparent);
  border-radius: 7px;
  align-items: baseline;
  gap: 8px;
  padding: 4px 8px;
  font-size: 12.5px;
  line-height: 1.3;
  display: flex;
}

.cnode-member .cm-role {
  letter-spacing: .2px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ac) 95%, white);
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 0 0 84px;
  font-size: 9.5px;
  font-weight: 800;
  overflow: hidden;
}

.cnode-member .cm-name {
  color: #eef2ff;
  flex: auto;
  min-width: 0;
  font-weight: 600;
}

.cnode.kind-value, .cnode.kind-platform, .cnode.kind-committee {
  width: 300px;
}

.cnode.kind-committee {
  border-style: solid;
  border-width: 2px;
}

.cnode.kind-committee .cnode-label {
  font-size: 17px;
}

.cnode.kind-mgmt {
  width: 288px;
}

.cnode.kind-mgmt .cnode-label {
  font-size: 19px;
}

.cnode.kind-note {
  background: color-mix(in srgb, var(--ac) 12%, #0b1022e6);
  border: 2px dashed color-mix(in srgb, var(--ac) 65%, transparent);
  width: 620px;
  box-shadow: none;
  text-align: center;
}

.cnode.kind-note .cnode-bar, .cnode.kind-note .cnode-kind {
  display: none;
}

.cnode.kind-note .cnode-body {
  padding: 12px 18px;
}

.cnode.kind-note .cnode-label {
  color: color-mix(in srgb, var(--ac) 92%, white);
  letter-spacing: .3px;
  font-size: 17px;
}

.cnode.kind-note .cnode-role {
  color: #c3cdec;
  margin-top: 3px;
  font-size: 13px;
}

.cnode.kind-frame {
  border: 2px dashed color-mix(in srgb, var(--ac) 55%, transparent);
  background: color-mix(in srgb, var(--ac) 6%, transparent);
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 60px color-mix(in srgb, var(--ac) 10%, transparent);
  pointer-events: none;
  border-radius: 26px;
}

.cnode.kind-frame .cframe-label {
  border: 1px solid color-mix(in srgb, var(--ac) 60%, #33406e);
  white-space: nowrap;
  background: #0f1730;
  border-radius: 12px;
  align-items: baseline;
  gap: 10px;
  padding: 7px 16px;
  display: inline-flex;
  position: absolute;
  top: 18px;
  left: 26px;
  box-shadow: 0 4px 16px #00000059;
}

.cframe-title {
  color: #eaf0ff;
  letter-spacing: .3px;
  font-size: 14px;
  font-weight: 800;
}

.cframe-sub {
  color: #9fb0dd;
  font-size: 12px;
  font-weight: 600;
}

.cframe-h {
  opacity: 0;
}

.react-flow__node.rf-frame {
  pointer-events: none !important;
}

.cnode-handle {
  background: var(--ac);
  width: 11px;
  height: 11px;
  box-shadow: 0 0 8px color-mix(in srgb, var(--ac) 70%, transparent);
  border: 2px solid #0b1020;
}

.react-flow__edge-path {
  stroke: #64749f;
  stroke-width: 2.4px;
}

.react-flow__edge:hover .react-flow__edge-path {
  stroke: #93a4d4;
}

.react-flow__edge.selected .react-flow__edge-path {
  stroke: #bcc9f0;
  stroke-width: 3px;
}

.inspector {
  z-index: 6;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #0d1328eb;
  border: 1px solid #ffffff1f;
  border-radius: 16px;
  width: 288px;
  padding: 14px;
  position: absolute;
  top: 14px;
  right: 14px;
  box-shadow: 0 18px 50px #00000080;
}

.insp-head {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 700;
  display: flex;
}

.insp-x {
  color: #9aa6c7;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 15px;
}

.insp-x:hover {
  color: #eef2ff;
}

.insp-field {
  margin-bottom: 11px;
  display: block;
}

.insp-field > span {
  color: #9aa6c7;
  letter-spacing: .3px;
  margin-bottom: 5px;
  font-size: 11px;
  display: block;
}

.insp-field input, .insp-field select {
  box-sizing: border-box;
  color: #eef2ff;
  background: #ffffff0d;
  border: 1px solid #ffffff24;
  border-radius: 9px;
  width: 100%;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 13px;
}

.insp-field input:focus, .insp-field select:focus {
  border-color: #38bdf8;
  outline: none;
}

.insp-field select option {
  background: #0f1730;
}

.insp-desc {
  box-sizing: border-box;
  resize: vertical;
  color: #eef2ff;
  background: #ffffff0d;
  border: 1px solid #ffffff24;
  border-radius: 9px;
  width: 100%;
  min-height: 120px;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 12.5px;
  line-height: 1.45;
}

.insp-desc:focus {
  border-color: #38bdf8;
  outline: none;
}

.members-editor {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.member-row {
  align-items: center;
  gap: 6px;
  display: flex;
}

.member-row .m-role {
  flex: 0 0 42%;
}

.member-row .m-name {
  flex: auto;
}

.member-row input {
  box-sizing: border-box;
  color: #eef2ff;
  background: #ffffff0d;
  border: 1px solid #ffffff24;
  border-radius: 8px;
  width: 100%;
  padding: 6px 8px;
  font-family: inherit;
  font-size: 12.5px;
}

.member-row input:focus {
  border-color: #38bdf8;
  outline: none;
}

.member-row .m-del {
  cursor: pointer;
  color: #fecdd3;
  background: #fb71851f;
  border: 1px solid #fb718559;
  border-radius: 8px;
  flex: none;
  width: 26px;
  height: 30px;
}

.member-row .m-del:hover {
  background: #fb718538;
}

.member-row .m-hire {
  cursor: pointer;
  color: #cbd5f5;
  background: #94a3b81a;
  border: 1px solid #94a3b84d;
  border-radius: 8px;
  flex: none;
  height: 30px;
  padding: 0 9px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
}

.member-row .m-hire:hover {
  background: #94a3b833;
}

.member-row .m-hire.on {
  color: #fde68a;
  background: #fbbf2433;
  border-color: #fbbf2499;
}

.insp-person {
  gap: 6px;
  display: flex;
}

.insp-person input {
  flex: auto;
  min-width: 0;
}

.insp-hire {
  cursor: pointer;
  color: #d8b4fe;
  background: #c084fc1f;
  border: 1px solid #c084fc66;
  border-radius: 8px;
  flex: none;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
}

.insp-hire.on {
  color: #f3e8ff;
  background: #c084fc4d;
  border-color: #c084fccc;
}

.swatches {
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  display: grid;
}

.swatch {
  aspect-ratio: 1;
  cursor: pointer;
  border: 2px solid #0000;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px #00000040;
}

.swatch.on {
  border-color: #eef2ff;
}

.canvas-hint {
  color: #6b779b;
  text-align: center;
  background: #090d1c80;
  border-top: 1px solid #ffffff14;
  padding: 8px 16px;
  font-size: 12px;
}

.emp-panel {
  z-index: 6;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: #0d1328f0;
  border: 1.5px solid #ffffff24;
  border-radius: 16px;
  flex-direction: column;
  width: 400px;
  max-width: 46vw;
  display: flex;
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 14px;
  box-shadow: 0 18px 50px #0000008c;
}

.emp-head {
  align-items: center;
  gap: 10px;
  padding: 13px 14px 8px;
  display: flex;
}

.emp-title {
  flex: 1;
  font-size: 15px;
  font-weight: 800;
}

.emp-x {
  color: #9aa6c7;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 15px;
}

.emp-x:hover {
  color: #eef2ff;
}

.emp-stats {
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 14px 10px;
  display: flex;
}

.emp-badge.fg {
  cursor: pointer;
  color: #cbd5f5;
  background: #ffffff0d;
  border: 1px solid #ffffff1f;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 700;
}

.emp-badge.fg:hover {
  border-color: #ffffff4d;
}

.emp-badge.fg.act {
  outline: 2px solid #ffffff80;
}

.emp-badge.fg.green.act {
  background: #34d3992e;
}

.emp-badge.fg.shared.act {
  background: #60a5fa2e;
}

.emp-badge.fg.yellow.act {
  background: #fbbf242e;
}

.emp-badge.fg.red.act {
  background: #fb71852e;
}

.emp-badge.fg.gray.act {
  background: #94a3b82e;
}

.emp-badge.fg.none.act {
  background: #ffffff1a;
}

.emp-badge.fg.hire {
  color: #fde68a;
  border-color: #fbbf2466;
}

.emp-badge.fg.hire.act {
  background: #fbbf2433;
}

.emp-badge.fg.lead {
  color: #d8b4fe;
  border-color: #c084fc73;
}

.emp-badge.fg.lead.act {
  background: #c084fc33;
}

.emp-dot {
  vertical-align: middle;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  margin-right: 7px;
  display: inline-block;
}

.emp-dot.d-green {
  background: #34d399;
  box-shadow: 0 0 7px #34d399;
}

.emp-dot.d-shared {
  background: #60a5fa;
  box-shadow: 0 0 7px #60a5fa;
}

.emp-dot.d-yellow {
  background: #fbbf24;
  box-shadow: 0 0 7px #fbbf24;
}

.emp-dot.d-red {
  background: #fb7185;
  box-shadow: 0 0 7px #fb7185;
}

.emp-dot.d-gray {
  background: #94a3b8;
}

.emp-dot.d-lead {
  background: #c084fc;
  box-shadow: 0 0 7px #c084fc;
}

.emp-dot.d-none {
  background: none;
  border: 1.5px solid #566089;
}

.emp-lights {
  gap: 3px;
  display: flex;
}

.emp-lights .lb {
  cursor: pointer;
  opacity: .28;
  filter: grayscale(.4);
  background: none;
  border: none;
  padding: 1px;
  font-size: 13px;
  line-height: 1;
}

.emp-lights .lb:hover {
  opacity: .7;
}

.emp-lights .lb.on {
  opacity: 1;
  filter: none;
  transform: scale(1.12);
}

.emp-vac-btn {
  cursor: pointer;
  white-space: nowrap;
  color: #d8b4fe;
  background: #c084fc1f;
  border: 1px solid #c084fc66;
  border-radius: 9px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 600;
}

.emp-vac-btn.on {
  background: #c084fc3d;
  border-color: #c084fcb3;
}

.emp-vac {
  background: #c084fc14;
  border: 1px solid #c084fc47;
  border-radius: 12px;
  margin: 0 14px 10px;
  padding: 10px 12px;
}

.emp-vac-h {
  text-transform: uppercase;
  letter-spacing: .3px;
  color: #d8b4fe;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
}

.emp-vac-empty {
  color: #8b97ba;
  font-size: 12px;
}

.emp-vac-list {
  max-height: 160px;
  margin: 0;
  padding-left: 0;
  list-style: none;
  overflow: auto;
}

.emp-vac-list li {
  color: #eef2ff;
  border-bottom: 1px solid #ffffff0d;
  padding: 3px 0;
  font-size: 12.5px;
}

.emp-vac-list li span {
  color: #8b97ba;
}

.emp-controls {
  flex-direction: column;
  gap: 8px;
  padding: 0 14px 10px;
  display: flex;
}

.emp-search {
  box-sizing: border-box;
  color: #eef2ff;
  background: #ffffff0d;
  border: 1px solid #ffffff24;
  border-radius: 9px;
  width: 100%;
  padding: 8px 11px;
  font-family: inherit;
  font-size: 13px;
}

.emp-search:focus {
  border-color: #38bdf8;
  outline: none;
}

.emp-row2 {
  align-items: center;
  gap: 10px;
  display: flex;
}

.emp-sort {
  color: #cbd5f5;
  background: #ffffff0d;
  border: 1px solid #ffffff24;
  border-radius: 9px;
  flex: auto;
  min-width: 0;
  padding: 7px 9px;
  font-family: inherit;
  font-size: 12.5px;
}

.emp-sort:focus {
  border-color: #38bdf8;
  outline: none;
}

.emp-sort option {
  color: #eef2ff;
  background: #0f1730;
}

.emp-unit {
  box-sizing: border-box;
  color: #cbd5f5;
  background: #ffffff0d;
  border: 1px solid #ffffff24;
  border-radius: 9px;
  width: 100%;
  padding: 7px 9px;
  font-family: inherit;
  font-size: 12.5px;
}

.emp-unit:focus {
  border-color: #38bdf8;
  outline: none;
}

.emp-unit option {
  color: #eef2ff;
  background: #0f1730;
}

.emp-check {
  color: #9aa6c7;
  cursor: pointer;
  white-space: nowrap;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  display: flex;
}

.emp-group-row td {
  border: none !important;
  padding: 0 !important;
}

.emp-group {
  z-index: 1;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: #bfe3ff;
  background: #38bdf81f;
  border-left: 3px solid #38bdf8;
  border-radius: 0 8px 8px 0;
  margin: 10px 0 2px;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 800;
  position: sticky;
  top: 26px;
}

.emp-scroll {
  flex: 1;
  min-height: 0;
  padding: 0 8px 10px;
  overflow: auto;
}

.emp-table {
  border-collapse: collapse;
  width: 100%;
}

.emp-table thead th {
  z-index: 1;
  text-align: left;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #6b779b;
  background: #0d1328;
  border-bottom: 1px solid #ffffff1a;
  padding: 6px 8px;
  font-size: 10.5px;
  font-weight: 700;
  position: sticky;
  top: 0;
}

.emp-table td {
  vertical-align: middle;
  border-bottom: 1px solid #ffffff0d;
  padding: 7px 8px;
}

.emp-table tr.assigned {
  background: #34d3990d;
  box-shadow: inset 3px 0 #34d399;
}

.emp-table tr.free {
  box-shadow: inset 3px 0 #fbbf2499;
}

.emp-fio {
  color: #eef2ff;
  font-size: 13px;
  font-weight: 600;
}

.emp-pos {
  color: #8b97ba;
  margin-top: 1px;
  font-size: 11px;
  line-height: 1.25;
}

.emp-select {
  box-sizing: border-box;
  color: #9aa6c7;
  background: #ffffff0d;
  border: 1px solid #ffffff24;
  border-radius: 8px;
  width: 100%;
  padding: 6px 7px;
  font-family: inherit;
  font-size: 12px;
}

.emp-select.has {
  color: #6ee7b7;
  background: #34d39914;
  border-color: #34d39973;
  font-weight: 600;
}

.emp-shared-input {
  box-sizing: border-box;
  color: #93c5fd;
  background: #60a5fa1a;
  border: 1px solid #60a5fa80;
  border-radius: 8px;
  width: 100%;
  padding: 6px 7px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
}

.emp-shared-input::placeholder {
  color: #7f93c9;
  font-weight: 400;
}

.emp-shared-input:focus {
  border-color: #60a5fa;
  outline: none;
}

.emp-table td:nth-child(2) {
  width: 112px;
}

.emp-table td:nth-child(3) {
  width: 44%;
}

.emp-table optgroup {
  color: #9aa6c7;
  background: #0f1730;
}

.emp-select:focus {
  border-color: #38bdf8;
  outline: none;
}

.emp-select option {
  color: #eef2ff;
  background: #0f1730;
}

.emp-empty {
  color: #6b779b;
  text-align: center;
  padding: 20px;
}

.cnode-assigned {
  border-top: 1px dashed color-mix(in srgb, var(--ac) 40%, transparent);
  flex-direction: column;
  gap: 3px;
  margin-top: 8px;
  padding-top: 7px;
  display: flex;
}

.cnode-assigned-h {
  letter-spacing: .4px;
  text-transform: uppercase;
  color: #7f8bb0;
  font-size: 9.5px;
  font-weight: 700;
}

.cnode-assigned-row {
  align-items: baseline;
  gap: 6px;
  font-size: 12px;
  display: flex;
}

.cnode-assigned-row .ca-name {
  color: #eef2ff;
  font-weight: 600;
}

.cnode-assigned-row .ca-pos {
  color: #8b97ba;
  font-size: 10.5px;
}

.matrix-wrap {
  background: radial-gradient(900px 600px at 15% -10%, #f472b614, #0000 60%), linear-gradient(#0b1020, #0f1730);
  flex-direction: column;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.matrix-toolbar {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 5;
  background: #090d1c8c;
  border-bottom: 1px solid #ffffff1a;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  display: flex;
}

.matrix-toolbar .mx-title {
  font-size: 16px;
  font-weight: 700;
}

.matrix-toolbar .mx-meta {
  color: #9aa6c7;
  font-size: 12.5px;
}

.matrix-toolbar .ct-spacer {
  flex: 1;
}

.mx-search {
  color: #eef2ff;
  background: #ffffff0d;
  border: 1px solid #ffffff24;
  border-radius: 9px;
  width: 180px;
  margin-left: 4px;
  padding: 7px 11px;
  font-family: inherit;
  font-size: 13px;
}

.mx-search:focus {
  border-color: #f472b6;
  outline: none;
}

.matrix-scroll {
  flex: 1;
  min-height: 0;
  padding: 20px 26px 60px;
  overflow: auto;
}

.mx-lead {
  color: #9aa6c7;
  max-width: 90ch;
  margin: 0 0 20px;
  line-height: 1.6;
}

.mx-group {
  background: #ffffff05;
  border: 1.5px solid #ffffff1f;
  border-radius: 14px;
  margin-bottom: 26px;
  padding: 14px 16px;
}

.mx-group-head {
  border-bottom: 2px solid #f472b659;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  display: flex;
}

.mx-group-head h3 {
  color: #f9a8d4;
  margin: 0;
  font-size: 19px;
  font-weight: 800;
}

.mx-group-count {
  color: #9aa6c7;
  background: #ffffff0f;
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 12px;
  font-weight: 700;
}

.mx-add-row {
  cursor: pointer;
  color: #bae6fd;
  background: #38bdf81f;
  border: 1px solid #38bdf859;
  border-radius: 8px;
  margin-left: auto;
  padding: 5px 11px;
  font-size: 12.5px;
  font-weight: 600;
}

.mx-add-row:hover {
  background: #38bdf833;
}

.mx-table {
  border-collapse: collapse;
  width: 100%;
}

.mx-table thead th {
  text-align: left;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #6b779b;
  border-bottom: 1px solid #ffffff1a;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
}

.mx-table tbody tr {
  border-bottom: 1px solid #ffffff14;
}

.mx-table tbody tr:hover {
  background: #ffffff0a;
}

.mx-table tbody tr.gap {
  background: #fbbf241a;
  box-shadow: inset 3px 0 #fbbf24;
}

.mx-table td {
  vertical-align: top;
  padding: 3px 6px;
}

.mx-col-zone {
  width: 14%;
}

.mx-col-modules {
  width: 22%;
}

.mx-col-owner {
  width: 15%;
}

.mx-col-level {
  width: 13%;
}

.mx-col-newlevel {
  width: 12%;
}

.mx-col-note {
  width: 20%;
}

.mx-col-del {
  text-align: center;
  width: 4%;
}

.mx-table input, .mx-table textarea {
  box-sizing: border-box;
  color: #eef2ff;
  background: none;
  border: 1px solid #0000;
  border-radius: 7px;
  width: 100%;
  padding: 7px 9px;
  font-family: inherit;
  font-size: 13.5px;
}

.mx-table input::placeholder, .mx-table textarea::placeholder {
  color: #566089;
}

.mx-table input:hover, .mx-table textarea:hover {
  border-color: #ffffff1a;
}

.mx-table input:focus, .mx-table textarea:focus {
  background: #ffffff0a;
  border-color: #f472b6;
  outline: none;
}

.mx-table input.mx-owner {
  font-weight: 600;
}

.mx-table textarea.mx-modules {
  resize: none;
  white-space: pre-wrap;
  word-break: break-word;
  min-height: 34px;
  line-height: 1.4;
  overflow: hidden;
}

.mx-table tr.gap .mx-owner::placeholder {
  color: #fbbf24;
}

.mx-del {
  cursor: pointer;
  color: #fecdd3;
  background: #fb71851a;
  border: 1px solid #fb71854d;
  border-radius: 7px;
  width: 26px;
  height: 28px;
}

.mx-del:hover {
  background: #fb718538;
}

.mx-empty {
  color: #6b779b;
  text-align: center;
  padding: 30px;
}

.pl-wrap {
  color: #eef2ff;
  background: radial-gradient(900px 600px at 12% -10%, #60a5fa1a, #0000 60%), radial-gradient(800px 600px at 90% 0, #2dd4bf12, #0000 55%), linear-gradient(#0b1020, #0f1730);
  flex-direction: column;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.pl-toolbar {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 5;
  background: #090d1c8c;
  border-bottom: 1px solid #ffffff1a;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  display: flex;
}

.pl-toolbar .pl-title {
  font-size: 16px;
  font-weight: 700;
}

.pl-toolbar .pl-meta {
  color: #9aa6c7;
  font-size: 12.5px;
}

.pl-toolbar .ct-spacer {
  flex: 1;
}

.pl-sync {
  color: #6ee7b7;
  opacity: .8;
  font-size: 12px;
}

.pl-search {
  color: #eef2ff;
  background: #ffffff0d;
  border: 1px solid #ffffff24;
  border-radius: 9px;
  width: 180px;
  margin-left: 4px;
  padding: 7px 11px;
  font-family: inherit;
  font-size: 13px;
}

.pl-search:focus {
  border-color: #60a5fa;
  outline: none;
}

.pl-scroll {
  flex: 1;
  min-height: 0;
  padding: 20px 26px 80px;
  overflow: auto;
}

.pl-lead {
  color: #9aa6c7;
  max-width: 92ch;
  margin: 0 0 14px;
  line-height: 1.6;
}

.pl-legend {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  display: flex;
}

.pl-badge {
  letter-spacing: .3px;
  text-transform: uppercase;
  border: 1px solid #0000;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
}

.pl-badge.s-todo {
  color: #9aa6c7;
  background: #ffffff0f;
}

.pl-badge.s-doing {
  color: #bae6fd;
  background: #38bdf824;
  border-color: #38bdf866;
}

.pl-badge.s-done {
  color: #a7f3d0;
  background: #34d39924;
  border-color: #34d39966;
}

.pl-badge.s-blocked {
  color: #fecdd3;
  background: #fb718524;
  border-color: #fb718566;
}

.pl-badge.s-decision {
  color: #fde68a;
  background: #fbbf2424;
  border-color: #fbbf2473;
}

.pl-phase {
  background: #ffffff05;
  border: 1.5px solid #ffffff1f;
  border-radius: 16px;
  margin-bottom: 26px;
  padding: 14px 16px 16px;
}

.pl-phase-head {
  border-bottom: 2px solid #60a5fa59;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  display: flex;
}

.pl-phase-head h3 {
  color: #93c5fd;
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.pl-phase-count {
  color: #9aa6c7;
  font-variant-numeric: tabular-nums;
  background: #ffffff0f;
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 12px;
  font-weight: 700;
}

.pl-add-row {
  cursor: pointer;
  color: #bae6fd;
  background: #38bdf81f;
  border: 1px solid #38bdf859;
  border-radius: 8px;
  margin-left: auto;
  padding: 5px 11px;
  font-size: 12.5px;
  font-weight: 600;
}

.pl-add-row:hover {
  background: #38bdf833;
}

.pl-items {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.pl-item {
  border: 1px solid #ffffff1a;
  border-left: 4px solid var(--pl-ac, #3b4667);
  background: #ffffff06;
  border-radius: 12px;
  grid-template-columns: 26px 1fr 30px;
  gap: 10px;
  padding: 12px 12px 12px 14px;
  transition: background .15s, border-color .15s;
  display: grid;
}

.pl-item:hover {
  background: #ffffff0b;
}

.pl-item.t-org {
  --pl-ac: #a78bfa;
}

.pl-item.t-hr {
  --pl-ac: #f472b6;
}

.pl-item.t-comms {
  --pl-ac: #fbbf24;
}

.pl-item.t-training {
  --pl-ac: #2dd4bf;
}

.pl-item.t-launch {
  --pl-ac: #34d399;
}

.pl-item.t-delivery {
  --pl-ac: #60a5fa;
}

.pl-item.t-none {
  --pl-ac: #3b4667;
}

.pl-item.s-done {
  opacity: .72;
}

.pl-item.s-blocked {
  background: #fb718512;
}

.pl-item.s-decision {
  background: #fbbf2412;
}

.pl-reorder {
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
  display: flex;
}

.pl-mv {
  cursor: pointer;
  color: #9aa6c7;
  background: #ffffff0d;
  border: 1px solid #ffffff24;
  border-radius: 6px;
  width: 24px;
  height: 22px;
  padding: 0;
  font-size: 10px;
  line-height: 1;
}

.pl-mv:hover:not(:disabled) {
  color: #bfdbfe;
  background: #60a5fa2e;
  border-color: #60a5fa73;
}

.pl-mv:disabled {
  opacity: .28;
  cursor: not-allowed;
}

.pl-body {
  min-width: 0;
}

.pl-item input, .pl-item textarea {
  box-sizing: border-box;
  color: #eef2ff;
  background: none;
  border: 1px solid #0000;
  border-radius: 7px;
  width: 100%;
  padding: 6px 8px;
  font-family: inherit;
  font-size: 13.5px;
}

.pl-item input::placeholder, .pl-item textarea::placeholder {
  color: #566089;
}

.pl-item input:hover, .pl-item textarea:hover {
  border-color: #ffffff1a;
}

.pl-item input:focus, .pl-item textarea:focus {
  background: #ffffff0d;
  border-color: #60a5fa;
  outline: none;
}

.pl-title-in {
  color: #f4f7ff;
  font-size: 15px !important;
  font-weight: 700 !important;
}

.pl-item.s-done .pl-title-in {
  color: #9aa6c7;
  text-decoration: line-through;
}

.pl-detail-in, .pl-note-in {
  resize: none;
  white-space: pre-wrap;
  word-break: break-word;
  min-height: 32px;
  line-height: 1.5;
  overflow: hidden;
  color: #c5cde6 !important;
  font-size: 13px !important;
}

.pl-note-wrap {
  border-left: 2px dashed #fbbf2480;
  margin-top: 4px;
  padding-left: 8px;
}

.pl-note-in {
  font-style: italic;
  color: #d9c58a !important;
}

.pl-fields {
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px 14px;
  margin-top: 8px;
  display: flex;
}

.pl-f {
  flex-direction: column;
  gap: 3px;
  display: flex;
}

.pl-f > span {
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6b779b;
  padding-left: 2px;
  font-size: 10px;
  font-weight: 700;
}

.pl-f-owner {
  flex: 180px;
}

.pl-f-due {
  width: 120px;
}

.pl-f-phase {
  flex: 200px;
}

.pl-in {
  border-radius: 8px;
  border: 1px solid #ffffff1f !important;
}

.pl-sel {
  color: #eef2ff;
  cursor: pointer;
  background: #ffffff0d;
  border: 1px solid #ffffff24;
  border-radius: 8px;
  padding: 6px 8px;
  font-family: inherit;
  font-size: 12.5px;
}

.pl-sel:focus {
  border-color: #60a5fa;
  outline: none;
}

.pl-sel option {
  background: #0f1730;
}

.pl-sel.st-doing {
  color: #bae6fd;
  border-color: #38bdf880;
}

.pl-sel.st-done {
  color: #a7f3d0;
  border-color: #34d39980;
}

.pl-sel.st-blocked {
  color: #fecdd3;
  border-color: #fb718580;
}

.pl-sel.st-decision {
  color: #fde68a;
  border-color: #fbbf248c;
}

.pl-del {
  cursor: pointer;
  color: #fecdd3;
  background: #fb71851a;
  border: 1px solid #fb71854d;
  border-radius: 7px;
  align-self: flex-start;
  width: 28px;
  height: 28px;
}

.pl-del:hover {
  background: #fb718538;
}

.pl-empty, .pl-empty-phase {
  color: #6b779b;
  text-align: center;
  padding: 22px;
}

.pl-empty-phase {
  padding: 12px;
  font-size: 13px;
}

:root {
  --bg: #0b1020;
  --bg2: #0f1730;
  --panel: #ffffff0a;
  --panel-brd: #ffffff1a;
  --ink: #eef2ff;
  --muted: #9aa6c7;
  --dim: #6b779b;
  --c-onb: #38bdf8;
  --c-net: #a78bfa;
  --c-cli: #34d399;
  --c-ord: #fbbf24;
  --c-ful: #fb7185;
  --c-plat: #60a5fa;
  --c-1c: #f472b6;
  --c-uni: #2dd4bf;
  --c-ai: #c084fc;
  --c-cpo: #38bdf8;
  --c-rte: #f59e0b;
  --c-cto: #34d399;
  --c-pmo: #f97316;
  --radius: 16px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html, body, #root {
  height: 100%;
  margin: 0;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: radial-gradient(1200px 700px at 12% -8%, #38bdf824, transparent 60%), radial-gradient(1100px 700px at 100% 0%, #a78bfa1f, transparent 55%), radial-gradient(900px 600px at 50% 120%, #34d39914, transparent 60%), linear-gradient(180deg, var(--bg), var(--bg2));
  -webkit-font-smoothing: antialiased;
  background-attachment: fixed;
}

.deck {
  flex-direction: column;
  min-height: 100%;
  display: flex;
}

.topbar {
  z-index: 30;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--panel-brd);
  background: #090d1c8c;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  display: flex;
  position: sticky;
  top: 0;
}

.brand {
  letter-spacing: .2px;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  display: flex;
}

.brand .dot {
  background: linear-gradient(135deg, var(--c-onb), var(--c-net));
  border-radius: 4px;
  width: 12px;
  height: 12px;
  box-shadow: 0 0 18px #38bdf899;
}

.brand small {
  color: var(--muted);
  font-weight: 500;
}

.topbar .spacer {
  flex: 1;
}

.nav-dots {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  max-width: 46vw;
  display: flex;
}

.nav-dots button {
  cursor: pointer;
  background: #ffffff24;
  border: 0;
  border-radius: 6px;
  width: 26px;
  height: 8px;
  transition: all .2s;
}

.nav-dots button:hover {
  background: #ffffff4d;
}

.nav-dots button.active {
  background: linear-gradient(90deg, var(--c-onb), var(--c-net));
  width: 40px;
}

.stage {
  flex: 1;
  justify-content: center;
  padding: 30px 22px 90px;
  display: flex;
}

.stage.stage-full {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.slide {
  width: min(1180px, 100%);
  animation: .45s cubic-bezier(.2, .7, .2, 1) rise;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.slide h1 {
  margin: 0 0 6px;
  font-size: max(26px, min(4vw, 44px));
  line-height: 1.05;
}

.slide h2 {
  margin: 0 0 4px;
  font-size: max(20px, min(2.6vw, 30px));
}

.slide .kicker {
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 600;
}

.slide .lead {
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.6;
}

.footbar {
  z-index: 30;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--panel-brd);
  background: #090d1c99;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.footbar .title {
  color: var(--muted);
  font-size: 14px;
}

.footbar .spacer {
  flex: 1;
}

.btn {
  border: 1px solid var(--panel-brd);
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
  border-radius: 10px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
  transition: all .18s;
}

.btn:hover {
  background: #ffffff1a;
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: .35;
  cursor: default;
  transform: none;
}

.counter {
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  text-align: center;
  min-width: 54px;
  font-size: 14px;
}

.grid {
  gap: 16px;
  display: grid;
}

.card {
  background: var(--panel);
  border: 1px solid var(--panel-brd);
  border-radius: var(--radius);
  padding: 18px;
}

.card.accent {
  border-left: 4px solid var(--ac, var(--c-onb));
}

.card h3 {
  margin: 0 0 2px;
  font-size: 18px;
}

.card .sub {
  color: var(--dim);
  margin-bottom: 10px;
  font-size: 12.5px;
}

.chips {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.chip {
  border: 1px solid var(--panel-brd);
  color: var(--muted);
  white-space: nowrap;
  background: #ffffff0f;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
}

.chip.role {
  color: var(--ink);
  background: #ffffff0d;
}

.chip.ac {
  background: color-mix(in srgb, var(--ac) 18%, transparent);
  border-color: color-mix(in srgb, var(--ac) 40%, transparent);
  color: #fff;
}

.chip.method {
  font-weight: 700;
}

.chip.ai {
  color: #f3e8ff;
  background: linear-gradient(90deg, #c084fc38, #38bdf82e);
  border-color: #c084fc66;
}

.chip.good {
  color: #bbf7d0;
  background: #34d3991f;
  border-color: #34d39966;
}

.chip.warn {
  color: #fde68a;
  background: #fbbf241f;
  border-color: #fbbf2466;
}

.people {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.label {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 10px 0 5px;
  font-size: 11px;
  font-weight: 700;
}

.old-name {
  color: var(--dim);
  font-size: 12px;
}

.old-name s {
  color: #55618a;
}

.new-name {
  color: var(--ac);
  font-weight: 700;
}

.scope {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
  display: grid;
}

.scope .box {
  border: 1px dashed var(--panel-brd);
  border-radius: 10px;
  padding: 8px 10px;
}

.scope .box b {
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-size: 11px;
  display: block;
}

.scope .in b {
  color: #86efac;
}

.scope .out b {
  color: #fca5a5;
}

.scope small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  display: block;
}

.vs {
  flex-wrap: wrap;
  align-items: stretch;
  gap: 8px;
  margin: 8px 0 4px;
  display: flex;
}

.vs .node {
  border: 1px solid var(--panel-brd);
  background: var(--panel);
  border-radius: 12px;
  flex: 150px;
  min-width: 140px;
  padding: 12px;
  position: relative;
}

.vs .node .k {
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
}

.vs .node .t {
  margin-top: 3px;
  font-weight: 700;
}

.vs .node small {
  color: var(--muted);
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.4;
  display: block;
}

.vs .arrow {
  color: var(--dim);
  align-self: center;
  font-size: 20px;
}

.vs .node.top {
  border-top: 3px solid var(--ac);
}

.split {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  display: grid;
}

@media (max-width: 820px) {
  .split, .scope {
    grid-template-columns: 1fr;
  }
}

.tree {
  gap: 12px;
  display: grid;
}

.tree .root {
  border: 1px solid var(--panel-brd);
  border-left: 4px solid var(--ac);
  background: #ffffff0d;
  border-radius: 12px;
  padding: 14px 16px;
}

.tree .root h3 {
  margin: 0;
  font-size: 20px;
}

.tree .branch {
  border-left: 2px dashed var(--panel-brd);
  gap: 8px;
  margin-left: 18px;
  padding-left: 14px;
  display: grid;
}

.node-line {
  border: 1px solid var(--panel-brd);
  background: var(--panel);
  border-radius: 10px;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  padding: 10px 12px;
  display: flex;
}

.node-line .role-t {
  font-weight: 700;
}

.node-line .who {
  color: var(--muted);
  font-size: 13px;
}

.node-line .who b {
  color: var(--ink);
}

.sub-branch {
  border-left: 2px dotted var(--panel-brd);
  gap: 6px;
  margin-left: 16px;
  padding-left: 12px;
  display: grid;
}

.matrix {
  border-collapse: separate;
  border-spacing: 0 8px;
  width: 100%;
}

.matrix td {
  vertical-align: top;
  background: var(--panel);
  border-top: 1px solid var(--panel-brd);
  border-bottom: 1px solid var(--panel-brd);
  padding: 10px 12px;
}

.matrix td:first-child {
  border-left: 1px solid var(--panel-brd);
  border-radius: 10px 0 0 10px;
  width: 210px;
  font-weight: 700;
}

.matrix td:last-child {
  border-right: 1px solid var(--panel-brd);
  border-radius: 0 10px 10px 0;
}

.matrix .comp {
  color: #fce7f3;
  background: #f472b61f;
  border: 1px solid #f472b659;
  border-radius: 8px;
  margin: 3px 5px 3px 0;
  padding: 4px 9px;
  font-size: 12px;
  display: inline-block;
}

.matrix .comp em {
  color: #fbcfe8;
  opacity: .75;
  font-style: normal;
}

.matrix tr.gap td {
  background: #fbbf2414;
  border-color: #fbbf2459;
}

.matrix tr.pool td {
  background: #ffffff05;
}

.matrix.bound th {
  text-align: left;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2px 12px 6px;
  font-size: 12px;
  font-weight: 700;
}

.matrix.bound td {
  width: auto;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.matrix.bound td:first-child {
  width: 150px;
  font-weight: 700;
}

.matrix.bound td.fcell {
  color: #dbeafe;
  border-left: 1px solid var(--panel-brd);
}

.matrix.bound td.pcell {
  color: #ede9fe;
}

.two-col {
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  display: grid;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.legend {
  color: var(--muted);
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
  font-size: 12.5px;
  display: flex;
}

.legend span {
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.legend i {
  border-radius: 4px;
  width: 12px;
  height: 12px;
  display: inline-block;
}

.title-slide {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  min-height: 62vh;
  display: flex;
}

.title-slide .big {
  background: linear-gradient(120deg, #eaf2ff, #9db4ff 60%, #c4a7ff);
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: max(34px, min(6vw, 68px));
  font-weight: 800;
  line-height: 1.02;
}

.title-slide .meta {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  display: flex;
}

.pill {
  border: 1px solid var(--panel-brd);
  background: var(--panel);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
}

.note {
  border: 1px dashed var(--panel-brd);
  color: var(--muted);
  background: #ffffff05;
  border-radius: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
}

.note b {
  color: var(--ink);
}

.hint {
  color: var(--dim);
  z-index: 20;
  font-size: 12px;
  position: fixed;
  bottom: 64px;
  right: 18px;
}

.deck-link {
  border: 1px solid var(--panel-brd);
  background: var(--panel);
  color: var(--ink);
  white-space: nowrap;
  border-radius: 9px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .18s;
}

.deck-link:hover {
  background: #ffffff1a;
}

.rlist {
  gap: 5px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.rlist li {
  color: var(--muted);
  padding-left: 15px;
  font-size: 12.5px;
  line-height: 1.45;
  position: relative;
}

.rlist li:before {
  content: "";
  background: var(--ac, var(--c-onb));
  border-radius: 2px;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 6px;
  left: 2px;
}

.rlist.no li:before {
  background: #fca5a5;
}

.rlist.say li {
  color: var(--ink);
  font-style: italic;
}

.rlist.say li:before {
  top: 8px;
}

.quote-hero {
  border-left: 4px solid var(--ac, var(--c-onb));
  background: #ffffff0d;
  border-radius: 12px;
  margin-top: 2px;
  padding: 13px 16px;
  font-size: max(15px, min(1.7vw, 18px));
  font-weight: 600;
  line-height: 1.5;
}

.quote-hero .qk {
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  display: block;
}

.do-dont {
  gap: 8px;
  margin-top: 6px;
  display: grid;
}

.do-dont .row {
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  line-height: 1.45;
  display: flex;
}

.do-dont .mk {
  border-radius: 6px;
  flex: 0 0 20px;
  place-items: center;
  height: 20px;
  font-size: 13px;
  font-weight: 800;
  display: grid;
}

.do-dont .yes .mk {
  color: #86efac;
  background: #34d39926;
  border: 1px solid #34d39966;
}

.do-dont .not .mk {
  color: #fca5a5;
  background: #fb718524;
  border: 1px solid #fb718566;
}

.do-dont .yes span {
  color: var(--ink);
}

.do-dont .not span {
  color: var(--muted);
}

.pmx {
  border-collapse: separate;
  border-spacing: 0 6px;
  width: 100%;
}

.pmx th {
  text-align: left;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 2px 12px 6px;
  font-size: 12px;
  font-weight: 700;
}

.pmx td {
  background: var(--panel);
  border-top: 1px solid var(--panel-brd);
  border-bottom: 1px solid var(--panel-brd);
  vertical-align: middle;
  padding: 8px 12px;
  font-size: 13px;
}

.pmx td:first-child {
  border-left: 1px solid var(--panel-brd);
  border-radius: 9px 0 0 9px;
  width: 34%;
  font-weight: 600;
}

.pmx td:last-child {
  border-right: 1px solid var(--panel-brd);
  border-radius: 0 9px 9px 0;
}

.lvl {
  white-space: nowrap;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 12px;
  display: inline-block;
}

.lvl.own {
  color: #bbf7d0;
  background: #34d39924;
  border: 1px solid #34d39966;
}

.lvl.inf {
  color: #fde68a;
  background: #fbbf241f;
  border: 1px solid #fbbf2466;
}

.lvl.no {
  border: 1px solid var(--panel-brd);
  color: var(--dim);
  background: #ffffff0a;
}

.flow-steps {
  gap: 10px;
  display: grid;
}

.flow-steps .step {
  border: 1px solid var(--panel-brd);
  background: var(--panel);
  border-radius: 12px;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  display: flex;
}

.flow-steps .n {
  background: color-mix(in srgb, var(--c-1c) 22%, transparent);
  border: 1px solid #f472b666;
  border-radius: 8px;
  flex: 0 0 30px;
  place-items: center;
  height: 30px;
  font-weight: 800;
  display: grid;
}

.flow-steps .step b {
  color: var(--ink);
}

.flow-steps .step small {
  color: var(--muted);
  margin-top: 3px;
  font-size: 12.5px;
  line-height: 1.45;
  display: block;
}

.sec-slide {
  flex-direction: column;
  justify-content: center;
  min-height: 60vh;
  display: flex;
}

.sec-slide .sec-num {
  background: linear-gradient(120deg, var(--ac, var(--c-onb)), #c4a7ff);
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: max(60px, min(12vw, 150px));
  font-weight: 800;
  line-height: .9;
}

.sec-slide .sec-title {
  margin: 6px 0 14px;
  font-size: max(28px, min(5vw, 54px));
  font-weight: 800;
  line-height: 1.05;
}

.sec-slide .sec-sub {
  color: var(--muted);
  max-width: 68ch;
  font-size: max(15px, min(1.8vw, 19px));
  line-height: 1.6;
}

.sec-slide .sec-time {
  border: 1px solid var(--panel-brd);
  background: var(--panel);
  color: var(--muted);
  border-radius: 999px;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
}

.stat-row {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 18px 0;
  display: grid;
}

.stat {
  border: 1px solid var(--panel-brd);
  background: var(--panel);
  border-radius: var(--radius);
  border-top: 3px solid var(--ac, var(--c-onb));
  padding: 16px 18px;
}

.stat .num {
  letter-spacing: -.5px;
  color: var(--ink);
  font-size: max(26px, min(3.4vw, 40px));
  font-weight: 800;
  line-height: 1;
}

.stat .num.up {
  color: #86efac;
}

.stat .num.down {
  color: #fca5a5;
}

.stat .cap {
  color: var(--muted);
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.4;
}

.callout {
  border: 1px solid color-mix(in srgb, var(--ac, var(--c-onb)) 40%, transparent);
  background: color-mix(in srgb, var(--ac, var(--c-onb)) 12%, transparent);
  color: #fff;
  border-radius: 14px;
  margin-top: 16px;
  padding: 14px 18px;
  font-size: max(15px, min(1.9vw, 19px));
  font-weight: 700;
  line-height: 1.5;
}

.callout .ck {
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  display: block;
}

.facts {
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.facts li {
  color: var(--muted);
  padding-left: 22px;
  font-size: max(14px, min(1.6vw, 16px));
  line-height: 1.55;
  position: relative;
}

.facts li:before {
  content: "";
  background: var(--ac, var(--c-onb));
  border-radius: 2px;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 8px;
  left: 4px;
}

.facts li b {
  color: var(--ink);
}

.facts li .big {
  color: #fff;
  font-weight: 800;
}

.alt {
  border: 1px solid var(--panel-brd);
  background: var(--panel);
  border-radius: var(--radius);
  border-left: 4px solid #fca5a5;
  padding: 18px 20px;
}

.alt .alt-h {
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
  display: flex;
}

.alt .alt-h h3 {
  margin: 0;
  font-size: max(18px, min(2.2vw, 24px));
}

.alt .verdict {
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fca5a5;
  background: #fb718524;
  border: 1px solid #fb71856b;
  border-radius: 999px;
  padding: 4px 11px;
  font-size: 12px;
  font-weight: 800;
}

.src {
  color: var(--dim);
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.4;
}

.deck-link {
  border: 1px solid var(--panel-brd);
  background: var(--panel);
  color: var(--ink);
  white-space: nowrap;
  border-radius: 9px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .18s;
}

.deck-link:hover {
  background: #ffffff1a;
}

.live {
  border: 1px dashed color-mix(in srgb, var(--c-ai) 45%, transparent);
  background: color-mix(in srgb, var(--c-ai) 8%, transparent);
  border-radius: 14px;
  margin-top: 16px;
  padding: 16px 18px;
}

.live .lk {
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-ai);
  font-size: 11px;
  font-weight: 800;
}

.live h3 {
  margin: 4px 0 6px;
  font-size: 20px;
}

.live p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.speaker {
  border-left: 4px solid var(--ac, var(--c-net));
  color: var(--ink);
  background: #ffffff0a;
  border-radius: 12px;
  margin-top: 16px;
  padding: 13px 16px;
  font-size: max(14px, min(1.6vw, 16px));
  font-style: italic;
  line-height: 1.55;
}

.speaker b {
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-size: 11px;
  font-style: normal;
  display: block;
}

.auth-wrap {
  z-index: 1000;
  background: radial-gradient(1200px 800px at 50% -10%, #172142 0%, #0b1020 60%, #070a16 100%);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.auth-card {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #0f1730d9;
  border: 1px solid #ffffff1f;
  border-radius: 18px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 340px;
  max-width: 90vw;
  padding: 34px 28px;
  display: flex;
  box-shadow: 0 24px 80px #00000080;
}

.auth-lock {
  font-size: 34px;
}

.auth-title {
  color: #eef2ff;
  letter-spacing: .2px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
}

.auth-sub {
  color: #9aa6c7;
  margin-bottom: 4px;
  font-size: 13px;
}

.auth-input {
  box-sizing: border-box;
  text-align: center;
  letter-spacing: 3px;
  color: #eef2ff;
  background: #ffffff0f;
  border: 1px solid #ffffff29;
  border-radius: 11px;
  width: 100%;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 16px;
}

.auth-input:focus {
  border-color: #38bdf8;
  outline: none;
}

.auth-input.err {
  border-color: #fb7185;
}

.auth-err {
  color: #fda4af;
  margin-top: -4px;
  font-size: 12px;
}

.auth-btn {
  cursor: pointer;
  color: #06121f;
  background: linear-gradient(#7dd3fc, #38bdf8);
  border: none;
  border-radius: 11px;
  width: 100%;
  padding: 11px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
}

.auth-btn:hover {
  filter: brightness(1.06);
}

@layer properties {
  @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *, :before, :after {
      --tw-space-y-reverse: 0;
      --tw-border-style: solid;
      --tw-leading: initial;
      --tw-font-weight: initial;
      --tw-tracking: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
    }

    ::backdrop {
      --tw-space-y-reverse: 0;
      --tw-border-style: solid;
      --tw-leading: initial;
      --tw-font-weight: initial;
      --tw-tracking: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
    }
  }
}

@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --color-red-600: #e40014;
    --color-slate-50: #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-slate-200: #e2e8f0;
    --color-slate-400: #90a1b9;
    --color-slate-500: #62748e;
    --color-slate-600: #45556c;
    --color-slate-700: #314158;
    --color-slate-800: #1d293d;
    --color-slate-900: #0f172b;
    --color-white: #fff;
    --spacing: .25rem;
    --container-xl: 36rem;
    --container-2xl: 42rem;
    --text-xs: .75rem;
    --text-xs--line-height: calc(1 / .75);
    --text-sm: .875rem;
    --text-sm--line-height: calc(1.25 / .875);
    --text-base: 1rem;
    --text-base--line-height: calc(1.5 / 1);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --text-3xl: 1.875rem;
    --text-3xl--line-height: calc(2.25 / 1.875);
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --tracking-tight: -.025em;
    --tracking-wider: .05em;
    --leading-relaxed: 1.625;
    --radius-md: .375rem;
    --radius-lg: .5rem;
    --radius-xl: .75rem;
    --default-transition-duration: .15s;
    --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }

  @supports (color: color(display-p3 0 0 0)) {
    :root, :host {
      --color-red-600: color(display-p3 .830323 .140383 .133196);
      --color-slate-50: color(display-p3 .974377 .979815 .986207);
      --color-slate-100: color(display-p3 .947345 .959969 .97483);
      --color-slate-200: color(display-p3 .890322 .909405 .939294);
      --color-slate-400: color(display-p3 .577446 .629622 .716602);
      --color-slate-500: color(display-p3 .397645 .452653 .547642);
      --color-slate-600: color(display-p3 .283418 .332214 .416355);
      --color-slate-700: color(display-p3 .205992 .253487 .336039);
      --color-slate-800: color(display-p3 .121994 .158688 .232363);
      --color-slate-900: color(display-p3 .0639692 .0891152 .163036);
    }
  }

  @supports (color: lab(0% 0 0)) {
    :root, :host {
      --color-red-600: lab(48.4493% 77.4328 61.5452);
      --color-slate-50: lab(98.1434% -.369519 -1.05966);
      --color-slate-100: lab(96.286% -.852436 -2.46847);
      --color-slate-200: lab(91.7353% -.998765 -4.76968);
      --color-slate-400: lab(65.5349% -2.25151 -14.5072);
      --color-slate-500: lab(48.0876% -2.03595 -16.5814);
      --color-slate-600: lab(35.5623% -1.74978 -15.4316);
      --color-slate-700: lab(26.9569% -1.47016 -15.6993);
      --color-slate-800: lab(16.132% -.318035 -14.6672);
      --color-slate-900: lab(7.78673% 1.82345 -15.0537);
    }
  }
}

@layer base {
  *, :after, :before {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::-webkit-file-upload-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }

  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }

  b, strong {
    font-weight: bolder;
  }

  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

  ol, ul, menu {
    list-style: none;
  }

  img, svg, video, canvas, audio, iframe, embed, object {
    vertical-align: middle;
    display: block;
  }

  img, video {
    max-width: 100%;
    height: auto;
  }

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::-webkit-file-upload-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:-webkit-any([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:-moz-any([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:-webkit-any([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  :where(select:-moz-any([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::-webkit-file-upload-button {
    margin-inline-end: 4px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block-start: 0;
    padding-block-end: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block-start: 0;
    padding-block-end: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block-start: 0;
    padding-block-end: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block-start: 0;
    padding-block-end: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block-start: 0;
    padding-block-end: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block-start: 0;
    padding-block-end: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block-start: 0;
    padding-block-end: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block-start: 0;
    padding-block-end: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block-start: 0;
    padding-block-end: 0;
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }

  :-moz-ui-invalid {
    box-shadow: none;
  }

  button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
  }

  input:where([type="button"], [type="reset"], [type="submit"]) {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
  }

  ::-webkit-file-upload-button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
  }

  ::file-selector-button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
  }

  ::-webkit-inner-spin-button {
    height: auto;
  }

  ::-webkit-outer-spin-button {
    height: auto;
  }

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer components;

@layer utilities {
  .static {
    position: static;
  }

  .mx-auto {
    margin-inline-start: auto;
    margin-inline-end: auto;
  }

  .mt-1 {
    margin-top: calc(var(--spacing) * 1);
  }

  .mt-2 {
    margin-top: calc(var(--spacing) * 2);
  }

  .flex {
    display: flex;
  }

  .grid {
    display: grid;
  }

  .hidden {
    display: none;
  }

  .inline-flex {
    display: inline-flex;
  }

  .h-8 {
    height: calc(var(--spacing) * 8);
  }

  .h-10 {
    height: calc(var(--spacing) * 10);
  }

  .h-12 {
    height: calc(var(--spacing) * 12);
  }

  .h-24 {
    height: calc(var(--spacing) * 24);
  }

  .min-h-screen {
    min-height: 100vh;
  }

  .w-full {
    width: 100%;
  }

  .max-w-2xl {
    max-width: var(--container-2xl);
  }

  .max-w-xl {
    max-width: var(--container-xl);
  }

  .resize-none {
    resize: none;
  }

  .items-center {
    align-items: center;
  }

  .justify-between {
    justify-content: space-between;
  }

  .justify-center {
    justify-content: center;
  }

  .gap-3 {
    gap: calc(var(--spacing) * 3);
  }

  :where(.space-y-3 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 3) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-6 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 6) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--tw-space-y-reverse)));
  }

  :where(.space-y-8 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 8) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 8) * calc(1 - var(--tw-space-y-reverse)));
  }

  .rounded-lg {
    border-radius: var(--radius-lg);
  }

  .rounded-md {
    border-radius: var(--radius-md);
  }

  .rounded-xl {
    border-radius: var(--radius-xl);
  }

  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }

  .border-slate-200 {
    border-color: var(--color-slate-200);
  }

  .bg-slate-50 {
    background-color: var(--color-slate-50);
  }

  .bg-slate-100 {
    background-color: var(--color-slate-100);
  }

  .bg-slate-900 {
    background-color: var(--color-slate-900);
  }

  .bg-transparent {
    background-color: #0000;
  }

  .bg-white {
    background-color: var(--color-white);
  }

  .px-3 {
    padding-inline: calc(var(--spacing) * 3);
  }

  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }

  .px-6 {
    padding-inline: calc(var(--spacing) * 6);
  }

  .py-2 {
    padding-block: calc(var(--spacing) * 2);
  }

  .py-3 {
    padding-block: calc(var(--spacing) * 3);
  }

  .py-4 {
    padding-block: calc(var(--spacing) * 4);
  }

  .py-10 {
    padding-block: calc(var(--spacing) * 10);
  }

  .py-12 {
    padding-block: calc(var(--spacing) * 12);
  }

  .pt-6 {
    padding-top: calc(var(--spacing) * 6);
  }

  .pb-2 {
    padding-bottom: calc(var(--spacing) * 2);
  }

  .text-2xl {
    font-size: var(--text-2xl);
    line-height: var(--tw-leading, var(--text-2xl--line-height));
  }

  .text-3xl {
    font-size: var(--text-3xl);
    line-height: var(--tw-leading, var(--text-3xl--line-height));
  }

  .text-base {
    font-size: var(--text-base);
    line-height: var(--tw-leading, var(--text-base--line-height));
  }

  .text-lg {
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height));
  }

  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }

  .text-xs {
    font-size: var(--text-xs);
    line-height: var(--tw-leading, var(--text-xs--line-height));
  }

  .leading-relaxed {
    --tw-leading: var(--leading-relaxed);
    line-height: var(--leading-relaxed);
  }

  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }

  .font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }

  .font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
  }

  .tracking-tight {
    --tw-tracking: var(--tracking-tight);
    letter-spacing: var(--tracking-tight);
  }

  .tracking-wider {
    --tw-tracking: var(--tracking-wider);
    letter-spacing: var(--tracking-wider);
  }

  .whitespace-pre-wrap {
    white-space: pre-wrap;
  }

  .text-red-600 {
    color: var(--color-red-600);
  }

  .text-slate-400 {
    color: var(--color-slate-400);
  }

  .text-slate-500 {
    color: var(--color-slate-500);
  }

  .text-slate-600 {
    color: var(--color-slate-600);
  }

  .text-slate-700 {
    color: var(--color-slate-700);
  }

  .text-slate-900 {
    color: var(--color-slate-900);
  }

  .text-white {
    color: var(--color-white);
  }

  .uppercase {
    text-transform: uppercase;
  }

  .shadow-sm {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .filter {
    filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
  }

  .transition-colors {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  @media (hover: hover) {
    .hover\:bg-slate-100:hover {
      background-color: var(--color-slate-100);
    }
  }

  @media (hover: hover) {
    .hover\:bg-slate-200:hover {
      background-color: var(--color-slate-200);
    }
  }

  @media (hover: hover) {
    .hover\:bg-slate-800:hover {
      background-color: var(--color-slate-800);
    }
  }

  .focus\:ring-2:focus {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .focus\:ring-slate-400:focus {
    --tw-ring-color: var(--color-slate-400);
  }

  .focus\:outline-none:focus {
    --tw-outline-style: none;
    outline-style: none;
  }

  .focus-visible\:ring-2:focus-visible {
    --tw-ring-shadow: var(--tw-ring-inset, ) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .focus-visible\:ring-slate-400:focus-visible {
    --tw-ring-color: var(--color-slate-400);
  }

  .focus-visible\:outline-none:focus-visible {
    --tw-outline-style: none;
    outline-style: none;
  }

  .disabled\:pointer-events-none:disabled {
    pointer-events: none;
  }

  .disabled\:opacity-50:disabled {
    opacity: .5;
  }

  @media (min-width: 40rem) {
    .sm\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
}

@property --tw-space-y-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-leading {
  syntax: "*";
  inherits: false
}

@property --tw-font-weight {
  syntax: "*";
  inherits: false
}

@property --tw-tracking {
  syntax: "*";
  inherits: false
}

@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-ring-color {
  syntax: "*";
  inherits: false
}

@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false
}

@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-ring-inset {
  syntax: "*";
  inherits: false
}

@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0;
}

@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}

@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}

@property --tw-blur {
  syntax: "*";
  inherits: false
}

@property --tw-brightness {
  syntax: "*";
  inherits: false
}

@property --tw-contrast {
  syntax: "*";
  inherits: false
}

@property --tw-grayscale {
  syntax: "*";
  inherits: false
}

@property --tw-hue-rotate {
  syntax: "*";
  inherits: false
}

@property --tw-invert {
  syntax: "*";
  inherits: false
}

@property --tw-opacity {
  syntax: "*";
  inherits: false
}

@property --tw-saturate {
  syntax: "*";
  inherits: false
}

@property --tw-sepia {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false
}

