.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: calc(var(--space-32) + 60px);
  padding-bottom: var(--space-32);
  position: relative;
  overflow: hidden;
}


.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  width: 100%;
  max-width: 1100px;
}

/* Label boven de titel */
.hero .section-label {
  color: var(--color-accent);
}

/* ── Grote display-titel ─────────────────────────────────────── */
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 18vw, 200px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--color-text);
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}

/* ── Word-reveal animatie ────────────────────────────────────── */
.word-reveal {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: 0.18em;
}
.word-reveal:last-of-type { margin-right: 0; }

.word-reveal span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.85s var(--ease-out-expo);
}
.word-reveal.visible span { transform: translateY(0); }

/* Accent woord */
.hero__title-accent { color: var(--color-accent); }

/* Subline */
.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  color: var(--color-text-muted);
  max-width: 480px;
  line-height: var(--leading-relaxed);
  text-align: center;
}

/* Scroll indicator */
.hero__scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: var(--tracking-wider);
  margin-top: var(--space-8);
}
.hero__scroll-line {
  display: block;
  width: 40px;
  height: 1px;
  background-color: var(--color-border);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent);
  animation: scroll-line 2s var(--ease-out-expo) infinite;
}
@keyframes scroll-line {
  0%   { left: -100%; }
  50%  { left: 0%; }
  100% { left: 100%; }
}

@media (max-width: 640px) {
  .hero { padding-top: calc(var(--space-24) + 60px); }
}
