.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  background: var(--black);
}

@media (max-width: 768px) {
  .video-hero {
    height: calc(var(--vh, 1vh) * 100 - var(--nav-h));
    margin-top: var(--nav-h);
  }
}

.video-hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.15) 0%, rgba(5,5,5,0.55) 55%, rgba(5,5,5,0.92) 100%),
    linear-gradient(90deg, rgba(5,5,5,0.7) 0%, transparent 50%);
  z-index: 2;
}

.video-hero__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 120px;
  max-width: 900px;
}

.video-hero__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.video-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.video-hero__title span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.85);
}

.video-hero__desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
}

.video-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.video-hero__scroll {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-dim);
}
.video-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--red), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Ticker strip at bottom of video */
.parts-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: rgba(5, 5, 5, 0.88);
  border-top: 1px solid var(--line);
  z-index: 5;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.parts-ticker__track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  will-change: transform;
}
.parts-ticker__item {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-dim);
  flex-shrink: 0;
}
.parts-ticker__item::after {
  content: '◆';
  margin-left: 64px;
  color: var(--red);
  font-size: 8px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .video-hero__content { padding: 0 24px 100px; }
  .video-hero__scroll { display: none; }
}
