/* ============================================================
   hero.css
   Styles the full-screen hero section on the Home page,
   including the background video, overlay, and hero content.
   ============================================================ */

/* --- Hero wrapper --- */
.hero {
  position: relative;
  padding: 120px 32px 100px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

/* --- Background video --- */
.hero-background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* --- Dark gradient overlay --- */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10,22,40,0.92) 0%,
    rgba(10,22,40,0.82) 35%,
    rgba(10,22,40,0.45) 70%,
    rgba(10,22,40,0.2) 100%
  );
  z-index: 1;
}

/* --- Inner centring wrapper --- */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

/* --- Content column --- */
.hero-content {
  max-width: 560px;
}

/* --- Eyebrow label --- */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}
.hero-eyebrow span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* --- Headline --- */
.hero h1 {
  color: var(--od);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1.3px;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.hero h1 strong { color: var(--blue); }

/* --- Subtitle paragraph --- */
.hero-subtitle {
  color: var(--od-m);
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-subtitle a {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,174,255,0.3);
  transition: border-color 0.15s;
}
.hero-subtitle a:hover { border-color: var(--blue); }

/* --- CTA button row --- */
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
