:root {
  color-scheme: light;
  --text: #2f2f2f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 18% 18%, rgba(82, 109, 255, 0.18), transparent 32rem),
    radial-gradient(circle at 84% 24%, rgba(255, 181, 102, 0.2), transparent 30rem),
    linear-gradient(135deg, #f8fbff 0%, #eef4ff 44%, #fff7ef 100%);
  color: var(--text);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 24px;
}

.maintenance {
  width: min(100%, 1200px);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 72px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(52, 64, 84, 0.12);
  backdrop-filter: blur(18px);
  text-align: center;
}

h1 {
  margin: 0 0 32px;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0;
}

p {
  max-width: 920px;
  margin: 0;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 400;
}

@media (max-width: 760px) {
  .page {
    padding: 28px 14px;
  }

  .maintenance {
    min-height: 360px;
    padding: 34px 22px 46px;
  }

  h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  p {
    font-size: 20px;
  }
}
