/* =========================================================
   main.css — Critical above-the-fold styles
   Linked in <head>. Contains: tokens, reset, typography,
   layout, navigation, buttons, page-hero, utilities,
   CTA band, home hero, intro band.
   ========================================================= */
/* Scroll bar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background: var(--navy-500); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--steel-500); }
/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1400ms var(--ease-out), transform 1400ms var(--ease-out);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 120ms; }
.reveal[data-delay="2"] { transition-delay: 240ms; }
.reveal[data-delay="3"] { transition-delay: 360ms; }
.reveal[data-delay="4"] { transition-delay: 480ms; }
/* ===== 1. VARIABLES ===== */
:root {
  /* Navy ramp */
  --navy-1000: #030F07;
  --navy-900:  #061F0F;
  --navy-800:  #0A2F17;   /* primary background */
  --navy-700:  #10391F;
  --navy-600:  #1A472A;
  --navy-500:  #245636;

  /* Steel / neutral ramp */
  --steel-600: #49594F;
  --steel-500: #64766A;
  --steel-400: #8F9F95;
  --steel-300: #BCC9C1;
  --steel-200: #DCE3DF;
  --steel-100: #ECF0ED;

  /* Ivory / white */
  --ivory:     #F4F6F8;
  --paper:     #FAFBFC;
  --white:     #FFFFFF;

  /* Accent */
  --accent:    #86BB63;

  /* Functional */
  --line:      rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(10, 26, 47, 0.10);
  --line-dark-strong: rgba(10, 26, 47, 0.22);

  /* Type */
  --font-sans: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Grid / rhythm */
  --container: 1440px;
  --gutter: 32px;
  --gutter-sm: 20px;
  --header-height: 110px;

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* ── Space scale ─────────────────────────────────────────
     Component-level spacing. Use these for gap / margin /
     internal padding. Section-level padding → use the
     --space-section-* trio below.
  ─────────────────────────────────────────────────────── */
  --space-2xs: 8px;
  --space-xs:  12px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  32px;
  --space-xl:  48px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Section vertical padding scale
     lg  — hero areas, CTA, main content sections
     md  — secondary sections (fleet, seo, advantages)
     sm  — compact / inset-top only sections            */
  --space-section-lg: clamp(80px, 9vw, 140px);
  --space-section-md: clamp(64px, 7vw, 112px);
  --space-section-sm: clamp(48px, 5vw, 80px);

  /* ── Breakpoints (reference only — use in @media rules)
     540   small mobile
     720   large mobile / small tablet
     900   tablet → desktop  (primary layout breakpoint)
     1200  wide desktop (use sparingly)
  ─────────────────────────────────────────────────────── */
}

/* ===== 2. RESET ===== */
* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
html { margin: 0; padding: 0; overflow-x: hidden; }
body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ivory);
  background: var(--navy-800);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  font-size: 15px;
  letter-spacing: -0.005em;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

::selection { background: var(--ivory); color: var(--navy-800); }

/* ===== 3. TYPE SYSTEM ===== */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-400);
}
.eyebrow .num {
  color: var(--steel-300);
  margin-right: 14px;
}

