.home-hero {
  text-align: center;
  padding: var(--sp-8) var(--sp-4) var(--sp-6);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--sp-6);
}
.home-hero-title {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.home-hero-sub {
  margin: var(--sp-2) 0 0;
  color: var(--muted);
  font-size: clamp(0.88rem, 2vw, 1rem);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.home-hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
  font-size: 0.82rem;
  color: var(--muted);
}
.home-hero-stats strong {
  color: var(--ink);
}
.home-browse-btn {
  display: inline-block;
  margin-top: var(--sp-4);
  padding: var(--sp-2) var(--sp-6);
  border: 1px solid var(--accent);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.home-browse-btn:hover {
  background: var(--accent);
  color: #10150a;
}

.home-section {
  margin-bottom: var(--sp-8);
}
.home-section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--line);
}
.home-section-header h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.home-section-link {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.home-section-link:hover {
  text-decoration: underline;
}

.home-rail {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: var(--sp-3);
}

@media (max-width: 640px) {
  .home-hero-stats {
    flex-wrap: wrap;
    gap: var(--sp-2) var(--sp-4);
  }
  .home-rail {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: var(--sp-2);
  }
}
