/* ============================================================
   ELBA FZCO — style.css
   Design System: White Premium / Editorial / Trafigura-killer
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

/* --- CSS Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #111;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: normal; line-height: 1.15; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Design Tokens --- */
:root {
  /* Colors */
  --white: #ffffff;
  --off-white: #f8f7f4;
  --black: #111111;
  --red: #E01F28;
  --red-dark: #b8191f;
  --red-light: #fef2f2;
  --gray: #6b6b72;
  --gray-light: #9a9aa0;
  --border: #e2e2e6;
  --charcoal: #1a1a1f;
  --charcoal-light: #2a2a30;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Layout */
  --container: 1280px;
  --container-narrow: 960px;
  --container-wide: 1440px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-base: 300ms;
  --duration-slow: 500ms;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* --- Typography Scale --- */
.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }

.text-hero {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 300;
}
.text-display {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.text-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.text-subheading {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.25;
  font-weight: 500;
}
.text-body-lg {
  font-size: 1.125rem;
  line-height: 1.7;
}
.text-body {
  font-size: 1rem;
  line-height: 1.65;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.6;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* --- Eyebrow Labels --- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-lg);
  display: block;
}
.eyebrow--dark {
  color: var(--gray-light);
}
.eyebrow--white {
  color: rgba(255,255,255,0.6);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.container--narrow {
  max-width: var(--container-narrow);
}
.container--wide {
  max-width: var(--container-wide);
}

/* --- Section Spacing --- */
.section {
  padding: clamp(64px, 10vw, 140px) 0;
}
.section--sm {
  padding: clamp(40px, 6vw, 80px) 0;
}
.section--white { background: var(--white); }
.section--offwhite { background: var(--off-white); }
.section--charcoal { background: var(--charcoal); color: var(--white); }
.section--red { background: var(--red); color: var(--white); }

/* --- Grid System --- */
.grid {
  display: grid;
  gap: var(--space-xl);
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 0;
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  border: 1.5px solid var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--border);
}
.btn--ghost-dark:hover {
  border-color: var(--black);
}
.btn--white {
  background: var(--white);
  color: var(--red);
  border: 1.5px solid var(--white);
}
.btn--white:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}
.btn--white-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.btn--white-ghost:hover {
  background: var(--white);
  color: var(--red);
}
.btn--sm {
  padding: 10px 24px;
  font-size: 0.8125rem;
}
.btn .arrow {
  transition: transform var(--duration-fast) var(--ease-out);
}
.btn:hover .arrow {
  transform: translateX(3px);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: transform var(--duration-base) var(--ease-out),
              background var(--duration-base) var(--ease-out);
}
.header--hidden {
  transform: translateY(-100%);
}
.header--hero {
  background: transparent;
  border-bottom-color: transparent;
}
.header--hero .header__logo svg {
  fill: var(--white);
}
.header--hero .hamburger span {
  background: var(--white);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(20px, 4vw, 48px);
  max-width: 100%;
}
.header__logo {
  display: flex;
  align-items: center;
  z-index: 10;
}
.header__logo svg {
  height: 28px;
  width: auto;
  fill: var(--black);
  transition: fill var(--duration-base) var(--ease-out);
}

/* Hamburger */
.hamburger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 10;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--black);
  transition: all var(--duration-base) var(--ease-out);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5.3px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5.3px);
}

