﻿@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Literata:opsz,wght@7..72,400;7..72,500;7..72,700&family=IBM+Plex+Mono:wght@400;600&display=swap");

:root {
  --bg: #f4efe4;
  --bg-2: #ebe2d2;
  --bg-3: #dfd0b9;
  --surface: #fffaf1;
  --surface-2: #f7ebd7;

  --ink: #151413;
  --ink-2: #302d28;
  --ink-3: #6d6355;

  --line: #1f1d1a;
  --line-soft: #b7a78f;

  --accent: #cb3c20;
  --accent-2: #0f6e80;
  --accent-3: #d9a425;

  --ok: #0b7a3f;
  --warn: #9f6203;
  --danger: #ad1833;

  --r: 20px;
  --r-sm: 12px;
  --r-xs: 8px;

  --shadow-hard: 8px 8px 0 var(--line);
  --shadow-soft: 0 16px 34px rgba(31, 29, 26, 0.18);

  --fast: 160ms cubic-bezier(0.22, 1, 0.36, 1);
  --smooth: 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Literata", "Times New Roman", serif;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.5;
  background: var(--bg);
  overflow-x: hidden;
}

.bg-layer {
  position: fixed;
  inset: -25% -18%;
  pointer-events: none;
  z-index: -3;
}

.bg-layer-a {
  background:
    radial-gradient(circle at 8% 4%, rgba(15, 110, 128, 0.16), transparent 42%),
    radial-gradient(circle at 84% 8%, rgba(203, 60, 32, 0.2), transparent 44%),
    linear-gradient(175deg, var(--bg-2), var(--bg));
}

.bg-layer-b {
  background:
    radial-gradient(circle at 28% 100%, rgba(217, 164, 37, 0.18), transparent 35%),
    radial-gradient(circle at 92% 82%, rgba(21, 20, 19, 0.09), transparent 45%);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.2;
  background-image: radial-gradient(rgba(21, 20, 19, 0.24) 0.65px, transparent 0.65px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
}

.shell {
  width: min(1460px, calc(100% - 48px));
  margin: 26px auto 50px;
  display: grid;
  gap: 18px;
}

.panel {
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-hard), var(--shadow-soft);
  transition: transform var(--fast), box-shadow var(--fast);
}

@media (hover: hover) {
  .panel:hover {
    transform: translate(-2px, -2px);
    box-shadow: 10px 10px 0 var(--line), 0 20px 40px rgba(31, 29, 26, 0.2);
  }
}

.hero {
  padding: 30px 34px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -80px -100px auto;
  width: 320px;
  height: 320px;
  border-radius: 46% 54% 62% 38%;
  background: radial-gradient(circle, rgba(203, 60, 32, 0.2), rgba(203, 60, 32, 0));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -50px auto auto -50px;
  width: 220px;
  height: 220px;
  border-radius: 42% 58% 34% 66%;
  background: radial-gradient(circle, rgba(15, 110, 128, 0.22), rgba(15, 110, 128, 0));
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 5px 11px;
  white-space: nowrap;
}

.badge.ghost {
  background: transparent;
  border-color: var(--line-soft);
  color: var(--ink-3);
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

h1 {
  font-family: "Archivo Black", "Impact", sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 3rem);
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  max-width: 980px;
}

h2 {
  font-family: "Archivo Black", "Impact", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero p {
  margin: 12px 0 0;
  max-width: 780px;
  color: var(--ink-2);
  font-size: 0.95rem;
}

.panel-head {
  padding: 16px 20px 12px;
  border-bottom: 2px solid var(--line-soft);
}

.panel-head p {
  margin: 4px 0 0;
  color: var(--ink-3);
  font-size: 0.8rem;
  line-height: 1.55;
}

.panel-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.panel-head-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.panel-body {
  padding: 18px 20px 20px;
}

.step-card {
  display: grid;
}

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

.step-body {
  display: grid;
  gap: 16px;
}

.step-title-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.step-index {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--surface-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  font-weight: 700;
}

.step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 2px solid var(--line-soft);
  border-radius: 999px;
  background: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.step-pill.pending {
  color: var(--warn);
  background: #fff1d8;
}

.step-pill.ready {
  color: var(--ok);
  background: #ebfff2;
}

.step-pill.active {
  color: var(--accent-2);
  background: #e8f8fb;
}

.mode-banner {
  padding: 14px 18px;
  border-color: var(--warn);
  background: linear-gradient(135deg, rgba(217, 164, 37, 0.18), rgba(255, 250, 241, 0.98));
  font-size: 0.88rem;
  line-height: 1.6;
}

.status-checklist {
  display: grid;
  gap: 8px;
}

.status-checklist-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border: 2px solid var(--line-soft);
  border-radius: var(--r-xs);
  background: #fff;
}

.status-checklist-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid var(--line-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
}

.status-checklist-item.ok .status-checklist-icon {
  color: var(--ok);
  border-color: rgba(11, 122, 63, 0.45);
  background: rgba(11, 122, 63, 0.12);
}

.status-checklist-item.warn .status-checklist-icon {
  color: var(--warn);
  border-color: rgba(159, 98, 3, 0.35);
  background: rgba(159, 98, 3, 0.12);
}

.status-checklist-item strong {
  display: block;
  font-size: 0.86rem;
}

.status-checklist-item span:last-child {
  color: var(--ink-3);
  font-size: 0.78rem;
  line-height: 1.5;
}

.workspace-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(520px, 1.3fr);
  gap: 18px;
}

.scope-config-grid {
  display: grid;
  grid-template-columns: minmax(320px, 360px) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.scope-column {
  min-width: 0;
}

.scope-column-controls {
  display: grid;
  gap: 14px;
  align-content: start;
}

.diagnostic-card {
  align-content: start;
}

.secondary-link {
  margin-top: 4px;
  width: fit-content;
}

.advanced-options {
  border: 2px dashed var(--line-soft);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.72);
}

.advanced-options summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.advanced-options summary::-webkit-details-marker {
  display: none;
}

.advanced-options-body {
  display: grid;
  gap: 10px;
  padding: 0 14px 14px;
}

.scope-advanced-options {
  margin: 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field > span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink-3);
}

.field.stack {
  background: var(--surface-2);
  border: 2px solid var(--line-soft);
  border-radius: var(--r-sm);
  padding: 12px;
}

input[type="file"],
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select,
button {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: var(--r-xs);
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
  font: inherit;
  font-size: 0.9rem;
  transition: border-color var(--fast), box-shadow var(--fast), background var(--fast), transform var(--fast);
}

