/* ── Homepage ── */

.home-hero {
  background:
    radial-gradient(ellipse 100% 80% at 20% 35%, rgba(245,182,205,.75) 0%, transparent 50%), /* pink */
    radial-gradient(ellipse 80% 90% at 85% 25%, rgba(139,182,232,.6) 0%, transparent 50%), /* blue */
    radial-gradient(ellipse 70% 70% at 50% 85%, rgba(160,192,240,.5) 0%, transparent 50%), /* light blue */
    radial-gradient(ellipse 60% 60% at 60% 70%, rgba(120,180,255,.35) 0%, transparent 50%), /* extra blue */
    linear-gradient(to bottom, rgba(6,6,8,.8), rgba(6,6,8,.92)),
    url('/images/conor-samuel-vPKGcFEbmjc-unsplash.jpg');
  background-size: cover;
  background-position: center;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 28px;
  color: var(--text);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.home-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 0 0 40px rgba(245,182,205,.25);
}

.home-hero p {
  font-size: 1.1rem;
  color: var(--text-dim);
  font-weight: 500;
  max-width: 440px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .home-hero { padding: 24px 12px 20px; }
  .home-hero h1 { font-size: 2.4rem; }
  .home-hero p { font-size: .95rem; }
}
