:root {
  --bg: #0f172a;
  --panel: #111827;
  --panel-soft: #1f2937;
  --line: #334155;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.15);
}

* { box-sizing: border-box; }
.is-hidden { display: none !important; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
  color: var(--text);
}
.page-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px;
}
.hero, .card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}
.hero {
  padding: 24px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-size: 0.75rem;
  margin: 0 0 8px;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: 2rem; margin-bottom: 10px; }
.hero-copy, .status-text, #resultsMeta, #selectionCount { color: var(--muted); }
.card { padding: 20px; margin-top: 20px; }
.filters-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}
.filters-grid label { display: flex; flex-direction: column; gap: 8px; }
.filters-grid span { color: var(--muted); font-size: 0.9rem; }
.query-label { grid-column: span 2; }
.action-row { display: flex; align-items: end; }
select, input, button {
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  color: var(--text);
  padding: 12px 14px;
  font-size: 0.95rem;
}
button { cursor: pointer; background: var(--accent); color: #082f49; font-weight: 700; border: none; }
button:hover { filter: brightness(1.05); }
.secondary-button { background: transparent; color: var(--text); border: 1px solid var(--line); }
.ghost-button { background: transparent; color: var(--muted); border: 1px solid var(--line); }
.layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}
.results-card--full { width: 100%; }
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.selection-actions, .report-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.section-heading--results { align-items: flex-start; }
.results-toolbar {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 320px;
}
.selection-actions--expanded {
  justify-content: flex-end;
}
.selection-count {
  margin: 0;
  text-align: right;
}
.report-preview--inline {
  min-height: 0;
  max-height: none;
  margin-bottom: 12px;
}
.report-preview--inline.is-hidden {
  display: none;
}
.results-list, .report-preview {
  min-height: 240px;
  max-height: 68vh;
  overflow: auto;
}
.empty-state {
  border: 1px dashed var(--line);
  border-radius: 14px;
  padding: 18px;
  color: var(--muted);
}
.result-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  background: rgba(31, 41, 55, 0.7);
}
.result-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 14px;
}
.result-header {
  background: none;
  color: var(--text);
  text-align: left;
  padding: 0;
  font-weight: 600;
}
.meta-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.badge {
  display: inline-block;
  border: 1px solid var(--line);
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.8rem;
}
.result-details {
  border-top: 1px solid var(--line);
  padding: 14px;
  color: #cbd5e1;
  display: none;
}
.result-details.open { display: block; }
.preview-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 12px;
}
.preview-card h3 { margin-bottom: 8px; }
@media (max-width: 1100px) {
  .filters-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .query-label { grid-column: span 2; }
  .layout-grid { grid-template-columns: 1fr; }
  .results-toolbar { min-width: 0; }
}
@media (max-width: 760px) {
  .section-heading--results { flex-direction: column; }
  .results-toolbar { align-items: stretch; width: 100%; }
  .selection-count { text-align: left; }
  .selection-actions--expanded { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .page-shell { padding: 14px; }
  .hero { flex-direction: column; }
  .filters-grid { grid-template-columns: 1fr; }
  .query-label { grid-column: span 1; }
  .result-top { grid-template-columns: auto 1fr; }
}


.system-summary { margin: 10px 0 16px; }
.system-summary-title { color: var(--muted); font-size: 0.9rem; margin-bottom: 8px; }
.system-summary-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.summary-chip { background: transparent; color: var(--muted); border: 1px solid var(--line); padding: 6px 10px; border-radius: 999px; font-size: 0.85rem; }
.summary-chip.active { background: var(--accent-soft); color: var(--text); border-color: var(--accent); }
.feature-badge { border-color: rgba(56, 189, 248, 0.35); color: #bae6fd; }
.issue-tags { margin-top: 8px; }


.hero-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.hero-brand-image {
  width: 96px;
  height: 96px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.22));
}
.hero-copy-wrap {
  min-width: 0;
}
.admin-card { margin-top: 20px; }
.muted-copy { color: var(--muted); margin: 4px 0 0; }
.admin-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.admin-pill {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(31, 41, 55, 0.55);
}
.admin-status {
  margin-top: 14px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.75);
  color: var(--text);
  white-space: pre-wrap;
  word-break: break-word;
  font: inherit;
  min-height: 72px;
}
@media (max-width: 880px) {
  .hero-brand {
    flex-direction: row;
    align-items: flex-start;
  }
  .hero-brand-image {
    width: 72px;
    height: 72px;
  }
}

