/* MyTap — componenti (scoped .mt-dashboard .desk-home / .mob-home) */

.mt-dashboard .mob-home .mt-glass,
.mt-dashboard .mob-home .mt-mob-card {
  background: var(--mt-glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--mt-glass-border);
  border-radius: var(--mt-radius-lg);
  box-shadow: var(--mt-glass-shadow);
  position: relative;
}

.mt-dashboard .mob-home .mt-glass::after {
  content: "";
  position: absolute;
  top: 0;
  left: 6%;
  right: 6%;
  height: 1px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  pointer-events: none;
}

.mt-dashboard .mob-home .mt-glass-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  background:
    radial-gradient(120% 100% at 100% 0%, var(--mt-wash-strong), transparent 55%),
    radial-gradient(80% 80% at 0% 100%, rgba(124, 92, 246, 0.05), transparent 60%);
  pointer-events: none;
}

.mt-dashboard .desk-home .mt-tile, .mt-dashboard .mob-home .mt-tile {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mt-dashboard .desk-home .mt-dash-grid, .mt-dashboard .mob-home .mt-dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
  margin-bottom: 16px;
}

.mt-dashboard .desk-home .mt-span-1, .mt-dashboard .mob-home .mt-span-1 { grid-column: span 1; }
.mt-dashboard .desk-home .mt-span-2, .mt-dashboard .mob-home .mt-span-2 { grid-column: span 2; }
.mt-dashboard .desk-home .mt-span-3, .mt-dashboard .mob-home .mt-span-3 { grid-column: span 3; }

