.orisa-hero-video {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background-color: #0f0f0f;
  color: #ffffff;
}
.orisa-hero-video__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.orisa-hero-video__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
/* Still-image hero (home4): same layout, subtle Ken Burns so the frame feels alive */
.orisa-hero-video--image .orisa-hero-video__bg {
  overflow: hidden;
}
.orisa-hero-video--image .orisa-hero-video__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transform-origin: center center;
  animation: orisa-hero-ken 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes orisa-hero-ken {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1%, -0.6%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .orisa-hero-video--image .orisa-hero-video__media {
    animation: none;
    transform: scale(1.06);
  }
}
.orisa-hero-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 15, 0.35) 0%,
    rgba(15, 15, 15, 0.25) 45%,
    rgba(15, 15, 15, 0.72) 100%
  );
}
.orisa-hero-video__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(120px, 14vw, 180px) clamp(20px, 5.5vw, 96px) clamp(48px, 6vw, 96px);
}
.orisa-hero-video__eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72) !important;
  margin-bottom: clamp(16px, 2vw, 28px);
}
.orisa-hero-video__title {
  /* ch font glyph genişliğine bağlı → FOUT'ta 3/2 satır kayması; em daha stabil */
  max-width: min(11.5em, 92vw);
  font-size: clamp(42px, 8vw, 112px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 0;
}
/* ThemePure reveal-text paints chars grey→black; hero needs white (opacity scrub = grey→white) */
.orisa-hero-video .reveal-text,
.orisa-hero-video .reveal-text .char,
.orisa-hero-video .reveal-text .char.revealed {
  color: #ffffff !important;
}
.orisa-hero-video p.orisa-hero-video__desc,
.orisa-hero-video__desc {
  max-width: 42ch;
  margin-top: clamp(20px, 2.5vw, 32px);
  margin-bottom: 0;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78) !important;
}
.orisa-hero-video__scroll {
  position: absolute;
  right: clamp(20px, 5.5vw, 96px);
  bottom: clamp(32px, 5vw, 64px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.orisa-hero-video__scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}
.orisa-hero-video__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: #ffffff;
  animation: orisa-hero-scroll 2s ease-in-out infinite;
}
.orisa-hero-video__scroll-text {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55) !important;
}
@keyframes orisa-hero-scroll {
  0% { transform: translateY(-100%); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(250%); opacity: 0; }
}
@media (max-width: 767.98px) {
  .orisa-hero-video__scroll {
    position: relative;
    right: auto;
    bottom: auto;
    align-items: flex-start;
    margin-top: 32px;
  }
  .orisa-hero-video__title {
    max-width: none;
  }
}

body:has(.orisa-hero-video) .tp-header-area.header-transparent {
  position: absolute;
  width: 100%;
  z-index: 20;
}
