/* ─────── HERO ─────── */
.hero{
  position:relative;
  width:100%;
  padding:0; /* global section padding'i hero'da geçersiz — yükseklik hero-content'ten gelir */
  /* tam ekran ama tavanlı: dev ekranlarda 940px'te durur; dvh mobil adres çubuğu zıplamasını önler */
  min-height:min(100vh, 940px);
  min-height:min(100dvh, 940px);
  overflow:hidden;
  background:#010f27;
}
.hero-bg{
  position:absolute;
  inset:0;
  background-color:#010f27;
  background-size:cover;
  background-position:center;
  overflow:hidden;
}
.hero-bg video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter:saturate(0.95) contrast(1.04) brightness(0.88);
  opacity:0;
}
.hero-bg video.hero-video-ready{
  opacity:1;
}
.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(18,18,18,0.55) 0%, rgba(18,18,18,0.18) 45%, rgba(18,18,18,0) 70%),
    linear-gradient(180deg, rgba(18,18,18,0.05) 0%, rgba(18,18,18,0) 30%, rgba(18,18,18,0.4) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  min-height:min(100vh, 940px);
  min-height:min(100dvh, 940px);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:160px 0 120px;
  gap:64px;
  color:var(--white);
}
.hero-content>.wrap{
  width:100%;
}
.hero-eyebrow{
  font-family:var(--sans);
  font-weight:500;
  font-size:16px;
  color:var(--white);
  text-transform:uppercase;
  display:block;
}
.hero h2{
  font-family:var(--sans);
  font-weight:500;
  font-size:76px;
  line-height:1.1;
  color:var(--white);
  max-width:1100px;
}
.hero h2 .line{display:block}
.hero-bottom{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:40px;
  z-index:3;
}
.hero-bottom-left {
  display:flex;
  flex-direction:column;
  gap:24px;
}
.hero-sub{
  color:rgba(255,255,255,0.92);
  font-size:20px;
  line-height:1.5;
  max-width:620px;
  font-weight:400;
}
/* ── Hero play button ── */
.hero-h1-row{
  margin-bottom:64px;
}
.hero-play-btn{
  background:none;
  border:none;
  cursor:pointer;
  color:var(--white);
  padding:0;
  flex-shrink:0;
  margin-top:16px;
}
.hero-play-circle{
  width:92px;height:92px;
  border-radius:50%;
  border:1.5px solid rgba(192,39,45,0.7);
  display:flex;align-items:center;justify-content:center;
  background:#C0272D;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  transition:background .25s ease, border-color .25s ease, transform .25s ease;
  position:relative;
}
.hero-play-btn:hover .hero-play-circle{
  background:#A8202A;
  border-color:rgba(192,39,45,0.9);
  transform:scale(1.08);
}
.hero-play-circle::before{
  content:'';
  position:absolute;inset:0;
  border-radius:50%;
  border:1.5px solid rgba(192,39,45,0.6);
  animation:play-pulse 2.4s ease-out infinite;
}
.hero-play-circle::after{
  content:'';
  position:absolute;inset:0;
  border-radius:50%;
  border:1.5px solid rgba(192,39,45,0.6);
  animation:play-pulse 2.4s ease-out infinite 1.2s;
}
@keyframes play-pulse{
  0%{transform:scale(1);opacity:1}
  100%{transform:scale(2);opacity:0}
}
