*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0f1117;
  --surface: #181b24;
  --surface-2: #222735;
  --border: #2e3448;
  --text: #e8eaf0;
  --muted: #8b93a7;
  --primary: #4f7cff;
  --primary-hover: #3d6aef;
  --success: #22c55e;
  --success-hover: #16a34a;
  --danger: #ef4444;
  --radius: 10px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

html, body {
  margin: 0;
  height: 100%;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.app {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  margin-right: auto;
}

.brand svg {
  color: var(--primary);
}

.toolbar-group {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  background: var(--surface-2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.toolbar-actions {
  display: flex;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn.primary {
  background: var(--primary);
  color: #fff;
}

.btn.primary:hover {
  background: var(--primary-hover);
}

.btn.success {
  background: var(--success);
  color: #fff;
}

.btn.success:hover {
  background: var(--success-hover);
}

.btn.secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn.secondary:hover {
  background: var(--border);
}

.btn.icon {
  padding: 6px 12px;
  min-width: 36px;
}

.rotate-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
}

.rotate-icon-btn svg {
  display: block;
}

.quick-action-btn.active {
  background: var(--primary);
  color: #fff;
}

#overlay.addtext-mode {
  cursor: text;
}

.toolbar-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  margin: 0 4px;
}

.upload-btn {
  cursor: pointer;
}

.tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.tool-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.tool-btn.active {
  background: var(--primary);
  color: #fff;
}

.slider-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0 4px;
}

.slider-label input[type="range"] {
  width: 90px;
  accent-color: var(--primary);
}

#pageIndicator {
  font-size: 0.9rem;
  color: var(--muted);
  min-width: 70px;
  text-align: center;
}

.workspace {
  flex: 1;
  overflow: auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

.dropzone {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px;
}

.dropzone-inner {
  text-align: center;
  max-width: 420px;
  color: var(--muted);
}

.dropzone-inner svg {
  color: var(--primary);
  opacity: 0.7;
  margin-bottom: 16px;
}

.dropzone-inner h2 {
  color: var(--text);
  font-size: 1.25rem;
  margin: 0 0 8px;
}

.dropzone-inner p {
  margin: 0;
  line-height: 1.5;
}

.dropzone.drag-over .dropzone-inner {
  opacity: 0.8;
}

.viewer {
  display: flex;
  justify-content: center;
  padding: 32px 24px 48px;
  min-height: 100%;
}

.page-wrap {
  position: relative;
  box-shadow: var(--shadow);
  line-height: 0;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.page-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}

.page-wrap canvas {
  position: absolute;
  top: 0;
  left: 0;
  cursor: crosshair;
  touch-action: none;
}

.page-wrap canvas.tool-rect {
  cursor: cell;
}

.page-wrap canvas.edit-text-mode {
  cursor: default;
}

.text-edit-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.text-edit-layer.is-saving {
  cursor: wait;
}

.text-edit-box {
  position: absolute;
  box-sizing: border-box;
  padding: 1px 3px;
  border: 1px dashed transparent;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.85);
  outline: none;
  cursor: text;
  line-height: 1.2;
  overflow: hidden;
  white-space: pre-wrap;
  word-break: break-word;
}

.text-edit-box:hover,
.text-edit-box.is-active {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(79, 124, 255, 0.25);
}

.text-edit-empty {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 8px;
  margin: 0;
  padding: 10px 12px;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--muted);
  background: rgba(15, 20, 25, 0.88);
  border-radius: 8px;
  pointer-events: auto;
}

.text-edit-empty .link-btn {
  color: var(--primary);
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.text-edit-bar {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  max-width: calc(100% - 8px);
}

.text-edit-bar label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
}

.text-edit-bar input[type="number"] {
  width: 52px;
  padding: 4px 6px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
}

.text-edit-bar input[type="color"] {
  width: 32px;
  height: 28px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
}

.text-edit-bar .btn-sm {
  padding: 4px 10px;
  font-size: 0.75rem;
}

.text-edit-bar .btn-sm:disabled {
  opacity: 0.6;
  cursor: wait;
}

.text-edit-bold-btn {
  font-weight: 800;
  min-width: 28px;
}

.text-edit-bold-btn.is-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.text-edit-help-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
}

