/* ===================================================================
   HERO — premium cinematic dark-navy
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
  /* padding-top clears the bigger brand-mark (logo 72px + plate padding) */
  padding: 150px 0 90px;
  color: var(--text);
  isolation: isolate;
}

/* --- Background image layer --- */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .9;
  filter: saturate(.95) contrast(1.05);
}

/* Dark navy cinematic overlay — softened so the photo stays visible,
   with a stronger left-side wash so the headline + lead stay legible */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,15,35,.30) 0%, rgba(8,15,35,.55) 100%),
    linear-gradient(90deg, rgba(8,15,35,.78) 0%, rgba(8,15,35,.45) 38%, transparent 70%, rgba(11,31,77,.15) 100%);
}

/* Blueprint grid overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse at 30% 50%, #000 0%, transparent 75%);
  pointer-events: none;
}

/* Soft colour orbs for atmospheric depth */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  -webkit-filter: blur(80px);
  pointer-events: none;
  opacity: .85;
}
.hero__orb--a {
  width: 540px; height: 540px;
  right: -120px; top: -100px;
  background: radial-gradient(circle, rgba(255,107,0,.4), rgba(255,107,0,0) 70%);
}
.hero__orb--b {
  width: 440px; height: 440px;
  left: -140px; bottom: -120px;
  background: radial-gradient(circle, rgba(29,63,175,.5), rgba(29,63,175,0) 70%);
}

/* --- Content layer --- */
.hero__body {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  width: 100%;
  /* Fills the viewport vertically so the highlights below it sit off-screen */
  min-height: calc(100vh - 150px - 90px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

/* Highlights — inside hero, but sit BELOW the initial 100vh viewport */
.hero__highlights {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  width: 100%;
  margin: 100px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.hero__top { flex: 0 0 auto; }
.hero__middle {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__bottom {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.hero__title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -.018em;
  color: var(--text);
  margin-bottom: 22px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0,0,0,.45), 0 6px 32px rgba(8,15,35,.6);
}
.hero__title em {
  font-style: normal;
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 3px;
  background: var(--orange);
  box-shadow: 0 0 16px rgba(255,107,0,.7);
  transform: scaleX(0);
  transform-origin: left;
  animation: hero-em 1.4s .8s ease forwards;
}
@keyframes hero-em { to { transform: scaleX(1); } }

.hero__tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: .96rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--orange-2);
  margin-bottom: 26px;
  text-shadow: 0 2px 6px rgba(0,0,0,.5);
}

.hero__lead {
  max-width: 680px;
  font-size: 1.04rem;
  line-height: 1.7;
  color: #E8EEF7;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,.55);
}

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

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.glass-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--glass-line);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: .76rem;
  letter-spacing: .04em;
  color: var(--text);
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.glass-pill:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,107,0,.4);
  transform: translateY(-1px);
}
.glass-pill i { color: var(--orange); font-size: .8rem; }

/* --- Scroll cue --- */
.hero__scroll {
  position: absolute;
  right: 30px;
  bottom: 38px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: .66rem;
  letter-spacing: .35em;
  color: var(--text-mute);
}
.hero__scroll span { writing-mode: vertical-rl; }
.hero__scroll i {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--orange));
  animation: hero-scroll-line 1.6s ease-in-out infinite;
}
@keyframes hero-scroll-line {
  0%   { transform: scaleY(.3); transform-origin: top; opacity: .4; }
  50%  { transform: scaleY(1);  transform-origin: top; opacity: 1; }
  100% { transform: scaleY(.3); transform-origin: bottom; opacity: .4; }
}

/* --- Responsive --- */
@media (max-width: 980px) {
  .hero__scroll { display: none; }
  .hero { min-height: 92vh; padding-top: calc(var(--nav-h) + 40px); padding-bottom: 60px; }
}
@media (max-width: 600px) {
  .hero__orb--a, .hero__orb--b { width: 320px; height: 320px; filter: blur(60px); }
  .hero__media img { opacity: .42; }
}
