/* ============================================
   Hero Section
*============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-canvas-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}

.hero-canvas-wrap canvas {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  opacity: 0.8;
}

.hero h1 {
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  max-width: 42em;
  margin: 0 auto 2.5rem;
  opacity: 0.82;
  line-height: 1.65;
  font-weight: 400;
  text-align: center;
}

.hero-btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  background: var(--muted);
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform var(--transition-smooth),
              box-shadow var(--transition-smooth);
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(122, 158, 118, 0.32);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.45;
  animation: float-down 2s ease-in-out infinite;
}

.scroll-hint svg {
  width: 24px;
  height: 24px;
}

@keyframes float-down {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