/* --- Fullscreen Nav Overlay --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-base) var(--ease-out),
              visibility var(--duration-base) var(--ease-out);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
  background: #ffffff;
}
.nav-overlay__close {
  position: absolute;
  top: 20px;
  right: clamp(20px, 4vw, 48px);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 110;
}
.nav-overlay__close svg {
  width: 20px;
  height: 20px;
  stroke: var(--black);
  transition: transform var(--duration-base) var(--ease-out);
}
.nav-overlay__close:hover svg {
  transform: rotate(90deg);
}
.nav-overlay__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-3xl);
  flex: 1;
  padding: 100px clamp(20px, 4vw, 48px) 40px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.nav-overlay__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nav-overlay__brand svg {
  height: 36px;
  fill: var(--black);
  margin-bottom: var(--space-lg);
}
.nav-overlay__tagline {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gray);
  font-style: italic;
  line-height: 1.5;
  max-width: 280px;
}
.nav-overlay__contact-bar {
  margin-top: auto;
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.nav-overlay__contact-bar a,
.nav-overlay__contact-bar span {
  font-size: 0.8125rem;
  color: var(--gray);
  transition: color var(--duration-fast) var(--ease-out);
}
.nav-overlay__contact-bar a:hover {
  color: var(--red);
}

/* Nav items */
.nav-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav-item {
  border-bottom: 1px solid var(--border);
}
.nav-item:first-child {
  border-top: 1px solid var(--border);
}
.nav-item__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 18px 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: color var(--duration-fast) var(--ease-out);
}
.nav-item__header:hover {
  color: var(--red);
}
.nav-item__number {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-light);
  min-width: 28px;
  letter-spacing: 0.05em;
}
.nav-item__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  flex: 1;
}
.nav-item__arrow {
  width: 20px;
  height: 20px;
  stroke: var(--gray-light);
  transition: transform var(--duration-base) var(--ease-out),
              stroke var(--duration-fast) var(--ease-out);
}
.nav-item.active .nav-item__arrow {
  transform: rotate(90deg);
  stroke: var(--red);
}
.nav-item__header:hover .nav-item__arrow {
  stroke: var(--red);
}
.nav-item__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}
.nav-item.active .nav-item__sub {
  max-height: 400px;
}
.nav-item__sub-inner {
  padding: 0 0 20px 44px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav-item__sub-link {
  font-size: 1rem;
  color: var(--gray);
  transition: color var(--duration-fast) var(--ease-out);
  display: inline-block;
}
.nav-item__sub-link:hover {
  color: var(--red);
}

@media (max-width: 768px) {
  .nav-overlay__content {
    grid-template-columns: 1fr;
    padding-top: 80px;
    gap: var(--space-xl);
  }
  .nav-overlay__left {
    flex-direction: row;
    align-items: center;
    gap: var(--space-md);
  }
  .nav-overlay__tagline { display: none; }
  .nav-overlay__contact-bar { display: none; }
  .nav-item__title {
    font-size: 1.35rem;
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a1c3b;
  overflow: hidden;
}
/* Video background */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero__video.loaded {
  opacity: 1;
}
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 22, 52, 0.82) 0%,
    rgba(12, 30, 65, 0.72) 50%,
    rgba(15, 35, 70, 0.68) 100%
  );
}

/* Animated blobs — blue/teal tone on top of video */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
  z-index: 1;
  pointer-events: none;
}
.hero-blob--1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(14,52,110,0.55) 0%, rgba(10,28,59,0.3) 50%, transparent 70%);
  top: -15%;
  right: -10%;
  animation: blobMove1 45s ease-in-out infinite alternate;
}
.hero-blob--2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,100,120,0.35) 0%, rgba(0,70,90,0.2) 50%, transparent 70%);
  bottom: -10%;
  left: -5%;
  animation: blobMove2 55s ease-in-out infinite alternate;
}
.hero-blob--3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(224,31,40,0.12) 0%, rgba(150,20,26,0.07) 50%, transparent 70%);
  top: 30%;
  left: 40%;
  animation: blobMove3 50s ease-in-out infinite alternate;
}
/* Hero eyebrow */
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-lg);
  display: block;
  position: relative;
  z-index: 2;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--red);
  vertical-align: middle;
  margin-right: 12px;
  opacity: 0.8;
}

@keyframes blobMove1 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  25% { transform: translate(-80px, 60px) scale(1.1); opacity: 0.9; }
  50% { transform: translate(-40px, 120px) scale(0.95); opacity: 0.8; }
  75% { transform: translate(60px, 40px) scale(1.15); opacity: 0.6; }
  100% { transform: translate(20px, -30px) scale(1.05); opacity: 0.85; }
}
@keyframes blobMove2 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  33% { transform: translate(100px, -50px) scale(1.2); opacity: 0.8; }
  66% { transform: translate(50px, -100px) scale(0.9); opacity: 0.7; }
  100% { transform: translate(-30px, -20px) scale(1.1); opacity: 0.65; }
}
@keyframes blobMove3 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(-100px, 80px) scale(1.3); opacity: 0.7; }
  100% { transform: translate(60px, -40px) scale(0.85); opacity: 0.55; }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(20px, 4vw, 48px);
  max-width: 900px;
  animation: heroFadeUp 1s var(--ease-out) 0.3s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}
