.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 55vh;
  margin: 0 auto;
  padding: 96px 24px;
  text-align: center;
}

.not-found-code {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(7rem, 22vw, 13rem);
  line-height: 0.9;
  color: var(--accent);
}

.not-found-title {
  margin: 18px 0 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3rem);
}

.not-found-text {
  max-width: 46ch;
  margin: 14px 0 0;
  color: var(--muted);
}

.not-found-cta {
  display: inline-block;
  padding: 12px 28px;
  margin-top: 32px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.not-found-cta:hover {
  background: var(--accent-hover);
}

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