:root {
  --brand-navy: #001939;
  --brand-ivory: #ffffff;
  --brand-accent: #c7a35a;
}

/* Scroll animations */
.scroll-fade {
  opacity: 1;
  transform: none;
  transition: none;
}
.js .scroll-fade {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.js .scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-slide-up {
  opacity: 1;
  transform: none;
  transition: none;
}
.js .scroll-slide-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.js .scroll-slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-delay-1 {
  transition-delay: 0.1s;
}
.scroll-delay-2 {
  transition-delay: 0.2s;
}
.scroll-delay-3 {
  transition-delay: 0.3s;
}

/* Logo overlap */
.logo-overlap {
  position: relative;
  z-index: 60;
  margin-top: 0;
}

/* Hide scrollbar for sectors track */
#sectorsTrack::-webkit-scrollbar {
  display: none;
}

/* News article typography (force bold questions / headings) */
.news-article {
  color: rgba(15, 23, 42, 0.9);
  font-size: 15px;
  line-height: 1.8;
}
.news-article h2,
.news-article h3 {
  font-weight: 800 !important;
  color: var(--brand-navy);
  letter-spacing: -0.01em;
}
.news-article h2 {
  font-size: 26px;
  line-height: 1.15;
  margin: 0 0 14px 0;
}
.news-article h3 {
  font-size: 18px;
  line-height: 1.25;
  margin: 22px 0 10px 0;
}
.news-article p {
  margin: 0 0 14px 0;
  color: rgba(15, 23, 42, 0.75);
}
