:root {
  color-scheme: light;
  font-family:
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --text-primary: #171b21;
  --text-secondary: #626c78;
  --text-tertiary: #78828e;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: #f4f7fa;
}

body {
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text-primary);
  background:
    linear-gradient(145deg, #f8f9fb 0%, #f2f6f9 52%, #eef3f8 100%);
}

.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.aurora::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(
      circle at 50% 43%,
      rgb(255 255 255 / 54%) 0,
      rgb(255 255 255 / 20%) 32%,
      transparent 65%
    ),
    linear-gradient(180deg, rgb(255 255 255 / 18%), transparent 42%);
}

.aurora__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(96px);
  opacity: 0.62;
  will-change: transform;
}

.aurora__glow--cyan {
  top: -24%;
  right: -12%;
  width: min(64vw, 940px);
  aspect-ratio: 1;
  background: rgb(112 213 234 / 32%);
  animation: drift-cyan 24s ease-in-out infinite alternate;
}

.aurora__glow--violet {
  right: 17%;
  bottom: -38%;
  width: min(58vw, 820px);
  aspect-ratio: 1;
  background: rgb(166 143 236 / 24%);
  animation: drift-violet 29s ease-in-out infinite alternate;
}

.aurora__glow--blue {
  bottom: -26%;
  left: -17%;
  width: min(62vw, 900px);
  aspect-ratio: 1;
  background: rgb(100 174 233 / 23%);
  animation: drift-blue 27s ease-in-out infinite alternate;
}

.aurora__light {
  position: absolute;
  top: 4%;
  left: 8%;
  width: min(42vw, 630px);
  aspect-ratio: 1.25;
  border-radius: 50%;
  background: rgb(255 255 255 / 72%);
  filter: blur(80px);
}

.page {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100svh;
  padding: clamp(32px, 5vw, 72px) clamp(24px, 6vw, 96px)
    clamp(24px, 3.5vw, 48px);
}

.hero {
  display: flex;
  align-self: center;
  align-items: center;
  flex-direction: column;
  width: min(100%, 1000px);
  margin: 0 auto;
  padding: clamp(54px, 9vh, 104px) 0 clamp(40px, 7vh, 76px);
  text-align: center;
}

.wordmark {
  margin: 0 0 clamp(28px, 4.3vh, 42px);
  color: #20252c;
  font-size: clamp(25px, 2.1vw, 30px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(48px, 6.1vw, 88px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.03;
  text-wrap: balance;
}

h1 span {
  display: block;
}

.description {
  max-width: 650px;
  margin: clamp(28px, 4.2vh, 42px) 0 0;
  color: var(--text-secondary);
  font-size: clamp(17px, 1.55vw, 21px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.48;
  text-wrap: balance;
}

.status {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: clamp(30px, 4.5vh, 46px);
  padding: 10px 17px 10px 14px;
  overflow: hidden;
  color: #4f5965;
  border: 1px solid rgb(255 255 255 / 67%);
  border-right-color: rgb(139 177 207 / 25%);
  border-bottom-color: rgb(106 120 139 / 13%);
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      rgb(255 255 255 / 38%),
      rgb(255 255 255 / 15%) 56%,
      rgb(229 240 249 / 16%)
    );
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 60%),
    0 10px 30px rgb(57 78 101 / 7%);
  backdrop-filter: blur(18px) saturate(126%);
  -webkit-backdrop-filter: blur(18px) saturate(126%);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.status::before {
  position: absolute;
  top: 0;
  right: 16%;
  left: 8%;
  height: 45%;
  border-radius: 50%;
  background: linear-gradient(180deg, rgb(255 255 255 / 34%), transparent);
  content: "";
  pointer-events: none;
}

.status__indicator {
  position: relative;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #7896ad;
  box-shadow:
    0 0 0 3px rgb(120 150 173 / 10%),
    inset 0 1px 1px rgb(255 255 255 / 52%);
}

footer {
  justify-self: center;
  color: var(--text-tertiary);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
}

@keyframes drift-cyan {
  from {
    transform: translate3d(-3%, -2%, 0) scale(1);
  }

  to {
    transform: translate3d(5%, 5%, 0) scale(1.08);
  }
}

@keyframes drift-violet {
  from {
    transform: translate3d(4%, 4%, 0) scale(1.03);
  }

  to {
    transform: translate3d(-6%, -3%, 0) scale(0.96);
  }
}

@keyframes drift-blue {
  from {
    transform: translate3d(-2%, 3%, 0) scale(0.98);
  }

  to {
    transform: translate3d(6%, -4%, 0) scale(1.06);
  }
}

@media (max-width: 767px) {
  .aurora__glow {
    filter: blur(72px);
  }

  .aurora__glow--cyan {
    top: -10%;
    right: -54%;
    width: 128vw;
  }

  .aurora__glow--violet {
    right: -42%;
    bottom: -21%;
    width: 125vw;
  }

  .aurora__glow--blue {
    bottom: -16%;
    left: -62%;
    width: 132vw;
  }

  .page {
    padding: 26px clamp(20px, 6.5vw, 32px) 22px;
  }

  .hero {
    padding: 68px 0 48px;
  }

  .wordmark {
    margin-bottom: 31px;
    font-size: 25px;
  }

  h1 {
    font-size: clamp(40px, 11.7vw, 55px);
    line-height: 1.04;
  }

  .description {
    max-width: 360px;
    margin-top: 27px;
    font-size: 17px;
    line-height: 1.46;
  }

  .description__break {
    display: none;
  }

  .status {
    margin-top: 32px;
  }
}

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

  .hero {
    padding-top: 52px;
  }

  h1 {
    font-size: 39px;
  }

  .description {
    max-width: 286px;
    font-size: 16px;
  }
}

@media (max-height: 560px) {
  .page {
    min-height: 560px;
  }

  .hero {
    padding-block: 48px 38px;
  }

  .wordmark {
    margin-bottom: 24px;
  }

  .description {
    margin-top: 22px;
  }

  .status {
    margin-top: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aurora__glow {
    animation: none;
  }
}
