.admin-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-bottom: 2rem; }
@media (min-width: 640px)  { .admin-stats { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .admin-stats { grid-template-columns: repeat(6, 1fr); } }
.admin-stat-card { padding: 1rem; border-radius: 1rem; background: oklch(0.92 0.04 15 / 0.05); box-shadow: inset 0 0 0 1px oklch(0.92 0.04 15 / 0.1); }
.admin-stat-card svg { width: 1rem; height: 1rem; color: var(--rose-hot); fill: none; stroke: currentColor; stroke-width: 1.75; margin-bottom: 0.5rem; }
.admin-stat-card .value { font-family: var(--font-serif); font-size: 1.5rem; color: var(--rose); }
.admin-stat-card .label { font-size: 0.6875rem; color: oklch(0.92 0.04 15 / 0.6); }

.admin-grid { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .admin-grid { grid-template-columns: 1fr 320px; } }

.admin-section h3 {
  font-family: var(--font-serif); font-size: 1.5rem; color: var(--rose);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;
}
.admin-section h3 svg { width: 1.25rem; height: 1.25rem; color: var(--rose-hot); fill: none; stroke: currentColor; stroke-width: 1.75; }

/* ── Moderation queue ────────────────────────────────────────────── */
.mod-queue-section { margin-bottom: 2rem; }

.mod-queue-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 1.5rem; height: 1.5rem; padding: 0 0.375rem;
  background: oklch(0.55 0.22 22 / 0.25); color: var(--rose-hot);
  border-radius: 9999px; font-size: 0.75rem; font-weight: 700;
  font-family: var(--font-mono); vertical-align: middle; margin-left: 0.375rem;
}

#mod-queue-list { display: flex; flex-direction: column; gap: 0.75rem; }

.rpt-card {
  border-radius: 1rem; overflow: hidden;
  background: oklch(0.92 0.04 15 / 0.04);
  box-shadow: inset 0 0 0 1px oklch(0.92 0.04 15 / 0.1);
  padding: 1rem 1rem 0.75rem;
  transition: box-shadow 0.15s;
}
.rpt-card:hover { box-shadow: inset 0 0 0 1px oklch(0.92 0.04 15 / 0.18); }

/* header */
.rpt-header { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-bottom: 0.625rem; flex-wrap: wrap; }

.rpt-type-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.25rem 0.6rem; border-radius: 9999px;
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.rpt-type-badge svg { width: 0.75rem; height: 0.75rem; fill: none; stroke: currentColor; stroke-width: 1.75; }
.rpt-type-reel   { background: oklch(0.7 0.18 280 / 0.18); color: oklch(0.75 0.18 280); }
.rpt-type-thread { background: oklch(0.65 0.2 145 / 0.18); color: oklch(0.7  0.2  145); }
.rpt-type-chat   { background: oklch(0.7 0.15 220 / 0.18); color: oklch(0.72 0.15 220); }

.rpt-meta-right { display: flex; align-items: center; gap: 0.375rem; font-size: 0.8125rem; color: oklch(0.92 0.04 15 / 0.6); }
.rpt-reporter { color: var(--rose); font-weight: 600; }
.rpt-dot { opacity: 0.4; }
.rpt-time { font-family: var(--font-mono); font-size: 0.75rem; }

/* reason + owner rows */
.rpt-reason-row, .rpt-owner-row {
  display: flex; align-items: baseline; gap: 0.5rem; font-size: 0.8125rem;
  margin-bottom: 0.375rem;
}
.rpt-reason-label, .rpt-owner-label {
  font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: oklch(0.92 0.04 15 / 0.4); font-weight: 600; flex-shrink: 0;
}
.rpt-reason-text { color: oklch(0.92 0.04 15 / 0.8); font-style: italic; }
.rpt-owner-handle { color: var(--rose); font-weight: 600; }

