:root {
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  background: #08090d;
  color: #f8f8fb;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgb(107 74 188 / 45%), transparent 34rem),
    radial-gradient(circle at 90% 85%, rgb(37 130 125 / 34%), transparent 30rem),
    #08090d;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgb(255 255 255 / 2%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 2%) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

main {
  min-height: calc(100vh - 56px);
  display: grid;
  place-items: center;
  padding: 48px 24px;
}

.card {
  width: min(680px, 100%);
  padding: clamp(32px, 7vw, 72px);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 28px;
  background: rgb(13 14 20 / 72%);
  box-shadow: 0 32px 100px rgb(0 0 0 / 52%);
  backdrop-filter: blur(28px);
}

.mark {
  width: 52px;
  height: 52px;
  margin-bottom: 38px;
  border-radius: 16px;
  background: linear-gradient(135deg, #a482ff, #70eee1);
  box-shadow: 0 0 45px rgb(141 100 255 / 42%);
  position: relative;
}

.mark::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1.5px solid rgb(255 255 255 / 75%);
  border-radius: 8px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #aaa8b8;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .11em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 8vw, 72px);
  line-height: .98;
  letter-spacing: -.055em;
}

.lede {
  max-width: 510px;
  margin: 28px 0 0;
  color: #b9b8c4;
  font-size: clamp(17px, 2.5vw, 20px);
  line-height: 1.55;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 34px;
  padding: 9px 13px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 999px;
  color: #aaaab5;
  background: rgb(0 0 0 / 20%);
  font-size: 12px;
}

.status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #70eee1;
  box-shadow: 0 0 12px #70eee1;
}

.home {
  display: inline-block;
  margin-top: 32px;
  color: #e1d9ff;
  text-underline-offset: 4px;
}

footer {
  height: 56px;
  padding: 0 24px;
  color: #777784;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 600px) {
  main { padding: 20px 14px; }
  .card { border-radius: 22px; }
  .mark { margin-bottom: 30px; }
}
