/* Shared behavior for the three homepage paths to the signup walkthrough.
   Each placement owns its visual treatment; alignment, motion and focus/hover
   feedback stay centralized so the links cannot drift apart. */
.home-signup-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition:
    color 0.25s ease,
    text-decoration-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.home-signup-link__arrow {
  transition: transform 0.25s ease;
}

.home-signup-link:hover .home-signup-link__arrow,
.home-signup-link:focus-visible .home-signup-link__arrow {
  transform: translateX(4px);
}

/* Text-link variant shared by the pricing and final CTA placements. */
.home-signup-link--text {
  text-decoration: underline;
  text-decoration-color: rgba(154, 86, 255, 0.55);
  text-underline-offset: 0.35em;
}

.home-signup-link--text > .fa-arrow-right {
  font-size: 0.85em;
}

.home-signup-link--text:hover,
.home-signup-link--text:focus-visible {
  color: #ffffff;
  text-decoration-color: rgba(233, 227, 255, 0.9);
}