/* preview toggle */
.rpt-preview-toggle {
  display: flex; align-items: center; gap: 0.375rem;
  background: none; border: none; cursor: pointer;
  color: oklch(0.92 0.04 15 / 0.5); font-size: 0.8rem;
  padding: 0.5rem 0; margin-top: 0.25rem; transition: color 0.12s;
}
.rpt-preview-toggle:hover { color: oklch(0.92 0.04 15 / 0.85); }
.rpt-preview-toggle svg { width: 0.875rem; height: 0.875rem; fill: none; stroke: currentColor; stroke-width: 1.75; }
.rpt-chevron { margin-left: auto; transition: transform 0.2s; }
.rpt-preview-toggle[aria-expanded="true"] .rpt-chevron { transform: rotate(180deg); }

/* preview content */
.rpt-preview {
  margin-top: 0.5rem; border-radius: 0.625rem;
  background: oklch(0.92 0.04 15 / 0.05);
  border: 1px solid oklch(0.92 0.04 15 / 0.1);
  overflow: hidden;
}
.rpt-thumb {
  width: 100%; max-height: 240px; object-fit: cover; display: block;
  border-bottom: 1px solid oklch(0.92 0.04 15 / 0.1);
}
.rpt-preview-text { padding: 0.75rem; font-size: 0.875rem; color: oklch(0.92 0.04 15 / 0.8); }
.rpt-preview-text strong { display: block; font-weight: 700; margin-bottom: 0.25rem; color: oklch(0.92 0.04 15); }
.rpt-preview-id { display: block; font-family: var(--font-mono); font-size: 0.65rem; color: oklch(0.92 0.04 15 / 0.35); margin-top: 0.25rem; }
.rpt-body-excerpt { margin: 0.375rem 0 0; line-height: 1.55; color: oklch(0.92 0.04 15 / 0.65); }
.rpt-chat-msg { margin: 0; font-style: italic; line-height: 1.55; }
.rpt-view-link {
  display: block; padding: 0.5rem 0.75rem;
  font-size: 0.8rem; color: oklch(0.65 0.18 220); font-weight: 600;
  text-decoration: none; border-top: 1px solid oklch(0.92 0.04 15 / 0.08);
  transition: background 0.12s;
}
.rpt-view-link:hover { background: oklch(0.92 0.04 15 / 0.05); }

