/* ── Hero — split blanco (home) ───────────────────── */

.hero {
  background: #fff;
  border-bottom: 1px solid var(--laooz-border);
}

.hero-eyebrow {
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ca3af;
}

.hero-eyebrow--live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-live-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(var(--brand-rgb), 0.45);
  animation: hero-pulse 2.4s ease-in-out infinite;
}

@keyframes hero-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(var(--brand-rgb), 0.35);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(var(--brand-rgb), 0);
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #000;
}

.hero-title-accent {
  display: inline;
  background: linear-gradient(transparent 58%, var(--brand) 58%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero-lead {
  margin-top: 0.875rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--laooz-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.hero-actions .header-cta {
  display: inline-block;
}

.hero-action-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--link);
  text-decoration: none;
  transition: color 0.15s ease;
}

.hero-action-link:hover {
  color: var(--link-hover);
}

.hero-split {
  overflow: hidden;
}

.hero-split-inner {
  padding: 1.75rem 1.5rem 1.5rem;
}

.hero-split-copy {
  max-width: 36rem;
}

.hero-split-content {
  max-width: 36rem;
}

.hero-split-content > * {
  animation: hero-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.hero-split-content > *:nth-child(1) {
  animation-delay: 0.05s;
}

.hero-split-content > *:nth-child(2) {
  animation-delay: 0.12s;
}

.hero-split-content > *:nth-child(3) {
  animation-delay: 0.19s;
}

.hero-split-content > *:nth-child(4) {
  animation-delay: 0.26s;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-split-visual {
  position: relative;
  margin-top: 1.5rem;
  height: 240px;
}

.hero-split-visual-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

.hero-split-image-inset {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-split-visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(160deg, rgba(var(--brand-rgb), 0.12) 0%, transparent 45%),
    linear-gradient(to bottom, transparent 55%, rgba(21, 28, 39, 0.04) 100%);
}

.hero-split-image {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(25%) contrast(1.05) saturate(0.85);
}

.hero-split-visual-fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent 35%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), transparent 28%);
}

.hero-split-chip {
  position: absolute;
  z-index: 2;
  bottom: 16%;
  right: 12%;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 500;
  color: #374151;
  box-shadow: 0 8px 24px rgba(21, 28, 39, 0.06);
  white-space: nowrap;
  animation: hero-float-b 6.5s ease-in-out infinite;
}

.hero-split-orb {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}

.hero-split-orb--1 {
  top: 18%;
  right: 22%;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid rgba(var(--brand-rgb), 0.35);
  background: rgba(var(--brand-rgb), 0.08);
  animation: hero-float-b 7s ease-in-out infinite;
}

.hero-split-orb--2 {
  bottom: 22%;
  left: 18%;
  width: 2rem;
  height: 2rem;
  background: rgba(var(--brand-rgb), 0.55);
  animation: hero-float-a 4.5s ease-in-out infinite;
}

@keyframes hero-float-a {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes hero-float-b {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }
}

@media (min-width: 1024px) {
  .hero-split-inner {
    display: grid;
    grid-template-columns: minmax(0, 54%) minmax(280px, 46vw);
    align-items: stretch;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 0 0 1.5rem;
    height: min(400px, calc(100vh - 10rem));
    min-height: 340px;
  }

  .hero-split-copy {
    display: flex;
    align-items: center;
    max-width: none;
    padding: 1.25rem 1.5rem 1.25rem 0;
  }

  .hero-split-content {
    max-width: 40rem;
    width: 100%;
  }

  .hero-split-visual {
    margin-top: 0;
    height: auto;
    align-self: stretch;
    margin-right: calc(50% - 50vw);
  }

  .hero-split-visual-frame {
    border-radius: 0;
    height: 100%;
  }

  .hero-split-image {
    inset: auto;
    right: 0;
    left: auto;
    top: -20px;
    width: 100%;
    height: calc(100% + 40px);
    object-position: right center;
  }

  .hero-split-visual-fade {
    background:
      linear-gradient(to top, rgba(255, 255, 255, 0.1), transparent 18%),
      linear-gradient(to bottom, rgba(255, 255, 255, 0.06), transparent 18%),
      linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.8) 10%, transparent 30%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-split-image,
  .hero-split-chip,
  .hero-split-orb--1,
  .hero-split-orb--2,
  .hero-split-content > *,
  .hero-live-dot {
    animation: none;
  }
}
