:root {
  color-scheme: light;
  --bg: #f4f6f8;
  --panel: #ffffff;
  --panel-soft: #f9fbfc;
  --ink: #162128;
  --muted: #66737e;
  --line: #dce3e9;
  --line-strong: #c6d0d8;
  --accent: #145f52;
  --accent-2: #245aa6;
  --warn: #8b5d00;
  --danger: #a33939;
  --shadow: 0 10px 26px rgba(22, 33, 40, 0.07);
  --shadow-tight: 0 5px 14px rgba(22, 33, 40, 0.06);
  --radius-control: 8px;
  --density-gap: 12px;
  --mode-production-weight: 0.62;
  --mode-standard-professional-weight: 0.23;
  --mode-evidence-readback-weight: 0.15;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 246, 248, 0.96)),
    var(--bg);
  color: var(--ink);
}

.nelydo-shell {
  width: min(1240px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 38px;
}

.nelydo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 20px;
  align-items: end;
  padding: 2px 0 18px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: 0;
}

.lead {
  margin: 12px 0 0;
  max-width: 780px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.hero-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.pill {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--panel);
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  white-space: nowrap;
}

.pill.ok {
  border-color: rgba(20, 95, 82, 0.32);
  color: var(--accent);
}

.pill.warn {
  border-color: rgba(139, 93, 0, 0.36);
  color: var(--warn);
}

.pill.bad {
  border-color: rgba(163, 57, 57, 0.36);
  color: var(--danger);
}

.flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(132px, 1fr));
  gap: 8px;
  margin: 16px 0;
  overflow-x: auto;
  padding-bottom: 2px;
}

.flow span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: 8px 10px;
  color: #46545f;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
  line-height: 1.25;
  box-shadow: var(--shadow-tight);
}

.flow span:first-child,
.flow span:nth-child(2),
.flow span:nth-child(3) {
  border-color: rgba(20, 95, 82, 0.32);
  color: var(--accent);
}

.workbench {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
  gap: 16px;
  align-items: start;
}

.intake,
.preview {
  display: grid;
  gap: var(--density-gap);
}

.panel {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--panel);
  padding: 16px;
  box-shadow: var(--shadow);
}

[data-design-mode="production_operation"] .panel {
  box-shadow: var(--shadow-tight);
}

[data-design-mode="evidence_readback"] .panel {
  border-color: #d5dfe7;
}

.focus-panel {
  border-color: rgba(36, 90, 166, 0.24);
}

.sticky-panel {
  position: sticky;
  top: 14px;
}

legend,
h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0;
}

label {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  color: #26333b;
  font-size: 14px;
  font-weight: 760;
}

input[type="text"],
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  padding: 12px 13px;
  background: var(--panel-soft);
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
button:focus-visible,
.dropzone:focus-visible {
  outline: 3px solid rgba(36, 90, 166, 0.22);
  border-color: var(--accent-2);
}

.project-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.project-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

button {
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  background: var(--panel);
  color: var(--ink);
  font: inherit;
  font-weight: 820;
  cursor: pointer;
}

[data-cta-mode="standard_professional"] {
  letter-spacing: 0;
}

button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

button.danger {
  border-color: rgba(163, 57, 57, 0.42);
  color: var(--danger);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.engine-runbar {
  display: grid;
  grid-template-columns: minmax(180px, 0.48fr) minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
  margin-top: 14px;
}

.dropzone {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 112px;
  place-items: center;
  margin-top: 14px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-control);
  background: linear-gradient(180deg, #fbfcfd, #f7fafb);
  color: var(--muted);
  padding: 18px;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.dropzone strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.dropzone span {
  font-size: 13px;
  line-height: 1.45;
}

.dropzone.is-dragging {
  border-color: var(--accent-2);
  background: #eef5ff;
  transform: translateY(-1px);
}

.dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-list {
  display: grid;
  gap: 7px;
  min-height: 38px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.file-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: #fbfcfd;
  padding: 8px 9px;
}

.file-row button {
  min-height: 30px;
  padding: 0 9px;
  font-size: 12px;
}

.check-grid,
.engine-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.engine-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

output {
  min-height: 44px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  padding: 9px 10px;
  color: var(--muted);
  background: var(--panel-soft);
  font-size: 13px;
  font-weight: 780;
}

output.ok {
  color: var(--accent);
  border-color: rgba(20, 95, 82, 0.28);
}

output.bad {
  color: var(--danger);
  border-color: rgba(163, 57, 57, 0.28);
}

output.warn {
  color: var(--warn);
  border-color: rgba(139, 93, 0, 0.3);
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.segmented label {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--panel-soft);
  cursor: pointer;
}

.segmented input {
  margin-right: 8px;
}

.tool-examples {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.tool-examples article {
  display: grid;
  gap: 8px;
  min-height: 154px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: var(--panel-soft);
  padding: 13px;
}

.tool-examples strong {
  color: var(--ink);
  font-size: 14px;
}

.tool-examples p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.tool-examples code {
  display: block;
  border: 1px solid #d7e0e7;
  border-radius: var(--radius-control);
  padding: 10px;
  background: #ffffff;
  color: #26333b;
  font: 12px/1.45 Consolas, "Segoe UI", monospace;
  white-space: normal;
}

pre {
  min-height: 372px;
  margin: 0;
  overflow: auto;
  border: 1px solid #26323a;
  border-radius: var(--radius-control);
  padding: 14px;
  background: #101820;
  color: #edf5f2;
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}

.message {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .nelydo-hero,
  .workbench {
    grid-template-columns: 1fr;
  }

  .hero-status {
    justify-content: flex-start;
  }

  .sticky-panel {
    position: static;
  }

  .check-grid,
  .engine-steps,
  .segmented,
  .tool-examples,
  .engine-runbar,
  .actions,
  .project-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nelydo-shell {
    width: min(100vw - 20px, 1240px);
    padding: 16px 0 28px;
  }

  .nelydo-hero {
    gap: 14px;
  }

  .hero-status {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pill,
  button {
    width: 100%;
    justify-content: center;
  }

  .flow {
    grid-template-columns: repeat(6, minmax(108px, 1fr));
  }

  .panel {
    padding: 14px;
  }

  legend,
  h2 {
    font-size: 16px;
  }

  pre {
    min-height: 260px;
    font-size: 12px;
  }
}

/* NELYDO_USER_WORK_CONSOLE_R8_TOOL_BLOCK_DOWNLOAD_MERGE */
[data-r8-marker="nelydo_user_work_console_r8_tool_block_download_merge"] .flow {
  grid-template-columns: repeat(4, minmax(148px, 1fr));
}

[data-r8-marker="nelydo_user_work_console_r8_tool_block_download_merge"] .workbench {
  grid-template-columns: minmax(0, 1fr);
}

[data-r8-marker="nelydo_user_work_console_r8_tool_block_download_merge"] .intake {
  grid-template-columns: minmax(0, 1fr);
}

.engine-summary {
  margin-top: 14px;
}

.engine-summary pre {
  min-height: 150px;
  margin-top: 14px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(8, 20, 27, 0.72);
}

[data-r8-marker="nelydo_user_work_console_r8_tool_block_download_merge"] .tool-actions.actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

[data-r8-marker="nelydo_user_work_console_r8_tool_block_download_merge"] .tool-actions button {
  min-height: 48px;
}

.tool-message {
  margin-top: 12px;
}

@media (max-width: 640px) {
  [data-r8-marker="nelydo_user_work_console_r8_tool_block_download_merge"] .flow,
  .tool-actions {
    grid-template-columns: 1fr;
  }
}

/* NELYDO_WORK_CONSOLE_HIGHEND_VISUAL_REDESIGN_V2 */
:root {
  --nelydo-v2-bg: #eef3f2;
  --nelydo-v2-shell: #10222a;
  --nelydo-v2-shell-2: #18313a;
  --nelydo-v2-paper: #ffffff;
  --nelydo-v2-paper-soft: #f7faf9;
  --nelydo-v2-ink: #132027;
  --nelydo-v2-muted: #60707b;
  --nelydo-v2-teal: #0f766e;
  --nelydo-v2-blue: #285f9f;
  --nelydo-v2-gold: #b8860b;
  --nelydo-v2-line: #d4dee5;
  --nelydo-v2-line-strong: #b9c7d1;
  --nelydo-v2-shadow-panel: 0 18px 46px rgba(15, 31, 39, 0.1);
  --nelydo-v2-shadow-command: 0 24px 60px rgba(11, 27, 36, 0.28);
  --nelydo-v2-radius: 8px;
  --nelydo-v2-gap: 14px;
}

body {
  background:
    linear-gradient(180deg, #e8efee 0%, #f6f8f7 42%, #eef3f2 100%);
}

.nelydo-shell {
  width: min(1320px, calc(100vw - 36px));
  padding: 22px 0 44px;
}

.nelydo-hero[data-highend-console-shell="required"] {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: 28px;
  align-items: stretch;
  margin: 0 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--nelydo-v2-radius);
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(16, 34, 42, 0.98), rgba(24, 49, 58, 0.98) 54%, rgba(20, 38, 44, 0.98)),
    linear-gradient(90deg, rgba(15, 118, 110, 0.26), rgba(184, 134, 11, 0.16));
  box-shadow: var(--nelydo-v2-shadow-command);
}

.nelydo-hero[data-highend-console-shell="required"]::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 100%);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.4), transparent 78%);
}

.hero-copy,
.hero-command {
  position: relative;
  z-index: 1;
}

.nelydo-hero .eyebrow {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(125, 221, 199, 0.3);
  border-radius: var(--nelydo-v2-radius);
  padding: 4px 9px;
  background: rgba(255, 255, 255, 0.08);
  color: #92efe0;
  font-size: 11px;
}

.nelydo-hero h1 {
  max-width: 800px;
  color: #f7fbf9;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.02;
}

.nelydo-hero .lead {
  max-width: 660px;
  color: #c9d8d6;
  font-size: 17px;
  line-height: 1.55;
}

