.home-section {
  margin-bottom: 28px;
}

.section-intro {
  margin-bottom: 14px;
  color: var(--muted);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.module-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(18, 32, 59, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.module-card:hover {
  border-color: #cfd8ea;
  box-shadow: 0 4px 12px rgba(18, 32, 59, 0.06);
}

.module-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.module-icon {
  font-size: 1.2rem;
  line-height: 1;
  width: 28px;
  text-align: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.module-title-wrap {
  flex: 1;
  min-width: 0;
}

.module-title {
  margin: 0 0 4px;
  font-size: 1rem;
  line-height: 1.3;
}

.module-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.home-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid transparent;
  line-height: 1.2;
}

.home-badge.daily {
  background: #f0fdf4;
  color: #166534;
  border-color: #d1fae5;
}

.home-badge.setup {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #dbeafe;
}

.home-badge.report {
  background: #f5f3ff;
  color: #6d28d9;
  border-color: #ede9fe;
}

.home-badge.future {
  background: #fff7ed;
  color: #b45309;
  border-color: #ffedd5;
}

.home-badge.light {
  background: #f8fafc;
  color: #475569;
  border-color: #e2e8f0;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 12px;
  box-shadow: 0 2px 8px rgba(18, 32, 59, 0.04);
  font-weight: 600;
  font-size: 0.92rem;
}

.cta-chip:hover {
  background: #fafbff;
  border-color: #cfd8ea;
}

.home-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fcfcfd;
  color: var(--muted);
}

.home-note strong {
  color: var(--text);
}

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