.text-edit-help-link:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.text-edit-saving {
  font-size: 0.75rem;
  color: var(--primary);
  white-space: nowrap;
}

.text-edit-hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  margin: 0;
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  pointer-events: none;
}

@media (max-width: 640px) {
  .text-edit-bar {
    gap: 6px;
    padding: 8px;
  }

  .text-edit-bar input[type="number"] {
    width: 48px;
  }

  .text-edit-hint {
    position: static;
    margin-top: 8px;
    padding: 0 8px;
  }
}

.pdf-editor-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  z-index: 100;
  animation: fadeIn 0.2s ease;
}

.pdf-editor-toast.error {
  border-color: var(--danger);
  color: #fca5a5;
}

.pdf-editor-loading {
  position: fixed;
  inset: 0;
  background: rgba(15, 17, 23, 0.7);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 999999;
  backdrop-filter: blur(4px);
}

.pdf-editor-loading.is-visible {
  display: flex;
}

.pdf-editor-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@media (max-width: 768px) {
  .toolbar {
    padding: 10px 12px;
  }

  .brand span {
    display: none;
  }

  .tool-btn span,
  .tool-btn:not(.active) {
    font-size: 0;
    gap: 0;
  }

  .tools-sidebar {
    width: 100%;
    max-height: 120px;
    overflow-x: auto;
    overflow-y: hidden;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .tools-nav {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .nav-item {
    white-space: nowrap;
  }

  .app-body {
    flex-direction: column;
  }
}

/* Multi-tool layout */
.app-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.tools-sidebar {
  width: 200px;
  flex-shrink: 0;
  background: var(--surface);
  border-right: 1px solid var(--border);
  overflow-y: auto;
}

.tools-nav {
  display: flex;
  flex-direction: column;
  padding: 8px;
  gap: 2px;
}

.nav-item {
  text-align: left;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.nav-item:hover {
  background: var(--surface-2);
  color: var(--text);
}

.nav-item.active {
  background: var(--primary);
  color: #fff;
}

.tool-panel {
  display: none;
  flex: 1;
  overflow: auto;
  padding: 24px;
}

.tool-panel.active {
  display: block;
}

.tool-card {
  max-width: 560px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.tool-card h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.tool-card p {
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.5;
}

.tool-card .hint {
  font-size: 0.85rem;
  color: var(--muted);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--muted);
}

.field input,
.field select {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  font-size: 0.95rem;
}

.btn-row {
  display: flex;
  gap: 8px;
  margin: 12px 0;
}

.output-box {
  margin-top: 16px;
  padding: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-height: 80px;
  max-height: 320px;
  overflow: auto;
  white-space: pre-wrap;
  font-size: 0.85rem;
  color: var(--text);
}

#sigPad {
  display: block;
  width: 100%;
  max-width: 400px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  touch-action: none;
  cursor: crosshair;
}

.tool-card input[type="file"] {
  margin-bottom: 12px;
  color: var(--muted);
}

#panel-edit .dropzone,
#panel-edit .viewer {
  min-height: 400px;
}

#panel-edit .viewer:not([hidden]) {
  display: flex;
  justify-content: center;
  padding: 16px 0;
}

#panel-edit .dropzone:not([hidden]) {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Auth & Premium */
/* Theme/WordPress often sets display on .btn and breaks [hidden] */
.app [hidden],
.modal [hidden] {
  display: none !important;
}

.auth-forgot-row {
  margin: -4px 0 12px;
  text-align: right;
}

.auth-support-row {
  margin: 16px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
}

.field-optional {
  font-weight: normal;
  color: var(--muted);
  font-size: 0.85em;
}

.auth-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.auth-user {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.premium-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 6px;
  background: linear-gradient(135deg, #f59e0b, #eab308);
  color: #1a1a1a;
}

.btn.premium-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  border: none;
}

.btn.premium-btn:hover {
  filter: brightness(1.08);
}