input::placeholder,
textarea::placeholder {
  color: #918573;
}

input:focus,
textarea:focus,
select:focus,
button:focus-visible {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(15, 110, 128, 0.2);
}

input[type="file"] {
  padding: 8px 10px;
  cursor: pointer;
}

textarea {
  min-height: 140px;
  resize: vertical;
  font-family: "IBM Plex Mono", monospace;
  line-height: 1.55;
  font-size: 0.8rem;
}

select {
  cursor: pointer;
}

button {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

button:hover:not(:disabled) {
  transform: translateY(-1px);
}

button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--line);
}

.btn-primary:hover:not(:disabled) {
  background: #b33219;
}

.btn-secondary {
  background: var(--accent-2);
  color: #fff;
}

.btn-secondary:hover:not(:disabled) {
  background: #0a5b69;
}

button:not(.btn-primary):not(.btn-secondary) {
  background: var(--surface-2);
  color: var(--ink);
}

button:not(.btn-primary):not(.btn-secondary):hover:not(:disabled) {
  background: #f0ddbf;
}

.btn-settings,
.btn-logout,
.btn-nav-link {
  width: auto;
  padding: 8px 12px;
  border: 2px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.btn-settings {
  background: var(--surface-2);
  color: var(--ink);
}

.btn-settings:focus-visible,
.btn-logout:focus-visible,
.btn-nav-link:focus-visible {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(15, 110, 128, 0.2);
}

.btn-nav-link:visited {
  color: var(--ink);
}

.btn-logout {
  margin-left: auto;
  background: #fff;
  color: var(--danger);
  border-color: var(--danger);
}

.btn-logout:hover:not(:disabled) {
  background: #ffe7ec;
}

.file-drop {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px dashed var(--line);
  border-radius: var(--r-sm);
  background: linear-gradient(145deg, #fff8ea, #f3e4ca);
  padding: 16px;
  cursor: pointer;
}

.file-drop:hover {
  border-color: var(--accent);
  background: linear-gradient(145deg, #fff2dc, #f2dfbe);
}

.file-drop-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 2px solid var(--line);
  background: #fff;
  font-size: 1.1rem;
}

.file-drop-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  color: var(--ink-2);
  font-size: 0.86rem;
}

.file-drop-name {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.73rem;
  color: var(--ink-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-drop-link {
  color: var(--accent-2);
  text-decoration: underline;
}

.status-box {
  margin-top: 12px;
  border: 2px solid var(--line-soft);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--ink-2);
  padding: 10px 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.6;
  min-height: 46px;
}

.status-line {
  margin: 0;
}

.status-line.ok {
  color: var(--ok);
}

.status-line.warn {
  color: var(--warn);
}

.status-line.error {
  color: var(--danger);
}

.check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--ink-2);
  cursor: pointer;
}

.check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--accent);
}

.small {
  color: var(--ink-3);
  font-size: 0.77rem;
  line-height: 1.5;
}

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

.control-actions {
  display: grid;
  gap: 8px;
  align-content: start;
}

.guided-actions-grid {
  align-items: start;
}

.action-stack {
  align-content: start;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.kpi {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 13px;
  display: grid;
  gap: 4px;
}

.kpi span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.kpi strong {
  font-family: "Archivo Black", "Impact", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

.kpi-sub {
  display: block;
  margin-top: 1px;
  font-style: normal;
  font-size: 0.56rem;
  letter-spacing: 0.03em;
  text-transform: none;
}

.report-box {
  margin: 0;
  border: 2px solid var(--line);
  border-radius: var(--r-sm);
  background: #111;
  color: #f4efe4;
  min-height: 250px;
  padding: 16px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  line-height: 1.7;
  white-space: pre-wrap;
}

.results-content {
  display: grid;
}

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

.results-stack > * {
  min-width: 0;
}

.result-shell {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 2px solid var(--line-soft);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.78);
  min-width: 0;
  align-content: start;
}

.result-shell-head h3,
.result-shell-head-row h3 {
  margin: 0;
  font-family: "Archivo Black", "Impact", sans-serif;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.result-shell-head p,
.result-shell-head-row p {
  margin: 4px 0 0;
  color: var(--ink-3);
  font-size: 0.78rem;
}

.result-shell-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  min-width: 0;
}

.result-shell-head-row > * {
  min-width: 0;
}

.table-head-actions {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.result-shell-head-centered {
  justify-items: center;
  text-align: center;
}

.results-summary-shell {
  width: min(1040px, 100%);
  justify-self: center;
}

.result-shell-table {
  width: 100%;
}

.empty-state {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 2px dashed var(--line-soft);
  border-radius: var(--r-sm);
  background: linear-gradient(145deg, rgba(255, 250, 241, 0.82), rgba(247, 235, 215, 0.9));
}

.empty-state strong {
  font-size: 0.92rem;
}

.empty-state p {
  margin: 0;
  color: var(--ink-3);
  font-size: 0.84rem;
  line-height: 1.55;
}

.inline-note {
  margin-top: 12px;
  color: var(--ink-3);
  font-size: 0.78rem;
  line-height: 1.6;
}

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

.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: var(--surface-2);
  padding: 3px 9px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
}

.text-list {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  color: var(--ink-2);
  line-height: 1.65;
}

.text-list .warn {
  color: var(--warn);
}

.text-list .ok {
  color: var(--ok);
}

.inline-actions {
  display: flex;
  gap: 8px;
}

.inline-actions button {
  flex: 1;
}

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

.table-wrap {
  border-top: 2px solid var(--line-soft);
  overflow: auto;
  max-height: 420px;
}

.table-wrap-lg {
  max-height: 520px;
}

table {
  width: 100%;
  min-width: 700px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.82rem;
}

.results-table {
  min-width: 920px;
}

th,
td {
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  padding: 10px 10px;
  vertical-align: middle;
}

th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f5ead4;
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

tbody tr:nth-child(even) {
  background: #fff6e7;
}

tbody tr:hover {
  background: #f4dfbc;
}

tbody tr.row-clickable {
  cursor: pointer;
}

.cell-ok {
  color: var(--ok);
  font-weight: 700;
}

.cell-no {
  color: var(--danger);
  font-weight: 700;
}

.table-search-field {
  min-width: 220px;
  flex: 0 1 240px;
}

.click-context {
  margin: 12px 0 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  color: var(--ink-2);
}

.click-kpis {
  margin-top: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.detail-kpis {
  margin: 14px 0 16px;
}

.detail-domains {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 0;
}

.detail-domain-chip {
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  padding: 2px 9px;
}

.detail-section-label {
  display: block;
  margin: 0 0 9px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

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

.role-item {
  display: grid;
  grid-template-columns: 140px 1fr 58px;
  align-items: center;
  gap: 8px;
}

.role-item-label {
  font-size: 0.82rem;
  color: var(--ink-2);
}

.role-bar-track {
  height: 7px;
  border-radius: 99px;
  background: #e4d3b7;
  overflow: hidden;
}

.role-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
}

.role-item-value {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  text-align: right;
}

.detail-subs-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.detail-filter-select,
.detail-filter-input {
  width: auto;
  min-width: 120px;
  max-width: 170px;
  padding: 6px 8px;
  height: 32px;
}

.th-sort {
  cursor: pointer;
}

.sort-ind {
  font-size: 0.8em;
  opacity: 0.8;
}

.detail-subs-table-wrap {
  border: 2px solid var(--line-soft);
  border-radius: var(--r-xs);
  overflow: auto;
}

.detail-subs-table {
  min-width: 620px;
  font-size: 0.76rem;
}

.detail-subs-table th {
  font-size: 0.6rem;
}

.detail-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.detail-summary-card {
  border: 2px solid var(--line-soft);
  border-radius: var(--r-xs);
  background: rgba(255, 255, 255, 0.82);
  padding: 12px;
  display: grid;
  gap: 4px;
}

.detail-summary-card span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-3);
}