.mt-dashboard .desk-home .mt-hero,
.mt-dashboard .mob-home .mt-hero { padding: 26px 28px 24px; overflow: hidden; }
.mt-dashboard .desk-home .mt-hero-wave { opacity: 1; }
.mt-dashboard .desk-home .mt-hero-metric-mini { min-width: 0; }
.mt-dashboard .desk-home .mt-hero-wave, .mt-dashboard .mob-home .mt-hero-wave {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 360px;
  height: 360px;
  z-index: 0;
  pointer-events: none;
}
.mt-dashboard .desk-home .mt-hero-top, .mt-dashboard .mob-home .mt-hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.mt-dashboard .desk-home .mt-eyebrow, .mt-dashboard .mob-home .mt-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mt-text-tertiary);
  margin-bottom: 4px;
}
.mt-dashboard .desk-home .mt-hero-name, .mt-dashboard .mob-home .mt-hero-name {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--mt-text-primary);
}
.mt-dashboard .desk-home .mt-hero-insight, .mt-dashboard .mob-home .mt-hero-insight {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--mt-text-secondary);
  margin-top: 9px;
}
.mt-dashboard .desk-home .mt-hero-insight svg,
.mt-dashboard .mob-home .mt-hero-insight svg { color: var(--mt-purple-deep); flex-shrink: 0; }
.mt-dashboard .desk-home .mt-hero-insight b,
.mt-dashboard .mob-home .mt-hero-insight b { color: var(--mt-text-primary); font-weight: 600; }
.mt-dashboard .desk-home .mt-hero-top-right, .mt-dashboard .mob-home .mt-hero-top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
}
.mt-dashboard .desk-home .mt-plan-tag, .mt-dashboard .mob-home .mt-plan-tag { font-size: 12px; color: var(--mt-text-tertiary); font-weight: 600; }
.mt-dashboard .desk-home .mt-status-pill, .mt-dashboard .mob-home .mt-status-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--mt-text-secondary);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--mt-divider);
  padding: 6px 12px;
  border-radius: 999px;
}
.mt-dashboard .desk-home .mt-status-dot, .mt-dashboard .mob-home .mt-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5AC8FA;
  box-shadow: 0 0 0 3px rgba(90, 200, 250, 0.18);
}
.mt-dashboard .desk-home .mt-hero-bottom, .mt-dashboard .mob-home .mt-hero-bottom {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--mt-divider);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.mt-dashboard .desk-home .mt-hero-ring, .mt-dashboard .mob-home .mt-hero-ring { position: relative; width: 92px; height: 92px; flex-shrink: 0; }
.mt-dashboard .desk-home .mt-hero-ring svg,
.mt-dashboard .mob-home .mt-hero-ring svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.mt-dashboard .desk-home .mt-hero-ring-value,
.mt-dashboard .mob-home .mt-hero-ring-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--mt-text-primary);
  transform: none;
}
.mt-dashboard .desk-home .mt-hero-ring-label, .mt-dashboard .mob-home .mt-hero-ring-label {
  flex-shrink: 0;
  padding-right: 24px;
  border-right: 1px solid var(--mt-divider);
}
.mt-dashboard .desk-home .mt-hero-ring-title, .mt-dashboard .mob-home .mt-hero-ring-title { font-size: 13px; font-weight: 600; }
.mt-dashboard .desk-home .mt-hero-ring-trend, .mt-dashboard .mob-home .mt-hero-ring-trend { font-size: 12px; color: var(--mt-purple-deep); font-weight: 600; margin-top: 3px; }
.mt-dashboard .desk-home .mt-hero-metrics-rest, .mt-dashboard .mob-home .mt-hero-metrics-rest {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 14px 16px;
  min-width: 200px;
}
.mt-dashboard .desk-home .mt-metric-value, .mt-dashboard .mob-home .mt-metric-value { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.mt-dashboard .desk-home .mt-metric-label, .mt-dashboard .mob-home .mt-metric-label { font-size: 11.5px; color: var(--mt-text-secondary); margin-top: 3px; }

.mt-dashboard .desk-home .mt-quick-rail, .mt-dashboard .mob-home .mt-quick-rail { padding: 22px 18px; }
.mt-dashboard .desk-home .mt-quick-rail-title, .mt-dashboard .mob-home .mt-quick-rail-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mt-text-tertiary);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.mt-dashboard .desk-home .mt-quick-rail-list, .mt-dashboard .mob-home .mt-quick-rail-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.mt-dashboard .desk-home .mt-quick-rail-item, .mt-dashboard .mob-home .mt-quick-rail-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px;
  border-radius: var(--mt-radius-sm);
  cursor: pointer;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  font-family: inherit;
  color: inherit;
}
.mt-dashboard .desk-home .mt-quick-rail-item:hover, .mt-dashboard .mob-home .mt-quick-rail-item:hover { background: rgba(124, 92, 246, 0.07); }
.mt-dashboard .desk-home .mt-quick-rail-icon, .mt-dashboard .mob-home .mt-quick-rail-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(124, 92, 246, 0.09);
  color: var(--mt-purple-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mt-dashboard .desk-home .mt-quick-rail-label, .mt-dashboard .mob-home .mt-quick-rail-label { font-size: 13.5px; font-weight: 600; }

.mt-dashboard .desk-home .mt-section-head, .mt-dashboard .mob-home .mt-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.mt-dashboard .desk-home .mt-section-title, .mt-dashboard .mob-home .mt-section-title { font-size: 15.5px; font-weight: 700; letter-spacing: -0.01em; }
.mt-dashboard .desk-home .mt-link-more, .mt-dashboard .mob-home .mt-link-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--mt-purple-deep);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
}

