.reveal {
  opacity: 0;
  transform: translateY(70px) scale(0.97);
  filter: blur(8px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) var(--delay, 0ms),
    transform 1.15s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0ms),
    filter 0.8s ease var(--delay, 0ms);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.hero h1,
.eyebrow,
.hero-bottom {
  will-change: transform, opacity, filter;
}
.orb-one {
  transform: translate3d(0, calc(var(--scroll, 0px) * 0.14), 0);
}
.orb-two {
  transform: translate3d(0, calc(var(--scroll, 0px) * -0.09), 0);
}
.orb-three {
  transform: translate3d(0, calc(var(--scroll, 0px) * 0.2), 0);
}
.solution {
  transition:
    padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s;
}
.solution:hover {
  padding-left: 18px;
  padding-right: 18px;
  background: #ffffff08;
}
.solution-image img {
  height: 120%;
  margin-top: -10%;
  will-change: transform;
  transition: filter 0.45s ease;
}
.solution-copy h3 {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.solution:hover .solution-copy h3 {
  transform: translateX(12px);
}
.work-image {
  overflow: hidden;
}
.work-image > img {
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.work-image.in-view > img {
  transform: scale(1.035);
}
.project-stamp {
  position: absolute;
  left: 32px;
  bottom: 32px;
  background: var(--acid);
  padding: 15px 18px;
  font-size: 12px;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 8px 8px 0 var(--ink);
}
@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(65px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .hero h1,
  .eyebrow,
  .hero-bottom,
  .orb {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}