.hero__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--red);
  margin-bottom: var(--space-2xl);
  opacity: 0.9;
}
.hero__ctas {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}
/* Hero vision paragraph */
.hero__vision {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  font-style: italic;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* --- Marquee Ticker --- */
.marquee {
  background: var(--red);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
}
.marquee__track {
  display: inline-flex;
  animation: marqueeScroll 40s linear infinite;
}
.marquee__content {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding-right: 0;
}
.marquee__content span {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 24px;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Numbers Section --- */
.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  text-align: center;
}
.number-card__value {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--red);
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.number-card__label {
  font-size: 0.875rem;
  color: var(--gray);
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .numbers { grid-template-columns: repeat(2, 1fr); }
}

/* --- Business Line Cards --- */
.biz-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: clamp(32px, 4vw, 48px);
  transition: border-color var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.biz-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}
.biz-card__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(224,31,40,0.12);
  line-height: 1;
  margin-bottom: var(--space-md);
}
.biz-card__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
  font-weight: 500;
}
.biz-card__desc {
  color: var(--gray);
  font-size: 0.9375rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--space-xl);
}
.biz-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--red);
  transition: gap var(--duration-fast) var(--ease-out);
}
.biz-card__link:hover {
  gap: 12px;
}

/* --- Audience Cards --- */
.audience-card {
  padding: clamp(24px, 3vw, 40px);
  border-left: 2px solid var(--border);
  transition: border-color var(--duration-base) var(--ease-out);
}
.audience-card:hover {
  border-color: var(--red);
}
.audience-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  font-weight: 500;
}
.audience-card__text {
  color: var(--gray);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}
.audience-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--red);
  letter-spacing: 0.03em;
  transition: gap var(--duration-fast) var(--ease-out);
}
.audience-card__link:hover {
  gap: 10px;
}

/* --- Section header subtitle --- */
.section-header__sub {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  margin-top: var(--space-md);
  text-align: center;
}

/* ============================================================
   INTERACTIVE HUB MAP
   ============================================================ */
.hub-map--interactive {
  position: relative;
  cursor: default;
}
/* Landmasses */
.map-land {
  fill: #dddcd8;
  stroke: #c8c7c3;
  stroke-width: 0.5;
  transition: fill 200ms ease;
}
/* Hub markers */
.hub-marker {
  cursor: pointer;
}
.hub-marker circle {
  transition: r 200ms ease, opacity 200ms ease;
}
.hub-marker:hover > circle:last-of-type {
  filter: url(#glow);
}
/* Pulsing rings */
@keyframes hubPulse {
  0%   { r: 18; opacity: 0.3; }
  50%  { r: 26; opacity: 0.08; }
  100% { r: 18; opacity: 0.3; }
}
@keyframes hubPulse2 {
  0%   { r: 12; opacity: 0.25; }
  50%  { r: 18; opacity: 0.08; }
  100% { r: 12; opacity: 0.25; }
}
@keyframes hubPulse3 {
  0%   { r: 14; opacity: 0.2; }
  50%  { r: 20; opacity: 0.06; }
  100% { r: 14; opacity: 0.2; }
}
@keyframes hubPulse4 {
  0%   { r: 14; opacity: 0.15; }
  50%  { r: 19; opacity: 0.05; }
  100% { r: 14; opacity: 0.15; }
}
.hub-pulse     { animation: hubPulse  2.8s ease-in-out infinite; }
.hub-pulse--2  { animation: hubPulse2 2.8s ease-in-out 0.4s infinite; }
.hub-pulse--3  { animation: hubPulse3 3.2s ease-in-out 0.8s infinite; }
.hub-pulse--4  { animation: hubPulse4 3.5s ease-in-out 1.2s infinite; }
/* Connection lines */
.hub-line {
  stroke: #E01F28;
  stroke-width: 0.75;
  stroke-dasharray: 4 4;
  opacity: 0.35;
  animation: dashMove 8s linear infinite;
}
@keyframes dashMove {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -40; }
}
/* Hub tooltip */
.hub-tooltip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 14px 18px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms ease;
  min-width: 200px;
  max-width: 260px;
  z-index: 10;
}
.hub-tooltip.visible {
  opacity: 1;
  visibility: visible;
}
.hub-tooltip__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.hub-tooltip__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
}
.hub-tooltip__desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.55;
}
/* Hub list hover highlight */
.hub-item {
  padding: 16px 0 16px 16px;
  border-left: 2px solid transparent;
  transition: border-color 200ms ease;
  cursor: default;
}
.hub-item.active,
.hub-item:hover {
  border-color: var(--red);
}

