/* ─── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #111111;
  --dark:    #1a1a1a;
  --grey:    #f4f4f1;
  --white:   #ffffff;
  --muted:   #737373;
  --accent:  #2563eb;
  --accent-gold: rgb(220, 150, 0);
  --pad:     clamp(72px, 10vw, 128px);
  --wrap:    1160px;
  --radius:  2px;
  --font:    'system-ui', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Typography ───────────────────────────────────────────────── */
h2 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}
p { font-size: 0.95rem; line-height: 1.65; color: var(--muted); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}
.eyebrow--on-dark { color: var(--accent-gold); }


/* ─── Section CTA link ─────────────────────────────────────────── */
.section-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid rgba(0,0,0,0.25);
  padding-bottom: 3px;
  transition: gap 0.25s, border-color 0.25s;
}
.section-cta:hover { gap: 16px; border-color: var(--black); }
.section-cta--white {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.3);
}
.section-cta--white:hover { border-bottom-color: var(--white); }

/* ─── Section Lead ─────────────────────────────────────────────── */
.section-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 600px;
  margin-top: 0.25rem;
  margin-bottom: 0;
}
.section-lead--dark { color: rgba(255,255,255,0.58); }

/* ─── Container ────────────────────────────────────────────────── */
.container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── Section ──────────────────────────────────────────────────── */
.section {
  padding: var(--pad) 0;
  position: relative;
}
.section--white { background: var(--white); }
.section--grey  { background: var(--grey); }
.section--dark  { background: var(--black); color: var(--white); }
.section--dark h2 { color: var(--white); }
.section--dark h3 { color: var(--white); }
.section--dark p  { color: rgba(255,255,255,0.55); }


.section-head {
  margin-bottom: 4rem;
}
.section-head h2 {
  font-size: clamp(2.75rem, 5.5vw, 5rem);
}
.section-head .section-lead {
  margin-top: 1rem;
}

/* ─── Split Layout ─────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--flip > *:first-child { order: 2; }
.split--flip > *:last-child  { order: 1; }

.img-wrap {
  overflow: hidden;
  border-radius: var(--radius);
}
.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Fix white-background images on tinted sections */
.img-wrap--blend img {
  mix-blend-mode: multiply;
}

/* Integration section — fully blended robot diagram */
.integration-img-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.integration-img {
  width: 100%;
  max-width: 600px;
  mix-blend-mode: multiply;
  display: block;
  box-shadow: none;
  border: none;
  background: transparent;
}

/* ─── Row list ─────────────────────────────────────────────────── */
.row-list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.row-list li {
  font-size: 0.875rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}
.row-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.45rem;
  color: var(--accent-gold);
  line-height: 1;
}

/* ─── Module list ──────────────────────────────────────────────── */
.module-list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.module-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 0.875rem;
}
.module-list li:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.module-name { font-weight: 500; }
.module-tag  { color: var(--muted); font-size: 0.75rem; letter-spacing: 0.03em; }

