/* ─────────────────────────────────────────────────────────
   HERO — video, overlay, headline, chapters, marquee
   ───────────────────────────────────────────────────────── */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: var(--black);
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.70s ease;
  will-change: opacity;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.45) 0%,
      rgba(0,0,0,0.05) 30%,
      rgba(0,0,0,0.05) 55%,
      rgba(0,0,0,0.70) 100%
    );
}

.hero-content {
  position: absolute;
  bottom: 160px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  max-width: 1720px;
  padding: 0 var(--pad);
}

/* VIDEO CHAPTER CONTROLS */
.hero-chapters {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 100%;
  max-width: 1720px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 var(--pad);
  gap: 0;
}

.hero-chapter {
  padding: 14px 24px 14px 0;
  cursor: pointer;
  opacity: 0.42;
  transition: opacity 0.35s ease;
  user-select: none;
}

.hero-chapter:last-child { padding-right: 0; }

.hero-chapter.active,
.hero-chapter:hover { opacity: 1; }

.chapter-track {
  position: relative;
  height: 1.5px;
  background: rgba(255,255,255,0.28);
  margin-bottom: 11px;
  overflow: hidden;
}

.chapter-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: #ffffff;
}

.chapter-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  line-height: 1.5;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

.hero-badge-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}

.hero-badge-logo-top {
  display: flex;
  align-items: center;
  gap: 3px;
}

.hero-badge-logo-in,
.hero-badge-logo-visions {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.hero-badge-logo-bar {
  width: 24px;
  height: 7px;
  background: linear-gradient(to right, rgba(255,255,255,0.3), var(--orange));
}

.hero-headline {
  font-size: clamp(44px, 6.2vw, 96px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.90;
  color: var(--white);
  margin-bottom: 28px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.hero-headline strong {
  display: block;
  font-weight: 500;
  letter-spacing: -0.03em;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.hero-headline .dim {
  display: block;
  font-family: 'freight-display-pro', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 0.8em;
  letter-spacing: -0.02em;
  line-height: 0.94;
  margin-top: 0.05em;
  color: #f0824b;
}

.hero-text-block {
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.hero-text-block.out {
  opacity: 0;
  transform: translateY(10px);
}

.hero-body {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #f0824b;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  margin-bottom: 40px;
  transition: background 0.2s, transform 0.15s;
  width: fit-content;
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(45deg, transparent 25%, rgba(255,255,255,0.65) 50%, transparent 75%, transparent 100%);
  background-size: 250% 250%, 100% 100%;
  background-position: 200% 0, 0 0;
  background-repeat: no-repeat;
  transition: background-position 1s ease;
  pointer-events: none;
}

.hero-cta:hover::before {
  background-position: -100% 0, 0 0;
}

.hero-cta:hover {
  background: #d46e3a;
  transform: translateY(-2px);
}

.hero-stats-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.68);
  border-radius: 10px;
  width: fit-content;
  margin-bottom: 48px;
}

.hero-stats-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(234,101,37,0.7);
}

.hero-bottom-glow { display: none; }

/* MARQUEE */
.marquee-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  z-index: 3;
  background: rgba(255,255,255,0.96);
  border-top: none;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}

.marquee-track span {
  font-size: 11px;
  font-weight: 700;
  color: var(--near-black);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 32px;
  border-right: 1px solid var(--line);
}