/* ============================================================
   MARKETS MAP
   ============================================================ */
.markets-map-wrap {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-xl);
  background: #f8f7f4;
}
/* Map landmasses */
.mmap-land {
  fill: #d8d7d3;
  stroke: #c5c4c0;
  stroke-width: 0.5;
  transition: fill 200ms ease;
}
/* Market dot groups */
.mkt-dot {
  cursor: pointer;
  transition: transform 200ms ease;
}
.mkt-dot:hover {
  transform-origin: center;
}
.mkt-dot circle {
  transition: r 200ms ease;
}
.mkt-dot:hover circle:last-of-type {
  filter: url(#dotGlow);
}
/* HQ pulsing */
@keyframes mktPulse {
  0%   { r: 18; opacity: 0.18; }
  50%  { r: 26; opacity: 0.05; }
  100% { r: 18; opacity: 0.18; }
}
@keyframes mktPulse2 {
  0%   { r: 10; opacity: 0.28; }
  50%  { r: 15; opacity: 0.10; }
  100% { r: 10; opacity: 0.28; }
}
.mkt-pulse     { animation: mktPulse  2.5s ease-in-out infinite; }
.mkt-pulse--2  { animation: mktPulse2 2.5s ease-in-out 0.5s infinite; }

/* Market tooltip */
.market-tooltip {
  position: absolute;
  background: rgba(10, 28, 59, 0.95);
  color: #fff;
  padding: 10px 14px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
  white-space: nowrap;
  z-index: 10;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.market-tooltip::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: rgba(10, 28, 59, 0.95);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.market-tooltip.visible {
  opacity: 1;
  visibility: visible;
}
.market-tooltip__name {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: #fff;
}
.market-tooltip__detail {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
}
/* Market tags */
.markets-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.market-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 5px 14px;
  letter-spacing: 0.03em;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  cursor: default;
}
.market-tag:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* --- Map / Hubs Section --- */
.hubs-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}
.hub-map {
  aspect-ratio: 16/10;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
.hub-map svg {
  width: 100%;
  height: 100%;
}
.hubs-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.hub-item__region {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-sm);
}
.hub-item__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: var(--space-xs);
  font-weight: 500;
}
.hub-item__desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hubs-grid { grid-template-columns: 1fr; }
}

/* --- Vision Quote --- */
.vision-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.35;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: var(--black);
  font-weight: 300;
}
.vision-hashtag {
  display: block;
  margin-top: var(--space-xl);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  color: var(--red);
  letter-spacing: 0.05em;
}

/* --- Leadership Cards --- */
.leader-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.leader-card__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, #c41920 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.leader-card__avatar span {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  font-weight: 300;
}
.leader-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2px;
}
.leader-card__role {
  font-size: 0.8125rem;
  color: var(--red);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-md);
}
.leader-card__bio {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.7;
}
@media (max-width: 640px) {
  .leader-card { grid-template-columns: 1fr; text-align: center; }
  .leader-card__avatar { margin: 0 auto var(--space-md); }
}

/* --- Values Grid --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.value-card {
  padding: var(--space-xl);
  border: 1px solid var(--border);
  transition: border-color var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
}
.value-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}
.value-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}
.value-card__desc {
  font-size: 0.8125rem;
  color: var(--gray);
  line-height: 1.6;
}
@media (max-width: 1024px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; } }

/* --- Community Section (Dark) --- */
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}
.community-item__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
  font-weight: 400;
}
.community-item__text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.community-item__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--red);
  transition: gap var(--duration-fast) var(--ease-out);
}
.community-item__link:hover { gap: 10px; }
@media (max-width: 640px) {
  .community-grid { grid-template-columns: 1fr; }
}