.detail-summary-card strong {
  font-size: 1rem;
}

.detail-insights {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.detail-insight-item {
  padding: 12px 14px;
  border-radius: var(--r-xs);
  border: 2px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.78);
}

.detail-insight-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.84rem;
}

.detail-insight-item p {
  margin: 0;
  color: var(--ink-3);
  font-size: 0.78rem;
  line-height: 1.55;
}

.detail-subs-shell {
  margin-top: 20px;
  border: 2px solid var(--line-soft);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.detail-subs-shell summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.detail-subs-shell-body {
  padding: 0 14px 14px;
}

.detail-subs-nl {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.72rem;
}

.subs-editor-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto auto;
  gap: 8px;
  margin: 10px 0;
}

.subs-editor-table-wrap {
  border: 2px solid var(--line);
  border-radius: var(--r-sm);
  overflow: auto;
  max-height: 430px;
}

.subs-editor-table {
  min-width: 940px;
  font-size: 0.76rem;
}

.subs-editor-cell {
  width: 100%;
  min-width: 120px;
  padding: 7px 8px;
  font-size: 0.75rem;
  border: 2px solid var(--line-soft);
  border-radius: 8px;
  background: #fff;
}

.subs-editor-cell.is-dirty {
  border-color: var(--accent);
  background: #fff2dc;
}

.subs-editor-cell-domain,
.subs-editor-cell-newsletters {
  min-width: 170px;
}

.subs-editor-delete {
  width: auto;
  border-color: var(--danger);
  color: var(--danger);
  background: #ffe8ed;
  padding: 7px 10px;
}