.mt-dashboard .desk-home .mt-nosu, .mt-dashboard .mob-home .mt-nosu { padding: 22px 24px; }
.mt-dashboard .desk-home .mt-nosu-top, .mt-dashboard .mob-home .mt-nosu-top { display: flex; gap: 14px; align-items: flex-start; position: relative; z-index: 1; }
.mt-dashboard .desk-home .mt-nosu-icon, .mt-dashboard .mob-home .mt-nosu-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  flex-shrink: 0;
  background: linear-gradient(150deg, var(--mt-purple-soft), var(--mt-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 16px rgba(124, 92, 246, 0.35);
}
.mt-dashboard .desk-home .mt-nosu-headline, .mt-dashboard .mob-home .mt-nosu-headline { font-size: 15px; font-weight: 600; margin-top: 2px; }
.mt-dashboard .desk-home .mt-nosu-tag, .mt-dashboard .mob-home .mt-nosu-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mt-purple-deep);
  margin-bottom: 3px;
}
.mt-dashboard .desk-home .mt-nosu-actions, .mt-dashboard .mob-home .mt-nosu-actions {
  margin-top: 16px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.mt-dashboard .desk-home .mt-nosu-action, .mt-dashboard .mob-home .mt-nosu-action {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--mt-divider);
  border-radius: var(--mt-radius-sm);
}
.mt-dashboard .desk-home .mt-nosu-action-icon, .mt-dashboard .mob-home .mt-nosu-action-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  flex-shrink: 0;
  background: rgba(124, 92, 246, 0.10);
  color: var(--mt-purple-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mt-dashboard .desk-home .mt-nosu-action-text, .mt-dashboard .mob-home .mt-nosu-action-text { flex: 1; font-size: 13px; font-weight: 500; }
.mt-dashboard .desk-home .mt-chip, .mt-dashboard .mob-home .mt-chip {
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.mt-dashboard .desk-home .mt-chip--ready, .mt-dashboard .mob-home .mt-chip--ready { background: rgba(124, 92, 246, 0.12); color: var(--mt-purple-deep); }
.mt-dashboard .desk-home .mt-chip--soon, .mt-dashboard .mob-home .mt-chip--soon { background: rgba(0, 0, 0, 0.05); color: var(--mt-text-secondary); }

.mt-dashboard .desk-home .mt-panel, .mt-dashboard .mob-home .mt-panel { padding: 20px 22px; }
.mt-dashboard .desk-home .mt-panel-sm, .mt-dashboard .mob-home .mt-panel-sm { padding: 18px 20px; }
.mt-dashboard .desk-home .mt-page-list, .mt-dashboard .mob-home .mt-page-list { flex: 1; display: flex; flex-direction: column; }
.mt-dashboard .desk-home .mt-page-row, .mt-dashboard .mob-home .mt-page-row,
.mt-dashboard .mob-home .mt-page-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 2px;
  border-bottom: 1px solid var(--mt-divider);
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.mt-dashboard .desk-home .mt-page-row:last-child, .mt-dashboard .mob-home .mt-page-row:last-child { border-bottom: none; }
.mt-dashboard .desk-home .mt-page-icon, .mt-dashboard .mob-home .mt-page-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(0, 0, 0, 0.04);
  color: var(--mt-text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mt-dashboard .desk-home .mt-page-info, .mt-dashboard .mob-home .mt-page-info { flex: 1; min-width: 0; }
.mt-dashboard .desk-home .mt-page-name, .mt-dashboard .mob-home .mt-page-name {
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mt-dashboard .desk-home .mt-page-url, .mt-dashboard .mob-home .mt-page-url {
  font-size: 12px;
  color: var(--mt-text-tertiary);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mt-dashboard .desk-home .mt-status-tag, .mt-dashboard .mob-home .mt-status-tag {
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 999px;
  flex-shrink: 0;
}
.mt-dashboard .desk-home .mt-status-tag--live, .mt-dashboard .mob-home .mt-status-tag--live { background: var(--mt-text-primary); color: white; }
.mt-dashboard .desk-home .mt-status-tag--draft, .mt-dashboard .mob-home .mt-status-tag--draft {
  background: transparent;
  color: var(--mt-text-secondary);
  border: 1px solid var(--mt-divider);
}

.mt-dashboard .desk-home .mt-empty-state, .mt-dashboard .mob-home .mt-empty-state {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 24px 10px;
}
.mt-dashboard .desk-home .mt-empty-icon, .mt-dashboard .mob-home .mt-empty-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(124, 92, 246, 0.07);
  color: var(--mt-purple-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 20px;
}
.mt-dashboard .desk-home .mt-empty-title, .mt-dashboard .mob-home .mt-empty-title { font-size: 13.5px; font-weight: 600; }
.mt-dashboard .desk-home .mt-empty-sub, .mt-dashboard .mob-home .mt-empty-sub { font-size: 12px; color: var(--mt-text-secondary); margin-top: 4px; }

.mt-dashboard .desk-home .mt-automation-body, .mt-dashboard .mob-home .mt-automation-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.mt-dashboard .desk-home .mt-automation-icon, .mt-dashboard .mob-home .mt-automation-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(124, 92, 246, 0.09);
  color: var(--mt-purple-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.mt-dashboard .desk-home .mt-automation-value, .mt-dashboard .mob-home .mt-automation-value {
  font-size: 30px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--mt-purple), var(--mt-purple-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mt-dashboard .desk-home .mt-automation-label, .mt-dashboard .mob-home .mt-automation-label { font-size: 11.5px; color: var(--mt-text-secondary); margin-top: 4px; }
.mt-dashboard .desk-home .mt-automation-sub, .mt-dashboard .mob-home .mt-automation-sub {
  font-size: 11px;
  color: var(--mt-text-tertiary);
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid var(--mt-divider);
  width: 100%;
}

.mt-dashboard .desk-home .mt-live-pill, .mt-dashboard .mob-home .mt-live-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--mt-text-tertiary);
}
@keyframes mtLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(124, 92, 246, 0.45); }
  70% { box-shadow: 0 0 0 6px rgba(124, 92, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(124, 92, 246, 0); }
}
.mt-dashboard .desk-home .mt-live-pulse, .mt-dashboard .mob-home .mt-live-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mt-purple);
  animation: mtLivePulse 2s infinite;
}
.mt-dashboard .desk-home .mt-feed-list, .mt-dashboard .mob-home .mt-feed-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  position: relative;
  z-index: 1;
}
.mt-dashboard .desk-home .mt-feed-item, .mt-dashboard .mob-home .mt-feed-item { display: flex; align-items: center; gap: 9px; }
.mt-dashboard .desk-home .mt-feed-dot, .mt-dashboard .mob-home .mt-feed-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mt-purple-soft);
  flex-shrink: 0;
}
.mt-dashboard .desk-home .mt-feed-text, .mt-dashboard .mob-home .mt-feed-text {
  font-size: 12.5px;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mt-dashboard .desk-home .mt-feed-time, .mt-dashboard .mob-home .mt-feed-time { font-size: 11px; color: var(--mt-text-tertiary); flex-shrink: 0; }

.mt-dashboard .desk-home .mt-chart-area, .mt-dashboard .mob-home .mt-chart-area {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  min-height: 90px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
}
.mt-dashboard .desk-home .mt-bar-col, .mt-dashboard .mob-home .mt-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
}
.mt-dashboard .desk-home .mt-bar, .mt-dashboard .mob-home .mt-bar {
  width: 100%;
  max-width: 22px;
  border-radius: 6px 6px 3px 3px;
  background: rgba(0, 0, 0, 0.05);
  min-height: 4px;
}
.mt-dashboard .desk-home .mt-bar.lead,
.mt-dashboard .mob-home .mt-bar.lead {
  background: linear-gradient(180deg, var(--mt-purple-soft), var(--mt-purple));
  box-shadow: 0 6px 14px rgba(124, 92, 246, 0.3);
}
.mt-dashboard .desk-home .mt-bar-label, .mt-dashboard .mob-home .mt-bar-label { font-size: 10.5px; color: var(--mt-text-tertiary); }

