/* ============================================================
   PUBLIC CTA HOVER
   Small, component-scoped interaction layer for marketing CTAs.
   ============================================================ */
[data-start-property-check] {
  transform: none;
  transition:
    background-color 90ms ease-out,
    border-color 90ms ease-out,
    color 90ms ease-out,
    opacity 90ms ease-out;
}

.marketing-cta-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  max-width: 100%;
  white-space: nowrap;
}

.marketing-primary-cta .marketing-cta-label {
  font-size: clamp(0.84rem, 3.7vw, 1rem);
}

[data-start-property-check]:focus-visible {
  outline: 3px solid rgba(255, 250, 242, 0.96);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  [data-start-property-check]:hover {
    background: #fffaf2;
    border-color: #fffaf2;
    color: #203e31;
    transform: none;
    animation: marketing-cta-fast-blink 160ms ease-out both;
  }
}

[data-start-property-check]:active {
  background: #fffaf2;
  border-color: #fffaf2;
  color: #203e31;
  transform: none;
}

@keyframes marketing-cta-fast-blink {
  0%, 100% { opacity: 1; }
  42% { opacity: 0.68; }
}

@media (prefers-reduced-motion: reduce) {
  [data-start-property-check] {
    animation: none;
    transition: background-color 80ms linear, border-color 80ms linear, color 80ms linear;
  }
}