.subs-editor-footer {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.subs-editor-pagination {
  width: auto;
}

.subs-editor-pagination button {
  width: auto;
  min-width: 110px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 19, 17, 0.5);
  backdrop-filter: blur(2px);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay[hidden] {
  display: none;
}

.modal-dialog {
  width: min(680px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border: 2px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  box-shadow: 0 24px 56px rgba(21, 20, 19, 0.35);
}

.modal-dialog-lg {
  width: min(940px, 100%);
}

.modal-dialog-xl {
  width: min(1260px, 100%);
}

.modal-head {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 2px solid var(--line-soft);
  background: var(--surface);
}

.modal-close {
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 8px;
  font-size: 1.1rem;
  line-height: 1;
}

.modal-body {
  padding: 16px 20px 20px;
}

.modal-accordion-group {
  display: grid;
  gap: 12px;
}

.admin-accordion {
  border: 2px solid var(--line-soft);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.admin-accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: rgba(247, 235, 215, 0.75);
}

.admin-accordion summary::-webkit-details-marker {
  display: none;
}

.admin-accordion-body {
  padding: 0 16px 16px;
}

.admin-accordion .modal-section {
  padding-top: 16px;
}

.modal-section {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 2px dashed var(--line-soft);
}

.modal-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.brand-logo {
  display: block;
  color: var(--ink);
}

.brand-logo path {
  fill: currentColor;
}

.brand-logo-header {
  width: 42px;
  height: 56px;
}

.brand-logo-login {
  width: 70px;
  height: 94px;
  margin: 0 auto 12px;
}

.login-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-card {
  width: min(460px, 100%);
}

.login-brand {
  text-align: center;
  margin-bottom: 14px;
}

.login-brand h1 {
  font-size: 1.7rem;
  margin-top: 10px;
}

.login-brand p {
  color: var(--ink-3);
  font-size: 0.86rem;
  margin: 8px 0 0;
}

.login-body {
  display: grid;
  gap: 12px;
}

.login-error {
  padding: 10px 12px;
  border: 2px solid var(--danger);
  border-radius: var(--r-xs);
  background: #ffe5ea;
  color: var(--danger);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  display: none;
}

.login-error.visible {
  display: block;
}

.login-footer {
  text-align: center;
  margin-top: 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  color: var(--ink-3);
}

.org-shell {
  width: min(1540px, calc(100% - 42px));
}

code {
  font-family: "IBM Plex Mono", monospace;
  background: #f0e2c9;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 0.82em;
}

.drops-dashboard code {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(96, 165, 250, 0.2);
  color: #dbeafe;
}

.reveal-up {
  animation: reveal-up 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.shell > *:nth-child(1) { animation-delay: 0ms; }
.shell > *:nth-child(2) { animation-delay: 60ms; }
.shell > *:nth-child(3) { animation-delay: 120ms; }
.shell > *:nth-child(4) { animation-delay: 180ms; }
.shell > *:nth-child(5) { animation-delay: 240ms; }
.shell > *:nth-child(6) { animation-delay: 300ms; }
.shell > *:nth-child(7) { animation-delay: 360ms; }

@media (max-width: 1250px) {
  .workspace-grid {
    grid-template-columns: 1fr;
  }

  .click-kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1460px) {
  .results-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .shell,
  .org-shell {
    width: calc(100% - 24px);
    margin: 14px auto 30px;
    gap: 12px;
  }

  .hero {
    padding: 20px 16px;
  }

  .panel-head,
  .panel-body,
  .modal-head,
  .modal-body {
    padding-left: 14px;
    padding-right: 14px;
  }

  .panel-head-row {
    flex-direction: column;
    align-items: stretch;
  }

  .panel-head-actions,
  .result-shell-head-row,
  .step-title-row {
    align-items: stretch;
  }

  .table-search-field {
    min-width: 0;
  }

  .control-matrix,
  .override-grid,
  .scope-config-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

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

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

  .subs-editor-toolbar {
    grid-template-columns: 1fr;
  }

  .detail-summary-grid {
    grid-template-columns: 1fr;
  }

  .subs-editor-pagination {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .subs-editor-pagination button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .hero-top {
    gap: 6px;
  }

  .badge {
    font-size: 0.62rem;
    padding: 4px 8px;
  }

  .btn-logout {
    margin-left: 0;
  }

  .kpis {
    grid-template-columns: 1fr;
  }

  .click-kpis {
    grid-template-columns: 1fr;
  }

  .inline-actions {
    flex-direction: column;
  }

  .panel-head-actions {
    justify-content: stretch;
  }

  .secondary-link,
  .btn-settings,
  .btn-logout {
    width: 100%;
  }

  table {
    min-width: 620px;
  }
}

.drops-dashboard {
  --bg: #06070a;
  --bg-2: #0d1015;
  --bg-3: #151a22;
  --surface: rgba(14, 17, 23, 0.82);
  --surface-2: rgba(255, 255, 255, 0.05);
  --ink: #f5f7fa;
  --ink-2: rgba(240, 243, 247, 0.9);
  --ink-3: rgba(232, 236, 241, 0.68);
  --line: rgba(255, 255, 255, 0.18);
  --line-soft: rgba(255, 255, 255, 0.12);
  --shadow-hard: 0 0 0 transparent;
  --shadow-soft: 0 16px 50px rgba(0, 0, 0, 0.38);
  color: #f5f7fa;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.08), transparent 26%),
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, #06070a 0%, #0d1015 52%, #090b0f 100%);
}

.drops-dashboard .brand-logo {
  color: #f7f8fb;
}

.drops-dashboard .bg-layer-a {
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 85% 8%, rgba(255, 255, 255, 0.05), transparent 30%),
    linear-gradient(180deg, rgba(10, 11, 15, 0.98), rgba(9, 11, 15, 0.9));
}

.drops-dashboard .bg-layer-b {
  background:
    radial-gradient(circle at 20% 100%, rgba(120, 120, 120, 0.08), transparent 34%),
    radial-gradient(circle at 92% 88%, rgba(255, 255, 255, 0.04), transparent 30%);
}

.drops-dashboard .grain {
  opacity: 0.08;
  background-image: radial-gradient(rgba(255, 255, 255, 0.42) 0.5px, transparent 0.5px);
  mix-blend-mode: soft-light;
}

.drops-dashboard .drops-shell {
  width: min(1500px, calc(100% - 40px));
  gap: 22px;
  margin: 24px auto 42px;
}

.drops-dashboard .panel {
  background: rgba(14, 17, 23, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(22px);
}

.drops-dashboard .panel:hover {
  transform: translateY(-4px) scale(1.004);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.46);
}

.drops-dashboard .hero {
  padding: 34px 38px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(145deg, rgba(18, 22, 30, 0.94), rgba(9, 11, 16, 0.82));
}

.drops-dashboard .hero::before,
.drops-dashboard .hero::after {
  opacity: 0.6;
  filter: blur(4px);
}

.drops-dashboard h1,
.drops-dashboard h2,
.drops-dashboard h3,
.drops-dashboard h4,
.drops-dashboard strong,
.drops-dashboard .modal-head h2 {
  color: #f7f8fb;
}

.drops-dashboard .hero p,
.drops-dashboard .panel-head p,
.drops-dashboard .small,
.drops-dashboard .field span,
.drops-dashboard .file-drop-content,
.drops-dashboard .file-drop-name,
.drops-dashboard .text-list,
.drops-dashboard .click-context,
.drops-dashboard .inline-note,
.drops-dashboard .status-box,
.drops-dashboard .empty-state p,
.drops-dashboard .report-story-list li,
.drops-dashboard .drawer-row-copy span {
  color: rgba(232, 236, 241, 0.74);
}

.drops-dashboard .badge,
.drops-dashboard .chip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #f7f8fb;
}

.drops-dashboard .badge.ghost {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.12);
}

.drops-dashboard .panel-head,
.drops-dashboard .modal-head {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.drops-dashboard .step-index {
  background: linear-gradient(145deg, rgba(244, 239, 228, 0.16), rgba(255, 255, 255, 0.06));
  border-color: rgba(244, 239, 228, 0.2);
  color: #f4efe4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.drops-dashboard .btn-primary,
.drops-dashboard .btn-secondary,
.drops-dashboard .btn-settings,
.drops-dashboard .btn-logout,
.drops-dashboard button {
  transition: transform var(--fast), box-shadow var(--fast), background var(--fast), border-color var(--fast), color var(--fast);
}

.drops-dashboard .btn-primary {
  background: linear-gradient(135deg, #202020, #666);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.drops-dashboard .btn-primary:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.42);
}

.drops-dashboard .btn-secondary,
.drops-dashboard .btn-settings,
.drops-dashboard .btn-nav-link,
.drops-dashboard .btn-logout,
.drops-dashboard button:not(.btn-primary):not(.modal-close) {
  background: rgba(255, 255, 255, 0.06);
  color: #f7f8fb;
  border-color: rgba(255, 255, 255, 0.16);
}

.drops-dashboard .btn-secondary:hover:not(:disabled),
.drops-dashboard .btn-settings:hover:not(:disabled),
.drops-dashboard .btn-nav-link:hover:not(:disabled),
.drops-dashboard .btn-logout:hover:not(:disabled),
.drops-dashboard button:not(.btn-primary):not(.modal-close):hover:not(:disabled) {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.drops-dashboard .btn-logout {
  color: #fff;
}

.drops-dashboard input,
.drops-dashboard select,
.drops-dashboard textarea {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.drops-dashboard .field.stack,
.drops-dashboard .advanced-options,
.drops-dashboard .status-checklist-item,
.drops-dashboard .chips,
.drops-dashboard .text-list {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.drops-dashboard .advanced-options summary,
.drops-dashboard .check,
.drops-dashboard .small,
.drops-dashboard label.small,
.drops-dashboard .field > span {
  color: rgba(232, 236, 241, 0.74);
}

.drops-dashboard input::placeholder,
.drops-dashboard textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.drops-dashboard .file-drop,
.drops-dashboard .status-box,
.drops-dashboard .kpi,
.drops-dashboard .empty-state,
.drops-dashboard .result-shell,
.drops-dashboard .table-wrap,
.drops-dashboard .admin-accordion,
.drops-dashboard .detail-summary-card,
.drops-dashboard .detail-insight-item {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.drops-dashboard .file-drop-icon,
.drops-dashboard .status-checklist-icon {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.drops-dashboard .status-checklist-item {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.drops-dashboard .status-checklist-item.ok .status-checklist-icon {
  color: #f7f8fb;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
}

.drops-dashboard .status-checklist-item.warn .status-checklist-icon {
  color: #f7f8fb;
}

.drops-dashboard .kpi span,
.drops-dashboard .kpi-sub,
.drops-dashboard .step-index,
.drops-dashboard .report-kicker,
.drops-dashboard .report-story-label,
.drops-dashboard .drawer-eyebrow {
  color: rgba(255, 255, 255, 0.58);
}

.drops-dashboard .kpi strong,
.drops-dashboard .step-pill,
.drops-dashboard .report-score strong,
.drops-dashboard .report-hero-card h4,
.drops-dashboard .drawer-row-index {
  color: #fff;
}

.drops-dashboard .step-pill.pending {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.drops-dashboard .step-pill.active,
.drops-dashboard .step-pill.ready {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.18);
}

.drops-dashboard .report-visual {
  display: grid;
  gap: 14px;
}

.drops-dashboard .report-hero-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.drops-dashboard .report-hero-card h4 {
  font-family: "Archivo Black", "Impact", sans-serif;
  font-size: 1.45rem;
  margin: 4px 0 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.drops-dashboard .report-score-grid,
.drops-dashboard .report-story-grid {
  display: grid;
  gap: 12px;
}

.drops-dashboard .report-score-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.drops-dashboard .report-score,
.drops-dashboard .report-story-card {
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding: 14px;
}

.drops-dashboard .report-score span {
  display: block;
  margin-bottom: 6px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.drops-dashboard .report-score strong {
  font-family: "Archivo Black", "Impact", sans-serif;
  font-size: 1.32rem;
}

.drops-dashboard .report-story-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.drops-dashboard .report-story-card strong {
  display: block;
  font-size: 1.02rem;
  margin: 4px 0 8px;
}

.drops-dashboard .report-story-card p {
  margin: 0 0 10px;
  color: rgba(232, 236, 241, 0.74);
}

.drops-dashboard .report-story-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 4px;
}

.drops-dashboard .report-copy-shell {
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.drops-dashboard .report-visual,
.drops-dashboard .report-hero-card,
.drops-dashboard .report-story-grid,
.drops-dashboard .report-story-card,
.drops-dashboard .report-score,
.drops-dashboard .result-shell {
  min-width: 0;
}

.drops-dashboard .report-copy-shell summary {
  cursor: pointer;
  padding: 12px 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.74);
}

.drops-dashboard .report-box {
  margin: 0;
  min-height: 220px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #090b10;
  color: #f4f6f8;
}

.drops-dashboard .results-stack {
  gap: 18px;
}

.drops-dashboard .results-summary-shell {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
    rgba(255, 255, 255, 0.05);
}

.drops-dashboard .result-shell-table {
  gap: 14px;
}

.drops-dashboard .diagnostic-head,
.drops-dashboard .drawer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.drops-dashboard .unmapped-summary-copy {
  display: grid;
  gap: 3px;
}

.drops-dashboard .unmapped-summary-copy strong {
  font-size: 1.05rem;
}

.drops-dashboard .unmapped-preview-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.drops-dashboard .unmapped-pill,
.drops-dashboard .unmapped-preview-more {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 0 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.drops-dashboard .drawer-overlay {
  justify-content: flex-end;
  padding: 18px;
  background: rgba(3, 4, 7, 0.68);
}

.drops-dashboard .drawer-dialog {
  width: min(540px, 100%);
  height: calc(100vh - 36px);
  max-height: calc(100vh - 36px);
  border-radius: 28px;
  background: rgba(11, 14, 19, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.5);
}

.drops-dashboard .drawer-body {
  display: grid;
  gap: 14px;
  align-content: start;
}

.drops-dashboard .drawer-meta {
  padding: 14px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(232, 236, 241, 0.78);
}

.drops-dashboard .drawer-list {
  display: grid;
  gap: 10px;
  min-height: 160px;
  max-height: calc(100vh - 320px);
  overflow: auto;
  padding-right: 4px;
}

.drops-dashboard .drawer-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.drops-dashboard .drawer-row-index {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
}

.drops-dashboard .drawer-row-copy {
  display: grid;
  gap: 4px;
}

.drops-dashboard .drawer-empty {
  margin: 0;
  padding: 18px 0;
  color: rgba(232, 236, 241, 0.7);
}

.drops-dashboard .table-wrap,
.drops-dashboard table {
  background: transparent;
}

.drops-dashboard .results-table th,
.drops-dashboard .results-table td {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  color: #eef2f6;
}

.drops-dashboard .results-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #0f141b;
  color: rgba(244, 247, 250, 0.84);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.drops-dashboard .results-table td {
  background: #0b1016;
}

.drops-dashboard .results-table tbody tr:nth-child(odd) td {
  background: #0b1016;
}

.drops-dashboard .results-table tbody tr:nth-child(even) td {
  background: #121821;
}

.drops-dashboard .results-table tbody tr:hover td,
.drops-dashboard .results-table .row-clickable:hover td {
  background: #1a2230;
}

.drops-dashboard .cell-ok {
  color: #92f2be;
}

.drops-dashboard .cell-no {
  color: #ff9f9f;
}

.drops-dashboard .diagnostic-preview-list {
  max-height: 194px;
  overflow: auto;
  padding-right: 4px;
}

.drops-dashboard .modal-dialog,
.drops-dashboard .detail-subs-shell,
.drops-dashboard .admin-accordion {
  background: rgba(12, 15, 20, 0.94);
}

.drops-dashboard .admin-accordion summary,
.drops-dashboard .detail-subs-shell summary {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.drops-dashboard .empty-state strong,
.drops-dashboard .inline-note strong {
  color: #fff;
}

@media (max-width: 980px) {
  .drops-dashboard .drops-shell {
    width: calc(100% - 20px);
    margin: 12px auto 28px;
  }

  .drops-dashboard .hero {
    padding: 24px 18px;
  }

  .drops-dashboard .report-score-grid,
  .drops-dashboard .report-story-grid {
    grid-template-columns: 1fr 1fr;
  }

  .drops-dashboard .drawer-dialog {
    width: 100%;
    height: calc(100vh - 24px);
    max-height: calc(100vh - 24px);
  }
}

@media (max-width: 620px) {
  .drops-dashboard .report-score-grid,
  .drops-dashboard .report-story-grid {
    grid-template-columns: 1fr;
  }

  .drops-dashboard .diagnostic-head,
  .drops-dashboard .drawer-footer {
    align-items: stretch;
  }

  .drops-dashboard .open-unmapped-drawer,
  .drops-dashboard .secondary-link,
  .drops-dashboard .btn-settings,
  .drops-dashboard .btn-logout {
    width: 100%;
  }
}

.dashboard-hero {
  padding: 24px 28px;
}

.dashboard-hero .hero-top {
  margin-bottom: 14px;
}

.dashboard-hero .btn-settings-subtle {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}

.dashboard-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.95fr);
  gap: 18px;
  align-items: end;
}

.dashboard-hero-copy {
  display: grid;
  gap: 8px;
}

.dashboard-kicker {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 236, 241, 0.62);
}

.dashboard-hero-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.dashboard-hero-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.04);
}

.dashboard-hero-steps strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  color: #fff;
}

.dashboard-hero-steps span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: rgba(232, 236, 241, 0.8);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.workflow-step {
  min-width: 0;
}

.workflow-step .panel-head {
  padding-bottom: 10px;
}

.workflow-step-body {
  display: grid;
  gap: 14px;
  align-content: start;
}

.workflow-support-label {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}

.quick-kpis-shell {
  display: grid;
  gap: 8px;
}

.quick-kpis {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.quick-kpis .kpi {
  padding: 10px 11px;
}

.quick-kpis .kpi strong {
  font-size: 1.16rem;
}

.secondary-panel {
  border: 2px dashed var(--line-soft);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.04);
}

.secondary-panel summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
}

.secondary-panel summary::-webkit-details-marker {
  display: none;
}

.secondary-panel summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  color: rgba(232, 236, 241, 0.82);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.88rem;
}

.secondary-panel[open] summary::after {
  content: "-";
}

.secondary-panel summary strong {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(232, 236, 241, 0.84);
}

.secondary-panel summary p {
  margin: 4px 0 0;
  color: rgba(232, 236, 241, 0.62);
  font-size: 0.78rem;
  line-height: 1.5;
}

.secondary-panel-body {
  display: grid;
  gap: 12px;
  padding: 0 14px 14px;
}

.action-secondary-body {
  grid-template-columns: 1fr;
}

.advanced-options-inline {
  padding: 0;
}

.scope-advanced-card .advanced-options-inline {
  display: grid;
  gap: 10px;
}

.results-step .panel-body {
  gap: 18px;
}

.optional-step .panel-head {
  border-bottom-style: dashed;
}

.optional-step-body {
  gap: 0;
}

.click-secondary-body {
  display: grid;
  gap: 14px;
}

.click-secondary-panel {
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 1250px) {
  .dashboard-hero-grid {
    grid-template-columns: 1fr;
  }

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

  .workflow-grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .dashboard-hero {
    padding: 22px 20px;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .workflow-grid > :last-child {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .dashboard-hero-steps {
    grid-template-columns: 1fr;
  }

  .quick-kpis {
    grid-template-columns: 1fr;
  }

  .secondary-panel summary {
    padding: 11px 12px;
  }
}

.drops-dashboard .results-step .result-shell-table {
  background: #0f141b;
  border-color: rgba(255, 255, 255, 0.12);
}

.drops-dashboard .results-step .result-shell-table .result-shell-head {
  padding-bottom: 2px;
}

.drops-dashboard .results-step .result-shell-table .table-search-field {
  background: transparent;
  border: 0;
  padding: 0;
}

.drops-dashboard .results-step .result-shell-table .table-search-field input {
  background: #121821;
  border-color: rgba(255, 255, 255, 0.16);
}

.drops-dashboard .results-step .result-shell-table .table-wrap,
.drops-dashboard .results-step .result-shell-table table {
  background: #0d1218;
}

.drops-dashboard .results-step .result-shell-table .table-wrap {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.drops-dashboard .table-wrap,
.drops-dashboard .detail-subs-table-wrap,
.drops-dashboard .subs-editor-table-wrap,
.drops-dashboard .org-table-wrap {
  background: #0d1218;
}

.drops-dashboard .table-wrap,
.drops-dashboard .detail-subs-table-wrap {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.drops-dashboard .subs-editor-table-wrap,
.drops-dashboard .org-table-wrap {
  border-color: rgba(255, 255, 255, 0.12);
}

.drops-dashboard .admin-accordion {
  background: #08111d;
  border-color: rgba(96, 165, 250, 0.14);
}

.drops-dashboard .admin-accordion summary {
  background: #0b1424;
  color: rgba(244, 247, 250, 0.88);
}

.drops-dashboard .admin-accordion-body,
.drops-dashboard .admin-accordion .modal-section,
.drops-dashboard .admin-accordion .field.stack {
  background: transparent;
}

.drops-dashboard table,
.drops-dashboard .detail-subs-table,
.drops-dashboard .subs-editor-table,
.drops-dashboard .org-table {
  background: #0d1218;
}

.drops-dashboard th {
  background: #0f141b;
  color: rgba(244, 247, 250, 0.84);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.drops-dashboard td {
  background: #0b1016;
  color: #eef2f6;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.drops-dashboard tbody tr:nth-child(even) td {
  background: #121821;
}

.drops-dashboard tbody tr:hover td,
.drops-dashboard .row-clickable:hover td {
  background: #1a2230;
}

/* ABM dashboard normalization */
:root {
  --accent: #2563eb;
  --accent-2: #60a5fa;
  --accent-3: #93c5fd;
}

body.drops-dashboard {
  background: #050913;
}

.drops-dashboard .bg-layer-a {
  background:
    radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.18), transparent 42%),
    radial-gradient(circle at 82% 12%, rgba(96, 165, 250, 0.16), transparent 38%),
    linear-gradient(180deg, #08101d, #040813);
}

.drops-dashboard .bg-layer-b {
  background:
    radial-gradient(circle at 18% 100%, rgba(14, 165, 233, 0.12), transparent 34%),
    radial-gradient(circle at 100% 78%, rgba(59, 130, 246, 0.12), transparent 40%);
}

.workflow-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.workflow-grid > :last-child {
  grid-column: auto;
}

.workflow-step,
.workflow-step-body,
.panel-head-row,
.step-title-row,
.panel-body,
.field,
.field.stack,
.secondary-panel,
.secondary-panel-body,
.quick-kpis-shell,
.quick-kpis,
.action-stack,
.result-shell,
.results-stack,
.table-search-field,
.file-drop,
.file-drop-content,
.file-drop-content > div,
.file-drop-name,
.status-checklist-item,
.detail-insight-item,
.detail-summary-card,
.admin-accordion,
.admin-accordion-body,
.modal-section,
.subs-editor-toolbar,
.review-queue-toolbar {
  min-width: 0;
}

.file-drop-name {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.secondary-panel summary,
.secondary-panel summary > div,
.step-title-row > div,
.table-company-cell,
.table-company-cell strong,
.table-company-meta,
.subs-editor-row-note,
.inline-note,
.click-context {
  min-width: 0;
  overflow-wrap: anywhere;
}

.table-company-cell {
  display: grid;
  gap: 4px;
}

.table-company-meta {
  display: block;
  font-size: 0.72rem;
  color: rgba(232, 236, 241, 0.66);
}

.review-queue-toolbar,
.subs-editor-toolbar {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.review-queue-toolbar button,
.subs-editor-toolbar button {
  width: 100%;
}

.review-queue-table td,
.review-queue-table th,
.subs-editor-table td,
.subs-editor-table th {
  vertical-align: top;
}

.review-queue-table select {
  width: 100%;
  min-width: 150px;
}

.drops-dashboard .subs-editor-table input,
.drops-dashboard .subs-editor-table select,
.drops-dashboard .review-queue-table input,
.drops-dashboard .review-queue-table select,
.drops-dashboard .org-table input,
.drops-dashboard .org-table select {
  background: #0a1220;
  color: #eef2f6;
  border-color: rgba(96, 165, 250, 0.18);
  box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.04);
}

.drops-dashboard .subs-editor-table input::placeholder,
.drops-dashboard .review-queue-table input::placeholder,
.drops-dashboard .org-table input::placeholder {
  color: rgba(232, 236, 241, 0.38);
}

.drops-dashboard .subs-editor-table input:focus,
.drops-dashboard .subs-editor-table select:focus,
.drops-dashboard .review-queue-table input:focus,
.drops-dashboard .review-queue-table select:focus,
.drops-dashboard .org-table input:focus,
.drops-dashboard .org-table select:focus {
  background: #0d1728;
  border-color: rgba(96, 165, 250, 0.42);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.16);
}

.drops-dashboard .subs-editor-table input:-webkit-autofill,
.drops-dashboard .subs-editor-table input:-webkit-autofill:hover,
.drops-dashboard .subs-editor-table input:-webkit-autofill:focus,
.drops-dashboard .review-queue-table input:-webkit-autofill,
.drops-dashboard .review-queue-table input:-webkit-autofill:hover,
.drops-dashboard .review-queue-table input:-webkit-autofill:focus,
.drops-dashboard .org-table input:-webkit-autofill,
.drops-dashboard .org-table input:-webkit-autofill:hover,
.drops-dashboard .org-table input:-webkit-autofill:focus {
  -webkit-text-fill-color: #eef2f6;
  box-shadow: inset 0 0 0 1000px #0a1220;
  transition: background-color 9999s ease-out 0s;
}

.drops-dashboard .subs-editor-cell {
  background: #0a1220;
  color: #eef2f6;
  border-color: rgba(96, 165, 250, 0.18);
}

.drops-dashboard .subs-editor-cell.is-dirty {
  background: #0d1728;
  border-color: rgba(96, 165, 250, 0.42);
}

.drops-dashboard .subs-editor-cell.is-invalid {
  background: rgba(58, 14, 22, 0.92);
  border-color: rgba(248, 113, 113, 0.52);
}

.drops-dashboard .subs-editor-delete {
  background: rgba(58, 14, 22, 0.88);
  color: #fecdd3;
  border-color: rgba(248, 113, 113, 0.34);
}

.drops-dashboard .subs-editor-delete:hover:not(:disabled) {
  background: rgba(82, 21, 33, 0.96);
  border-color: rgba(251, 146, 172, 0.42);
}

.subs-editor-row-note {
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.7rem;
  color: #f6c36f;
}

.subs-editor-table tr.is-invalid td {
  background: rgba(46, 12, 19, 0.68);
}

.subs-editor-cell.is-invalid {
  border-color: rgba(248, 113, 113, 0.52);
}

.subs-editor-note-action {
  width: auto;
  min-width: auto;
  padding: 5px 8px;
  font-size: 0.68rem;
  background: rgba(37, 99, 235, 0.18);
  border-color: rgba(96, 165, 250, 0.34);
  color: #dbeafe;
}

.subs-editor-note-action:hover:not(:disabled) {
  background: rgba(37, 99, 235, 0.28);
}

.cell-warn {
  color: #f6c36f;
}

.detail-domain-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.drops-dashboard .step-index {
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.18), rgba(15, 23, 42, 0.78));
  border-color: rgba(96, 165, 250, 0.3);
}

.drops-dashboard .btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #f8fbff;
  border-color: rgba(147, 197, 253, 0.28);
  box-shadow: 0 12px 30px rgba(29, 78, 216, 0.34);
}

.drops-dashboard .btn-primary:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.38);
}

.drops-dashboard .btn-secondary,
.drops-dashboard .btn-settings,
.drops-dashboard .btn-nav-link,
.drops-dashboard .btn-logout,
.drops-dashboard button:not(.btn-primary):not(.modal-close) {
  background: rgba(10, 18, 32, 0.84);
  color: #f7f8fb;
  border-color: rgba(148, 163, 184, 0.18);
}

.drops-dashboard .btn-secondary:hover:not(:disabled),
.drops-dashboard .btn-settings:hover:not(:disabled),
.drops-dashboard .btn-nav-link:hover:not(:disabled),
.drops-dashboard .btn-logout:hover:not(:disabled),
.drops-dashboard button:not(.btn-primary):not(.modal-close):hover:not(:disabled) {
  background: rgba(15, 23, 42, 0.96);
  border-color: rgba(96, 165, 250, 0.28);
}

.drops-dashboard input,
.drops-dashboard select,
.drops-dashboard textarea {
  background: rgba(7, 14, 28, 0.92);
  border-color: rgba(148, 163, 184, 0.18);
}

.drops-dashboard .field.stack,
.drops-dashboard .advanced-options,
.drops-dashboard .status-checklist-item,
.drops-dashboard .chips,
.drops-dashboard .text-list,
.drops-dashboard .secondary-panel,
.drops-dashboard .click-secondary-panel,
.drops-dashboard .file-drop,
.drops-dashboard .status-box,
.drops-dashboard .kpi,
.drops-dashboard .empty-state,
.drops-dashboard .result-shell,
.drops-dashboard .table-wrap,
.drops-dashboard .admin-accordion,
.drops-dashboard .detail-summary-card,
.drops-dashboard .detail-insight-item {
  background: rgba(7, 14, 28, 0.84);
  border-color: rgba(96, 165, 250, 0.14);
}

.drops-dashboard .file-drop:hover {
  border-color: rgba(96, 165, 250, 0.34);
  background: rgba(10, 18, 36, 0.94);
}

.drops-dashboard .file-drop-icon,
.drops-dashboard .status-checklist-icon,
.drops-dashboard .secondary-panel summary::after {
  background: rgba(37, 99, 235, 0.18);
  border-color: rgba(96, 165, 250, 0.24);
}

.drops-dashboard .step-pill.active,
.drops-dashboard .step-pill.ready {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(15, 23, 42, 0.86));
  border-color: rgba(96, 165, 250, 0.24);
}

.drops-dashboard .table-wrap,
.drops-dashboard .detail-subs-table-wrap,
.drops-dashboard .subs-editor-table-wrap,
.drops-dashboard .org-table-wrap,
.drops-dashboard .results-step .result-shell-table,
.drops-dashboard .results-step .result-shell-table .table-wrap,
.drops-dashboard .results-step .result-shell-table table {
  background: #09111f;
}

.drops-dashboard .results-step .result-shell-table .table-search-field input {
  background: #0b1424;
}

@media (max-width: 1250px) {
  .workflow-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  }
}

@media (max-width: 720px) {
  .review-queue-toolbar,
  .subs-editor-toolbar {
    grid-template-columns: 1fr;
  }
}


.subs-editor-quickbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 8px 0 12px;
}

.subs-editor-quickfilters,
.subs-editor-quickactions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.subs-editor-quickfilters button,
.subs-editor-quickactions button,
.subs-editor-page-jump button {
  width: auto;
  min-width: auto;
}

.subs-editor-quickfilters button.is-active {
  background: rgba(37, 99, 235, 0.22);
  border-color: rgba(96, 165, 250, 0.42);
  color: #dbeafe;
}

.subs-editor-page-jump {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  min-width: auto;
  font-size: 0.72rem;
  color: rgba(226, 232, 240, 0.72);
}

.subs-editor-page-jump input {
  width: 72px;
  min-width: 72px;
  text-align: center;
}

.subs-editor-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #09111f;
}

