/* Shared primitives: buttons and the Apple glyph, reused across nav, hero and pricing. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  font: 700 14px/1 var(--sans);
  transition:
    background 150ms ease,
    box-shadow 150ms ease,
    transform 150ms ease,
    color 150ms ease,
    border-color 150ms ease;
}

.btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.22);
  outline-offset: 3px;
}

.btn:active {
  transform: translateY(1px);
}

/* full-width button (e.g. the pricing-card CTAs) */
.btn-block {
  width: 100%;
}

/* same shape as the price CTA, but a grey fill */
.btn-secondary {
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(180deg, #4a4a4a 0%, #313131 100%);
  box-shadow:
    0 0 0 0.5px rgba(255, 255, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 8px 22px rgba(0, 0, 0, 0.3);
  text-shadow: var(--pressed-text);
}

.btn-secondary:hover {
  background: linear-gradient(180deg, #555 0%, #3a3a3a 100%);
}

.btn-price {
  padding: 0 20px;
  color: #081408;
  background: linear-gradient(180deg, #4fc079 0%, #2f9e54 100%);
  box-shadow:
    0 0 0 0.5px rgba(255, 255, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 8px 22px rgba(47, 158, 84, 0.26);
  text-shadow: none;
}

.btn-price:hover {
  background: linear-gradient(180deg, #5bcd86 0%, #38ab5e 100%);
}

.apple {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

/* on very narrow screens, CTAs go full-width (nav buttons stay auto — see nav.css) */
@media (max-width: 420px) {
  .btn {
    width: 100%;
  }
}
