/* ---------- HOME HERO LANDING VIEW ---------- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  color: #fff;
  background: transparent;
  padding: 48px 20px;
}

.hero-sticker {
  width: 40vw;            
  max-width: 280px;       
  pointer-events: none;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.45));
  z-index: 1;
}

.hero-text {
  z-index: 2;
  text-align: left;
}

.hero-text h1 {
  font-size: clamp(28px, 6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  font-weight: 600;
}

.subtitle {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

/* Translucent Action Button Link */
.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #db6c47;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-btn:active {
  transform: translateY(0);
}