.hero-command {
  display: grid;
  gap: 14px;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--nelydo-v2-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  padding: 18px;
  backdrop-filter: blur(16px);
}

.command-head,
.readiness-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.command-head span,
.readiness-title span {
  color: #d7e7e5;
  font-size: 12px;
  font-weight: 850;
}

.command-head strong,
.readiness-title strong {
  border-radius: var(--nelydo-v2-radius);
  padding: 5px 8px;
  background: rgba(146, 239, 224, 0.14);
  color: #b9fff2;
  font-size: 12px;
}

.hero-command .hero-status {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  justify-content: stretch;
}

.hero-command .pill {
  min-height: 38px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: var(--nelydo-v2-radius);
  background: rgba(255, 255, 255, 0.08);
  color: #d8e5e4;
  justify-content: center;
  white-space: normal;
}

.hero-command .pill.ok {
  border-color: rgba(146, 239, 224, 0.34);
  background: rgba(15, 118, 110, 0.18);
  color: #b9fff2;
}

.hero-command .pill.warn {
  border-color: rgba(242, 196, 94, 0.36);
  background: rgba(184, 134, 11, 0.14);
  color: #ffe2a0;
}

.hero-command .pill.bad {
  border-color: rgba(255, 140, 140, 0.34);
  background: rgba(163, 57, 57, 0.16);
  color: #ffd1d1;
}

.status-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.status-rail span {
  display: grid;
  gap: 5px;
  min-height: 68px;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--nelydo-v2-radius);
  background: rgba(9, 24, 31, 0.34);
  padding: 10px;
}

.status-rail b {
  color: #91d9cf;
  font-size: 12px;
}

.status-rail em {
  color: #f5faf9;
  font-size: 12px;
  font-style: normal;
  font-weight: 840;
}

