*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: rgb(var(--color-coal));
  background: rgb(var(--color-bg-light));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 2px solid rgb(var(--color-gold));
  outline-offset: 2px;
}

.pill-badge {
  display: inline-flex;
  align-self: flex-start;
  border-radius: 999px;
  padding: 6px 14px;
  background: rgb(var(--color-coal));
  color: rgb(var(--color-gold));
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-elevated {
  background: #ffffff;
  border-radius: 20px;
  box-shadow:
    0 1px 2px rgb(20 20 20 / 0.04),
    0 14px 34px -18px rgb(20 20 20 / 0.14);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.card-elevated:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 2px rgb(20 20 20 / 0.04),
    0 22px 44px -18px rgb(20 20 20 / 0.2);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
