/* Hero v12 — Neon Frame */

.hero-v12 {
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
  background-color: var(--background-color, #020617);
  background-image: var(--background-image, none), radial-gradient(ellipse at center, #0f172a 0%, #020617 70%);
  background-size: cover, auto;
}

.hero-v12-frame {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(2rem, 5vw, 3.5rem);
  max-width: 720px;
  text-align: center;
  border: 2px solid color-mix(in srgb, var(--accent-color, #38bdf8) 55%, transparent);
  border-radius: 4px;
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--accent-color, #38bdf8) 25%, transparent),
    0 0 40px color-mix(in srgb, var(--accent-color, #38bdf8) 20%, transparent),
    inset 0 0 60px rgba(0, 0, 0, 0.35);
}

.hero-v12-frame::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px dashed color-mix(in srgb, var(--accent-color, #38bdf8) 35%, transparent);
  border-radius: 2px;
  pointer-events: none;
}

.hero-v12 .hero-title {
  position: relative;
  z-index: 1;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 900;
  margin: 0 0 1rem;
  background: linear-gradient(90deg, #f8fafc, var(--accent-color, #38bdf8));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-v12 .hero-subtitle {
  position: relative;
  z-index: 1;
  margin: 0 0 1.75rem;
  opacity: 0.88;
}

.hero-v12-btn {
  position: relative;
  z-index: 1;
}