.nav-tag {
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-tag.premium {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
}

.nav-tag.free {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.nav-item.nav-premium.locked {
  opacity: 0.85;
}

.tool-panel[data-premium-panel] {
  position: relative;
}

.premium-lock {
  position: absolute;
  inset: 0;
  z-index: 50;
  background: rgba(15, 17, 23, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.premium-lock-inner {
  text-align: center;
  max-width: 320px;
}

.premium-lock-inner .lock-icon {
  font-size: 2.5rem;
  color: #fbbf24;
  display: block;
  margin-bottom: 12px;
}

.premium-lock-inner h3 {
  margin: 0 0 8px;
}

.premium-lock-inner p {
  color: var(--muted);
  margin: 0 0 16px;
}

/* Modals */
.modal {
  border: none;
  padding: 0;
  background: transparent;
  max-width: none;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

.modal-box {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  min-width: 320px;
  max-width: 420px;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.modal-box h2 {
  margin: 0 0 20px;
  font-size: 1.25rem;
}

.modal-switch {
  margin: 16px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

.link-btn {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-size: inherit;
  text-decoration: underline;
}

.plan-card {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 16px;
  position: relative;
}

.account-plan-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: color-mix(in srgb, var(--primary) 6%, transparent);
}

.account-plan-line {
  margin: 0;
  flex: 1 1 220px;
  font-size: 0.95rem;
}

.plan-card-featured {
  border-color: #7c3aed;
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.2);
}

.plan-card.plan-selected {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.plan-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.plan-badge {
  position: absolute;
  top: -10px;
  right: 12px;
  background: #7c3aed;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
}

.modal-box-wide {
  max-width: 720px;
}

.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 12px;
}

@media (max-width: 600px) {
  .plan-grid {
    grid-template-columns: 1fr;
  }
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.plan-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
}

.plan-features {
  text-align: left;
  margin: 0 0 20px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.plan-card .hint {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Rotate page controls */
.rotate-quick {
  margin-bottom: 16px;
}

.rotate-quick-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 8px;
}

.rotate-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.rotate-actions-compact {
  gap: 8px;
}

.rotate-btn {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
}

.rotate-btn:hover {
  background: rgba(79, 124, 255, 0.12);
  border-color: var(--primary);
}

.rotate-btn:active {
  transform: scale(0.97);
}

.rotate-btn span {
  font-size: 0.85rem;
  font-weight: 500;
}

.rotate-advanced {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.rotate-advanced summary {
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.rotate-advanced[open] summary {
  margin-bottom: 12px;
}

.quick-hint-box {
  padding: 10px 12px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: rgba(79, 124, 255, 0.1);
  border: 1px solid rgba(79, 124, 255, 0.25);
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.quick-hint-box strong {
  color: var(--text);
}

.inline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4em;
  height: 1.4em;
  border-radius: 4px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.85em;
  vertical-align: middle;
}

.btn.danger {
  background: #dc2626;
  color: #fff;
  border: none;
  width: 100%;
}

.btn.danger:hover {
  filter: brightness(1.08);
}

.modal-box-narrow {
  max-width: 400px;
}

.modal-form-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .auth-bar {
    order: 3;
    width: 100%;
    justify-content: flex-end;
  }

  .toolbar-actions {
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-end;
  }
}

.nav-tag.enterprise {
  background: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
}

.nav-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 12px 12px 4px;
  opacity: 0.8;
}

.pii-list {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
  columns: 2;
}

.tool-card-wide {
  max-width: 720px;
}

.api-base {
  display: block;
  padding: 10px 12px;
  background: var(--surface-2);
  border-radius: 8px;
  margin: 8px 0 16px;
  font-size: 0.85rem;
  word-break: break-all;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.roadmap-phase {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}

.roadmap-phase h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
}

.roadmap-phase ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.tool-select {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 0.8rem;
  max-width: 130px;
}

#overlay.tool-stamp {
  cursor: copy;
}

#editorTools {
  flex-wrap: wrap;
  gap: 6px;
}

.tool-card textarea {
  width: 100%;
  min-height: 80px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--text);
  font-family: inherit;
  resize: vertical;
}

.doc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}

.doc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
}

.doc-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.doc-item-actions .btn {
  padding: 4px 10px;
  font-size: 0.75rem;
}

.template-fields {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin: 12px 0 16px;
}

.cloud-actions {
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 12px;
}

.cloud-actions .field {
  flex: 1;
  min-width: 140px;
}

.brand-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 4px;
}

.platform-footer {
  text-align: center;
  padding: 12px;
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.7;
}

.verify-meta dt { margin-top: 10px; color: var(--muted); font-size: 0.8rem; }
.verify-meta dd { margin: 4px 0 0; }
