/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75em 1.5em;
  font-size: var(--size-sm);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background var(--speed-fast), color var(--speed-fast), border-color var(--speed-fast);
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn--primary:hover {
  background: #cc0412;
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-gray-700);
}

.btn--ghost:hover {
  border-color: var(--color-text-muted);
  color: var(--color-white);
}

/* Counter numbers */
.counter-value {
  font-size: var(--size-hero);
  font-weight: var(--font-weight-black);
  line-height: 1;
  color: var(--color-white);
}

.counter-label {
  font-size: var(--size-base);
  font-weight: var(--font-weight-light);
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}