.module-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ─── Actuator ref badge ───────────────────────────────────────── */
.module-ref {
  position: relative;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  cursor: default;
  white-space: nowrap;
  border-radius: 2px;
  transition: transform 0.15s ease;
}
.module-ref:hover { transform: translateY(-1px); }
.module-ref--rs60  { background: rgba(46,155,94,0.12);  color: #2e9b5e; border: 1px solid rgba(46,155,94,0.3); }
.module-ref--rs90  { background: rgba(224,123,42,0.12); color: #e07b2a; border: 1px solid rgba(224,123,42,0.3); }
.module-ref--rs120 { background: rgba(192,57,43,0.12);  color: #c0392b; border: 1px solid rgba(192,57,43,0.3); }

/* ─── Module popup ─────────────────────────────────────────────── */
.module-popup {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  width: 240px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 50;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.module-ref:hover .module-popup {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.popup-ref {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.popup-ref--rs60  { color: #2e9b5e; }
.popup-ref--rs90  { color: #e07b2a; }
.popup-ref--rs120 { color: #c0392b; }
.popup-desc {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 8px;
}
.popup-stats {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.popup-stats div {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
}
.popup-stats div span:first-child { color: rgba(255,255,255,0.35); }
.popup-stats div span:last-child  { color: #fff; font-weight: 600; font-variant-numeric: tabular-nums; }
.popup-status {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 100px;
  margin-bottom: 2px;
}
.popup-status--available {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.popup-no-data {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
  font-style: italic;
  letter-spacing: 0.03em;
  margin-top: 4px;
}

/* ─── NAV ──────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 52px;
  opacity: 0;
  transition: opacity 0.8s ease,
              background 0.4s ease,
              border-color 0.4s ease,
              backdrop-filter 0.4s ease,
              padding 0.4s ease;
  border-bottom: 1px solid transparent;
}
.logo {
  max-height: 48px;
  width: auto;
  transition: filter 0.4s ease, max-height 0.4s ease, opacity 0.4s ease;
}
.logo:hover { opacity: 0.75; }
/* On dark hero nav: invert black logo to white */
.nav .logo { filter: brightness(0) invert(1); }

/* Nav logo hidden state (before scroll) */
.nav-logo--hidden {
  opacity: 0 !important;
  pointer-events: none;
}

/* ─── Wordmark logo ────────────────────────────────────────────── */
.logo-wordmark {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  white-space: nowrap;
  transition: opacity 0.2s;
  line-height: 1;
}
.logo-wordmark:hover { opacity: 0.75; }
.logo-wordmark--dark { color: var(--black); }
.nav.scrolled .logo-wordmark { color: var(--white); }
.footer-wordmark {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(0,0,0,0.45);
  margin-bottom: 4px;
}

/* Scrolled state — dark glass nav */
.nav.scrolled {
  background: rgba(10,10,14,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(255,255,255,0.06);
  padding: 18px 52px;
}
.nav.scrolled .logo {
  filter: brightness(0) invert(1);
  max-height: 36px;
}
.nav.scrolled .nav-links a { color: rgba(255,255,255,0.5); }
.nav.scrolled .nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a.active { color: #fff; }
.nav.scrolled .hamburger { color: rgba(255,255,255,0.85); }

.nav-links {
  display: flex;
  gap: 44px;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: #fff; }

/* ─── Nav Dropdown ─────────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,10,14,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.07);
  min-width: 155px;
  padding: 6px 0;
  z-index: 300;
}
/* Bridge the gap so the hover doesn't break when moving from trigger to menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu li a::after { display: none !important; }
.nav-dropdown-menu li a:hover { color: #fff; background: rgba(255,255,255,0.05); }
/* White site-nav variant */
.site-nav .nav-dropdown-menu {
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(0,0,0,0.08);
}
.site-nav .nav-dropdown-menu li a { color: rgba(0,0,0,0.45); }
.site-nav .nav-dropdown-menu li a:hover { color: #111; background: rgba(0,0,0,0.03); }

/* ─── Nav Right (linkedin + hamburger) ──────────────────────────── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
/* Force nav-links to center between logo and nav-right */
.nav > .nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* ─── Hamburger ─────────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: rgba(255,255,255,0.85);
  z-index: 201;
  transition: color 0.3s;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.35s cubic-bezier(0.25,1,0.5,1),
              opacity 0.2s ease;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Mobile Menu ───────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 199;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
}
.mobile-link {
  font-size: clamp(2.25rem, 8vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--white);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s;
}
.mobile-menu.is-open .mobile-link { opacity: 1; transform: translateY(0); }
.mobile-link:nth-child(1) { transition-delay: 0.06s; }
.mobile-link:nth-child(2) { transition-delay: 0.10s; }
.mobile-link:nth-child(3) { transition-delay: 0.14s; }
.mobile-link:nth-child(4) { transition-delay: 0.18s; }
.mobile-link:nth-child(5) { transition-delay: 0.22s; }
.mobile-link:nth-child(6) { transition-delay: 0.26s; }
.mobile-link:hover { color: rgba(255,255,255,0.45); }
.mobile-menu-footer {
  position: absolute;
  bottom: 40px;
  left: 48px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ─── Locations Section ─────────────────────────────────────────── */
.loc-layout {
  display: flex;
  height: 580px;
  margin-top: 3rem;
}
.loc-sidebar {
  width: 360px;
  flex-shrink: 0;
  border-right: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}
.loc-item {
  flex: 1;
  padding: 40px 44px;
  cursor: pointer;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.loc-item:last-child { border-bottom: none; }
.loc-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--black);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s cubic-bezier(0.25,1,0.5,1);
}
.loc-item.active::before { transform: scaleY(1); }
.loc-item.active { background: var(--grey); }
.loc-item:not(.active):hover { background: rgba(0,0,0,0.02); }

.loc-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 1.25rem;
}
.loc-num {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-top: 3px;
  flex-shrink: 0;
}
.loc-city {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.3rem;
  text-transform: none;
}
.loc-country {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.loc-coords {
  font-size: 0.68rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.loc-address {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
}
.loc-note {
  font-size: 0.72rem;
  color: var(--accent-gold);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 6px;
}
.loc-map {
  flex: 1;
  position: relative;
}
.loc-map .mapboxgl-canvas { outline: none; }

/* Map controls overlay */
.map-controls {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 5px;
  pointer-events: auto;
}
.map-style-btns {
  display: flex;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  gap: 1px;
  padding: 3px;
}
.map-style-btn {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 11px;
  background: none;
  border: none;
  cursor: pointer;
  color: #737373;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.map-style-btn.active,
.map-style-btn:hover { background: #111; color: #fff; }
.map-overview-btn {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 12px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  cursor: pointer;
  color: #737373;
  transition: background 0.2s, color 0.2s;
  text-align: center;
  display: block;
  width: 100%;
}
.map-overview-btn:hover { background: #111; color: #fff; }

/* Mapbox marker */
.map-marker {
  width: 12px;
  height: 12px;
  background: #e03030;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(224,48,48,0.25);
  cursor: pointer;
  transition: transform 0.2s;
}
.map-marker.active {
  background: #e03030;
  box-shadow: 0 0 0 6px rgba(224,48,48,0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(224,48,48,0.25); }
  50%       { box-shadow: 0 0 0 12px rgba(224,48,48,0.08); }
}
.mapboxgl-ctrl-bottom-left,
.mapboxgl-ctrl-bottom-right { display: none; }

/* ─── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  background:
    radial-gradient(ellipse 65% 60% at 50% 50%, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.65) 100%);
}
.hero.revealed .overlay {
  opacity: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 40px 80px;
  gap: 2.75rem;
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* ─── Hero center logo ─────────────────────────────────────────── */
.hero-logo-center {
  max-height: 140px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1) 0.15s,
              transform 0.9s cubic-bezier(0.16,1,0.3,1) 0.15s;
}
.hero.revealed .hero-logo-center {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.hero-logo--leaving {
  opacity: 0 !important;
  transform: translateY(20px) scale(0.75) !important;
  transition-duration: 0.4s !important;
  transition-delay: 0s !important;
}

.hero-text { max-width: 780px; }

.hero-title {
  font-size: clamp(2.75rem, 6vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.4);
}

.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6);
}

.hero.revealed .nav,
.hero.revealed .hero-content {
  opacity: 1;
}

/* ─── Hero robot decoration ────────────────────────────────────── */
.hero-robot-deco {
  position: absolute;
  right: 6%;
  bottom: 8%;
  width: clamp(120px, 18vw, 220px);
  height: auto;
  opacity: 0.06;
  z-index: 2;
  pointer-events: none;
}

/* ─── CTA Button ───────────────────────────────────────────────── */
.btn-outline {
  display: inline-block;
  padding: 15px 36px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid var(--accent-gold);
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.btn-outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}
.btn-outline--dark {
  color: var(--black);
  border-color: var(--black);
}
.btn-outline--dark:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

/* ─── Video Replay Button ──────────────────────────────────────── */
.hero-veo-cover {
  position: absolute;
  bottom: 24px; right: 24px;
  z-index: 12;
}
.hero-replay {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px 9px 13px;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  color: rgba(255,255,255,0.65);
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.hero-replay svg {
  width: 13px; height: 13px; flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.hero-replay:hover {
  background: rgba(10,10,10,0.8);
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}
.hero-replay:hover svg { transform: rotate(-180deg); }

/* ─── WHY Section ──────────────────────────────────────────────── */
.section--why {
  background: #f7f4ef;
}

.tech-label {
  color: var(--accent-gold);
}
.section--why .why-intro h2 {
  color: #111;
}
.section--why .why-intro .section-lead {
  color: #555;
}

.why-intro {
  max-width: 700px;
  margin-bottom: 4rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.07);
  margin-top: 2.5rem;
}

.why-item {
  padding: 44px 40px;
  background: #f7f4ef;
  border-top: 3px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.why-item:hover {
  background: #ede9e1;
  border-top-color: var(--accent-gold);
}

.why-num {
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  margin-bottom: -1.5rem;
  display: block;
  user-select: none;
}

.why-item h3 {
  color: #111;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.why-item p {
  color: #555;
  font-size: 0.875rem;
  line-height: 1.75;
}

.why-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
}
.why-icon svg {
  width: 100%;
  height: 100%;
}

.section-cta--on-dark {
  color: rgba(255,255,255,0.55);
  border-color: rgba(255,255,255,0.15);
}
.section-cta--on-dark:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

/* ─── Products ─────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: transparent;
  border: none;
  align-items: stretch;
}

.product-card {
  position: relative;
  background: var(--white);
  padding: 44px 40px 52px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}

/* RS90 — pièce maîtresse : sort du lot */
.product-card--dark {
  background: #f4ede0;
  color: #0a0a0a;
  border: none;
  box-shadow:
    inset 0 4px 0 #e07b2a,
    0 0 0 1px rgba(224,123,42,0.25),
    -24px 0 60px rgba(0,0,0,0.08),
    24px 0 60px rgba(0,0,0,0.08),
    0 20px 80px rgba(224,123,42,0.15);
  z-index: 3;
  transform: scaleX(1.04) scaleY(1.06);
  transform-origin: center;
}
.product-card--dark .product-data li { border-color: rgba(0,0,0,0.09); }
.product-card--dark .product-data li span:first-child { color: rgba(0,0,0,0.4); }
.product-card--dark .product-name { color: rgba(0,0,0,0.45); }

.product-ref {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.product-card--rs60  .product-ref { color: #2e9b5e; }
.product-card--rs90  .product-ref { color: #e07b2a; }
.product-card--rs120 .product-ref { color: #c0392b; }

.product-rule {
  width: 32px;
  height: 1px;
  margin: 16px 0 18px;
}
.product-card--rs60  .product-rule { background: #2e9b5e; }
.product-card--rs90  .product-rule { background: #e07b2a; }
.product-card--rs120 .product-rule { background: #c0392b; }

.product-name {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.product-data {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 0.82rem;
}
.product-data li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.product-data li:first-child { border-top: 1px solid rgba(0,0,0,0.07); }
.product-data li span:first-child { color: var(--muted); }
.product-data li span:last-child  { font-weight: 500; font-variant-numeric: tabular-nums; }

.product-img {
  margin-top: 2.5rem;
  height: 130px;
  width: auto;
  object-fit: contain;
  align-self: flex-end;
  opacity: 0.85;
}

/* ─── RS60 Teaser card ──────────────────────────────────────────── */
.product-card--teaser {
  background: #0a0a0a;
  border: 1px solid rgba(46,155,94,0.15);
  justify-content: space-between;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.product-card--teaser::before {
  content: 'RS60';
  position: absolute;
  right: -0.05em; bottom: -0.2em;
  font-size: clamp(7rem, 10vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: rgba(46,155,94,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.product-card--teaser .product-ref { color: #2e9b5e; }
.product-card--teaser .product-rule { background: rgba(46,155,94,0.4); }

.teaser-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
  padding-top: 0.5rem;
}

/* Redacted lines — classified effect */
.teaser-redacted {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.teaser-redacted span {
  display: block;
  height: 8px;
  border-radius: 2px;
  background: rgba(255,255,255,0.07);
}
.teaser-redacted span:nth-child(1) { width: 70%; }
.teaser-redacted span:nth-child(2) { width: 50%; }
.teaser-redacted span:nth-child(3) { width: 60%; }

/* Pulsing "live" badge */
.teaser-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #2e9b5e;
  padding: 6px 12px 6px 8px;
  border: 1px solid rgba(46,155,94,0.3);
  background: rgba(46,155,94,0.07);
  align-self: flex-start;
}
.teaser-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2e9b5e;
  flex-shrink: 0;
  animation: tpulse 2s ease-in-out infinite;
}
@keyframes tpulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,155,94,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(46,155,94,0); }
}

.teaser-hook {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.teaser-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  margin-top: auto;
}

/* ─── RS120 teaser overrides ──────────────────────────────────── */
.product-card--teaser-rs120 {
  border-color: rgba(192,57,43,0.15);
}
.product-card--teaser-rs120::before {
  content: 'RS120';
  color: rgba(192,57,43,0.05);
}
.product-card--teaser-rs120 .product-ref  { color: #c0392b; }
.product-card--teaser-rs120 .product-rule { background: rgba(192,57,43,0.4); }
.product-card--teaser-rs120 .teaser-badge {
  color: #c0392b;
  border-color: rgba(192,57,43,0.3);
  background: rgba(192,57,43,0.07);
}
.product-card--teaser-rs120 .teaser-pulse {
  background: #c0392b;
  animation: tpulse-red 2s ease-in-out infinite;
}
@keyframes tpulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(192,57,43,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(192,57,43,0); }
}

.product-card--dimmed {
  opacity: 0.18;
  filter: grayscale(100%) brightness(0.65);
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.product-card--dimmed:hover {
  opacity: 0.32;
  filter: grayscale(80%) brightness(0.8);
}

/* "IN DEVELOPMENT" watermark stamp */
.product-card--dimmed::after {
  content: 'IN DEVELOPMENT';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.85rem, 1.8vw, 1.15rem);
  font-weight: 900;
  letter-spacing: 0.28em;
  color: rgba(120,120,120,0.55);
  border: 1.5px solid rgba(120,120,120,0.2);
  margin: 20px;
  pointer-events: none;
  z-index: 20;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

/* "Not Available" top badge */
.card-unavail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(100,100,100,0.8);
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 3px;
  padding: 4px 10px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.card-unavail-badge::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(100,100,100,0.5);
  flex-shrink: 0;
}


/* ─── RS90 available badge ────────────────────────────────────── */
.product-available-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e07b2a;
  padding: 5px 10px 5px 7px;
  border: 1px solid rgba(224,123,42,0.35);
  background: rgba(224,123,42,0.09);
}
.product-available-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #e07b2a;
  flex-shrink: 0;
}

/* Actuator image on RS90 card */
.product-card--dark .product-img {
  mix-blend-mode: multiply;
  opacity: 1;
  align-self: center;
  height: 160px;
}

/* ─── Pillars ──────────────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-bottom: 0;
}
.pillar-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: block;
}
.pillar p {
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ─── Scale Stats ──────────────────────────────────────────────── */
.scale-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.1);
  margin-top: 4.5rem;
}

.stat {
  background: var(--grey);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.stat-val {
  font-size: clamp(1.4rem, 2.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Values Teaser (homepage) ─────────────────────────────────── */
.values-teaser-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 24px;
}
.values-teaser-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(0,0,0,0.3);
  transition: opacity 0.2s;
}
.values-teaser-link:hover { opacity: 0.5; }

.values-teaser-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(0,0,0,0.08);
  border-left: 1px solid rgba(0,0,0,0.08);
}
.vt-item {
  border-right: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.2s;
}
.vt-item:hover { background: var(--grey); }
.vt-num {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.vt-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
}
.vt-sub {
  font-size: 0.7rem;
  color: #737373;
}

/* ─── Team Teaser (homepage) ────────────────────────────────────── */
.team-teaser-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0,0,0,0.08);
  border-left: 1px solid rgba(0,0,0,0.08);
}
.tt-member {
  border-right: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: background 0.2s;
}
.tt-member:hover { background: rgba(0,0,0,0.03); }
.tt-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
}
.tt-role {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #737373;
}

/* ─── Contact Form ─────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 18px 0 40px;
  color: var(--white);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-detail-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-detail-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.contact-detail-value {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s;
}
a.contact-detail-value:hover {
  color: var(--white);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 15px 18px;
  font-family: var(--font);
  font-size: 0.875rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.28); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: rgba(255,255,255,0.45); }
.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}
.contact-form button {
  align-self: flex-start;
  padding: 15px 40px;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.contact-form button:hover {
  background: var(--grey);
}

/* ─── Partners Teaser ──────────────────────────────────────────── */
.partners-teaser-sub {
  font-size: 0.93rem;
  color: rgba(0,0,0,0.5);
  max-width: 520px;
  line-height: 1.7;
  margin-top: -8px;
  margin-bottom: 48px;
}
.partners-teaser-cta { text-align: center; }

/* ─── Homepage Sidebar ──────────────────────────────────────────── */
.home-sidebar {
  position: fixed;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}
.home-sidebar::before {
  content: '';
  position: absolute;
  right: 3px;
  top: 14px; bottom: 14px;
  width: 1px;
  background: var(--hsb-line, rgba(255,255,255,0.2));
  transition: background 0.5s ease;
}
.hsb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  text-decoration: none;
  position: relative;
}
.hsb-label {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hsb-text, rgba(255,255,255,0.35));
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1), color 0.5s;
  white-space: nowrap;
}
.hsb-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1.5px solid var(--hsb-dot, rgba(255,255,255,0.35));
  background: transparent;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, transform 0.3s cubic-bezier(0.16,1,0.3,1);
  position: relative; z-index: 1;
}
.hsb-item:hover .hsb-label,
.hsb-item.active .hsb-label {
  opacity: 1;
  transform: translateX(0);
}
.hsb-item:hover .hsb-label { color: var(--hsb-text-hover, rgba(255,255,255,0.7)); }
.hsb-item.active .hsb-label { color: var(--hsb-text-active, #fff); }
.hsb-item.active .hsb-dot {
  background: var(--hsb-dot-active, #fff);
  border-color: var(--hsb-dot-active, #fff);
  transform: scale(1.3);
}
@media (max-width: 1100px) { .home-sidebar { display: none; } }

/* ─── Logo Strip ─────────────────────────────────────────────────── */
.logo-strip {
  border-top: 1px solid rgba(0,0,0,0.07);
  margin-top: clamp(48px, 6vw, 80px);
}
.logo-strip-inner {
  display: flex;
  align-items: stretch;
}
.logo-strip-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 12px;
  border-right: 1px solid rgba(0,0,0,0.07);
}
.logo-strip-item:last-child { border-right: none; }
.logo-strip-item img {
  height: 28px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: opacity 0.25s, filter 0.25s;
}
.logo-strip-item:hover img { opacity: 0.85; filter: none; }
@media (max-width: 700px) {
  .logo-strip-item { flex: 1 1 33%; border-bottom: 1px solid rgba(0,0,0,0.07); }
}

/* ─── Footer legal link ─────────────────────────────────────────── */
.footer-legal {
  margin-top: 18px;
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.32);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(0,0,0,0.7); }

/* ─── Footer ───────────────────────────────────────────────────── */
.footer {
  background: #f8f6f1;
  padding: 72px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.footer-logo { max-height: 100px; opacity: 0.75; filter: brightness(0); }
.footer-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.38);
  margin-top: 6px;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(0,0,0,0.32);
  margin-top: 6px;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(0,0,0,0.14);
  color: rgba(0,0,0,0.38);
  transition: color 0.2s, border-color 0.2s;
}
.footer-social a:hover {
  color: var(--black);
  border-color: rgba(0,0,0,0.55);
}
.footer-social svg { width: 16px; height: 16px; }

/* LinkedIn in nav */
.nav-linkedin {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  margin-left: 8px;
}
.nav-linkedin:hover { color: var(--white); }
.nav-linkedin svg { width: 15px; height: 15px; }
.nav.scrolled .nav-linkedin { color: rgba(255,255,255,0.4); }
.site-nav .nav-linkedin {
  color: rgba(0,0,0,0.35);
}
.site-nav .nav-linkedin:hover { color: var(--black); }

/* ─── Scroll Reveal ────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
[data-reveal-left] {
  opacity: 0;
  transform: translateX(-52px) scale(0.97);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal-left].is-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}
[data-reveal-right] {
  opacity: 0;
  transform: translateX(52px) scale(0.97);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal-right].is-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* ─── Progress Sidebar ─────────────────────────────────────────── */
.progress-nav {
  position: fixed;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.progress-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.progress-track {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.progress-track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 6px; bottom: 6px;
  width: 1px;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.1);
  z-index: -1;
  transition: background 0.5s ease;
}
.progress-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  position: relative;
  transition: background 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
  flex-shrink: 0;
  border: none;
  padding: 0;
  outline: none;
  display: block;
}
.progress-dot::after {
  content: attr(data-label);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  transition: color 0.4s ease;
}
.progress-dot.is-active {
  background: #111;
  transform: scale(1.8);
}
.progress-dot.is-active::after {
  color: rgba(0,0,0,0.4);
}
.progress-dot.is-past {
  background: rgba(0,0,0,0.3);
}
/* Light mode on dark sections */
.progress-nav.is-light .progress-track::before { background: rgba(255,255,255,0.18); }
.progress-nav.is-light .progress-dot { background: rgba(255,255,255,0.22); }
.progress-nav.is-light .progress-dot.is-active { background: #fff; }
.progress-nav.is-light .progress-dot.is-past { background: rgba(255,255,255,0.45); }
.progress-nav.is-light .progress-dot.is-active::after { color: rgba(255,255,255,0.45); }

@media (max-width: 1280px) {
  .progress-nav { display: none; }
}

/* ─── Team teaser banner ───────────────────────────────────────── */
.team-teaser-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.team-teaser-text h2 { font-size: clamp(2rem, 3.5vw, 3.5rem); }
.team-teaser-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: #111;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, gap 0.3s;
}
.team-teaser-cta:hover { background: #222; gap: 16px; }

/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .split, .split--flip { grid-template-columns: 1fr; gap: 40px; }
  .split--flip > *:first-child { order: unset; }
  .split--flip > *:last-child  { order: unset; }
  .products-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .values-teaser-strip { grid-template-columns: repeat(2, 1fr); }
  .team-teaser-list { grid-template-columns: repeat(2, 1fr); }
  .values-teaser-head { flex-direction: column; align-items: flex-start; }
  .team-teaser-banner { flex-direction: column; align-items: flex-start; }
  .scale-stats { grid-template-columns: repeat(2, 1fr); }
  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .logo { max-height: 40px; }
  .nav.scrolled .logo { max-height: 32px; }
  .footer-logo { max-height: 72px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 80px 24px 60px; }
  .loc-layout { flex-direction: column; height: auto; }
  .loc-sidebar { width: 100%; flex-direction: row; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .loc-item { padding: 24px; border-bottom: none; border-right: 1px solid rgba(0,0,0,0.08); }
  .loc-item:last-child { border-right: none; }
  .loc-item::before { width: 100%; height: 2px; top: 0; left: 0; right: 0; bottom: auto; transform: scaleX(0); transform-origin: left; }
  .loc-item.active::before { transform: scaleX(1); }
  .loc-map { height: 400px; }
  .loc-address { display: none; }
}
