@layer blocks {
  .homepage-hero {
    background-color: var(--theme-surface-primary);
    position: relative;
    height: calc(100dvh - var(--header-height));
    overflow: hidden;
  }
  .homepage-hero__inner {
    position: relative;
    overflow: visible;
    width: 100%;
    height: 100%;
    box-sizing: content-box;
    margin-inline: auto;
    max-width: 100%;
    padding-inline: 0;
  }
  @media (min-width: 1024px) {
    .homepage-hero__inner {
      max-width: 130rem;
    }
  }
  .homepage-hero__animation {
    position: absolute;
    width: var(--anim-size, 100%);
    height: var(--anim-size, 100%);
    top: var(--anim-offset, 0%);
    left: var(--anim-offset, 0%);
    overflow: visible;
  }
  .homepage-hero__animation svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
  }
  .homepage-hero__animation picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .homepage-hero__animation picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .homepage-hero__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 3rem);
    padding-inline: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
  }
  @media (min-width: 1024px) {
    .homepage-hero__content {
      top: 55%;
      width: 60%;
    }
  }
  @media (min-width: 1200px) {
    .homepage-hero__content {
      width: 45%;
    }
  }
  .homepage-hero__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
  }
  @media (min-width: 1024px) {
    .homepage-hero__copy {
      gap: 2rem;
    }
  }
  .homepage-hero__heading {
    color: var(--theme-text-primary);
    text-align: center;
    width: 100%;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(1.25rem);
    filter: blur(1px);
    transition: opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1) 0ms, transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1) 0ms, filter 700ms cubic-bezier(0.22, 0.61, 0.36, 1) 0ms;
  }
  .homepage-hero__heading--visible {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .homepage-hero__description {
    color: var(--theme-text-primary);
    text-align: center;
    max-width: 22rem;
    opacity: 0;
    transform: translateY(1.25rem);
    filter: blur(1px);
    transition: opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1) 120ms, transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1) 120ms, filter 700ms cubic-bezier(0.22, 0.61, 0.36, 1) 120ms;
  }
  @media (min-width: 1024px) {
    .homepage-hero__description {
      max-width: 26.1875rem;
    }
  }
  .homepage-hero__description--visible {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .homepage-hero__cta {
    pointer-events: auto;
    width: 100%;
    opacity: 0;
    transform: translateY(1.25rem);
    filter: blur(1px);
    transition: opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1) 240ms, transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1) 240ms, filter 700ms cubic-bezier(0.22, 0.61, 0.36, 1) 240ms;
  }
  @media (min-width: 768px) {
    .homepage-hero__cta {
      width: auto;
    }
  }
  .homepage-hero__cta--visible {
    opacity: 1;
    transform: none;
    filter: none;
  }
  @media (prefers-reduced-motion: reduce) {
    .homepage-hero__heading, .homepage-hero__description, .homepage-hero__cta {
      opacity: 1;
      transform: none;
      filter: none;
      transition: none;
    }
  }
}