/* Hero — sectie 2.1, homepage-only (geen herbruikbaar component) */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70vmax;
  height: 70vmax;
  background: radial-gradient(circle, rgba(104, 104, 104, 0.35) 0%, rgba(104, 104, 104, 0) 70%);
  filter: blur(60px);
  transform: translate(-60%, -55%) scale(1);
  animation: hero-glow-move 18s ease-in-out infinite alternate;
}

@keyframes hero-glow-move {
  0% {
    transform: translate(-62%, -58%) scale(1);
  }
  100% {
    transform: translate(-38%, -42%) scale(1.15);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__glow {
    animation: none;
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  min-height: min(720px, 90vh);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  padding: 6rem clamp(16px, 4vw, 32px) 3rem;
}

.hero__tags {
  margin: 0 0 1.5rem;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero__tag-dot {
  margin: 0 0.5em;
  opacity: 0.6;
}

.hero__heading {
  margin: 0;
  max-width: 20ch;
  color: var(--text-on-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.1;
}

.hero__bottom {
  display: flex;
  justify-content: flex-end;
}

.hero__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: min(320px, 100%);
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__card-quote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-on-dark);
}

.hero__card-name {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-on-dark);
}

.hero__card-role {
  font-weight: 400;
  color: var(--accent);
}

.hero__card-cta {
  align-self: flex-start;
}

@media (max-width: 640px) {
  .hero__bottom {
    justify-content: stretch;
  }

  .hero__card {
    width: 100%;
  }
}
