.hero {
    position: relative;
    min-height: 100vh;
    padding-top: var(--navH);
    display: grid;
    place-items: center;
}

.hero__media{
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.05);
}


.hero__overlay{
  position: absolute;
  inset: 0;
  
  background:
    linear-gradient(to top, rgba(0,0,0,0.88), rgba(0,0,0,0.15)),
    linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.07)),
    radial-gradient(ellipse at center, rgba(0,0,0,0.10), rgba(0,0,0,0.3));
}

.hero__content{
  position: relative;
  width: min(980px, calc(100% - 28px));
  text-align: center;
  padding: 44px 0 64px;
}

.hero__logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(190px, 26vw, 280px);
  height: clamp(190px, 26vw, 280px);
  border-radius: 999px;
  background: transparent;
  border: 0;
  box-shadow: none;
  margin: 0 auto 18px;
  will-change: transform, opacity;
}

.logoImg{
  display:block;
  width:100%;
  height:100%;
  object-fit: contain;
  user-select:none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 25px 25px rgba(0,0,0,0.3));
}

.logoImg--big{
  padding: 0; 
}

.logoImg--small{
  padding: 3px
}


.logoMark{
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 0.95;
  user-select: none;
}
.logoMark--big{
  font-size: clamp(28px, 3.8vw, 48px);
}
.logoMark--small{
  font-size: 14px;
  letter-spacing: 0.06em;
}

.hero__title{
  margin: 10px 0 10px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero__text{
  margin: 0 auto 22px;
  max-width: 58ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.hero__cta{
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
  color: #fff;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  outline: none;
  cursor: pointer;
}

.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
}
.btn:focus-visible{
  box-shadow: 0 0 0 3px rgba(255,204,0,0.35);
}
.btn--primary{
  background: rgba(255,204,0,0.92);
  color: #0b0b0f;
  border-color: rgba(255,204,0,0.55);
}
.btn--primary:hover{ background: rgba(255,204,0,1); }