.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero-content {
  animation: fadeInUp 1s ease both;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content .hero-copy,
.hero-content .button {
  animation: fadeInUp 1s ease both;
}

.hero-content .eyebrow { animation-delay: 0.1s; }
.hero-content h1 { animation-delay: 0.2s; }
.hero-content .hero-copy { animation-delay: 0.35s; }
.hero-content .button { animation-delay: 0.5s; }

.about-copy,
.about-visual {
  opacity: 0;
  transform: translateY(36px);
  animation: fadeInUp 1s ease both;
}

.about-copy {
  animation-delay: 0.15s;
}

.about-visual {
  animation-delay: 0.35s;
}
