/* Hero v15 — Cinematic Fade */

.hero-v15 {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 1.25rem 4rem;
  background-color: var(--background-color, #000);
  background-image: var(--background-image, none), linear-gradient(180deg, #0a0a0a 0%, #171717 100%);
  background-size: cover, auto;
  background-position: center, center;
}

.hero-v15-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-v15-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding-bottom: 0.5rem;
}

.hero-v15-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin: 0 0 1rem;
  color: color-mix(in srgb, var(--accent-color, #f43f5e) 90%, #fff);
  font-weight: 600;
}

.hero-v15 .hero-title {
  font-size: clamp(2.75rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
  margin: 0 0 1rem;
  background: linear-gradient(180deg, #ffffff 20%, color-mix(in srgb, var(--accent-color, #f43f5e) 75%, #fff) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-v15 .hero-subtitle {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  margin: 0 0 2rem;
  opacity: 0.88;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-v15-cta {
  padding: 1rem 2.75rem;
  font-size: 1.1rem;
  border-radius: 8px;
  background: var(--accent-color, #f43f5e) !important;
  color: #fff !important;
  box-shadow: 0 12px 40px color-mix(in srgb, var(--accent-color, #f43f5e) 45%, transparent);
}