/* actions */
.rpt-actions { display: flex; gap: 0.5rem; margin-top: 0.75rem; flex-wrap: wrap; }
.rpt-dismiss-btn, .rpt-warn-btn, .rpt-ban-btn {
  border: none; cursor: pointer; padding: 0.375rem 0.875rem;
  border-radius: 9999px; font-size: 0.75rem; font-weight: 600;
  font-family: var(--font-sans); letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.rpt-dismiss-btn:active, .rpt-warn-btn:active, .rpt-ban-btn:active { transform: scale(0.95); }

.rpt-dismiss-btn {
  background: oklch(0.92 0.04 15 / 0.07);
  color: oklch(0.92 0.04 15 / 0.5);
  box-shadow: inset 0 0 0 1px oklch(0.92 0.04 15 / 0.1);
}
.rpt-dismiss-btn:hover {
  background: oklch(0.92 0.04 15 / 0.13);
  color: oklch(0.92 0.04 15 / 0.75);
}

.rpt-warn-btn {
  background: oklch(0.75 0.18 65 / 0.12);
  color: oklch(0.78 0.18 65);
  box-shadow: inset 0 0 0 1px oklch(0.75 0.18 65 / 0.3);
}
.rpt-warn-btn:hover {
  background: oklch(0.75 0.18 65 / 0.22);
  box-shadow: inset 0 0 0 1px oklch(0.75 0.18 65 / 0.5);
}

.rpt-ban-btn {
  background: oklch(0.52 0.22 22 / 0.15);
  color: var(--rose-hot);
  box-shadow: inset 0 0 0 1px oklch(0.52 0.22 22 / 0.35);
}
.rpt-ban-btn:hover {
  background: oklch(0.52 0.22 22 / 0.28);
  box-shadow: inset 0 0 0 1px oklch(0.52 0.22 22 / 0.55);
}
.rpt-card.rpt-removing { opacity: 0; transform: translateX(12px); transition: opacity 0.25s, transform 0.25s; }

.queue-empty { padding: 2.5rem 0; text-align: center; color: oklch(0.92 0.04 15 / 0.5); font-family: var(--font-mono); font-size: 0.875rem; }

.admin-aside { display: flex; flex-direction: column; gap: 1rem; }
.signals-card { padding: 1.25rem; border-radius: 1rem; background: oklch(0.92 0.04 15 / 0.05); box-shadow: inset 0 0 0 1px oklch(0.92 0.04 15 / 0.1); }
.signals-card .label { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.15em; color: oklch(0.92 0.04 15 / 0.5); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.375rem; }
.signals-card .label svg { width: 0.75rem; height: 0.75rem; fill: none; stroke: currentColor; stroke-width: 1.75; }
.signals-card ul { list-style: none; font-size: 0.875rem; color: oklch(0.92 0.04 15 / 0.8); display: flex; flex-direction: column; gap: 0.375rem; }

.curate-card {
  padding: 1.25rem; border-radius: 1rem; color: var(--rose);
  background: linear-gradient(180deg, oklch(0.3 0.1 18) 0%, oklch(0.24 0.09 18) 100%);
  box-shadow: inset 0 1px 0 oklch(1 0 0 / 0.06);
}
.curate-card .label { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.15em; opacity: 0.7; margin-bottom: 0.5rem; }
.curate-card button {
  width: 100%; margin-top: 0.25rem; background: var(--rose); color: var(--wine-deep);
  border: none; cursor: pointer; padding: 0.5rem 0; border-radius: 9999px; font-size: 0.875rem;
  transition: opacity 0.15s ease;
}
.curate-card button:hover { opacity: 0.9; }

/* ── Segmented control ──────────────────────────────────────────── */
.seg-control {
  display: inline-flex; align-items: stretch;
  background: oklch(0.92 0.04 15 / 0.06);
  border: 1px solid oklch(0.92 0.04 15 / 0.14);
  border-radius: 0.625rem; overflow: hidden;
}
.seg-btn {
  background: none; border: none; cursor: pointer;
  padding: 0.45rem 1.1rem; font-size: 0.8125rem; font-weight: 500;
  color: oklch(0.92 0.04 15 / 0.5); font-family: var(--font-sans);
  transition: background 0.15s, color 0.15s; white-space: nowrap;
}
.seg-btn:hover { color: var(--rose); background: oklch(0.92 0.04 15 / 0.06); }
.seg-btn.active { background: oklch(0.92 0.04 15 / 0.14); color: var(--rose); font-weight: 600; }
.seg-divider { width: 1px; background: oklch(0.92 0.04 15 / 0.14); flex-shrink: 0; }

/* ── Users section ──────────────────────────────────────────────── */
.users-section { margin-bottom: 2rem; }

.users-section-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap;
}
.users-section-head h3 {
  font-family: var(--font-serif); font-size: 1.5rem; color: var(--rose);
  display: flex; align-items: center; gap: 0.5rem; margin: 0;
}
.users-section-head h3 svg {
  width: 1.25rem; height: 1.25rem; color: var(--rose-hot);
  fill: none; stroke: currentColor; stroke-width: 1.75; flex-shrink: 0;
}

.users-search-wrap {
  position: relative; width: 20rem; max-width: 100%;
}
.users-search-wrap svg {
  position: absolute; left: 0.875rem; top: 50%; transform: translateY(-50%);
  width: 1rem; height: 1rem; fill: none; stroke: oklch(0.92 0.04 15 / 0.4);
  stroke-width: 1.75; pointer-events: none;
}
#users-search {
  width: 100%; padding: 0.625rem 1rem 0.625rem 2.5rem;
  background: oklch(0.92 0.04 15 / 0.05);
  border: 1px solid oklch(0.92 0.04 15 / 0.12);
  border-radius: 9999px; color: var(--rose);
  font-family: var(--font-sans); font-size: 0.875rem;
  outline: none; transition: border-color 0.15s;
}
#users-search::placeholder { color: oklch(0.92 0.04 15 / 0.35); }
#users-search:focus { border-color: oklch(0.92 0.04 15 / 0.35); }

