/* ═══════════════════════════════════════════════════════
   Home Module — Styles
   ═══════════════════════════════════════════════════════ */

.home-workspace {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-welcome {
  text-align: center;
  max-width: 640px;
  padding: 60px 32px;
}

.home-logo {
  height: 56px;
  margin-bottom: 28px;
  opacity: .85;
}

.home-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.home-subtitle {
  font-size: 16px;
  color: var(--dim);
  line-height: 1.6;
}

.home-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.home-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 16px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}

.home-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}

.home-card-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-card-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.home-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}

.home-card-desc {
  font-size: 12px;
  color: var(--dim);
  line-height: 1.5;
}