.mt-dashboard .desk-home .mt-qr-tile-body, .mt-dashboard .mob-home .mt-qr-tile-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.mt-dashboard .desk-home .mt-qr-chip, .mt-dashboard .mob-home .mt-qr-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--mt-divider);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.mt-dashboard .desk-home .mt-qr-visual, .mt-dashboard .mob-home .mt-qr-visual {
  width: 78px;
  height: 78px;
  border-radius: 14px;
  margin-bottom: 14px;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mt-dashboard .desk-home .mt-btn-primary-full, .mt-dashboard .mob-home .mt-btn-primary-full {
  width: 100%;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--mt-purple), var(--mt-purple-deep));
  border: none;
  padding: 9px;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
}
.mt-dashboard .desk-home .mt-btn-primary-full:hover, .mt-dashboard .mob-home .mt-btn-primary-full:hover { filter: brightness(1.06); }

.mt-dashboard .desk-home .mt-contact-row, .mt-dashboard .mob-home .mt-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 2px;
  border-bottom: 1px solid var(--mt-divider);
  position: relative;
  z-index: 1;
}
.mt-dashboard .desk-home .mt-contact-row:last-child, .mt-dashboard .mob-home .mt-contact-row:last-child { border-bottom: none; }
.mt-dashboard .desk-home .mt-contact-avatar, .mt-dashboard .mob-home .mt-contact-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(150deg, var(--mt-purple-soft), var(--mt-purple-deep));
  color: white;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mt-dashboard .desk-home .mt-contact-info, .mt-dashboard .mob-home .mt-contact-info { flex: 1; min-width: 0; }
