/* ===== Minimal homepage-only styles. ===== */
.home #bg-video{
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}
.home::before{
  content:"";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.25);
  z-index: 0;
  pointer-events: none;
}
.home #landing.hero{
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
  color: #fff;
  text-align: center;
  pointer-events: none;
}
.home #landing.hero .wordmark{
  font-size: clamp(26px, 4vw, 64px);
  letter-spacing: .15em;
  text-transform: uppercase;
  line-height: 1.05;
}
.home #landing.hero .sub{
  margin-top: 1rem;
  font-size: clamp(14px, 2vw, 20px);
  opacity: .9;
}
.home #landing.hero a,
.home #landing.hero button{
  pointer-events: auto;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.6);
}
.home #landing.hero a:hover{ border-bottom-color: #fff; }
#home-hint{
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.85);
  z-index: 2;
  pointer-events: none;
}
html, body{
  touch-action: pan-x pan-y;
  overscroll-behavior: none;
}
