:root {
  color-scheme: light;
  font-family: Poppins, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

.maintenance {
  align-items: center;
  background: linear-gradient(135deg, #f5f9ff 0%, #e6f0ff 100%);
  display: flex;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 24px;
}

.maintenance__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 560px;
  min-width: 0;
  text-align: center;
  width: 100%;
}

.maintenance__illustration {
  max-width: 360px;
  width: 100%;
}

.maintenance__illustration img {
  display: block;
  height: auto;
  width: 100%;
}

.maintenance__copy {
  min-width: 0;
  width: 100%;
}

.maintenance__status {
  color: #4963a7;
  display: block;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.maintenance__copy h1 {
  color: #1d3557;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  margin: 8px 0 12px;
  overflow-wrap: anywhere;
}

.maintenance__copy p {
  color: #52677f;
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
}

.maintenance__note {
  color: #52677f;
  font-size: .9375rem;
  line-height: 1.5;
  margin: 4px 0 0;
}

@media (max-width: 599px) {
  .maintenance {
    padding: 20px;
  }

  .maintenance__content {
    gap: 20px;
  }

  .maintenance__illustration {
    max-width: 280px;
  }

  .maintenance__copy p {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