.mt-dashboard .desk-home .mt-contact-name, .mt-dashboard .mob-home .mt-contact-name { font-size: 13.5px; font-weight: 600; }
.mt-dashboard .desk-home .mt-contact-meta, .mt-dashboard .mob-home .mt-contact-meta { font-size: 11px; color: var(--mt-text-tertiary); margin-top: 2px; }
.mt-dashboard .desk-home .mt-contact-pts, .mt-dashboard .mob-home .mt-contact-pts { font-size: 14px; font-weight: 800; color: var(--mt-purple-deep); }

/* Desktop home — layout mockup */
@media (min-width: 901px) {
  .mt-dashboard .desk-home .mt-dash-grid {
    margin-bottom: 16px;
  }

  .mt-dashboard .desk-home .mt-dash-grid:last-child {
    margin-bottom: 0;
  }

  .mt-dashboard .desk-home .mt-hero-bottom {
    flex-wrap: nowrap;
    align-items: center;
  }

  .mt-dashboard .desk-home .mt-hero-metrics-rest {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
  }

  .mt-dashboard .desk-home .mt-hero-metric-mini {
    flex: 1;
    min-width: 0;
  }

  .mt-dashboard .desk-home .mt-hero-ring-title,
  .mt-dashboard .desk-home .mt-hero-ring-trend {
    white-space: nowrap;
  }

  .mt-dashboard .desk-home .mt-quick-rail {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  .mt-dashboard .desk-home .mt-dash-grid--bottom .mt-panel-sm {
    min-height: 228px;
  }

  .mt-dashboard .desk-home .mt-btn-primary-full {
    border-radius: 12px;
    font-size: 12.5px;
    padding: 9px;
    margin-top: 6px;
    box-shadow: 0 8px 20px rgba(124, 92, 246, 0.28);
  }

  .mt-dashboard .desk-home .mt-qr-visual--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mt-text-tertiary);
    background: rgba(0, 0, 0, 0.04);
    margin-bottom: 14px;
  }

  .mt-dashboard .desk-home .mt-link-more {
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
  }

  .mt-dashboard .desk-home .mt-automation-label {
    max-width: 150px;
  }
}

@media (max-width: 1080px) {
  .mt-dashboard .desk-home .mt-dash-grid, .mt-dashboard .mob-home .mt-dash-grid { grid-template-columns: repeat(2, 1fr); }
  .mt-dashboard .desk-home .mt-span-1, .mt-dashboard .mob-home .mt-span-1,
  .mt-dashboard .desk-home .mt-span-2, .mt-dashboard .mob-home .mt-span-2,
  .mt-dashboard .desk-home .mt-span-3, .mt-dashboard .mob-home .mt-span-3 { grid-column: span 2; }
}
