*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  background: #fff;
  color: #111;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.content {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.illustration {
  width: min(100%, 420px);
  max-height: 33vh;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .illustration {
    max-height: 35vh;
  }
}

.illustration__img {
  width: 100%;
  height: auto;
  max-height: 33vh;
  object-fit: contain;
  display: block;
}

@media (min-width: 768px) {
  .illustration__img {
    max-height: 35vh;
  }
}

.title {
  margin: 2rem 0 0;
  font-size: clamp(1.375rem, 4vw + 0.5rem, 1.875rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.description {
  margin: 1rem 0 0;
  max-width: 44ch;
  font-size: clamp(0.9375rem, 0.5vw + 0.875rem, 1rem);
  font-weight: 400;
  line-height: 1.55;
  color: #666;
}

.cta {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  max-width: 380px;
  padding: 0.875rem 1.5rem;
  font-family: inherit;
  font-size: clamp(0.875rem, 0.5vw + 0.8125rem, 0.9375rem);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: #e13056;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    transform 0.15s ease;
}

.cta:hover {
  background: #c7284c;
}

.cta:active {
  transform: scale(0.99);
}

.cta:focus-visible {
  outline: 2px solid #e13056;
  outline-offset: 3px;
}

.cta__text {
  flex: 0 1 auto;
}

.cta__icon {
  flex-shrink: 0;
  color: #fff;
}

@media (max-width: 380px) {
  .cta {
    max-width: none;
    padding-inline: 1rem;
    gap: 0.5rem;
  }
}