.flow {
  gap: 10px;
  margin: 18px 0;
  border: 1px solid var(--nelydo-v2-line);
  border-radius: var(--nelydo-v2-radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 8px;
  box-shadow: var(--nelydo-v2-shadow-panel);
}

.flow span {
  position: relative;
  min-height: 56px;
  justify-content: flex-start;
  border-color: transparent;
  background: linear-gradient(180deg, #ffffff, #f7faf9);
  padding: 10px 12px 10px 36px;
  color: #34434c;
  text-align: left;
  box-shadow: none;
}

.flow span::before {
  position: absolute;
  left: 10px;
  top: 50%;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf4f2;
  color: var(--nelydo-v2-teal);
  font-size: 10px;
  font-weight: 900;
  transform: translateY(-50%);
}

.flow span:nth-child(1)::before { content: "1"; }
.flow span:nth-child(2)::before { content: "2"; }
.flow span:nth-child(3)::before { content: "3"; }
.flow span:nth-child(4)::before { content: "4"; }
.flow span:nth-child(5)::before { content: "5"; }
.flow span:nth-child(6)::before { content: "6"; }

.flow span:first-child,
.flow span:nth-child(2),
.flow span:nth-child(3) {
  border-color: transparent;
  color: var(--nelydo-v2-teal);
}

.workbench {
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: 18px;
}

.intake,
.preview {
  gap: var(--nelydo-v2-gap);
}

.panel {
  border-color: rgba(180, 196, 207, 0.82);
  border-radius: var(--nelydo-v2-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 250, 0.98));
  box-shadow: var(--nelydo-v2-shadow-panel);
}

.workflow-card {
  position: relative;
  overflow: hidden;
}

.workflow-card::before {
  content: attr(data-workflow-step);
  position: absolute;
  right: 14px;
  top: 12px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: var(--nelydo-v2-radius);
  background: #e9f4f1;
  color: var(--nelydo-v2-teal);
  font-size: 13px;
  font-weight: 900;
}

.focus-panel {
  border-color: rgba(40, 95, 159, 0.36);
  background:
    linear-gradient(180deg, #ffffff, #f6fafc);
}

.engine-panel {
  border-color: rgba(15, 118, 110, 0.3);
}

.tool-panel {
  border-color: rgba(184, 134, 11, 0.26);
}

legend,
h2 {
  padding-right: 42px;
  color: var(--nelydo-v2-ink);
  font-size: 17px;
}

.panel-note {
  margin: -6px 42px 12px 0;
  color: var(--nelydo-v2-muted);
  font-size: 13px;
  line-height: 1.5;
}

input[type="text"],
textarea {
  border-color: var(--nelydo-v2-line);
  background: #fbfdfc;
  box-shadow: inset 0 1px 0 rgba(15, 31, 39, 0.03);
}

textarea {
  min-height: 220px;
}

button {
  border-color: var(--nelydo-v2-line-strong);
  background: linear-gradient(180deg, #ffffff, #f4f8f7);
  box-shadow: 0 6px 14px rgba(17, 31, 39, 0.05);
}

button:hover:not(:disabled) {
  border-color: rgba(15, 118, 110, 0.42);
  transform: translateY(-1px);
}

button.primary {
  border-color: #0d6b63;
  background: linear-gradient(180deg, #15847b, #0d6b63);
  box-shadow: 0 14px 28px rgba(15, 118, 110, 0.24);
}

.engine-runbar {
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  border: 1px solid #d7e4e3;
  border-radius: var(--nelydo-v2-radius);
  background: #f8fbfa;
  padding: 10px;
}

.dropzone {
  min-height: 126px;
  border-color: #aec3cb;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 246, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.dropzone::after {
  content: "DROP";
  position: absolute;
  right: 12px;
  bottom: 10px;
  color: #9aaab2;
  font-size: 11px;
  font-weight: 900;
}

.dropzone strong {
  color: var(--nelydo-v2-ink);
  font-size: 15px;
}

.dropzone.is-dragging {
  border-color: var(--nelydo-v2-teal);
  background: #edf8f6;
}

.file-row {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(17, 31, 39, 0.04);
}

.engine-steps {
  grid-template-columns: repeat(5, minmax(116px, 1fr));
}

output {
  min-height: 52px;
  border-color: var(--nelydo-v2-line);
  background: #fbfdfc;
}

output.ok {
  background: #f0faf6;
}

output.warn {
  background: #fff9ea;
}

output.bad {
  background: #fff3f3;
}

.segmented {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--nelydo-v2-line);
  border-radius: var(--nelydo-v2-radius);
  background: #eef4f3;
  padding: 5px;
}

.segmented label {
  border-color: transparent;
  background: transparent;
}

.segmented label:has(input:checked) {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(17, 31, 39, 0.08);
  color: var(--nelydo-v2-teal);
}

.tool-examples article {
  min-height: 140px;
  border-color: var(--nelydo-v2-line);
  background: linear-gradient(180deg, #ffffff, #f7faf9);
  box-shadow: 0 8px 22px rgba(17, 31, 39, 0.05);
}

.tool-examples code {
  border-color: #d1dfdf;
  background: #f9fcfb;
}

.readiness-side-panel {
  align-self: start;
}

.readiness-panel {
  border-color: rgba(15, 118, 110, 0.28);
  background:
    linear-gradient(180deg, #122630, #17343b);
  color: #effaf8;
}

.readiness-panel .readiness-title strong {
  color: #fff6d8;
  background: rgba(184, 134, 11, 0.18);
}

.readiness-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px 12px;
  margin-top: 14px;
  font-size: 13px;
}

.readiness-grid span {
  color: #c7d8d6;
}

.readiness-grid b {
  color: #ffffff;
  text-align: right;
}

.sticky-panel {
  top: 16px;
}

pre {
  min-height: 398px;
  border-color: #263d44;
  background:
    linear-gradient(180deg, #0f1c23, #121f27);
  color: #eaf7f4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.actions {
  grid-template-columns: 1fr;
}

.actions button:first-child,
.actions button:nth-child(2) {
  border-color: rgba(15, 118, 110, 0.32);
  color: var(--nelydo-v2-teal);
}

.message {
  border: 1px solid var(--nelydo-v2-line);
  border-radius: var(--nelydo-v2-radius);
  background: #f7faf9;
  padding: 10px 12px;
}

@media (max-width: 980px) {
  .nelydo-hero[data-highend-console-shell="required"],
  .workbench {
    grid-template-columns: 1fr;
  }

  .nelydo-hero[data-highend-console-shell="required"] {
    padding: 28px;
  }

  .hero-command .hero-status,
  .status-rail,
  .engine-steps,
  .tool-examples,
  .engine-runbar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .nelydo-shell {
    width: calc(100vw - 18px);
    max-width: calc(100vw - 18px);
    overflow-x: hidden;
  }

  .nelydo-hero[data-highend-console-shell="required"] {
    width: 100%;
    max-width: 100%;
    padding: 18px;
  }

  .hero-copy,
  .hero-command {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .nelydo-hero h1 {
    max-width: 100%;
    font-size: 24px;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .nelydo-hero .lead {
    max-width: 100%;
    font-size: 14px;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .command-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .command-head strong {
    max-width: 100%;
  }

  .flow {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .flow span {
    min-height: 48px;
  }

  .panel-note {
    margin-right: 0;
  }

  textarea {
    min-height: 190px;
  }
}

/* NELYDO_USER_WORK_CONSOLE_R9_GUIDE_MODAL_HIEND_OPERATION_CONTRACT */
:root {
  --nelydo-v3-ink: #101d24;
  --nelydo-v3-accent: #0b8077;
  --nelydo-v3-accent-soft: #e7f6f3;
  --nelydo-v3-copper: #a77518;
  --nelydo-v3-modal: #122731;
  --nelydo-v3-modal-line: rgba(255, 255, 255, 0.16);
  --nelydo-v3-focus: 0 0 0 3px rgba(11, 128, 119, 0.22);
  --nelydo-v3-shadow: 0 22px 54px rgba(10, 29, 37, 0.16);
}

[data-r9-marker="nelydo_user_work_console_r9_guide_modal_hiend_operation_contract"] .nelydo-hero {
  border-color: rgba(139, 213, 199, 0.2);
}

[data-r9-marker="nelydo_user_work_console_r9_guide_modal_hiend_operation_contract"] .workflow-card {
  border-top-color: rgba(11, 128, 119, 0.42);
}

[data-r9-marker="nelydo_user_work_console_r9_guide_modal_hiend_operation_contract"] .workflow-card::before {
  right: 14px;
  top: 14px;
}

.guide-button {
  position: absolute;
  right: 52px;
  top: 12px;
  min-height: 30px;
  min-width: 62px;
  border-color: rgba(11, 128, 119, 0.28);
  border-radius: var(--nelydo-v2-radius);
  background: linear-gradient(180deg, #ffffff, var(--nelydo-v3-accent-soft));
  color: var(--nelydo-v3-accent);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 7px 18px rgba(11, 128, 119, 0.1);
}

.guide-button:hover:not(:disabled),
.guide-button:focus-visible {
  border-color: rgba(11, 128, 119, 0.56);
  box-shadow: var(--nelydo-v3-focus), 0 10px 24px rgba(11, 128, 119, 0.16);
}

.guide-modal {
  width: min(520px, calc(100vw - 28px));
  border: 0;
  border-radius: var(--nelydo-v2-radius);
  padding: 0;
  background: transparent;
  color: #f4fbf9;
}

.guide-modal::backdrop {
  background: rgba(8, 21, 28, 0.56);
  backdrop-filter: blur(5px);
}

.guide-modal-card {
  position: relative;
  display: grid;
  gap: 12px;
  border: 1px solid var(--nelydo-v3-modal-line);
  border-radius: var(--nelydo-v2-radius);
  background:
    linear-gradient(145deg, rgba(18, 39, 49, 0.98), rgba(21, 52, 58, 0.98)),
    var(--nelydo-v3-modal);
  box-shadow: var(--nelydo-v3-shadow);
  padding: 24px;
}

.guide-modal-card .eyebrow {
  color: #9ee9dc;
}

.guide-modal-card h2 {
  margin: 0;
  padding-right: 42px;
  color: #ffffff;
  font-size: 24px;
}

.guide-modal-card p {
  margin: 0;
  color: #d6e6e3;
  line-height: 1.6;
}

.guide-modal-card ul {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.guide-modal-card li {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--nelydo-v2-radius);
  background: rgba(255, 255, 255, 0.07);
  padding: 10px 12px 10px 30px;
  color: #f1fbf8;
  font-size: 14px;
  line-height: 1.48;
}

.guide-modal-card li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8ff0df;
}

.guide-close {
  position: absolute;
  right: 14px;
  top: 14px;
  min-width: 34px;
  min-height: 34px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: var(--nelydo-v2-radius);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
}

[data-engine-output-schema="ENGINE_OUTPUT_SCHEMA_V1"] .engine-summary {
  border-color: rgba(139, 213, 199, 0.3);
}

[data-tool-output-contract="TOOL_OUTPUT_CONTRACT_V1"] .tool-actions button:first-child {
  border-color: rgba(11, 128, 119, 0.44);
}

[data-tool-output-contract="TOOL_OUTPUT_CONTRACT_V1"] .tool-actions button:nth-child(2) {
  border-color: rgba(167, 117, 24, 0.38);
}

/* NELYDO_WORK_CONSOLE_R10_USER_SAFE_FEATURE_TERMS_SCOPE_GOALRUN */
[data-r10-marker="nelydo_work_console_r10_user_safe_feature_terms_scope"] .panel-note,
[data-r10-marker="nelydo_work_console_r10_user_safe_feature_terms_scope"] .message {
  letter-spacing: 0;
}

[data-r10-marker="nelydo_work_console_r10_user_safe_feature_terms_scope"] .tool-actions button {
  min-width: 172px;
}

/* NELYDO_WORK_CONSOLE_R11_PREMIUM_MISSION_CONTROL_DESIGN_GOALRUN */
:root {
  --mission-bg: #06110f;
  --mission-bg-2: #0d1e1b;
  --mission-surface: rgba(255, 255, 255, 0.92);
  --mission-surface-strong: #ffffff;
  --mission-ink: #0f172a;
  --mission-muted: #61726f;
  --mission-teal: #0f766e;
  --mission-teal-2: #23b59f;
  --mission-blue: #275f9d;
  --mission-gold: #b8871f;
  --mission-line: rgba(148, 163, 184, 0.28);
  --mission-line-strong: rgba(15, 118, 110, 0.34);
  --mission-shadow: 0 22px 58px rgba(10, 28, 24, 0.14);
  --mission-shadow-soft: 0 12px 28px rgba(10, 28, 24, 0.08);
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 8%, rgba(35, 181, 159, 0.18), transparent 28%),
    radial-gradient(circle at 86% 4%, rgba(39, 95, 157, 0.16), transparent 26%),
    linear-gradient(180deg, #071311 0%, #eef4f0 36%, #f7faf8 100%);
}

.mission-shell {
  width: min(1280px, calc(100vw - 36px));
  padding: 28px 0 48px;
}

.mission-hero[data-highend-console-shell="required"] {
  min-height: 328px;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(5, 18, 16, 0.98), rgba(12, 35, 31, 0.98) 48%, rgba(12, 26, 35, 0.98)),
    linear-gradient(90deg, rgba(35, 181, 159, 0.28), rgba(184, 135, 31, 0.16));
  box-shadow: 0 32px 82px rgba(0, 0, 0, 0.32);
}

.mission-hero::after {
  content: "";
  position: absolute;
  inset: 20px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.mission-hero .hero-copy {
  align-self: center;
}

.mission-hero .eyebrow {
  min-height: 30px;
  border-color: rgba(62, 230, 181, 0.36);
  background: rgba(62, 230, 181, 0.1);
  color: #9cf8e6;
}

.mission-hero h1 {
  max-width: 820px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.01;
}

.mission-hero .lead {
  max-width: 710px;
  color: #c9ddd8;
  font-size: 17px;
}

.mission-status-panel {
  align-self: stretch;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.mission-status-rail span {
  min-height: 74px;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.mission-rail {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--mission-shadow);
}

.mission-step {
  min-height: 64px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  background:
    linear-gradient(180deg, #ffffff, #f5fbf8);
}

.mission-step::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mission-teal), rgba(39, 95, 157, 0.4));
}

.workbench {
  position: relative;
}

.premium-card {
  border-color: rgba(148, 163, 184, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 250, 0.96));
  box-shadow: var(--mission-shadow-soft);
}

.premium-card:hover {
  border-color: rgba(15, 118, 110, 0.28);
  box-shadow: var(--mission-shadow);
}

.workflow-card::before {
  background:
    linear-gradient(180deg, rgba(35, 181, 159, 0.16), rgba(39, 95, 157, 0.08));
  color: var(--mission-teal);
}

.workflow-card legend {
  font-size: 18px;
}

.panel-note {
  color: var(--mission-muted);
}

.primary-action,
button.primary {
  border-color: #0a6a61;
  background:
    linear-gradient(180deg, #17a08f, #0d6b63);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 118, 110, 0.24);
}

.secondary-action {
  border-color: rgba(15, 118, 110, 0.22);
  color: #173b37;
}

.secure-dropzone {
  min-height: 138px;
  border-color: rgba(15, 118, 110, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(237, 248, 245, 0.96));
}

.secure-dropzone::after {
  content: "안전 연결";
  color: rgba(15, 118, 110, 0.7);
  letter-spacing: 0;
}

.secure-dropzone strong {
  font-size: 16px;
}

.status-panel .engine-steps output {
  border-color: rgba(15, 118, 110, 0.2);
  background:
    linear-gradient(180deg, #ffffff, #f3faf7);
}

.readiness-panel {
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 22, 28, 0.9), rgba(10, 28, 35, 0.82));
  padding: 14px;
}

.readiness-grid {
  margin-top: 12px;
}

.readiness-grid span {
  color: #bdd4cf;
}

.readiness-grid b {
  color: #9ff3e4;
}

.tool-examples article {
  background:
    linear-gradient(180deg, #ffffff, #f6fbf8);
}

.tool-examples code {
  border-color: rgba(15, 118, 110, 0.2);
  background: #f8fcfa;
  color: #183b37;
}

.tool-actions button {
  min-height: 52px;
}

.guide-modal-premium::backdrop {
  background:
    radial-gradient(circle at 50% 20%, rgba(35, 181, 159, 0.24), transparent 28%),
    rgba(2, 8, 7, 0.68);
}

.guide-modal-premium .guide-modal-card {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(6, 19, 17, 0.98), rgba(14, 38, 34, 0.98));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.guide-modal-premium .guide-modal-card li {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 980px) {
  .mission-hero[data-highend-console-shell="required"] {
    min-height: 0;
    padding: 28px;
  }

  .mission-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .mission-shell {
    width: min(100vw - 20px, 1280px);
    padding-top: 14px;
  }

  .mission-hero[data-highend-console-shell="required"] {
    padding: 22px;
  }

  .mission-hero h1 {
    font-size: 34px;
  }

  .mission-rail {
    grid-template-columns: 1fr;
  }

  .mission-step {
    min-height: 58px;
  }

  .secure-dropzone {
    min-height: 122px;
  }
}

@media (max-width: 640px) {
  .guide-button {
    position: static;
    width: 100%;
    margin: 4px 0 10px;
  }

  [data-r9-marker="nelydo_user_work_console_r9_guide_modal_hiend_operation_contract"] .workflow-card::before {
    top: 12px;
  }

  .guide-modal-card {
    padding: 20px;
  }
}

/* NELYDO_WORK_CONSOLE_R13_APPLY_DEPLOY_READBACK_GOALRUN */
[data-r13-marker="nelydo_work_console_r13_right_progress_token_panel_layout_deploy_readback"] .workbench.work-console-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  gap: 24px;
  align-items: start;
}

.work-main-column {
  min-width: 0;
}

[data-r13-marker="nelydo_work_console_r13_right_progress_token_panel_layout_deploy_readback"] .work-main-column .intake {
  grid-template-columns: minmax(0, 1fr);
}

.work-side-panel {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 16px;
  min-width: 0;
}

.side-card {
  border-radius: 8px;
  padding: 18px;
}

.side-card h2 {
  margin: 0;
  color: #092821;
  font-size: 18px;
  line-height: 1.25;
}

.side-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.side-card-head strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(15, 118, 110, 0.22);
  background: linear-gradient(180deg, #ecfbf7, #dff7ef);
  color: #0b6f64;
  font-size: 14px;
}

.progress-meter {
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.12);
}

.progress-meter span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0f766e, #2aa893);
  transition: width 180ms ease;
}

.progress-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.progress-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 8px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.72);
}

.progress-list span {
  min-width: 0;
  color: #24433d;
  font-weight: 700;
}

.progress-list b {
  color: #66746f;
  font-size: 13px;
}

.progress-list li.is-done {
  border-color: rgba(15, 118, 110, 0.34);
  background: linear-gradient(180deg, rgba(239, 253, 249, 0.98), rgba(255, 255, 255, 0.86));
}

.progress-list li.is-done b {
  color: #0b6f64;
}

.progress-list li.needs-action {
  border-color: rgba(176, 112, 36, 0.36);
  background: linear-gradient(180deg, rgba(255, 250, 235, 0.95), rgba(255, 255, 255, 0.86));
}

.token-card {
  overflow: hidden;
}

.token-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  table-layout: fixed;
  font-size: 13px;
}

.token-table th,
.token-table td {
  border-bottom: 1px solid rgba(15, 118, 110, 0.13);
  padding: 10px 8px;
  color: #24433d;
  text-align: left;
  vertical-align: top;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.token-table th {
  color: #0b6f64;
  font-weight: 800;
}

.token-table td:last-child {
  color: #0b6f64;
  font-weight: 800;
}

@media (max-width: 1279px) {
  [data-r13-marker="nelydo_work_console_r13_right_progress_token_panel_layout_deploy_readback"] .workbench.work-console-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .work-side-panel {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .work-side-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .side-card {
    padding: 16px;
  }

  .token-table {
    font-size: 12px;
  }

  .token-table th,
  .token-table td {
    padding: 9px 6px;
  }
}

/* NELYDO_WORK_CONSOLE_R14_PUBLIC_READY_GUIDE_CLEANUP_UAT_GOALRUN */
[data-r14-marker="nelydo_work_console_r14_public_ready_guide_cleanup_uat"] .workflow-card::before {
  content: none;
  display: none;
}

[data-r14-marker="nelydo_work_console_r14_public_ready_guide_cleanup_uat"] .workflow-card legend {
  padding-right: 132px;
}

[data-r14-marker="nelydo_work_console_r14_public_ready_guide_cleanup_uat"] .guide-button {
  right: 16px;
  top: 14px;
  min-height: 40px;
  min-width: 96px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff, #dff7ef);
  box-shadow: 0 10px 24px rgba(11, 128, 119, 0.16);
}

[data-r14-marker="nelydo_work_console_r14_public_ready_guide_cleanup_uat"] .guide-button:hover:not(:disabled),
[data-r14-marker="nelydo_work_console_r14_public_ready_guide_cleanup_uat"] .guide-button:focus-visible {
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  [data-r14-marker="nelydo_work_console_r14_public_ready_guide_cleanup_uat"] .workflow-card legend {
    padding-right: 0;
  }

  [data-r14-marker="nelydo_work_console_r14_public_ready_guide_cleanup_uat"] .guide-button {
    min-height: 44px;
    min-width: 100%;
  }
}

/* NELYDO_WORK_CONSOLE_R15_GUIDE_OVERLAP_FOLDER_CONNECT_GOALRUN */
[data-r15-marker="nelydo_work_console_r15_guide_overlap_folder_connect"] .workflow-card {
  padding-top: 18px;
}

[data-r15-marker="nelydo_work_console_r15_guide_overlap_folder_connect"] .workflow-card::before {
  content: none;
  display: none;
}

[data-r15-marker="nelydo_work_console_r15_guide_overlap_folder_connect"] .workflow-card > legend.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

[data-r15-marker="nelydo_work_console_r15_guide_overlap_folder_connect"] .nelydo-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  margin: 0 0 14px;
}

[data-r15-marker="nelydo_work_console_r15_guide_overlap_folder_connect"] .nelydo-section-header h2 {
  margin: 0;
  color: #092821;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

[data-r15-marker="nelydo_work_console_r15_guide_overlap_folder_connect"] .nelydo-section-header .guide-button {
  position: static;
  flex: 0 0 auto;
  min-width: 104px;
  min-height: 44px;
  width: auto;
  margin: 0;
  transform: none;
}

[data-r15-marker="nelydo_work_console_r15_guide_overlap_folder_connect"] .nelydo-section-header .guide-button:hover:not(:disabled),
[data-r15-marker="nelydo_work_console_r15_guide_overlap_folder_connect"] .nelydo-section-header .guide-button:focus-visible {
  transform: translateY(-1px);
}

.file-list .file-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 38px;
  margin-bottom: 8px;
  border-radius: 8px;
  padding: 9px 10px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  background: rgba(255, 255, 255, 0.76);
  color: #24433d;
  font-weight: 800;
}

.file-list .file-summary small {
  color: #66746f;
  font-weight: 700;
}

.file-list.is-connected .file-summary {
  border-color: rgba(15, 118, 110, 0.34);
  background: linear-gradient(180deg, rgba(239, 253, 249, 0.98), rgba(255, 255, 255, 0.86));
}

.file-list.needs-action .file-summary {
  border-color: rgba(176, 112, 36, 0.38);
  background: linear-gradient(180deg, rgba(255, 250, 235, 0.96), rgba(255, 255, 255, 0.88));
}

@media (max-width: 640px) {
  [data-r15-marker="nelydo_work_console_r15_guide_overlap_folder_connect"] .nelydo-section-header {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  [data-r15-marker="nelydo_work_console_r15_guide_overlap_folder_connect"] .nelydo-section-header .guide-button {
    width: 100%;
    min-width: 0;
  }
}

/* NELYDO_WORK_CONSOLE_R16_PANEL_VISUAL_GUIDE_CHROME_PREFLIGHT_GOALRUN */
[data-r16-marker="nelydo_work_console_r16_panel_visual_guide_chrome_preflight"] .status-guide-trigger {
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

[data-r16-marker="nelydo_work_console_r16_panel_visual_guide_chrome_preflight"] .status-guide-trigger:hover,
[data-r16-marker="nelydo_work_console_r16_panel_visual_guide_chrome_preflight"] .status-guide-trigger:focus-visible {
  border-color: rgba(226, 67, 67, 0.72);
  box-shadow: 0 0 0 3px rgba(226, 67, 67, 0.16), 0 12px 26px rgba(9, 38, 32, 0.16);
  transform: translateY(-1px);
  outline: none;
}

[data-r16-marker="nelydo_work_console_r16_panel_visual_guide_chrome_preflight"] .command-head .status-guide-trigger {
  border: 1px solid rgba(226, 67, 67, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
}

[data-r16-marker="nelydo_work_console_r16_panel_visual_guide_chrome_preflight"] .hero-status .status-guide-trigger::after,
[data-r16-marker="nelydo_work_console_r16_panel_visual_guide_chrome_preflight"] .status-rail .status-guide-trigger::after,
[data-r16-marker="nelydo_work_console_r16_panel_visual_guide_chrome_preflight"] .command-head .status-guide-trigger::after {
  content: "";
  display: none;
}

[data-r16-marker="nelydo_work_console_r16_panel_visual_guide_chrome_preflight"] .guide-modal {
  width: min(760px, calc(100vw - 28px));
}

.guide-visual-shell {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.guide-visual-shell[hidden] {
  display: none;
}

.guide-capture-frame {
  display: grid;
  gap: 10px;
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 250, 247, 0.96));
  color: #092821;
}

.guide-capture-title {
  margin: 0;
  color: #0b6f64;
  font-size: 13px;
  font-weight: 900;
}

.guide-capture-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.guide-redbox {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 2px solid #e24343;
  border-radius: 6px;
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.92);
  color: #092821;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 0 3px rgba(226, 67, 67, 0.12);
}

.guide-redbox small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  margin-right: 6px;
  border-radius: 999px;
  background: #e24343;
  color: #fff;
  font-size: 11px;
}

.guide-easy-list {
  display: grid;
  gap: 8px;
}

.guide-easy-item {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: #edfdf8;
  font-size: 14px;
  line-height: 1.5;
}

.guide-easy-item b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  border-radius: 999px;
  background: #e24343;
  color: #fff;
  font-size: 12px;
}

@media (max-width: 640px) {
  [data-r16-marker="nelydo_work_console_r16_panel_visual_guide_chrome_preflight"] .status-rail .status-guide-trigger {
    min-height: 54px;
  }

  .guide-capture-row {
    flex-direction: column;
    align-items: stretch;
  }

  .guide-redbox {
    width: 100%;
  }
}

/* NELYDO_WORK_CONSOLE_R17_REAL_PROJECT_CONNECTOR_EVIDENCE_GOALRUN */
.local-connector-panel {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(244, 253, 250, 0.92), rgba(255, 255, 255, 0.78));
}

.local-connector-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.local-connector-head strong {
  display: block;
  color: #092821;
  font-size: 15px;
}

.local-connector-head p {
  margin: 4px 0 0;
  color: #51655f;
  font-size: 13px;
  line-height: 1.45;
}

.connector-badge {
  flex: 0 0 auto;
  min-width: 96px;
  border: 1px solid rgba(176, 112, 36, 0.28);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 250, 235, 0.92);
  color: #8a5a16;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.connector-badge.is-connected {
  border-color: rgba(15, 118, 110, 0.36);
  background: rgba(229, 251, 244, 0.94);
  color: #0b6f64;
}