.h-display {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: clamp(48px, 6.5vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.h-display em {
  font-style: italic;
  font-weight: 300;
  color: var(--steel-300);
}
.h-section {
  font-weight: 300;
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.h-section em {
  font-style: italic;
  font-weight: 300;
  color: var(--steel-300);
}
.h-card {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.lede {
  font-weight: 300;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.45;
  color: var(--steel-200);
  letter-spacing: -0.005em;
  max-width: 60ch;
}
.meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-400);
}
.clr-accent { color: var(--accent); }
.nowrap { white-space: nowrap; }

/* ===== 4. LAYOUT PRIMITIVES ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media (max-width: 900px) {
  :root {
    --header-height: 72px;
    --gutter: 15px;
  }
  .nav__logo { width: 32px; height: 32px; }
}

.section {
  padding-block: var(--space-section-lg);
  position: relative;
}
.section--tight { padding-block: var(--space-section-sm); }
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  padding-bottom: var(--space-xl);
}
.section-head > :first-child { padding-top: 6px; }
@media (max-width: 900px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding-bottom: var(--space-lg);
    margin-bottom: 0;
  }
  .section-head > :first-child { padding-top: 0; }
}

/* ===== 5. NAVIGATION ===== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-height);
  padding: 8px 0;
  transition: background 280ms var(--ease-out), border-color 280ms var(--ease-out), backdrop-filter 280ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(6, 15, 31, 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav__brand {
  display: block;
  position: relative;
  flex-shrink: 0;
}
.nav__logo-img {
  width: 140px;
  height: auto;
  flex-shrink: 0;
}
.nav__logo-img:nth-child(2){
  position: absolute;
  left: 0;top: 0;width: 100%;height: 100%;
  opacity: 0;
  transition: opacity 400ms var(--ease-out);
}
.nav--scrolled .nav__logo-img:nth-child(2){
  opacity: 1;
}


.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--steel-200);
  position: relative;
  padding: 4px 0;
  transition: color 200ms var(--ease-out);
}
.nav__link:hover { color: var(--white); }
.nav__link.is-active { color: var(--white); }
.nav__link.is-active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--white);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 400ms var(--ease-out);
}
.nav__cta:hover {
  background: var(--ivory);
  color: var(--navy-800);
  border-color: var(--ivory);
}
.nav__cta .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(134, 187, 99, 0.6);
}


/* Mobile nav toggle */
.nav__burger { display: none; }
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__inner { gap: var(--space-md); }
  .nav__logo-img { width: 90px; }
  .nav__burger {
    display: flex; flex-direction: column; gap: 5px;
    margin-left: auto;
    padding: 10px;
  }
  .nav__burger span {
    width: 22px; height: 1px; background: var(--ivory);
    transition: transform 200ms, opacity 200ms;
  }
  .nav.is-mobile-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav.is-mobile-open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.is-mobile-open .nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav.is-mobile-open {
    background: rgba(6, 15, 31, 0.96);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    border-bottom-color: var(--line);
  }
  .nav.is-mobile-open .nav__links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-900);
    padding: 24px var(--gutter-sm);
    border-bottom: 1px solid var(--line);
  }
  .nav.is-mobile-open .nav__link {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
    width: 100%;
  }
}

/* ===== 6. BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 400ms var(--ease-out);
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
}
.btn--primary:hover {
  background: var(--white);
    color: var(--navy-800);
}
.btn--ghost {
  border-color: var(--line-strong);
  color: var(--ivory);
}
.btn--ghost:hover {
  border-color: var(--ivory);
  background: rgba(255, 255, 255, 0.04);
}
.btn--dark {
  background: var(--navy-800);
  color: var(--ivory);
}
.btn--dark:hover {
  background: var(--navy-700);
}
.btn--accent {
  background: var(--accent);
  color: var(--white);
}
.btn--accent:hover {
  background: var(--navy-700);
}
.btn .arrow {
  width: 18px; height: 1px; background: currentColor;
  position: relative;
  transition: width 400ms var(--ease-out);
}
.btn .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 26px; }
.btn .arrow--down { transform: rotate(90deg); }

/* Shared close button */
.btn-close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(6, 15, 31, 0.5);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 0;
  cursor: pointer;
  transition: all 400ms var(--ease-out);
}
.btn-close:hover {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--navy-800);
}
.btn-close svg { width: 16px; height: 16px; display: block; margin: 0; }

/* Subtle link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color 400ms;
}
.link-arrow:hover { border-color: var(--ivory); }

/* ===== 7. PAGE-HERO BASE (sub-pages) ===== */
.page-hero {
  padding: calc(var(--header-height) + var(--space-lg)) 0 var(--space-section-md);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero--no-border { border-bottom: none; }
.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: end;
}
@media (max-width: 900px) {
  .page-hero__grid { grid-template-columns: 1fr; }
}
.page-hero__crumbs {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--steel-500);
  margin-bottom: 48px;
}
.page-hero__crumbs span { color: var(--steel-600); }
.page-hero__crumbs a { color: var(--steel-400); text-decoration: underline; }
.page-hero__crumbs a:hover { color: var(--white); }
.page-hero__title {
  font-weight: 200;
  font-size: clamp(48px, 6.5vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.page-hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--steel-300);
}
.page-hero__lede {
  font-weight: 300;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--steel-200);
  max-width: 52ch;
}

/* Grid background */
.page-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(135deg,
    transparent 0 18px,
    rgba(255, 255, 255, 0.02) 18px 19px);
  /* mask-image: radial-gradient(ellipse 80% 100% at 100% 50%, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 100% 50%, #000 0%, transparent 70%); */
}

