/**
 * Solid pill CTA — lime background, da-black text.
 * Single source for: Explore Amy, Our Work, Let's talk, hero Amy CTA, journey arrow CTAs.
 */

.home-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Satoshi', system-ui, sans-serif;
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  text-decoration: none;
  padding: 16px 26px;
  border-radius: 999px;
  border: none;
  background: #b8e986;
  color: #151515;
  box-shadow: 0 4px 20px rgba(21, 21, 21, 0.12);
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 180ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

button.home-cta {
  font: inherit;
  appearance: none;
}

.home-cta:visited,
.home-cta:hover,
.home-cta:active,
.home-cta:focus {
  color: #151515;
  text-decoration: none;
}

.home-cta:hover {
  background: #c9f29a;
  box-shadow: 0 6px 28px rgba(21, 21, 21, 0.16);
  transform: translateY(-1px);
}

.home-cta:active {
  transform: translateY(0);
}

.home-cta:focus-visible {
  outline: 2px solid #151515;
  outline-offset: 3px;
}

.home-cta__arrow {
  display: inline-block;
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-cta:hover .home-cta__arrow {
  transform: translate(3px, 0);
}

@media (max-width: 480px) {
  .home-cta {
    padding: 14px 22px;
    font-size: 13px;
  }
}