.connector-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.connector-actions button {
  min-height: 42px;
}

.connector-output {
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: #24433d;
  font-size: 13px;
  line-height: 1.5;
  white-space: pre-wrap;
}

.connector-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.connector-summary[hidden] {
  display: none;
}

.connector-summary span {
  display: grid;
  gap: 3px;
  min-height: 54px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 8px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.72);
  color: #66746f;
  font-size: 12px;
  font-weight: 800;
}

.connector-summary b {
  color: #092821;
  font-size: 13px;
}

/* NELYDO_WORK_CONSOLE_R35_R2_CONSENT_DRAG_VERIFY_AND_CONSOLE_SIMPLIFY_FIX */
.advanced-detail-shell {
  margin-top: 10px;
}

.advanced-detail-shell > summary {
  cursor: pointer;
  list-style: none;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  padding: 11px 13px;
  background: rgba(244, 253, 250, 0.88);
  color: #24433d;
  font-size: 13px;
  font-weight: 900;
}

.advanced-detail-shell > summary::-webkit-details-marker {
  display: none;
}

.advanced-detail-shell > summary::after {
  content: "보기";
  float: right;
  color: #0b6f64;
  font-size: 12px;
}

.advanced-detail-shell[open] > summary::after {
  content: "접기";
}

/* NELYDO_WORK_CONSOLE_R36_R2_CONNECTOR_PERSIST_DISCONNECT_SIMPLE_UPLOAD */
.dropzone-actions,
.advanced-upload-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.dropzone-actions button {
  min-width: 148px;
  min-height: 42px;
}

