/*
 * SEE Hero — Epic Elevators style
 * Clean 100vh hero: full-bleed video, dark gradient overlay, text content.
 * No sticky-scroll, no split-screen. Header transitions handled in header.css.
 */

.see-hero {
  --red:      #CC1B1B;
  --red-dim:  rgba(204,27,27,.75);
  --red-bg:   rgba(204,27,27,.10);
  --charcoal: #1C1C1C;
  --ticker-bg:rgba(28,28,28,.92);

  position: relative;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: #0a0a0a;       /* fallback while video loads */
  isolation: isolate;        /* contain stacking context */
}
.see-hero * { box-sizing: border-box; margin: 0; padding: 0; }

.see-hero__inner {
  position: relative;
  width: 100%;
  height: 100%;
}


/* ─── VIDEO LAYER ─────────────────────────────────────────────────────── */
.see-hero__video {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.see-hero__video video,
.see-hero__video-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.see-hero__video-placeholder {
  background: linear-gradient(140deg, #0f0f0f, #1c1c1c, #111);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 500 13px/1 system-ui, sans-serif;
  color: rgba(255,255,255,.2);
  letter-spacing: .08em;
  text-transform: uppercase;
}


/* ─── DARK GRADIENT OVERLAY (Epic Elevators style) ────────────────────── */
.see-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.45) 30%,
    rgba(0,0,0,.45) 60%,
    rgba(0,0,0,.65) 100%
  );
  pointer-events: none;
}


/* ─── TEXT CONTENT ────────────────────────────────────────────────────── */
.see-hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 180px clamp(28px,5vw,72px) 60px;  /* top padding clears fixed headers */
}
.see-hero__text {
  max-width: 720px;
}


/* ─── EYEBROW ─────────────────────────────────────────────────────────── */
.see-hero__ey {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.see-hero__ey-line {
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,.55);
}
.see-hero__ey-text {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.see-hero__ey-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  animation: see-hero-dot 2s infinite;
}
@keyframes see-hero-dot { 0%,100%{opacity:1} 50%{opacity:.3} }


/* ─── HEADLINE ────────────────────────────────────────────────────────── */
.see-hero__h1 {
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
  font-size: clamp(42px, 6.4vw, 78px);
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.see-hero__h1-serif {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.72);
  margin: 6px 0;
  font-size: clamp(26px, 4.2vw, 50px);
}


/* ─── CYCLING WORD ────────────────────────────────────────────────────── */
.see-hero__cycle-wrap {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
  height: 1.05em;
  min-width: 280px;
}
.see-hero__cycle {
  display: inline-block;
  padding: 3px 18px 5px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(204,27,27,.32);
}
.see-hero__cycle--out { opacity: 0; transform: translateY(100%); transition: opacity .35s, transform .35s; }
.see-hero__cycle--in  { opacity: 1; transform: translateY(0);    transition: opacity .35s, transform .35s; }


/* ─── DESCRIPTION ─────────────────────────────────────────────────────── */
.see-hero__desc {
  font-size: clamp(14px, 1.4vw, 17px);
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  max-width: 560px;
  margin: 22px 0 28px;
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
.see-hero__desc strong {
  color: #fff;
  font-weight: 700;
}


/* ─── BUTTONS ─────────────────────────────────────────────────────────── */
.see-hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.see-hero__btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .25s, box-shadow .25s, background .2s, color .2s;
}
.see-hero__btn--primary {
  background: #fff;
  color: #1C1C1C;
}
.see-hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}
.see-hero__btn--cta {
  background: var(--red);
  color: #fff;
}
.see-hero__btn--cta:hover {
  background: #a01515;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(204,27,27,.42);
}


/* ─── STATS ───────────────────────────────────────────────────────────── */
.see-hero__stats { display: flex; gap: 32px; }
.see-hero__stat-num {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
.see-hero__stat-label {
  font-size: 10px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}


/* ─── SCROLL HINT ─────────────────────────────────────────────────────── */
.see-hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}
.see-hero__scroll-hint span {
  font-size: 10px;
  color: rgba(255,255,255,.55);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.see-hero__scroll-bar {
  width: 1px;
  height: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.55), transparent);
  animation: see-hero-pulse 2s ease-in-out infinite;
}
@keyframes see-hero-pulse {
  0%,100% { opacity: .35; transform: scaleY(1); }
  50%     { opacity: .9;  transform: scaleY(1.3); }
}


/* ─── TICKER BAR (sits directly under hero, no gap) ───────────────────── */
.see-hero-ticker {
  position: relative;
  z-index: 5;
  background: var(--ticker-bg, rgba(28,28,28,.92));
  padding: 11px 0;
  overflow: hidden;
}
.see-hero-ticker__inner {
  display: flex;
  white-space: nowrap;
  animation: see-hero-tick 22s linear infinite;
}
@keyframes see-hero-tick { to { transform: translateX(-50%); } }
.see-hero-ticker__group { display: flex; }
.see-hero-ticker__item {
  padding: 0 22px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 16px;
}
.see-hero-ticker__item::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #CC1B1B;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════════════
   MOBILE — video on top, content stacks below naturally
═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .see-hero {
    height: auto;
    min-height: 100vh;
  }
  .see-hero__content {
    padding: 100px clamp(20px,5vw,32px) 60px;
    align-items: flex-end;
  }
  .see-hero__text { max-width: 100%; }
  .see-hero__h1 { font-size: clamp(32px, 8vw, 50px); }
  .see-hero__h1-serif { font-size: clamp(22px, 5vw, 32px); }
  .see-hero__cycle-wrap { min-width: 220px; }
  .see-hero__desc { font-size: 14px; }
  .see-hero__stats { gap: 22px; }
  .see-hero__scroll-hint { display: none; }
  .see-hero-ticker__inner { animation-duration: 16s; }
}

@media (max-width: 480px) {
  .see-hero__h1 { font-size: clamp(28px, 9vw, 40px); }
  .see-hero__btn { padding: 12px 24px; font-size: 12px; }
  .see-hero__stat-num { font-size: 20px; }
}
