:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #070b14;
  color: #f4f7ff;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgb(35 105 255 / 25%), transparent 35%),
    radial-gradient(circle at 80% 80%, rgb(0 229 190 / 18%), transparent 35%),
    #070b14;
}

.hero {
  width: min(680px, calc(100% - 2rem));
  padding: clamp(2rem, 7vw, 5rem);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 28px;
  background: rgb(12 18 32 / 82%);
  box-shadow: 0 30px 80px rgb(0 0 0 / 40%);
  text-align: center;
  backdrop-filter: blur(18px);
}

.eyebrow {
  margin: 0 0 1rem;
  color: #57ebcc;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 10vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.intro {
  margin: 1.5rem auto 2rem;
  max-width: 45ch;
  color: #b8c3d9;
  font-size: 1.1rem;
  line-height: 1.7;
}

button {
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  background: #57ebcc;
  color: #07110f;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgb(87 235 204 / 28%);
}

.status {
  min-height: 1.5rem;
  margin: 1.25rem 0 0;
  color: #8ea0c2;
}