.advanced-upload-actions {
  justify-content: flex-start;
  margin-bottom: 12px;
}

.block1-connect-status {
  position: relative;
  padding-right: 150px;
}

.block1-connect-status .disconnect-action,
.block1-connect-status .restore-action {
  position: absolute;
  right: 12px;
  top: 50%;
  min-width: 112px;
  min-height: 36px;
  transform: translateY(-50%);
}

.block1-connect-status .restore-action {
  right: 132px;
}

@media (max-width: 760px) {
  .local-connector-head {
    flex-direction: column;
  }

  .connector-badge {
    width: 100%;
  }

  .connector-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .block1-connect-status {
    padding-right: 12px;
  }

  .block1-connect-status .disconnect-action,
  .block1-connect-status .restore-action {
    position: static;
    width: 100%;
    margin-top: 10px;
    transform: none;
  }
}

/* NELYDO_WORK_CONSOLE_R18_COMMUNITY_SPACE_HELP_MARK_CLEANUP_GOALRUN */
.community-space {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  pointer-events: none;
}

.community-minimized {
  display: inline-grid;
  gap: 2px;
  min-width: 156px;
  min-height: 58px;
  border: 1px solid rgba(15, 118, 110, 0.34);
  border-radius: 999px;
  padding: 10px 18px;
  background:
    linear-gradient(135deg, rgba(9, 40, 33, 0.96), rgba(13, 89, 82, 0.96));
  color: #f4fffb;
  box-shadow: 0 18px 44px rgba(9, 38, 32, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  cursor: pointer;
  pointer-events: auto;
  text-align: left;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.community-minimized:hover,
.community-minimized:focus-visible {
  border-color: rgba(255, 255, 255, 0.56);
  box-shadow: 0 22px 54px rgba(9, 38, 32, 0.34), 0 0 0 4px rgba(15, 118, 110, 0.18);
  outline: none;
  transform: translateY(-2px);
}

.community-minimized span {
  font-size: 14px;
  font-weight: 900;
}

.community-minimized b {
  color: #bdeee2;
  font-size: 12px;
  font-weight: 800;
}

.community-dialog {
  position: fixed;
  right: 24px;
  bottom: 96px;
  left: auto;
  top: auto;
  width: min(500px, calc(100vw - 40px));
  max-height: min(760px, calc(100vh - 122px));
  border: 1px solid rgba(15, 118, 110, 0.24);
  border-radius: 8px;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 248, 0.98));
  color: #092821;
  box-shadow: 0 28px 70px rgba(7, 24, 31, 0.32);
  overflow: hidden;
  pointer-events: auto;
}

.community-dialog::backdrop {
  background: rgba(5, 18, 24, 0.24);
}

.community-card {
  display: grid;
  gap: 14px;
  max-height: min(760px, calc(100vh - 122px));
  padding: 20px;
  overflow: auto;
}

.community-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.community-head h2 {
  margin: 4px 0 0;
  color: #092821;
  font-size: 22px;
  letter-spacing: 0;
}

.community-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 999px;
  background: #ffffff;
  color: #092821;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.community-safe-note {
  margin: 0;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(229, 251, 244, 0.72);
  color: #28554e;
  font-size: 13px;
  line-height: 1.5;
}

.community-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  border-radius: 8px;
  padding: 6px;
  background: rgba(15, 118, 110, 0.08);
}

.community-tabs button {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #48615b;
  cursor: pointer;
  font-weight: 900;
}

.community-tabs button[aria-selected="true"] {
  border-color: rgba(15, 118, 110, 0.22);
  background: #ffffff;
  color: #0b6f64;
  box-shadow: 0 8px 18px rgba(9, 38, 32, 0.08);
}

.community-pane {
  display: grid;
  gap: 12px;
}

.community-pane[hidden] {
  display: none;
}

.community-pane label {
  display: grid;
  gap: 7px;
  color: #203d38;
  font-size: 14px;
  font-weight: 900;
}

.community-pane label span {
  color: #778984;
  font-size: 12px;
  font-weight: 800;
}

.community-pane textarea,
.community-pane input[type="text"],
.community-pane input[type="file"] {
  width: 100%;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 8px;
  background: #ffffff;
  color: #092821;
  font: inherit;
}

.community-pane textarea,
.community-pane input[type="text"] {
  padding: 12px;
}

.community-pane input[type="file"] {
  padding: 10px;
}

.community-file-list {
  display: grid;
  gap: 8px;
  min-height: 42px;
  border: 1px dashed rgba(15, 118, 110, 0.28);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.78);
  color: #536963;
  font-size: 13px;
}

.community-file-list .is-warning {
  color: #9a5f00;
  font-weight: 900;
}

.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.community-output {
  display: block;
  min-height: 52px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  padding: 12px;
  background: #f8fcfb;
  color: #294842;
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-wrap;
}

@media (max-width: 760px) {
  .community-space {
    right: 14px;
    bottom: 14px;
  }

  .community-minimized {
    min-width: 136px;
    min-height: 54px;
    padding: 9px 14px;
  }

  .community-dialog {
    right: 14px;
    bottom: 82px;
    width: calc(100vw - 28px);
    max-height: calc(100vh - 104px);
  }

  .community-card {
    max-height: calc(100vh - 104px);
    padding: 16px;
  }

  .community-actions {
    display: grid;
  }
}

/* NELYDO_WORK_CONSOLE_R21_VISUAL_BACKEND_ALIGNMENT_AND_PROJECT_WIDE_ENHANCEMENT_GOALRUN */
:root {
  --r21-bg-top: #071211;
  --r21-bg-mid: #12312c;
  --r21-bg-soft: #eaf3ef;
  --r21-bg-floor: #f6faf8;
  --r21-surface: rgba(255, 255, 255, 0.92);
  --r21-surface-strong: #ffffff;
  --r21-surface-tint: #f1faf6;
  --r21-line: rgba(31, 91, 81, 0.18);
  --r21-line-strong: rgba(15, 118, 110, 0.34);
  --r21-ink: #092821;
  --r21-muted: #55706a;
  --r21-teal: #0f766e;
  --r21-blue: #285f9f;
  --r21-gold: #b8871f;
  --r21-shadow-shell: 0 30px 84px rgba(6, 24, 22, 0.18);
  --r21-shadow-card: 0 16px 42px rgba(8, 35, 31, 0.1);
}

body {
  background:
    linear-gradient(180deg, var(--r21-bg-top) 0%, var(--r21-bg-mid) 26%, var(--r21-bg-soft) 52%, var(--r21-bg-floor) 100%);
  color: var(--r21-ink);
}

[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"].mission-shell {
  position: relative;
  isolation: isolate;
  width: min(1340px, calc(100vw - 36px));
  padding: 28px 0 52px;
}

[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"].mission-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 268px;
  right: -20px;
  bottom: 22px;
  left: -20px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.86) 12%, rgba(241, 250, 246, 0.92) 100%);
  box-shadow: var(--r21-shadow-shell);
}