/* --- CTA Banner --- */
.cta-banner {
  text-align: center;
  padding: clamp(48px, 8vw, 100px) 0;
}
.cta-banner__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  margin-bottom: var(--space-md);
  line-height: 1.15;
}
.cta-banner__sub {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: var(--space-xl);
}
.cta-banner__buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: clamp(48px, 6vw, 80px) 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}
.footer__brand svg {
  height: 24px;
  fill: var(--black);
  margin-bottom: var(--space-md);
}
.footer__brand-text {
  font-size: 0.8125rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 280px;
}
.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: var(--space-md);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.8125rem;
  color: var(--gray);
  transition: color var(--duration-fast) var(--ease-out);
}
.footer__links a:hover { color: var(--red); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer__bottom-text {
  font-size: 0.75rem;
  color: var(--gray-light);
}
.footer__bottom-text a {
  color: var(--gray);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__bottom-text a:hover { color: var(--red); }
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* --- Page Heroes (inner pages) --- */
.page-hero {
  padding: clamp(140px, 15vw, 200px) 0 clamp(60px, 8vw, 100px);
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.page-hero__eyebrow {
  margin-bottom: var(--space-lg);
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 800px;
}
.page-hero__desc {
  font-size: 1.0625rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 600px;
  margin-top: var(--space-lg);
}

/* --- Accordion --- */
.accordion-item {
  border-bottom: 1px solid var(--border);
}
.accordion-item:first-child {
  border-top: 1px solid var(--border);
}
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
  gap: var(--space-md);
}
.accordion-header__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  flex: 1;
}
.accordion-header__icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
}
.accordion-item.active .accordion-header__icon {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(45deg);
}
.accordion-header__icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--black);
  transition: stroke var(--duration-base) var(--ease-out);
}
.accordion-item.active .accordion-header__icon svg {
  stroke: var(--white);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}
.accordion-item.active .accordion-body {
  max-height: 1000px;
}
.accordion-body__inner {
  padding: 0 0 24px 0;
}
.accordion-body__inner ul {
  columns: 2;
  column-gap: var(--space-xl);
}
.accordion-body__inner li {
  font-size: 0.9375rem;
  color: var(--gray);
  padding: 4px 0;
  break-inside: avoid;
  position: relative;
  padding-left: 16px;
}
.accordion-body__inner li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
}
@media (max-width: 640px) {
  .accordion-body__inner ul { columns: 1; }
}

/* --- Product Cards (sol.html) --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.product-card {
  border: 1px solid var(--border);
  padding: var(--space-xl);
  transition: border-color var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}
.product-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.product-card__type {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: var(--space-md);
}
.product-card__type--linear {
  background: var(--red);
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}
.product-card__specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--space-xl);
}
.product-card__spec {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.product-card__spec-label {
  color: var(--gray);
}
.product-card__spec-value {
  font-weight: 500;
}
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* --- Comparison Table --- */
.comparison-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
}
.comparison-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  font-size: 0.8125rem;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.comparison-table thead th {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  background: var(--off-white);
  position: sticky;
  top: 0;
}
.comparison-table tbody tr:hover {
  background: rgba(224,31,40,0.03);
}
.comparison-table td:first-child {
  font-weight: 500;
  color: var(--gray);
}

/* --- Industries Grid --- */
.industry-card {
  padding: var(--space-xl);
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color var(--duration-base) var(--ease-out);
}
.industry-card:hover {
  border-color: var(--red);
}
.industry-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}
.industry-card__products {
  font-size: 0.8125rem;
  color: var(--gray);
  line-height: 1.6;
}

