/* ================================================================
   LILA INVESTMENT GROUP — Hero Section
   styles/hero.css
   ================================================================ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  /*margin-top: 80px;
  height: calc(100vh - 80px);*/
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Fallback gradient — rich dark with pink bloom */
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(120, 76, 88, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(242, 191, 193, 0.08) 0%, transparent 45%),
    linear-gradient(160deg, #0A0608 0%, #000000 100%);
  z-index: 0;
}

/* Subtle grid */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 191, 193, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 191, 193, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 1;
}

/* Dark vignette from bottom */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1)    0%,
    rgba(0, 0, 0, 0.72) 28%,
    rgba(0, 0, 0, 0.35) 65%,
    rgba(0, 0, 0, 0.08) 100%
  );
  z-index: 2;
}

/* ─── HERO CONTENT ─── */
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 60px 88px;
  max-width: 920px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-eyebrow span {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--pink-light);
  font-weight: 500;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--grad-pink);
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(68px, 10vw, 124px);
  line-height: 0.9;
  letter-spacing: 2px;
  color: var(--white);
}
.hero h1 em {
  font-style: normal;
  display: block;
  background: var(--grad-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  margin-top: 28px;
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
}
.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* ─── STATS BAR ─── */
.hero-stats {
  position: absolute;
  bottom: 0; right: 0;
  z-index: 4;
  display: flex;
  background: rgba(8, 4, 6, 0.88);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(242, 191, 193, 0.15);
  border-left: 1px solid rgba(242, 191, 193, 0.15);
}
.stat-item {
  padding: 24px 38px;
  border-right: 1px solid rgba(242, 191, 193, 0.08);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  background: var(--grad-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
  display: block;
}

/* ─── TICKER STRIP ─── */
.ticker-strip {
  background: var(--grad-pink);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}
.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--white);
  padding: 0 32px;
  opacity: 0.9;
}
.ticker-item::after {
  content: '◆';
  margin-left: 32px;
  opacity: 0.4;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
