/* =================================================================
   HERO — full viewport, Ken Burns background, dark gradient overlay
   ================================================================= */

.hero{
  position: relative;
  min-height: 100vh;
  display:flex;
  align-items:center;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero__bg{
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
  transform: scale(1.08);
  animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns{
  0%   { transform: scale(1.08) translate(0, 0); }
  100% { transform: scale(1.18) translate(-1.5%, -1.5%); }
}

.hero__overlay{
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,18,32,0.78) 0%, rgba(11,18,32,0.62) 38%, rgba(11,18,32,0.88) 100%),
    linear-gradient(100deg, rgba(11,18,32,0.55) 0%, rgba(11,18,32,0.15) 55%, rgba(11,18,32,0.45) 100%);
}

.hero__content{
  position: relative; z-index: 2;
  width: 100%;
  padding-top: calc(var(--nav-h) + 2rem);
}

.hero__badge{
  display:inline-flex; align-items:center; gap:0.55rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  font-family: var(--f-display); font-weight:600; font-size:0.82rem;
  padding: 0.5rem 1.05rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-md);
}
.hero__badge .dot{ width:7px; height:7px; border-radius:50%; background: var(--amber); flex-shrink:0; box-shadow: 0 0 0 3px rgba(245,158,11,0.25); }

.hero h1{
  color:#fff;
  max-width: 760px;
  margin-bottom: var(--sp-md);
}
.hero h1 .accent{ color: var(--amber); }

.hero__sub{
  font-size: 1.2rem;
  color: rgba(226,232,240,0.88);
  max-width: 560px;
  margin-bottom: var(--sp-lg);
  line-height: 1.65;
}

.hero__stats{
  display:flex; flex-wrap:wrap; gap: 0.75rem;
  margin-top: var(--sp-xl);
  max-width: 760px;
}
.hero__stats > div{
  padding: 0.9rem 1.3rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18), inset 0 1px 1px rgba(255,255,255,0.14);
}
.hero__stat-num{
  font-family: var(--f-display); font-weight:800;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  color: #fff; line-height:1;
}
.hero__stat-num .suffix{
  background: linear-gradient(135deg, #FDBA74, #F59E0B);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__stat-label{
  font-size: 0.85rem; color: rgba(226,232,240,0.7);
  margin-top: 0.35rem;
}

.hero__scroll-cue{
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display:flex; flex-direction:column; align-items:center; gap:0.5rem;
  color: rgba(255,255,255,0.6);
  font-family: var(--f-display); font-size:0.72rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase;
}
.hero__scroll-cue svg{ width:18px; height:18px; animation: bob 2s ease-in-out infinite; }
@keyframes bob{
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 760px){
  .hero{ min-height: 92vh; }
  .hero__stats{ gap: 0.6rem; }
  .hero__stats > div{ padding: 0.75rem 1rem; flex: 1 1 calc(50% - 0.3rem); }
  .hero__scroll-cue{ display:none; }
}

@media (prefers-reduced-motion: reduce){
  .hero__bg img{ animation: none; transform: scale(1.02); }
  .hero__scroll-cue svg{ animation: none; }
}