/* --- Contact Form --- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group--full {
  grid-column: 1 / -1;
}
.form-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--black);
}
.form-input,
.form-textarea,
.form-select {
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--black);
  font-size: 0.9375rem;
  transition: border-color var(--duration-fast) var(--ease-out);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--red);
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
}
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%236b6b72' stroke-width='1.5'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
}
.form-success.active {
  display: block;
}
.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}
.form-success__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
}
.form-success__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}
.form-success__text {
  color: var(--gray);
  font-size: 0.9375rem;
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: 1; }
}

/* --- Contact Page Layout --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-3xl);
}
.contact-info__item {
  margin-bottom: var(--space-xl);
}
.contact-info__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-sm);
}
.contact-info__text {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.7;
}
.contact-info__text a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border);
  transition: text-decoration-color var(--duration-fast) var(--ease-out);
}
.contact-info__text a:hover {
  text-decoration-color: var(--red);
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* --- Two-col layout util --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
}

/* --- Text utilities --- */
.text-red { color: var(--red); }
.text-gray { color: var(--gray); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-italic { font-style: italic; }
.max-w-prose { max-width: 65ch; }
.max-w-narrow { max-width: 540px; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }
.mb-4xl { margin-bottom: var(--space-4xl); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Misc --- */
.separator {
  width: 48px;
  height: 2px;
  background: var(--red);
  margin-bottom: var(--space-xl);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gray);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
}
.badge svg {
  width: 14px;
  height: 14px;
}

/* Great Place to Work badge */
.gptw-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--black);
}
.gptw-badge__icon {
  width: 28px;
  height: 28px;
  background: var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gptw-badge__icon svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

/* --- Application cards --- */
.app-card {
  padding: var(--space-xl);
  background: var(--off-white);
  border: 1px solid var(--border);
}
.app-card__icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}
.app-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
}
.app-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}
.app-card__text {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
}

/* --- Feature list --- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.feature-list__item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}
.feature-list__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(224,31,40,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-list__icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--red);
  fill: none;
}
.feature-list__text {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.65;
}

/* --- Highlight box --- */
.highlight-box {
  padding: clamp(32px, 4vw, 48px);
  background: var(--off-white);
  border-left: 3px solid var(--red);
}
.highlight-box__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
}
.highlight-box__text {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.7;
}

/* --- Stat inline --- */
.stat-inline {
  display: flex;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}
.stat-inline__item {
  text-align: center;
}
.stat-inline__value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--red);
  line-height: 1;
}
.stat-inline__label {
  font-size: 0.8125rem;
  color: var(--gray);
  margin-top: 4px;
}

/* --- Section heading group --- */
.section-header {
  max-width: 640px;
  margin-bottom: var(--space-3xl);
}
.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.015em;
}
.section-header__desc {
  margin-top: var(--space-md);
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
}