.subs-editor-table th:nth-child(1),
.subs-editor-table td:nth-child(1) {
  min-width: 320px;
}

.subs-editor-table th:nth-child(2),
.subs-editor-table td:nth-child(2) {
  min-width: 260px;
}

.subs-editor-table th:nth-child(3),
.subs-editor-table td:nth-child(3) {
  min-width: 220px;
}

.subs-editor-table th:nth-child(4),
.subs-editor-table td:nth-child(4) {
  width: 120px;
}

.subs-editor-table td {
  padding-top: 12px;
  padding-bottom: 12px;
}

.subs-editor-table tr:focus-within td,
.subs-editor-table tr:hover td {
  background: rgba(15, 23, 42, 0.84);
}

.subs-editor-row-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.chip-rd {
  font-size: 0.64rem;
  padding: 4px 8px;
}

.chip-rd-warn {
  color: #fcd6db;
  border-color: rgba(248, 113, 113, 0.32);
  background: rgba(82, 21, 33, 0.66);
}


@media (max-width: 960px) {
  .subs-editor-quickbar {
    flex-direction: column;
    align-items: stretch;
  }

  .subs-editor-page-jump {
    width: 100%;
    justify-content: flex-start;
  }
}



.subs-editor-domain-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.subs-editor-open-domain {
  width: 36px;
  min-width: 36px;
  height: 36px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1;
}

