* {
  box-sizing: border-box;
}

body {
  --message-max-width: 34rem;
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(67, 97, 238, 0.28), transparent 40%),
    linear-gradient(180deg, #0f172a 0%, #111827 100%);
  color: #f8fafc;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
}

.eyebrow,
h1,
.message {
  margin: 0;
}

.eyebrow {
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #93c5fd;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1;
}

.message {
  max-width: var(--message-max-width);
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #cbd5e1;
}