.users-table-wrap {
  overflow-x: auto; border-radius: 1rem;
  box-shadow: inset 0 0 0 1px oklch(0.92 0.04 15 / 0.1);
}
.users-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.875rem; color: var(--rose);
}
.users-table thead tr { border-bottom: 1px solid oklch(0.92 0.04 15 / 0.1); }
.users-table th {
  padding: 0.75rem 1rem; text-align: left;
  font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.15em;
  font-weight: 600; color: oklch(0.92 0.04 15 / 0.45);
  font-family: var(--font-sans); white-space: nowrap;
}
.users-table .th-actions { text-align: right; }
.users-table tbody tr {
  border-bottom: 1px solid oklch(0.92 0.04 15 / 0.06);
  transition: background 0.1s;
}
.users-table tbody tr:last-child { border-bottom: none; }
.users-table tbody tr:hover { background: oklch(0.92 0.04 15 / 0.03); }
.users-table td { padding: 0.875rem 1rem; vertical-align: middle; }

.user-cell { display: flex; align-items: center; gap: 0.75rem; }
.user-av {
  width: 2.25rem; height: 2.25rem; border-radius: 9999px;
  background: oklch(0.27 0.1 18);
  border: 1.5px solid oklch(0.92 0.04 15 / 0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.user-av span { font-family: var(--font-serif); font-size: 0.875rem; color: var(--rose); }
.user-av img { width: 100%; height: 100%; object-fit: cover; }
.user-info { min-width: 0; }
.user-name {
  display: flex; align-items: center; gap: 0.3rem;
  font-weight: 500; color: var(--rose);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 12rem;
}
.admin-gold-tick { font-size: 0.95rem; }
.user-handle { font-size: 0.6875rem; color: oklch(0.92 0.04 15 / 0.5); font-family: var(--font-mono); }

.user-email { color: oklch(0.92 0.04 15 / 0.65); font-size: 0.8125rem; }
.user-date {
  color: oklch(0.92 0.04 15 / 0.5); font-size: 0.75rem;
  white-space: nowrap; font-family: var(--font-mono);
}

/* Status badges */
.status-badge {
  display: inline-flex; align-items: center;
  padding: 0.2rem 0.625rem; border-radius: 9999px;
  font-size: 0.625rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  font-family: var(--font-mono);
}
.s-active   { background: oklch(0.62 0.18 145 / 0.12); color: oklch(0.72 0.18 145); }
.s-suspended{ background: oklch(0.75 0.18 65  / 0.14); color: oklch(0.8  0.18 65);  }
.s-banned   { background: oklch(0.55 0.22 22  / 0.14); color: var(--rose-hot);       }

/* Action buttons per row */
.row-actions { display: flex; gap: 0.375rem; justify-content: flex-end; }
.act-btn {
  border: none; cursor: pointer;
  padding: 0.35rem 0.875rem; border-radius: 9999px;
  font-size: 0.75rem; font-weight: 500; font-family: var(--font-sans);
  transition: background 0.15s;
}
.act-suspend    { background: oklch(0.75 0.18 65  / 0.12); color: oklch(0.8  0.18 65); }
.act-suspend:hover    { background: oklch(0.75 0.18 65  / 0.24); }
.act-unsuspend  { background: oklch(0.62 0.18 145 / 0.12); color: oklch(0.72 0.18 145); }
.act-unsuspend:hover  { background: oklch(0.62 0.18 145 / 0.24); }
.act-ban        { background: oklch(0.55 0.22 22  / 0.12); color: var(--rose-hot); }
.act-ban:hover        { background: oklch(0.55 0.22 22  / 0.24); }
.act-unban      { background: oklch(0.62 0.18 145 / 0.12); color: oklch(0.72 0.18 145); }
.act-unban:hover      { background: oklch(0.62 0.18 145 / 0.24); }
.act-verify     { background: oklch(0.78 0.16 78 / 0.14); color: oklch(0.82 0.16 78); }
.act-verify:hover     { background: oklch(0.78 0.16 78 / 0.26); }
.act-unverify   { background: oklch(0.78 0.16 78 / 0.24); color: oklch(0.9 0.14 82); font-weight: 600; }
.act-unverify:hover   { background: oklch(0.78 0.16 78 / 0.12); }

/* Custom role dropdown */
.role-dd { position: relative; }
.role-dd-btn {
  display: inline-flex; align-items: center; gap: 0.3rem;
  border: 1px solid oklch(0.92 0.04 15 / 0.18);
  background: oklch(0.92 0.04 15 / 0.06); color: var(--rose);
  border-radius: 9999px; padding: 0.3rem 0.625rem 0.3rem 0.75rem;
  font-size: 0.75rem; font-family: var(--font-sans); cursor: pointer;
  transition: border-color 0.15s, background 0.15s; white-space: nowrap;
}
.role-dd-btn svg { width: 0.875rem; height: 0.875rem; fill: none; stroke: currentColor; stroke-width: 2; transition: transform 0.15s; }
.role-dd-btn:hover { border-color: oklch(0.92 0.04 15 / 0.35); background: oklch(0.92 0.04 15 / 0.1); }
.role-dd-btn.open  { border-color: oklch(0.55 0.22 22 / 0.5); }
.role-dd-btn.open svg { transform: rotate(180deg); }
.role-dd-btn:disabled { opacity: 0.45; cursor: default; }

.role-dd-menu {
  position: fixed;
  background: oklch(0.22 0.09 18);
  border: 1px solid oklch(0.92 0.04 15 / 0.14);
  border-radius: 0.75rem; overflow: hidden;
  box-shadow: 0 8px 24px oklch(0 0 0 / 0.45);
  z-index: 300; min-width: 7rem;
}
.role-dd-opt {
  display: block; width: 100%; text-align: left;
  padding: 0.55rem 0.875rem; background: none; border: none;
  color: oklch(0.92 0.04 15 / 0.7); font-size: 0.8125rem;
  font-family: var(--font-sans); cursor: pointer;
  transition: background 0.1s, color 0.1s;
}
.role-dd-opt:hover { background: oklch(0.92 0.04 15 / 0.07); color: var(--rose); }
.role-dd-opt + .role-dd-opt { border-top: 1px solid oklch(0.92 0.04 15 / 0.08); }

.users-placeholder {
  padding: 3rem; text-align: center;
  color: oklch(0.92 0.04 15 / 0.4);
  font-family: var(--font-mono); font-size: 0.875rem;
}

/* ── Modal ──────────────────────────────────────────────────────── */
.admin-modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  background: oklch(0.1 0.04 18 / 0.72); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.admin-modal-overlay.open { opacity: 1; visibility: visible; }

.admin-modal {
  width: 100%; max-width: 28rem;
  background: oklch(0.22 0.09 18);
  border: 1px solid oklch(0.92 0.04 15 / 0.12);
  border-radius: 1.5rem;
  box-shadow: 0 32px 80px -16px oklch(0.08 0.03 18 / 0.7);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.admin-modal-overlay.open .admin-modal { transform: scale(1) translateY(0); }

.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 1.5rem 0;
}
.modal-header h4 {
  font-family: var(--font-serif); font-size: 1.375rem; color: var(--rose); margin: 0;
}
.modal-close-btn {
  width: 2rem; height: 2rem; border-radius: 9999px;
  border: none; cursor: pointer;
  background: oklch(0.92 0.04 15 / 0.06); color: oklch(0.92 0.04 15 / 0.6);
  display: grid; place-items: center; transition: background 0.15s;
  flex-shrink: 0;
}
.modal-close-btn:hover { background: oklch(0.92 0.04 15 / 0.12); color: var(--rose); }
.modal-close-btn svg { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-width: 2; }

.modal-target {
  padding: 0.375rem 1.5rem 0; margin: 0;
  font-family: var(--font-mono); font-size: 0.8125rem;
  color: oklch(0.92 0.04 15 / 0.5);
}

.modal-body { padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }

.modal-field { display: flex; flex-direction: column; gap: 0.375rem; }
.modal-field label {
  font-size: 0.6875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: oklch(0.92 0.04 15 / 0.55);
}
.modal-field select,
.modal-field textarea {
  background: oklch(0.18 0.08 18);
  border: 1px solid oklch(0.92 0.04 15 / 0.12);
  border-radius: 0.75rem; color: var(--rose);
  font-family: var(--font-sans); font-size: 0.875rem;
  outline: none; transition: border-color 0.15s;
}
.modal-field select { padding: 0.625rem 0.875rem; cursor: pointer; }
.modal-field textarea { padding: 0.75rem 0.875rem; resize: vertical; min-height: 5rem; line-height: 1.5; }
.modal-field select:focus,
.modal-field textarea:focus { border-color: oklch(0.92 0.04 15 / 0.35); }

.required { color: var(--rose-hot); }
.modal-field-error { font-size: 0.75rem; color: var(--rose-hot); margin: 0; }

.modal-footer {
  display: flex; gap: 0.75rem; justify-content: flex-end;
  padding: 0 1.5rem 1.5rem;
}
.modal-btn-cancel {
  padding: 0.625rem 1.25rem; border-radius: 9999px;
  border: 1px solid oklch(0.92 0.04 15 / 0.15); background: none;
  color: oklch(0.92 0.04 15 / 0.7); font-family: var(--font-sans); font-size: 0.875rem; cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.modal-btn-cancel:hover { background: oklch(0.92 0.04 15 / 0.07); color: var(--rose); }
.modal-btn-confirm {
  padding: 0.625rem 1.5rem; border-radius: 9999px;
  border: none; background: var(--rose-hot); color: oklch(0.15 0.07 18);
  font-family: var(--font-sans); font-size: 0.875rem; font-weight: 600; cursor: pointer;
  transition: opacity 0.15s;
}
.modal-btn-confirm:hover { opacity: 0.85; }
.modal-btn-confirm:disabled { opacity: 0.45; cursor: not-allowed; }

/* ── Promote a Creator section ──────────────────────────────────── */
.promote-section { margin-top: 2rem; }
.promote-sub { font-size: 0.875rem; color: oklch(0.92 0.04 15 / 0.6); margin-bottom: 1.5rem; }
.promote-sub strong { color: var(--rose); }

.promote-form {
  background: oklch(0.92 0.04 15 / 0.04);
  border: 1px solid oklch(0.92 0.04 15 / 0.1);
  border-radius: 1.25rem;
  padding: 1.5rem;
}

.promote-grid { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .promote-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .promote-grid .promote-field:nth-child(2) { grid-column: 1 / -1; } }

.promote-field { display: flex; flex-direction: column; gap: 0.375rem; }
.promote-field label { font-size: 0.75rem; font-weight: 600; color: oklch(0.92 0.04 15 / 0.6); text-transform: uppercase; letter-spacing: 0.08em; }
.promote-optional { font-weight: 400; text-transform: none; letter-spacing: 0; opacity: 0.7; }
.required { color: var(--rose-hot); }

.promote-handle-wrap { position: relative; display: flex; align-items: center; }
.promote-at {
  position: absolute; left: 1rem;
  font-family: var(--font-mono); font-size: 0.9375rem; color: oklch(0.92 0.04 15 / 0.45);
  pointer-events: none;
}

.promote-field input,
.promote-field textarea {
  width: 100%;
  background: oklch(0.92 0.04 15 / 0.05);
  border: 1px solid oklch(0.92 0.04 15 / 0.12);
  border-radius: 0.75rem;
  color: var(--rose); font-family: var(--font-sans); font-size: 0.9375rem;
  padding: 0.75rem 1rem; outline: none;
  transition: border-color 0.15s;
}
.promote-field input::placeholder,
.promote-field textarea::placeholder { color: oklch(0.92 0.04 15 / 0.3); }
.promote-field input:focus,
.promote-field textarea:focus { border-color: oklch(0.55 0.22 22 / 0.5); }
.promote-field textarea { resize: vertical; min-height: 5rem; }
.promote-handle-wrap input { padding-left: 2.25rem; }

.promote-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid oklch(0.92 0.04 15 / 0.08);
}

.promote-toggle { display: flex; align-items: center; gap: 0.625rem; cursor: pointer; user-select: none; }
.promote-toggle input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.promote-toggle-track {
  width: 2.5rem; height: 1.375rem; border-radius: 9999px;
  background: oklch(0.92 0.04 15 / 0.15); border: 1px solid oklch(0.92 0.04 15 / 0.18);
  position: relative; flex-shrink: 0; transition: background 0.2s;
}
.promote-toggle input:checked + .promote-toggle-track { background: oklch(0.55 0.22 22 / 0.8); border-color: transparent; }
.promote-toggle-thumb {
  position: absolute; top: 2px; left: 2px;
  width: 1rem; height: 1rem; border-radius: 9999px;
  background: var(--rose); transition: transform 0.2s;
}
.promote-toggle input:checked + .promote-toggle-track .promote-toggle-thumb { transform: translateX(1.125rem); }
.promote-toggle-label { font-size: 0.875rem; color: oklch(0.92 0.04 15 / 0.8); }

.promote-save-btn {
  padding: 0.625rem 1.75rem; border-radius: 9999px; border: none;
  background: var(--rose-hot); color: oklch(0.15 0.07 18);
  font-family: var(--font-sans); font-size: 0.875rem; font-weight: 600;
  cursor: pointer; transition: opacity 0.15s;
}
.promote-save-btn:hover { opacity: 0.85; }
.promote-save-btn:disabled { opacity: 0.45; cursor: not-allowed; }

.promote-status {
  margin-top: 1rem; padding: 0.625rem 1rem; border-radius: 0.625rem;
  font-size: 0.8125rem;
}
.promote-status.ok { background: oklch(0.38 0.16 150 / 0.15); color: oklch(0.75 0.12 150); }
.promote-status.err { background: oklch(0.55 0.22 22 / 0.12); color: var(--rose-hot); }

/* ── Legal Documents section ────────────────────────────────────── */
.legal-section { margin-top: 2rem; }

.legal-upload-grid { display: flex; flex-direction: column; gap: 0.875rem; }

.legal-upload-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: oklch(0.92 0.04 15 / 0.04);
  border: 1px solid oklch(0.92 0.04 15 / 0.1);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  flex-wrap: wrap;
}

.legal-upload-info h4 { font-size: 0.9375rem; color: var(--rose); font-weight: 600; margin: 0 0 0.25rem; }
.legal-upload-status { font-size: 0.8125rem; color: oklch(0.92 0.04 15 / 0.55); margin: 0; }
.legal-upload-status.legal-status-ok { color: oklch(0.75 0.12 150); }
.legal-upload-status.legal-status-err { color: var(--rose-hot); }

.legal-upload-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem; border-radius: 9999px;
  background: oklch(0.92 0.04 15 / 0.07);
  color: oklch(0.92 0.04 15 / 0.85);
  box-shadow: inset 0 0 0 1px oklch(0.92 0.04 15 / 0.15);
  font-size: 0.8125rem; font-weight: 600; cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
  flex-shrink: 0;
}
.legal-upload-btn:hover { background: oklch(0.92 0.04 15 / 0.12); box-shadow: inset 0 0 0 1px oklch(0.92 0.04 15 / 0.25); }
.legal-upload-row.legal-uploading .legal-upload-btn { opacity: 0.6; pointer-events: none; }
