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

body {
  background: #0b0b0f;
  color: #f2f2f2;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at center, rgba(90,60,120,0.25), rgba(0,0,0,0.85));
  text-align: center;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.08em;
}

p {
  margin-top: 1rem;
  opacity: 0.85;
}

.btn {
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  border: 1px solid #b58cff;
  color: #b58cff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #b58cff;
  color: #000;
}