/* ─────────────────────────────────────────────────────
   HERO WORLD MAP — continuous horizontal marquee
───────────────────────────────────────────────────── */
.hero-map-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  /* Vignette: wider left fade protects text; gentle top/bottom edges */
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%, black 18%, black 90%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 12%, black 76%, transparent 93%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right,  transparent 0%, black 18%, black 90%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 12%, black 76%, transparent 93%);
  mask-composite: intersect, add;
}

/* ── Primary layer ─────────────────────────────────── */
.hero-map-mover {
  position: absolute;
  top: 0;
  left: 0;
  width: 200vw;
  height: 100svh;
  display: flex;
  will-change: transform;
  animation: mapMarquee 140s linear infinite;
}

@keyframes mapMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100vw); }
}

/* ── Primary SVG ───────────────────────────────────── */
.hero-map-svg {
  display: block;
  flex-shrink: 0;
  width: 100vw;
  height: 100svh;
  object-fit: cover;
  object-position: 52% 28%;
  opacity: 0.19;
  filter: contrast(0.88) sepia(0.14);
}


/* ── Atmospheric red glow at Netherlands position ──── */
#hero::after {
  content: '';
  position: absolute;
  /* Roughly where the NL beacon appears in the viewport */
  top: 8%;
  right: 18%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(217, 4, 41, 0.065) 0%,
    rgba(217, 4, 41, 0.028) 42%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
  animation: glowBreath 9s ease-in-out infinite;
}

@keyframes glowBreath {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.1); }
}

@media (max-width: 768px) {
  .hero-map-mover  { width: 400vw; }
  .hero-map-svg    { width: 200vw; }
  .nl-beacon-wrap  { width: 400vw; }
  @keyframes mapMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-200vw); }
  }
  #hero::after { display: none; }
}

/* ─────────────────────────────────────────────────────
   NETHERLANDS BEACON
───────────────────────────────────────────────────── */
.nl-beacon-wrap {
  position: absolute;
  top: 0; left: 0;
  width: 200vw; height: 100%;
  pointer-events: none;
  z-index: 2;
  animation: mapMarquee 140s linear infinite;
}

.nl-beacon {
  position: absolute;
  width: 0; height: 0;   /* zero-size anchor; children use translate(-50%,-50%) */
}

/* Solid core dot */
.nl-dot {
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #D90429;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 1.5px rgba(217, 4, 41, 0.18),
    0 0 10px 3px rgba(217, 4, 41, 0.35);
}

/* Expanding rings */
.nl-ring {
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  border: 1px solid rgba(217, 4, 41, 0.7);
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  animation: nlPulse 7s ease-out infinite;
}

.nl-ring:nth-child(3) { animation-delay: 2.3s; }
.nl-ring:nth-child(4) { animation-delay: 4.6s; }

@keyframes nlPulse {
  0%   { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(6); opacity: 0; }
}

/* ─────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 0;
  overflow: hidden;
}

.hero-eyebrow,
.hero-headline,
.hero-sub,
.hero-bottom {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 44px;
}

.hero-rule {
  width: 40px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--sans);
  font-size: clamp(2.1rem, 5.7vw, 5.35rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--black);
  max-width: 980px;
  margin-bottom: 40px;
}

.hero-headline em {
  font-style: normal;
  font-weight: 600;
  color: var(--red);
}

.hero-sub {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--gray);
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 80px;
}

/* Bottom status bar */
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 64px;
  border-top: 1px solid var(--rule-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-loc-pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, var(--gray));
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 0.1; }
}

/* ─────────────────────────────────────────────────────
   MARQUEE
───────────────────────────────────────────────────── */
.marquee-band {
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.62);
}

.marquee-band:hover .marquee-track { animation-play-state: paused; }

.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marqueeScroll 34s linear infinite;
}

.marquee-item {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  padding: 0 24px;
}

.marquee-dot {
  color: #A9A9A9;
  font-family: var(--sans);
  font-size: 0.46rem;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
