* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% 44%, rgba(25, 92, 255, 0.055), transparent 28rem),
    #f8f9fb;
  color: #11151b;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.hero {
  width: min(780px, 92vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  display: block;
  width: min(650px, 88vw);
  max-height: 34vh;
  object-fit: contain;
  height: auto;
  margin: 0 0 30px;
}

.copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  margin: 0;
  padding-left: 0.38em;
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.38em;
  color: #656c78;
}

p {
  margin: 14px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #1a2230;
}

@media (max-width: 520px) {
  .page {
    padding: 24px 18px;
  }

  .logo {
    width: min(92vw, 560px);
    margin-bottom: 26px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero {
    animation: appear 500ms ease-out both;
  }

  @keyframes appear {
    from {
      opacity: 0;
      transform: translateY(5px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
