.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  background: radial-gradient(ellipse at 20% 20%, rgba(225, 29, 72, .08) 0%, transparent 50%), radial-gradient(ellipse at 80% 80%, rgba(99, 102, 241, .08) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(233, 69, 96, .03) 50px, rgba(233, 69, 96, .03) 51px);
  animation: gridMove 20s linear infinite;
}

.hero .tagline {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero img.hero-image {
  width: 100%;
  max-width: 500px;
  max-height: 250px;
  border-radius: 20px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px #0006;
  transition: transform .3s ease;
}

.hero img.hero-image:hover {
  transform: scale(1.02);
}

.hero h1 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(180deg, #fff, #a0a0b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.hero .hero-buttons {
  display: flex;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}