.review-queue-table th:first-child,
.review-queue-table td:first-child {
  width: 52px;
  min-width: 52px;
  max-width: 52px;
  text-align: center;
  padding-inline: 10px;
}

.review-queue-table input[type="checkbox"] {
  display: block;
  margin: 4px auto 0;
}

.review-queue-table td:nth-child(4),
.review-queue-table th:nth-child(4) {
  width: 88px;
  min-width: 88px;
  white-space: nowrap;
}

.review-queue-table td:nth-child(5) {
  min-width: 240px;
}

.review-queue-table td:nth-child(6) {
  min-width: 240px;
}

.review-queue-domain-select.is-placeholder {
  color: rgba(232, 236, 241, 0.58);
}

.review-queue-evidence {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.review-queue-subs-cell {
  display: grid;
  gap: 4px;
}

.review-queue-warning {
  color: #f6c27a;
}

.review-queue-domain-list {
  display: grid;
  gap: 8px;
}

.review-queue-domain-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 8px 10px;
  border: 1px solid rgba(96, 165, 250, 0.14);
  border-radius: 12px;
  background: rgba(10, 18, 32, 0.78);
}

.review-queue-domain-option.is-selected {
  border-color: rgba(96, 165, 250, 0.38);
  background: rgba(17, 32, 58, 0.92);
}

.review-queue-domain-option input {
  margin-top: 2px;
}

.review-queue-domain-option span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 0.82rem;
}

.review-queue-grouped-details {
  margin-top: 4px;
  font-size: 0.75rem;
}
.review-queue-grouped-details summary {
  cursor: pointer;
  color: var(--muted);
  font-style: italic;
}
.review-queue-grouped-details ul {
  margin: 4px 0 0 16px;
  padding: 0;
  list-style: disc;
}
.review-queue-grouped-details li {
  padding: 1px 0;
}
.detail-grouped-names {
  margin: 6px 0;
  font-size: 0.82rem;
  color: var(--muted);
}