[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .mission-hero[data-highend-console-shell="required"] {
  margin-bottom: 0;
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(5, 18, 16, 0.99), rgba(11, 37, 33, 0.99) 50%, rgba(12, 29, 39, 0.99)),
    linear-gradient(90deg, rgba(35, 181, 159, 0.3), rgba(40, 95, 159, 0.18));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .hero-command {
  border-color: rgba(183, 236, 223, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
}

[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .hero-command .hero-status {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .hero-command .pill {
  min-height: 40px;
}

[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .mission-rail {
  margin: 18px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(240, 250, 246, 0.88));
  box-shadow: 0 18px 44px rgba(8, 35, 31, 0.12);
}

[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .workbench.work-console-layout {
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(241, 250, 246, 0.78));
  box-shadow: 0 20px 54px rgba(8, 35, 31, 0.1);
}

[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .premium-card,
[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .side-card,
[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .workflow-card {
  border-color: var(--r21-line);
  background:
    linear-gradient(180deg, var(--r21-surface-strong), rgba(247, 252, 249, 0.96));
  box-shadow: var(--r21-shadow-card);
}

[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .workflow-card {
  overflow: hidden;
}

[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .workflow-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--r21-teal), rgba(40, 95, 159, 0.78), rgba(184, 135, 31, 0.52));
}

[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .nelydo-section-header h2,
[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .side-card h2 {
  color: var(--r21-ink);
}

[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .panel-note,
[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .progress-list b,
[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .community-output {
  color: var(--r21-muted);
}

[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .secure-dropzone,
[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .local-connector-panel,
[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .connector-output,
[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .community-file-list {
  border-color: var(--r21-line-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 250, 245, 0.94));
}

[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .progress-list li,
[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .connector-summary span {
  border-color: rgba(15, 118, 110, 0.18);
  background: rgba(255, 255, 255, 0.78);
}

[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .progress-list li.is-done {
  border-color: var(--r21-line-strong);
  background:
    linear-gradient(180deg, rgba(232, 252, 246, 0.98), rgba(255, 255, 255, 0.9));
}

[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .primary-action,
[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] button.primary {
  background:
    linear-gradient(180deg, #19a391, #0c6f65);
  box-shadow: 0 16px 36px rgba(15, 118, 110, 0.26);
}

[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .guide-button {
  border-color: rgba(15, 118, 110, 0.26);
  background:
    linear-gradient(180deg, #ffffff, #dff7ef);
  color: #0b6f64;
}

[data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .community-minimized {
  background:
    linear-gradient(135deg, rgba(8, 36, 31, 0.98), rgba(12, 111, 101, 0.98));
}

@media (min-width: 1280px) {
  [data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .hero-command .hero-status {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1279px) {
  [data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"].mission-shell::before {
    top: 340px;
    right: -12px;
    left: -12px;
  }

  [data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .workbench.work-console-layout {
    padding: 18px;
  }
}

@media (max-width: 760px) {
  [data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"].mission-shell {
    width: min(100vw - 20px, 1340px);
    padding-top: 14px;
  }

  [data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"].mission-shell::before {
    top: 420px;
    right: -6px;
    bottom: 12px;
    left: -6px;
  }

  [data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .mission-hero[data-highend-console-shell="required"],
  [data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .workbench.work-console-layout {
    padding: 16px;
  }

  [data-r21-marker="nelydo_work_console_r21_visual_backend_alignment_project_wide"] .hero-command .hero-status {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* NELYDO_WORK_CONSOLE_R22_VISUAL_EVIDENCE_CLOSEOUT_AND_UI_POLISH_GOALRUN */
[data-r22-marker="nelydo_work_console_r22_visual_evidence_closeout_ui_polish"].mission-shell::before {
  z-index: 0;
  top: 86px;
  bottom: 18px;
  background:
    linear-gradient(180deg, rgba(10, 36, 32, 0.58) 0%, rgba(17, 54, 48, 0.32) 18%, rgba(235, 246, 241, 0.92) 38%, rgba(247, 251, 249, 0.98) 100%);
}

[data-r22-marker="nelydo_work_console_r22_visual_evidence_closeout_ui_polish"] .mission-hero[data-highend-console-shell="required"] {
  position: relative;
  z-index: 1;
  margin-bottom: -34px;
  padding-bottom: 72px;
}

[data-r22-marker="nelydo_work_console_r22_visual_evidence_closeout_ui_polish"] .mission-hero[data-highend-console-shell="required"]::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 118px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 18, 16, 0), rgba(11, 45, 39, 0.42) 46%, rgba(235, 246, 241, 0.2));
}

[data-r22-marker="nelydo_work_console_r22_visual_evidence_closeout_ui_polish"] .mission-rail {
  position: relative;
  z-index: 2;
  margin-top: 0;
  border-color: rgba(199, 243, 231, 0.42);
  background:
    linear-gradient(180deg, rgba(251, 255, 253, 0.95), rgba(232, 249, 243, 0.9));
  backdrop-filter: blur(14px);
}

[data-r22-marker="nelydo_work_console_r22_visual_evidence_closeout_ui_polish"] .mission-step {
  border-color: rgba(15, 118, 110, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 250, 246, 0.94));
}

[data-r22-marker="nelydo_work_console_r22_visual_evidence_closeout_ui_polish"] .workbench.work-console-layout {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  border-color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(240, 250, 246, 0.92), rgba(255, 255, 255, 0.88) 22%, rgba(246, 251, 249, 0.96) 100%);
}

[data-r22-marker="nelydo_work_console_r22_visual_evidence_closeout_ui_polish"] .work-main-column,
[data-r22-marker="nelydo_work_console_r22_visual_evidence_closeout_ui_polish"] .work-side-panel {
  position: relative;
  z-index: 1;
}

[data-r22-marker="nelydo_work_console_r22_visual_evidence_closeout_ui_polish"] .workflow-card,
[data-r22-marker="nelydo_work_console_r22_visual_evidence_closeout_ui_polish"] .side-card {
  box-shadow: 0 18px 44px rgba(8, 35, 31, 0.09);
}

[data-r22-marker="nelydo_work_console_r22_visual_evidence_closeout_ui_polish"] .workflow-card:first-of-type,
[data-r22-marker="nelydo_work_console_r22_visual_evidence_closeout_ui_polish"] .progress-card {
  border-top-color: rgba(15, 118, 110, 0.3);
}

@media (max-width: 1279px) {
  [data-r22-marker="nelydo_work_console_r22_visual_evidence_closeout_ui_polish"].mission-shell::before {
    top: 122px;
  }

  [data-r22-marker="nelydo_work_console_r22_visual_evidence_closeout_ui_polish"] .mission-hero[data-highend-console-shell="required"] {
    margin-bottom: -24px;
    padding-bottom: 56px;
  }
}

@media (max-width: 760px) {
  [data-r22-marker="nelydo_work_console_r22_visual_evidence_closeout_ui_polish"].mission-shell::before {
    top: 112px;
  }

  [data-r22-marker="nelydo_work_console_r22_visual_evidence_closeout_ui_polish"] .mission-hero[data-highend-console-shell="required"] {
    margin-bottom: -18px;
    padding-bottom: 42px;
  }

  [data-r22-marker="nelydo_work_console_r22_visual_evidence_closeout_ui_polish"] .mission-rail {
    gap: 8px;
  }

  [data-r22-marker="nelydo_work_console_r22_visual_evidence_closeout_ui_polish"] .workbench.work-console-layout {
    margin-top: 12px;
  }
}

/* NELYDO_WORK_CONSOLE_R23_PREMIUM_SAAS_READY_VISUAL_ACCEPTANCE_GOALRUN */
[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"].mission-shell {
  background:
    linear-gradient(180deg, rgba(6, 27, 24, 0.92) 0%, rgba(16, 55, 48, 0.68) 24%, rgba(225, 242, 235, 0.94) 46%, rgba(244, 250, 247, 0.98) 100%);
}

[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"].mission-shell::before {
  top: 72px;
  bottom: 16px;
  border-color: rgba(184, 231, 219, 0.24);
  background:
    linear-gradient(180deg, rgba(11, 44, 38, 0.66) 0%, rgba(18, 69, 60, 0.36) 24%, rgba(222, 241, 235, 0.93) 43%, rgba(244, 250, 247, 0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 28px 80px rgba(5, 25, 22, 0.16);
}

[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .mission-hero[data-highend-console-shell="required"] {
  margin-bottom: -46px;
  padding-bottom: 88px;
  border-color: rgba(190, 237, 224, 0.2);
  background:
    linear-gradient(135deg, rgba(5, 21, 18, 0.99), rgba(8, 46, 39, 0.98) 52%, rgba(10, 31, 39, 0.98)),
    linear-gradient(90deg, rgba(22, 163, 143, 0.2), rgba(35, 95, 150, 0.16));
  box-shadow: 0 30px 90px rgba(4, 24, 21, 0.34);
}

[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .mission-hero[data-highend-console-shell="required"]::before {
  height: 150px;
  background:
    linear-gradient(180deg, rgba(5, 18, 16, 0), rgba(12, 52, 45, 0.46) 42%, rgba(224, 241, 235, 0.34) 100%);
}

[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .mission-rail {
  margin-top: 0;
  border-color: rgba(179, 229, 215, 0.62);
  background:
    linear-gradient(180deg, rgba(246, 253, 250, 0.92), rgba(224, 244, 237, 0.88));
  box-shadow: 0 18px 46px rgba(8, 42, 36, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .mission-step {
  border-color: rgba(25, 132, 120, 0.18);
  background:
    linear-gradient(180deg, rgba(241, 251, 246, 0.9), rgba(222, 241, 234, 0.88));
}

[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .workbench.work-console-layout {
  margin-top: 6px;
  border-color: rgba(183, 225, 215, 0.5);
  background:
    linear-gradient(180deg, rgba(222, 240, 233, 0.96) 0%, rgba(230, 244, 238, 0.96) 20%, rgba(239, 247, 243, 0.98) 100%);
  box-shadow: 0 24px 70px rgba(8, 35, 31, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .workflow-card,
[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .side-card {
  border-color: rgba(130, 189, 175, 0.28);
  background:
    linear-gradient(180deg, rgba(241, 250, 245, 0.96), rgba(219, 239, 232, 0.94));
  box-shadow: 0 18px 48px rgba(8, 35, 31, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .workflow-card::after {
  background:
    linear-gradient(90deg, rgba(13, 148, 136, 0.9), rgba(37, 99, 145, 0.62), rgba(181, 132, 35, 0.5));
}

[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .workflow-card:first-of-type,
[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .progress-card {
  border-top-color: rgba(15, 118, 110, 0.34);
}

[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .secure-dropzone,
[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .local-connector-panel,
[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .connector-output,
[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .community-file-list,
[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] input,
[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] textarea {
  border-color: rgba(109, 173, 160, 0.3);
  background:
    linear-gradient(180deg, rgba(242, 250, 246, 0.96), rgba(221, 239, 232, 0.92));
}

[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .side-card {
  backdrop-filter: blur(10px);
}

[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .progress-list li,
[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .connector-summary span,
[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .tool-preview,
[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .download-box {
  border-color: rgba(15, 118, 110, 0.18);
  background:
    linear-gradient(180deg, rgba(239, 249, 244, 0.92), rgba(213, 236, 228, 0.88));
}

[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .guide-button,
[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] button.primary,
[data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .primary-action {
  box-shadow: 0 16px 38px rgba(15, 118, 110, 0.2);
}

@media (max-width: 1279px) {
  [data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"].mission-shell::before {
    top: 104px;
  }

  [data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .mission-hero[data-highend-console-shell="required"] {
    margin-bottom: -30px;
    padding-bottom: 62px;
  }
}

@media (max-width: 760px) {
  [data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"].mission-shell {
    background:
      linear-gradient(180deg, rgba(8, 36, 31, 0.94) 0%, rgba(30, 91, 79, 0.62) 30%, rgba(231, 244, 239, 0.96) 52%, rgba(246, 250, 248, 1) 100%);
  }

  [data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"].mission-shell::before {
    top: 96px;
  }

  [data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .mission-hero[data-highend-console-shell="required"] {
    margin-bottom: -20px;
    padding-bottom: 46px;
  }

  [data-r23-marker="nelydo_work_console_r23_premium_saas_ready_visual_acceptance"] .workbench.work-console-layout {
    margin-top: 10px;
    background:
      linear-gradient(180deg, rgba(229, 243, 237, 0.96), rgba(247, 251, 249, 0.98));
  }
}

/* NELYDO_WORK_CONSOLE_R24_R2_COMMERCIAL_SAAS_AND_GUIDE_UI_FIX_GOALRUN */
[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .status-guide-trigger:hover,
[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .status-guide-trigger:focus-visible {
  border-color: rgba(15, 118, 110, 0.5);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14), 0 12px 26px rgba(9, 38, 32, 0.16);
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .command-head .status-guide-trigger {
  border-color: rgba(15, 118, 110, 0.28);
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .guide-modal {
  width: min(760px, calc(100vw - 28px));
  color: #08211d;
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .guide-modal::backdrop {
  background: rgba(5, 18, 16, 0.58);
  backdrop-filter: blur(7px);
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .guide-modal-card {
  border-color: rgba(15, 118, 110, 0.24);
  background:
    linear-gradient(180deg, rgba(250, 255, 252, 0.99), rgba(231, 244, 238, 0.98));
  color: #08211d;
  box-shadow: 0 30px 80px rgba(5, 18, 16, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .guide-modal-card .eyebrow {
  color: #0b6f64;
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .guide-modal-card h2 {
  color: #08211d;
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .guide-modal-card p {
  color: #31514a;
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .guide-modal-card li {
  border-color: rgba(15, 118, 110, 0.16);
  background: rgba(255, 255, 255, 0.76);
  color: #173a34;
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .guide-modal-card li::before {
  background: #0f766e;
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .guide-close {
  border-color: rgba(15, 118, 110, 0.28);
  background: #ffffff;
  color: #08211d;
  box-shadow: 0 8px 20px rgba(8, 35, 31, 0.12);
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .guide-close:hover,
[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .guide-close:focus-visible {
  border-color: rgba(15, 118, 110, 0.48);
  color: #0b6f64;
  outline: none;
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .guide-visual-shell {
  border-color: rgba(15, 118, 110, 0.16);
  background: rgba(225, 243, 237, 0.7);
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .guide-capture-frame {
  border: 1px solid rgba(15, 118, 110, 0.14);
  background:
    linear-gradient(180deg, rgba(248, 253, 250, 0.98), rgba(229, 243, 237, 0.94));
  color: #08211d;
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .guide-redbox {
  border: 1px solid rgba(15, 118, 110, 0.28);
  background: rgba(255, 255, 255, 0.92);
  color: #08211d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .guide-redbox small,
[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .guide-easy-item b {
  background: #0f766e;
  color: #ffffff;
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .guide-easy-item {
  color: #24433d;
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .engine-panel .readiness-panel {
  border-color: rgba(15, 118, 110, 0.22);
  background:
    linear-gradient(180deg, rgba(244, 252, 248, 0.98), rgba(222, 240, 233, 0.95));
  color: #08211d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 14px 34px rgba(8, 35, 31, 0.08);
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .engine-panel .readiness-title {
  color: #08211d;
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .engine-panel .readiness-title strong {
  border: 1px solid rgba(184, 134, 11, 0.22);
  background: rgba(255, 247, 220, 0.9);
  color: #7a5314;
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .engine-panel .readiness-grid span {
  color: #4d675f;
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .engine-panel .readiness-grid b {
  color: #0b6f64;
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .engine-panel .readiness-panel pre {
  min-height: 136px;
  border-color: rgba(15, 118, 110, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(235, 247, 242, 0.9));
  color: #173a34;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .tool-actions.actions {
  gap: 12px;
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .tool-actions button {
  min-height: 54px;
  font-weight: 900;
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .tool-actions button:not(:disabled) {
  border-color: rgba(15, 118, 110, 0.42);
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .tool-actions button:disabled {
  opacity: 1;
  border-color: rgba(15, 118, 110, 0.24);
  background:
    linear-gradient(180deg, rgba(223, 241, 234, 0.98), rgba(203, 228, 219, 0.98));
  color: #36544d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
  cursor: not-allowed;
}

[data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .tool-message {
  border: 1px solid rgba(176, 112, 36, 0.22);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 249, 230, 0.9);
  color: #6d4b14;
  font-weight: 800;
}

@media (max-width: 760px) {
  [data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .guide-modal-card {
    max-height: calc(100vh - 32px);
    overflow: auto;
    padding: 18px;
  }

  [data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .guide-modal-card h2 {
    font-size: 21px;
  }

  [data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .tool-actions.actions {
    grid-template-columns: 1fr;
  }

  [data-r24-r2-marker="nelydo_work_console_r24_r2_commercial_saas_guide_ui_fix"] .tool-actions button {
    width: 100%;
  }
}

/* NELYDO_WORK_CONSOLE_R27_R2_BLOCK1_CONNECT_SAFE_APPLY_MAX_WIDE_DEEP_GOALRUN */
[data-r27-r2-marker="nelydo_work_console_r27_r2_block1_connect_safe_apply_max"] [data-workflow-step="1"] {
  border-color: rgba(15, 118, 110, 0.24);
}

.block1-connect-status,
.block1-fallback-note,
.connector-manual-note {
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(243, 252, 249, 0.96), rgba(255, 255, 255, 0.9));
  color: #284841;
}

.block1-connect-status {
  display: grid;
  gap: 5px;
  margin: 12px 0 10px;
  padding: 12px 14px;
}

.block1-connect-status strong {
  color: #082f2a;
  font-size: 14px;
  font-weight: 900;
}

.block1-connect-status span,
.block1-fallback-note,
.connector-manual-note {
  font-size: 13px;
  line-height: 1.55;
}

.block1-connect-status.is-ok {
  border-color: rgba(15, 118, 110, 0.34);
  background: linear-gradient(180deg, rgba(232, 251, 245, 0.98), rgba(255, 255, 255, 0.92));
}

.block1-connect-status.is-warn {
  border-color: rgba(176, 112, 36, 0.34);
  background: linear-gradient(180deg, rgba(255, 250, 235, 0.98), rgba(255, 255, 255, 0.92));
}

.block1-connect-status.is-checking {
  border-color: rgba(37, 99, 235, 0.28);
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.98), rgba(255, 255, 255, 0.9));
}

.block1-fallback-note {
  margin-top: 10px;
  padding: 10px 12px;
  font-weight: 760;
}

.connector-manual-note {
  margin: 0;
  padding: 10px 12px;
  font-weight: 760;
}

.connector-badge.is-checking {
  border-color: rgba(37, 99, 235, 0.32);
  background: rgba(239, 246, 255, 0.95);
  color: #1d4ed8;
}

.connector-badge.is-ready {
  border-color: rgba(15, 118, 110, 0.28);
  background: rgba(236, 253, 245, 0.94);
  color: #0f766e;
}

.connector-badge.is-error {
  border-color: rgba(176, 112, 36, 0.34);
  background: rgba(255, 250, 235, 0.95);
  color: #8a5a16;
}

@media (max-width: 640px) {
  .block1-connect-status,
  .block1-fallback-note,
  .connector-manual-note {
    padding: 10px;
  }
}

/* NELYDO_WORK_CONSOLE_R29_BLOCK1_SIMPLE_DRAG_UPLOAD_USER_CONFIRMED_AUTO_CONNECT_GOALRUN */
[data-r29-marker="nelydo_work_console_r29_block1_simple_drag_upload_user_confirmed_auto_connect"] .block1-connect-status.is-ok {
  border-color: rgba(16, 185, 129, 0.42);
  box-shadow: 0 16px 34px rgba(16, 185, 129, 0.12);
}

[data-r29-marker="nelydo_work_console_r29_block1_simple_drag_upload_user_confirmed_auto_connect"] .secure-dropzone.is-dragging {
  border-color: rgba(20, 184, 166, 0.72);
  box-shadow: 0 22px 45px rgba(20, 184, 166, 0.2);
}

/* NELYDO_WORK_CONSOLE_R29_R3_FOLDER_DRAG_REAL_AUTO_CONNECT_FIX_GOALRUN */
[data-r29-r3-marker="nelydo_work_console_r29_r3_folder_drag_real_auto_connect_fix"] .project-actions {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

[data-r29-r3-marker="nelydo_work_console_r29_r3_folder_drag_real_auto_connect_fix"] .project-actions button {
  min-height: 46px;
  white-space: normal;
}

[data-r29-r3-marker="nelydo_work_console_r29_r3_folder_drag_real_auto_connect_fix"] .project-input-bank input {
  display: none;
}

[data-r29-r3-marker="nelydo_work_console_r29_r3_folder_drag_real_auto_connect_fix"] .secure-dropzone span {
  max-width: 88%;
}

@media (max-width: 980px) {
  [data-r29-r3-marker="nelydo_work_console_r29_r3_folder_drag_real_auto_connect_fix"] .project-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  [data-r29-r3-marker="nelydo_work_console_r29_r3_folder_drag_real_auto_connect_fix"] .project-actions {
    grid-template-columns: 1fr;
  }
}

/* NELYDO_WORK_CONSOLE_R29_R4_FOLDER_UPLOAD_REAL_FIX_GOALRUN */
[data-r29-r4-marker="nelydo_work_console_r29_r4_folder_upload_real_fix"] .block1-fallback-note {
  color: #285047;
}

[data-r29-r4-marker="nelydo_work_console_r29_r4_folder_upload_real_fix"] .block1-connect-status.is-ok span {
  color: #0d5f55;
  font-weight: 820;
}

/* NELYDO_WORK_CONSOLE_R29_R5_USER_BROWSER_FOLDER_VERIFY_CLOSEOUT_GOALRUN */
[data-r29-r5-marker="nelydo_work_console_r29_r5_user_browser_folder_verify_closeout"] .folder-verify-panel {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(241, 253, 249, 0.96), rgba(255, 255, 255, 0.92));
  color: #123c35;
  box-shadow: 0 16px 34px rgba(15, 118, 110, 0.08);
}

[data-r29-r5-marker="nelydo_work_console_r29_r5_user_browser_folder_verify_closeout"] .folder-verify-panel[hidden] {
  display: none;
}

[data-r29-r5-marker="nelydo_work_console_r29_r5_user_browser_folder_verify_closeout"] .folder-verify-panel.needs-action {
  border-color: rgba(176, 112, 36, 0.34);
  background: linear-gradient(180deg, rgba(255, 250, 235, 0.96), rgba(255, 255, 255, 0.92));
}

[data-r29-r5-marker="nelydo_work_console_r29_r5_user_browser_folder_verify_closeout"] .folder-verify-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

[data-r29-r5-marker="nelydo_work_console_r29_r5_user_browser_folder_verify_closeout"] .folder-verify-head strong {
  color: #072f2a;
  font-size: 14px;
  font-weight: 920;
}

[data-r29-r5-marker="nelydo_work_console_r29_r5_user_browser_folder_verify_closeout"] .folder-verify-grid {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 8px 12px;
  border-top: 1px solid rgba(15, 118, 110, 0.14);
  padding-top: 12px;
}

[data-r29-r5-marker="nelydo_work_console_r29_r5_user_browser_folder_verify_closeout"] .folder-verify-grid span {
  color: #55726b;
  font-size: 12px;
  font-weight: 820;
}

[data-r29-r5-marker="nelydo_work_console_r29_r5_user_browser_folder_verify_closeout"] .folder-verify-grid b {
  min-width: 0;
  color: #0d463e;
  font-size: 13px;
  overflow-wrap: anywhere;
}

[data-r29-r5-marker="nelydo_work_console_r29_r5_user_browser_folder_verify_closeout"] .folder-verify-panel p {
  margin: 0;
  color: #51655f;
  font-size: 12px;
  line-height: 1.55;
}

/* NELYDO_WORK_CONSOLE_R29_R6_LARGE_FOLDER_SAFE_INDEX_NO_CLOUD_UPLOAD_GUARD */
[data-r29-r6-marker="nelydo_work_console_r29_r6_large_folder_safe_index_no_cloud_upload_guard"] .large-folder-index-panel {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  padding: 14px;
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.96), rgba(255, 255, 255, 0.92));
  color: #1e3a5f;
}

[data-r29-r6-marker="nelydo_work_console_r29_r6_large_folder_safe_index_no_cloud_upload_guard"] .large-folder-index-panel[hidden] {
  display: none;
}

[data-r29-r6-marker="nelydo_work_console_r29_r6_large_folder_safe_index_no_cloud_upload_guard"] .large-folder-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

[data-r29-r6-marker="nelydo_work_console_r29_r6_large_folder_safe_index_no_cloud_upload_guard"] .large-folder-head strong {
  color: #15315c;
  font-size: 14px;
  font-weight: 920;
}

[data-r29-r6-marker="nelydo_work_console_r29_r6_large_folder_safe_index_no_cloud_upload_guard"] .large-folder-meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
}

[data-r29-r6-marker="nelydo_work_console_r29_r6_large_folder_safe_index_no_cloud_upload_guard"] .large-folder-meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2563eb, #14b8a6);
  transition: width 160ms ease;
}

[data-r29-r6-marker="nelydo_work_console_r29_r6_large_folder_safe_index_no_cloud_upload_guard"] .large-folder-index-panel p,
[data-r29-r6-marker="nelydo_work_console_r29_r6_large_folder_safe_index_no_cloud_upload_guard"] .file-limit-note {
  margin: 0;
  color: #52677c;
  font-size: 12px;
  line-height: 1.55;
}

[data-r29-r6-marker="nelydo_work_console_r29_r6_large_folder_safe_index_no_cloud_upload_guard"] .file-preview-list {
  margin-top: 10px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.72);
}

[data-r29-r6-marker="nelydo_work_console_r29_r6_large_folder_safe_index_no_cloud_upload_guard"] .file-preview-list summary {
  cursor: pointer;
  color: #0f4f46;
  font-size: 13px;
  font-weight: 900;
}

[data-r29-r6-marker="nelydo_work_console_r29_r6_large_folder_safe_index_no_cloud_upload_guard"] .file-preview-list .file-row {
  margin-top: 8px;
}

@media (max-width: 640px) {
  [data-r29-r5-marker="nelydo_work_console_r29_r5_user_browser_folder_verify_closeout"] .folder-verify-head {
    align-items: stretch;
    flex-direction: column;
  }

  [data-r29-r5-marker="nelydo_work_console_r29_r5_user_browser_folder_verify_closeout"] .folder-verify-head button {
    width: 100%;
  }

  [data-r29-r6-marker="nelydo_work_console_r29_r6_large_folder_safe_index_no_cloud_upload_guard"] .large-folder-head {
    align-items: stretch;
    flex-direction: column;
  }

  [data-r29-r6-marker="nelydo_work_console_r29_r6_large_folder_safe_index_no_cloud_upload_guard"] .large-folder-head button {
    width: 100%;
  }
}

[data-r29-r2-marker="nelydo_work_console_r29_r2_block1_real_auto_connect_fix"] [data-workflow-step="1"] .file-list.is-connected {
  border-color: rgba(16, 185, 129, 0.34);
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.9), rgba(255, 255, 255, 0.96));
}

[data-r29-r2-marker="nelydo_work_console_r29_r2_block1_real_auto_connect_fix"] [data-side-project].is-done b {
  color: #047857;
}

.connector-confirm-modal {
  width: min(520px, calc(100vw - 32px));
  border: 0;
  border-radius: 18px;
  padding: 0;
  background: transparent;
}

.connector-confirm-modal::backdrop {
  background: rgba(8, 20, 28, 0.46);
  backdrop-filter: blur(8px);
}

.r35-consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 12px;
  background: rgba(236, 253, 245, 0.68);
  color: #12312b;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.r35-consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: #0f766e;
  flex: 0 0 auto;
}

.r35-consent-advanced {
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
}

.r35-consent-advanced > summary {
  cursor: pointer;
  padding: 10px 12px;
  color: #0f4f46;
  font-size: 13px;
  font-weight: 900;
}

.r35-consent-advanced p {
  margin: 0;
  padding: 0 12px 12px;
  color: #36514b;
  font-size: 13px;
  line-height: 1.5;
}

.r35-consent-modal .primary-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  box-shadow: none;
}

.r35-installer-download {
  justify-self: start;
  min-height: 32px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
}

.project-connector-download {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: -4px 0 12px;
  color: #52716a;
  font-size: 13px;
}

.project-connector-download .connector-install-link {
  min-height: 30px;
  padding: 6px 10px;
  border-color: rgba(15, 118, 110, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: #0f766e;
  font-size: 12px;
  font-weight: 900;
  box-shadow: none;
}

.connector-confirm-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 251, 248, 0.96));
  color: #122924;
  box-shadow: 0 28px 80px rgba(8, 34, 29, 0.24);
}

.connector-confirm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.connector-confirm-card h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0;
}

.connector-confirm-card p {
  margin: 0;
  line-height: 1.55;
}

.connector-confirm-copy,
.connector-confirm-output {
  padding: 12px 14px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 10px;
  background: rgba(236, 253, 245, 0.72);
  color: #25423c;
  font-size: 13px;
}

.connector-confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* NELYDO_WORK_CONSOLE_R36_R2_CONNECTOR_PERSIST_DISCONNECT_SIMPLE_UPLOAD_FINAL */
[data-r30-marker="nelydo_work_console_r30_new_url_retarget_and_r29_r6_continue"] .dropzone-actions,
[data-r30-marker="nelydo_work_console_r30_new_url_retarget_and_r29_r6_continue"] .advanced-upload-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

[data-r30-marker="nelydo_work_console_r30_new_url_retarget_and_r29_r6_continue"] .dropzone-actions {
  justify-content: center;
  margin-top: 12px;
}

[data-r30-marker="nelydo_work_console_r30_new_url_retarget_and_r29_r6_continue"] .advanced-upload-actions {
  justify-content: flex-start;
  margin-bottom: 12px;
}

[data-r30-marker="nelydo_work_console_r30_new_url_retarget_and_r29_r6_continue"] .block1-connect-status {
  position: relative;
  padding: 12px 150px 12px 14px;
}

[data-r30-marker="nelydo_work_console_r30_new_url_retarget_and_r29_r6_continue"] .block1-connect-status .disconnect-action,
[data-r30-marker="nelydo_work_console_r30_new_url_retarget_and_r29_r6_continue"] .block1-connect-status .restore-action {
  position: absolute;
  top: 50%;
  min-width: 112px;
  min-height: 36px;
  transform: translateY(-50%);
}

[data-r30-marker="nelydo_work_console_r30_new_url_retarget_and_r29_r6_continue"] .block1-connect-status .disconnect-action {
  right: 12px;
}

[data-r30-marker="nelydo_work_console_r30_new_url_retarget_and_r29_r6_continue"] .block1-connect-status .restore-action {
  right: 132px;
}

@media (max-width: 760px) {
  [data-r30-marker="nelydo_work_console_r30_new_url_retarget_and_r29_r6_continue"] .block1-connect-status {
    padding: 12px 14px;
  }

  [data-r30-marker="nelydo_work_console_r30_new_url_retarget_and_r29_r6_continue"] .block1-connect-status .disconnect-action,
  [data-r30-marker="nelydo_work_console_r30_new_url_retarget_and_r29_r6_continue"] .block1-connect-status .restore-action {
    position: static;
    width: 100%;
    margin-top: 10px;
    transform: none;
  }
}
