/* 首页独立样式 */
.home-landing {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.home-hero {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}

.home-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-primary);
}

.home-copy p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  font-size: 1.05rem;
}

/* 夜间主题适配 */
body[data-theme="dark"] .home-hero { background-color: #1e1e1e; }
body[data-theme="dark"] .home-title { color: var(--text-primary); }
body[data-theme="dark"] .home-copy p { color: var(--text-secondary); }