/* =========================================================================
   Hero section
   ========================================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #0a1220;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 22, 40, 0.65) 0%, rgba(11, 22, 40, 0.18) 40%, rgba(11, 22, 40, 0.85) 100%),
    linear-gradient(90deg, rgba(11, 22, 40, 0.55) 0%, rgba(11, 22, 40, 0.12) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 140px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.hero--center .hero-bg::after {
  background:
    linear-gradient(180deg, rgba(11, 22, 40, 0.72) 0%, rgba(11, 22, 40, 0.36) 44%, rgba(11, 22, 40, 0.88) 100%),
    radial-gradient(circle at center, rgba(33, 133, 247, 0.16) 0%, rgba(11, 22, 40, 0) 52%);
}
.hero--center .hero-grid {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero--center .hero-sub {
  margin-left: auto;
  margin-right: auto;
}
.hero--center .hero-ctas {
  justify-content: center;
}
.hero--center .hero-ctas .btn {
  min-width: 190px;
}
.hero--center .hero-ctas .micro {
  justify-content: center;
}

.hero-headline {
  font-family: var(--font-body);
  font-size: clamp(40px, 5.8vw, 80px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 16px 0 24px;
  text-wrap: balance;
}
.hero-headline em {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.015em;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
  max-width: 560px;
  font-weight: 400;
  margin: 0 0 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-ctas .micro {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-ctas .micro .lucide { width: 14px; height: 14px; color: var(--electric-blue-300); }

/* ── Scroll cue ── */

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px 10px 20px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  text-decoration: none;
  transition: background 200ms var(--ease-out), border-color 200ms var(--ease-out);
}
.scroll-cue:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  color: #fff;
}
.scroll-cue .arrow {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--electric-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  animation: scrollPulse 1.8s ease-in-out infinite;
}
.scroll-cue .arrow .lucide { width: 14px; height: 14px; stroke-width: 2.6; }
@keyframes scrollPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(33, 133, 247, 0.55); transform: translateY(0); }
  50% { box-shadow: 0 0 0 10px rgba(33, 133, 247, 0); transform: translateY(3px); }
}

/* ── Responsive ── */

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .scroll-cue { display: none; }
}
@media (max-width: 560px) {
  .hero-content { padding: 120px 0 60px; }
  .hero-ctas .btn { width: 100%; }
  .hero--center .eyebrow-chip {
    max-width: 280px;
    justify-content: center;
    white-space: normal;
    line-height: 1.25;
    text-align: center;
  }
  .hero--center .hero-grid {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero--center .hero-headline {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    font-size: 30px;
    line-height: 1.06;
    text-wrap: auto;
  }
  .hero--center .hero-sub {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    font-size: 15.5px;
  }
  .hero--center .hero-ctas {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .hero--center .hero-ctas .btn {
    min-width: 0;
  }
}