/* --- Newsletter callout row --- */
.newsletter-row {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border);
  margin-top: var(--space-xl);
}
.newsletter-row__icon {
  width: 48px;
  height: 48px;
  background: rgba(224,31,40,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.newsletter-row__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  fill: none;
}
.newsletter-row__text {
  font-size: 0.9375rem;
  color: var(--gray);
}
.newsletter-row__text strong {
  color: var(--black);
  font-weight: 500;
}

/* --- Body lock for overlay --- */
body.nav-open {
  overflow: hidden;
}

/* ============================================================
   CAREERS STRIP
   ============================================================ */
.careers-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  padding: clamp(32px, 5vw, 64px);
  background: var(--off-white);
  border: 1px solid var(--border);
}
.careers-strip__heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}
.careers-strip__sub {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.65;
  max-width: 540px;
}
.careers-strip__action {
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .careers-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   AFFILIATIONS
   ============================================================ */
.affiliations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
.affiliation-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  padding: var(--space-xl) var(--space-md);
  border: 1px solid var(--border);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.affiliation-item:hover {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(224,31,40,0.06);
}
.affiliation-item__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.affiliation-item__icon svg {
  width: 48px;
  height: 48px;
}
.affiliation-item__name {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.01em;
}
.affiliation-item__desc {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ============================================================
   AFFILIATIONS v2 — Real logos
   ============================================================ */
.affiliation-item__logo {
  width: 140px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.affiliation-item__logo img {
  max-width: 130px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  transition: opacity 200ms ease;
}
.affiliation-item:hover .affiliation-item__logo img {
  opacity: 0.85;
}
/* GPCA on dark background card */
.affiliation-item--dark {
  background: #0a1c3b;
  border-color: #0a1c3b;
}
.affiliation-item--dark .affiliation-item__name {
  color: #fff;
}
.affiliation-item--dark .affiliation-item__desc {
  color: rgba(255,255,255,0.55);
}
.affiliation-item--dark:hover {
  border-color: #0a1c3b;
  box-shadow: 0 4px 24px rgba(10,28,59,0.18);
}
/* Great Place to Work badge */
.affiliation-item--gptw .affiliation-item__logo--text {
  width: 140px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gptw-badge {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  color: #00a650;
  letter-spacing: -0.02em;
}
.gptw-badge sup {
  font-size: 0.65rem;
}

/* ============================================================
   HERO PARTICLE CANVAS
   ============================================================ */
.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
}

/* ============================================================
   HERO VISION — larger, more prominent
   ============================================================ */
.hero__vision {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem) !important;
  font-style: italic;
  color: rgba(255,255,255,0.72) !important;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
  line-height: 1.65;
  position: relative;
  z-index: 2;
  letter-spacing: 0.01em;
}

/* ============================================================
   NAVY BLUE ACCENT — applied across sections
   ============================================================ */
:root {
  --navy: #0a1c3b;
  --navy-mid: #0f2d5a;
  --navy-light: rgba(10,28,59,0.06);
}

/* Navy tint on stats / metric blocks */
.stat-block {
  border-top: 3px solid var(--navy);
}

/* Audience cards get a subtle navy left-border on hover */
.audience-card {
  border-left: 3px solid transparent;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.audience-card:hover {
  border-left-color: var(--navy);
}

/* Hub items — navy active state (complements existing red active) */
.hub-item {
  border-left: 3px solid transparent;
  transition: border-left-color 200ms ease, background 200ms ease;
}
.hub-item.active,
.hub-item:hover {
  border-left-color: var(--navy);
  background: rgba(10,28,59,0.04);
}

/* Section with navy background for variety */
.section--navy {
  background: var(--navy);
  color: #fff;
}
.section--navy .eyebrow {
  color: rgba(255,255,255,0.5);
}
.section--navy .section-header__title {
  color: #fff;
}

/* Navy eyebrow variant */
.eyebrow--navy {
  color: var(--navy);
  border-color: var(--navy);
}

/* Feature list icon — navy fill */
.feature-list__icon {
  background: var(--navy-light);
  border: 1.5px solid rgba(10,28,59,0.15);
}
.feature-list__icon svg {
  stroke: var(--navy);
}

/* Hub marker label text — navy */
.hub-item__region {
  color: var(--navy);
}

/* Highlight boxes — navy accent */
.highlight-box {
  border-left: 3px solid var(--navy);
}
.highlight-box__title {
  color: var(--navy);
}

/* ============================================================
   SCROLL REVEAL — staggered delays
   ============================================================ */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }

/* ============================================================
   SECTION DIVIDERS — subtle navy line
   ============================================================ */
.section--divider-top {
  border-top: 2px solid rgba(10,28,59,0.08);
}

/* ============================================================
   INDUSTRY CARDS — navy hover
   ============================================================ */
.industry-card {
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.industry-card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(10,28,59,0.10);
}

/* ============================================================
   GLOBAL REACH — differentiate from Presence section
   ============================================================ */
.markets-section {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.markets-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(224,31,40,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.markets-section .eyebrow {
  color: rgba(255,255,255,0.45);
}
.markets-section .section-header__title {
  color: #fff;
}
.markets-section .market-dot circle {
  fill: rgba(255,255,255,0.12);
}
.markets-section .market-dot circle:last-of-type {
  fill: var(--red);
}

/* ============================================================
   ANIMATED COUNTER — for stats
   ============================================================ */
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.stat-val.animating {
  animation: countUp 0.6s var(--ease-out) both;
}


/* ============================================================
   MARKETS SECTION (navy dark) — map and tags on dark bg
   ============================================================ */
.markets-section .markets-map-wrap {
  background: transparent !important;
  border-color: rgba(255,255,255,0.12);
}
.markets-section .mmap-land {
  fill: rgba(255,255,255,0.12);
  stroke: rgba(255,255,255,0.07);
}
.markets-section .market-tag {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.markets-section .market-tag:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.markets-section .market-tooltip {
  background: rgba(255,255,255,0.96);
  color: var(--navy);
}

/* ============================================================
   ANIMATION — section entrance with slide-up + fade
   ============================================================ */
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

