.cta {
  font-family: "Pixelify Sans", ui-monospace, monospace;
  border-width: 4px;
  display: inline-flex;
  align-items: center;
  border-color: #14532d;
  border-radius: 10px;
  background: #22c55e;
  box-shadow: inset 4px 4px 0 #34d399, inset -4px -4px 0 #16a34a,
    0 6px 0 #14532d, 0 10px 0 #00000022;
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease,
    background-color 0.2s ease;
  color: #fff;
}

.cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: inset 4px 4px 0 #34d399, inset -4px -4px 0 #16a34a,
    0 7px 0 #14532d, 0 12px 0 #00000022;
  background: #16a34a;
  /* emerald-600 */
}

.cta:active {
  transform: translateY(2px);
  box-shadow: inset 4px 4px 0 #34d399, inset -4px -4px 0 #16a34a,
    0 3px 0 #14532d, 0 6px 0 #00000022;
}

.cta-sm {
  padding: 0.375rem 0.875rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Inter", ui-sans-serif, system-ui;
}