/* Landing page — cinematic hero with video/image background. */

.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  overflow: hidden; background: var(--black);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  /* faded, as requested */
  opacity: .38; filter: grayscale(.25) contrast(1.05);
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 50% 20%, transparent 0%, rgba(10,10,12,.55) 60%, rgba(10,10,12,.95) 100%),
    linear-gradient(180deg, rgba(10,10,12,.55) 0%, rgba(10,10,12,.2) 35%, rgba(10,10,12,.92) 100%);
}
.hero__scanlines {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .35;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,.0) 0 2px, rgba(0,0,0,.25) 2px 3px);
}

.hero__top {
  position: relative; z-index: 5;
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 2rem;
}
.hero__top .logo { width: 46px; height: 46px; }
.hero__top .unit { font-family: var(--display); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.hero__top .login { margin-left: auto; }

.hero__center {
  position: relative; z-index: 5;
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 0 2rem; max-width: 980px;
}
.hero__eyebrow {
  font-family: var(--mono); letter-spacing: .35em; font-size: .8rem;
  color: var(--red-bright); text-transform: uppercase; margin-bottom: 1rem;
  display: flex; align-items: center; gap: .75rem;
}
.hero__eyebrow::before { content: ''; width: 38px; height: 1px; background: var(--red); }
.hero__title {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.8rem, 8vw, 6rem); line-height: .95; letter-spacing: .02em;
  margin: 0;
}
.hero__title .accent { color: var(--red-bright); }
.hero__tagline {
  font-family: var(--body); color: var(--ink-dim); font-size: 1.2rem;
  letter-spacing: .12em; text-transform: uppercase; margin-top: 1.25rem;
  max-width: 640px;
}
.hero__cta { margin-top: 2.25rem; display: flex; gap: .85rem; flex-wrap: wrap; }
.hero__cta .btn { font-size: .9rem; padding: .7rem 1.3rem; }

.hero__foot {
  position: relative; z-index: 5;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 2rem; border-top: 1px solid rgba(255,255,255,.06);
  font-family: var(--mono); font-size: .72rem; color: var(--ink-faint);
  letter-spacing: .1em; flex-wrap: wrap; gap: .5rem;
}
.hero__foot .class { color: var(--red); letter-spacing: .2em; }

/* corner ticks for the "HUD" feel */
.hero__center::before {
  content: ''; position: absolute; left: 2rem; top: 1rem;
  width: 18px; height: 18px;
  border-left: 2px solid var(--red-deep); border-top: 2px solid var(--red-deep);
}

@media (max-width: 640px) {
  .hero__top, .hero__center, .hero__foot { padding-left: 1.25rem; padding-right: 1.25rem; }
}