/* Decorative accent rings */
.page-hero__rings {
  position: absolute;
  right: clamp(-220px, -10vw, -80px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(420px, 55vw, 760px);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 0;
}
.page-hero__rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--accent);
}
.page-hero__rings span:nth-child(1) { opacity: 0.18; }
.page-hero__rings span:nth-child(2) { inset: 8%;  opacity: 0.12; }
.page-hero__rings span:nth-child(3) { inset: 18%; opacity: 0.08; }
.page-hero__rings span:nth-child(4) { inset: 30%; opacity: 0.06; }
.page-hero__rings::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 8px; height: 8px;
  margin: -4px 0 0 -4px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 14px 2px rgba(134, 187, 99, 0.6);
}

.page-hero .container { position: relative; z-index: 1; }

/* ===== 8. PAGE-HERO OVERRIDES (subpage variant) ===== */

.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .page-hero__grid { grid-template-columns: 1fr; gap: 40px; } }

.page-hero__title {
  font-weight: 300;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.page-hero__title em { font-style: italic; color: var(--steel-300); font-weight: 300; }

.page-hero__lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--steel-200);
  max-width: 48ch;
  margin-top: var(--space-lg);
}

/* ===== 9. UTILITIES ===== */
.text-steel { color: var(--steel-300); }
.text-mute  { color: var(--steel-400); }
.text-white { color: var(--white); }
.tabular    { font-variant-numeric: tabular-nums; }
.divider    { height: 1px; background: var(--line); width: 100%; }
.no-wrap    { white-space: nowrap; }
/* Section padding */
.section-padding-top    { padding-top:    var(--space-section-md); }
.section-padding-bottom { padding-bottom: var(--space-section-md); }
.section-lg             { padding-block:  var(--space-section-lg); }
/* Background */
.bg-navy     { background: var(--navy-800); }
.bg-navy-900 { background: var(--navy-900); }
.bg-navy-700 { background: var(--navy-700); }
.bg-ivory    { background: var(--ivory); color: var(--navy-800); }

/* Margin-top scale */
.mt-xs  { margin-top: var(--space-xs); }
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.mt-lg  { margin-top: var(--space-lg); }
.mt-xl  { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

/* ===== 10. CTA BAND ===== */
.cta-band {
  background: var(--ivory);
  color: var(--navy-800);
  position: relative;
  overflow: hidden;
}
.cta-band .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .cta-band .container { grid-template-columns: 1fr; gap: 32px; }
}
.cta-band__title {
  font-weight: 200;
  font-size: clamp(40px, 5.5vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.cta-band__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--steel-500);
}
.cta-band__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.cta-band__right p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--steel-600);
  max-width: 36ch;
  font-weight: 300;
}
.cta-band__meta {
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-500);
  width: 100%;
}
.cta-band__meta strong { color: var(--navy-800); font-weight: 500; }

/* ===== 11. FOCUS STYLES ===== */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--ivory);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ===== 13. HOME HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 0 var(--space-2xl);
  background: var(--navy-900);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg-video,
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}
.hero__bg-video {
  object-fit: cover;
  object-position: center 40%;
}
.hero__bg-img picture,
.hero__bg-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.hero__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(6, 15, 31, 0.55) 0%,
      rgba(6, 15, 31, 0.25) 30%,
      rgba(6, 15, 31, 0.45) 65%,
      rgba(6, 15, 31, 0.92) 100%);
  z-index: 2;
}
.hero__media::after { display: none; }

.hero__rec {
  position: absolute;
  top: 110px;
  right: var(--gutter);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--steel-300);
  text-transform: uppercase;
  background: rgba(6, 15, 31, 0.55);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border: 1px solid var(--line);
}
.hero__rec .live {
  width: 8px; height: 8px; border-radius: 50%;
  background: #9AE06C;
  box-shadow: 0 0 12px rgba(154, 224, 108, 0.6);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.4; } }