.hero-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.admin-unlock-btn {
  flex: 0 0 auto;
  min-width: 110px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.admin-unlock-btn.is-revealed {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.hero-brand-image {
  cursor: pointer;
  -webkit-touch-callout: none;
  user-select: none;
}
.admin-card.is-hidden {
  display: none;
}

/* ── Admin operation bar ── */
.admin-op-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
  margin-bottom: 4px;
}
.admin-op-select {
  flex: 1;
  min-width: 220px;
  max-width: 380px;
}
.admin-workers-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-workers-wrap.is-hidden { display: none; }

/* Execute button states */
.admin-execute-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 130px;
  justify-content: center;
  font-weight: 700;
  border: none;
  transition: background 200ms ease, color 200ms ease;
}
.admin-execute--idle {
  background: var(--panel-soft);
  color: var(--muted);
  border: 1px solid var(--line);
  cursor: not-allowed;
}
.admin-execute--ready {
  background: #16a34a;
  color: #ffffff;
  cursor: pointer;
}
.admin-execute--ready:hover { background: #15803d; }
.admin-execute--running {
  background: #dc2626;
  color: #ffffff;
  cursor: not-allowed;
}
.admin-execute--complete {
  background: #0369a1;
  color: #ffffff;
  cursor: not-allowed;
}

/* Execute button dot indicator */
.admin-execute-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background: var(--muted);
  flex-shrink: 0;
}
.admin-execute--idle   .admin-execute-dot { background: #475569; }
.admin-execute--ready  .admin-execute-dot { background: #86efac; box-shadow: 0 0 6px #22c55e; }
.admin-execute--running .admin-execute-dot {
  background: #fca5a5;
  box-shadow: 0 0 6px #ef4444;
  animation: pulse-dot 1s ease-in-out infinite;
}
.admin-execute--complete .admin-execute-dot { background: #7dd3fc; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ── Maintenance log cards ── */
.admin-maint-log {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.maint-run-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(15, 23, 42, 0.75);
}
.maint-run-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.maint-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.maint-dot--waiting  { background: #475569; }
.maint-dot--running  { background: #fbbf24; box-shadow: 0 0 6px #f59e0b; animation: pulse-dot 1s ease-in-out infinite; }
.maint-dot--complete { background: #22c55e; box-shadow: 0 0 4px #16a34a; }
.maint-dot--failed   { background: #ef4444; box-shadow: 0 0 4px #dc2626; }
.maint-dot--stale    { background: #475569; }
.maint-steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.maint-step {
  display: grid;
  grid-template-columns: 14px 160px 80px 90px 1fr;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  padding: 2px 0;
}
.maint-step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.maint-step-label  { color: var(--text); font-size: 0.83rem; }
.maint-step-dur    { color: var(--muted); font-size: 0.8rem; }
.maint-step-status { font-size: 0.8rem; }
.maint-step-detail { color: var(--muted); font-size: 0.8rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.maint-run-footer  { margin-top: 6px; font-size: 0.8rem; color: var(--muted); }
.enrichment-summary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin-top: 8px;
}
.enrichment-summary-table th {
  background: #1a2236;
  color: #8899bb;
  text-align: left;
  padding: 6px 10px;
  font-weight: 600;
  border-bottom: 1px solid #2a3550;
  white-space: nowrap;
}
.enrichment-summary-table td {
  padding: 5px 10px;
  border-bottom: 1px solid #1e2d45;
  color: #c8d8f0;
}
.enrichment-summary-table tr:hover td { background: #1a2840; }
.enrichment-summary-table .num { text-align: right; font-variant-numeric: tabular-nums; }
.enrichment-summary-table .pdf-found { color: #4caf50; font-weight: 600; }
.enrichment-summary-table .vehicle-page { color: #ff9800; }
.enrichment-summary-table .unchecked { color: #607d8b; }
.enrichment-summary-table .not-found { color: #e57373; }

@keyframes btn-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.65; transform: scale(1.04); }
}
.check-btn--pulse {
  animation: btn-pulse 1.2s ease-in-out infinite;
}

.staleness-indicator {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.78rem;
  padding: 2px 8px;
  border-radius: 10px;
  vertical-align: middle;
}
.staleness--fresh   { background: #1a3a1a; color: #4caf50; }
.staleness--aging   { background: #3a2e10; color: #ff9800; }
.staleness--stale   { background: #3a1a1a; color: #ef5350; }

.admin-subheading {
  margin-top: 18px;
  margin-bottom: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted, #94a3b8);
}
@media (max-width: 880px) {
  .hero-topbar {
    flex-direction: column;
    align-items: stretch;
  }
  .admin-unlock-btn {
    align-self: flex-end;
  }
}


.detail-actions {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 0.9rem;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: auto;
  min-height: 40px;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: #e2e8f0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.secondary-action.check-btn {
  background: #38bdf8;
  border-color: #38bdf8;
  color: #082f49;
}

.secondary-action.check-btn:hover {
  background: #0ea5e9;
  border-color: #0ea5e9;
  color: #041b2d;
}

.secondary-action.open-btn {
  background: #1e293b;
  border-color: #334155;
  color: #e2e8f0;
}

.secondary-action.open-btn:hover {
  background: #334155;
}

.secondary-action:disabled {
  opacity: 0.6;
  cursor: wait;
}

.enrichment-status {
  font-size: 0.92rem;
  color: #cbd5e1;
  white-space: nowrap;
}

.enrichment-status a {
  color: #93c5fd;
}

.detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  align-items: baseline;
}

.detail-meta-row p {
  margin: 0 0 0.5rem;
}


.tsb-warning {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-left: 3px solid #d4a017;
  background: #fff8e5;
  color: #3c3c3c;
  font-size: 0.9rem;
  line-height: 1.4;
  border-radius: 6px;
}

.tsb-warning.is-hidden {
  display: none;
}

@media (max-width: 760px) {
  .detail-actions {
    align-items: flex-start;
  }

  .enrichment-status {
    white-space: normal;
  }
}

.admin-sweep-controls {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-end;
  margin: 10px 0 4px;
}
.admin-sweep-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--muted);
}
.admin-sweep-label select {
  background: var(--panel-soft);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.95rem;
  cursor: pointer;
}
.admin-sweep-label select:focus { outline: 2px solid var(--accent); }
.admin-sweep-label span { display: none; }
.admin-text-input {
  background: var(--panel-soft);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.95rem;
  width: 160px;
}
.admin-text-input:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.admin-text-input::placeholder { color: var(--muted); }
.admin-start-button { background: #16a34a; color: #ffffff; }
.admin-start-button:hover { background: #15803d; }
.admin-stop-button { background: #dc2626; color: #ffffff; }
.admin-stop-button:hover { background: #b91c1c; }

/* ── 2FA Setup ──────────────────────────────────────────────────────────────── */
.totp-setup { padding: 0.5rem 0 1rem; }
.totp-qr { display: block; margin: 1rem 0; border-radius: 8px; max-width: 200px; }
.totp-secret {
  display: block;
  padding: 0.5rem 0.75rem;
  background: #0f172a;
  border: 1px solid rgba(148,163,184,0.2);
  border-radius: 6px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  word-break: break-all;
  margin: 0.5rem 0 1rem;
  color: #38bdf8;
}
.totp-secret-label { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.25rem; }
.totp-instructions { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.5rem; line-height: 1.5; }
.admin-muted-msg { color: #8899bb; padding: 8px; margin: 0; }
.variant-badge { background: #1e293b; color: #94a3b8; border: 1px solid rgba(148,163,184,0.25); }

/* ══════════════════════════════════════════════════════════════════
   Admin Stats Dashboard
   ══════════════════════════════════════════════════════════════════ */

.admin-dashboard {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

/* Grid rows */
.dash-grid {
  display: grid;
  gap: 14px;
}
.dash-grid--3 { grid-template-columns: repeat(3, 1fr); }
.dash-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* Base card */
.dash-card {
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 200ms ease;
}
.dash-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56,189,248,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.dash-card:hover { border-color: rgba(56,189,248,0.35); }

/* Card label / section title */
.dash-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 14px;
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
}

/* Stat number rows */
.dash-stat-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.dash-stat-row--small {
  margin-bottom: 4px;
}

/* The big numbers */
.dash-num {
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.dash-stat-row--small .dash-num {
  font-size: 1.25rem;
}

/* Number color variants */
.dash-num--primary { color: #e2e8f0; }
.dash-num--green   { color: #4ade80; text-shadow: 0 0 18px rgba(74,222,128,0.3); }
.dash-num--amber   { color: #facc15; text-shadow: 0 0 18px rgba(250,204,21,0.2); }
.dash-num--red     { color: #f87171; text-shadow: 0 0 18px rgba(248,113,113,0.2); }
.dash-num--muted   { color: #64748b; }
.dash-num--accent  { color: #38bdf8; text-shadow: 0 0 18px rgba(56,189,248,0.3); }

/* Unit label beside number */
.dash-unit {
  font-size: 0.8rem;
  color: #64748b;
  white-space: nowrap;
}

/* Small meta lines (dates, notes) */
.dash-meta {
  font-size: 0.75rem;
  color: #475569;
  margin-top: 6px;
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Active job card */
.dash-card--active {
  border-color: rgba(56,189,248,0.4);
  background: rgba(15, 23, 42, 0.92);
}
.dash-card--active.is-hidden { display: none; }

.dash-active-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dash-active-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.83rem;
}
.dash-active-label {
  color: #64748b;
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 0.72rem;
  min-width: 90px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dash-active-value {
  color: #cbd5e1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-active-nums {
  display: flex;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.dash-active-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dash-active-stat-num {
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: #38bdf8;
  line-height: 1;
}
.dash-active-stat-label {
  font-size: 0.7rem;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Maintenance summary in dash card */
.dash-maint-summary {
  font-size: 0.82rem;
  color: var(--muted);
}
.dash-maint-header {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-maint-steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dash-maint-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
}
.dash-maint-step-name {
  min-width: 130px;
  color: #94a3b8;
}
.dash-maint-step-detail {
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Collapsible recent searches */
.dash-card--collapsible { padding: 0; }

.dash-collapse-btn {
  width: 100%;
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  text-align: left;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  transition: color 150ms ease;
}
.dash-collapse-btn:hover { color: #94a3b8; filter: none; }
.dash-collapse-arrow { font-size: 0.9rem; transition: transform 200ms ease; }
.dash-collapse-arrow.open { transform: rotate(180deg); }

.dash-search-log {
  display: none;
  padding: 0 20px 16px;
  display: none;
  flex-direction: column;
  gap: 4px;
}
.dash-search-log.open { display: flex; }
.dash-search-entry {
  font-size: 0.77rem;
  color: #475569;
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  padding: 3px 0;
  border-bottom: 1px solid rgba(51,65,85,0.4);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dash-search-entry:last-child { border-bottom: none; }
.dash-search-ts { color: #334155; }
.dash-search-vehicle { color: #94a3b8; }
.dash-search-outcome { color: #38bdf8; }
.dash-search-note { color: #475569; }

/* Responsive */
@media (max-width: 1100px) {
  .dash-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .dash-grid--3,
  .dash-grid--2 { grid-template-columns: 1fr; }
  .dash-num { font-size: 1.6rem; }
}
