* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0a0a0b url('image.png') center / cover no-repeat;
  color: #e4e4e7;
  font-family: 'DM Sans', -apple-system, sans-serif;
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 11, 0.6);
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

.badge {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #71717a;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1rem;
  color: #71717a;
  max-width: 60%;
  line-height: 1.6;
}
