:root {
  color: #10262a;
  background: #f4f1e9;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 80% 8%, rgba(200, 40, 77, 0.12), transparent 34%),
    #f4f1e9;
}

main {
  width: min(100%, 620px);
}

.eyebrow {
  margin: 0 0 16px;
  color: #c8284d;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 15vw, 7.5rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.82;
}

.intro {
  margin: 24px 0 48px;
  color: #4c5a5c;
  font-size: 1rem;
}

nav {
  border-top: 1px solid rgba(16, 38, 42, 0.22);
}

.action {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid rgba(16, 38, 42, 0.22);
  color: inherit;
  font-size: clamp(1.05rem, 3vw, 1.25rem);
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease, padding 160ms ease;
}

.action:hover,
.action:focus-visible {
  padding-inline: 10px;
  color: #c8284d;
  outline: none;
}

.action.primary {
  color: #c8284d;
}

.number {
  color: #7a8585;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.arrow {
  font-size: 1.3rem;
  font-weight: 400;
}

@media (max-width: 480px) {
  body {
    align-items: start;
    padding: 52px 22px 28px;
  }

  .intro {
    margin-bottom: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .action {
    transition: none;
  }
}