.hero__content {
  position: relative;
  z-index: 4;
  width: 100%;
}
.hero__meta-top {
  display: flex;
  justify-content: space-between;
  padding-top: 180px;
  padding-bottom: var(--space-section-sm);
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.hero__compass {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--steel-400);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 8px;
  white-space: nowrap;
}
.hero__compass strong { color: var(--white); font-weight: 500; font-size: 11px; }
.hero__compass-grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 4px 18px;
}
.hero__slogan {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 52ch;
}
.hero__title {
  font-weight: 200;
  font-size: clamp(40px, 6vw, 112px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 14ch;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--steel-300);
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line > span {
  display: inline-block;
  animation: rise 1.2s var(--ease-out) both;
}
.hero__title .line:nth-child(2) > span { animation-delay: 0.12s; }
.hero__title .line:nth-child(3) > span { animation-delay: 0.24s; }
@keyframes rise {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.hero__cluster {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: end;
  margin-top: var(--space-xl);
}
.hero__lede {
  font-weight: 300;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.5;
  color: var(--steel-200);
  max-width: 42ch;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .hero__meta-top { padding-top: 110px; padding-bottom: var(--space-xl); }
  .hero__cluster { grid-template-columns: 1fr; gap: var(--space-lg); }
}
@media (max-width: 540px) {
  .hero { padding-bottom: var(--space-xl); }
  .hero__cluster { margin-top: var(--space-lg); }
  .hero__slogan { font-size: 10px; }
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--steel-400);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--steel-500);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
@media (max-width: 720px) {
  .hero__scroll { display: none; }
}


/* ---------- Hero ----------
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 0 var(--space-2xl);
  background: var(--navy-900);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg-video,
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}
.hero__bg-video {
  object-fit: cover;
  object-position: center 40%;
}
.hero__bg-img picture,
.hero__bg-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
/* Strengthen overlay so text stays readable over the warm sky */
.hero__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(6, 15, 31, 0.55) 0%,
      rgba(6, 15, 31, 0.25) 30%,
      rgba(6, 15, 31, 0.45) 65%,
      rgba(6, 15, 31, 0.92) 100%);
  z-index: 2;
}
/* Remove the old animated stripe overlay */
.hero__media::after { display: none; }

.hero__rec {
  position: absolute;
  top: 110px;
  right: var(--gutter);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--steel-300);
  text-transform: uppercase;
  background: rgba(6, 15, 31, 0.55);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border: 1px solid var(--line);
}
.hero__rec .live {
  width: 8px; height: 8px; border-radius: 50%;
  background: #9AE06C;
  box-shadow: 0 0 12px rgba(154, 224, 108, 0.6);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.4; } }

.hero__content {
  position: relative;
  z-index: 4;
  width: 100%;
}
.hero__meta-top {
  display: flex;
  justify-content: space-between;
  padding-top: 180px;
  padding-bottom: var(--space-section-sm);
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.hero__compass {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--steel-400);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 8px;
  white-space: nowrap;
}
.hero__compass strong { color: var(--white); font-weight: 500; font-size: 11px; }
.hero__compass-grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 4px 18px;
}
.hero__slogan {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 52ch;
}
.hero__title {
  font-weight: 200;
  font-size: clamp(40px, 6vw, 112px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 14ch;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--steel-300);
}
.hero__title .line {
  display: block;
  overflow: hidden;
}
.hero__title .line > span {
  display: inline-block;
  animation: rise 1.2s var(--ease-out) both;
}
.hero__title .line:nth-child(2) > span { animation-delay: 0.12s; }
.hero__title .line:nth-child(3) > span { animation-delay: 0.24s; }
@keyframes rise {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.hero__cluster {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: end;
  margin-top: var(--space-xl);
}
.hero__lede {
  font-weight: 300;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.5;
  color: var(--steel-200);
  max-width: 42ch;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .hero__meta-top { padding-top: 110px; padding-bottom: var(--space-xl); }
  .hero__cluster { grid-template-columns: 1fr; gap: var(--space-lg); }
}
@media (max-width: 540px) {
  .hero { padding-bottom: var(--space-xl); }
  .hero__cluster { margin-top: var(--space-lg); }
  .hero__slogan { font-size: 10px; }
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--steel-400);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--steel-500);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
@media (max-width: 720px) {
  .hero__scroll { display: none; }
} 


/* ===== 14. INTRO BAND ===== */
.intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .intro { grid-template-columns: 1fr; gap: 40px; }
}
.intro__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-400);
  display: flex;
  align-items: center;
  gap: 14px;
}
.intro__label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--steel-400);
}
.intro__title {
  font-weight: 200;
  font-size: clamp(36px, 4.4vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-top: 32px;
}
.intro__body {
  font-size: 18px;
  line-height: 1.55;
  color: var(--steel-200);
  font-weight: 300;
}
.intro__body p + p { margin-top: 24px; }
.intro__body .drop {
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: -0.015em;
}
.intro__signature {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.intro__signature .meta { white-space: nowrap; }
.intro__signature .meta strong { color: var(--white); font-weight: 500; }
.modal{display: none;}
