:root {
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #fff;
  background: #050914;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(ellipse at 50% 22%, #10204c80, transparent 57%);
}
main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 48px 24px 56px;
}
.hero {
  width: min(100%, 820px);
  text-align: center;
}
.logo {
  display: block;
  width: min(100%, 540px);
  height: auto;
  margin: 0 auto 26px;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  padding: 9px 15px;
  border: 1px solid #5a77a0;
  border-radius: 999px;
  color: #c5dcf8;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00d2ff;
}
h1 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 750;
}
h1 span {
  color: #8fbaff;
}
.description {
  max-width: 490px;
  margin: 24px auto 0;
  color: #aebbd0;
  font-size: 17px;
  line-height: 1.7;
  text-wrap: pretty;
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 0 48px;
  padding: 22px 0;
  border-top: 1px solid #253049;
  color: #aebbd0;
  font-size: 13px;
}
footer p {
  margin: 0;
}
a {
  color: #d4e5ff;
  text-underline-offset: 5px;
  text-decoration-color: #718cac;
  padding: 12px 0;
}
a:hover {
  color: #00d2ff;
}
a:focus-visible {
  outline: 2px solid #00d2ff;
  outline-offset: 6px;
  border-radius: 2px;
}
@media (max-width: 560px) {
  main {
    padding: 40px 24px;
  }
  .logo {
    margin-bottom: 32px;
  }
  .description {
    font-size: 16px;
  }
  footer {
    flex-direction: column;
    gap: 0;
    margin: 0 24px;
    padding: 20px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
