* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #f8fafc;
  color: #111827;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 0 0 1rem;
}

.hero p {
  font-size: 1.125rem;
  margin: 0 0 1.5rem;
  max-width: 34rem;
}

.button {
  display: inline-flex;
  padding: 0.9rem 1.6rem;
  background: #2563eb;
  color: white;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
}
