.dash-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.dash-tile {
  --accent: #7cc7ff;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid #232838;
  border-radius: .6rem;
  padding: 1rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18), inset 0 2px 0 var(--accent);
  min-width: 0;
}

.dash-tile-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: .5rem;
}

.dash-tile-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
}

.dash-tile-subtitle {
  color: #9aa3b2;
  font-size: 12px;
  margin-top: 3px;
}

.dash-tile-badge {
  background: rgba(0,0,0,0.3);
  color: #9aa3b2;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
  font-weight: 600;
}

.dash-tile-value {
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.5px;
  transition: color 400ms ease;
}

.dash-tile-sub {
  color: #9aa3b2;
  font-size: 13px;
}

@media (max-width: 1100px) {
  .dash-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facts-tile,
  .energy-tile {
    grid-column: span 2 !important;
  }
}

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

  .facts-tile {
    grid-column: span 1 !important;
  }
}
