.app-shell {
  min-height: 100vh;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.stack-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.global-loader {
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  bottom: 0;
  display: none;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2000;
}

.global-loader.is-visible {
  display: flex;
}

@media (max-width: 991.98px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}
