/* Integration logo strip */
.systems {
  border-bottom: 1px solid var(--site-border);
  background: var(--site-bg);
  padding: 40px 0;
  overflow: hidden;
}
.systems .container { max-width: 1200px; }
.systems .label {
  font: 600 11px/1 var(--q-font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--site-muted);
  margin-bottom: 24px;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 0;
}

.logo-strip .group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.logo-strip .group-label {
  font: 500 9px/1 var(--q-font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--site-muted);
  opacity: 0.5;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  margin: 0 4px;
  height: 100%;
  display: none;
}

.logo-strip .divider {
  width: 1px;
  height: 28px;
  background: var(--site-border);
  margin: 0 12px;
  flex-shrink: 0;
}

.logo-strip .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  height: 40px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.logo-strip .logo-item:hover {
  opacity: 1;
}

.logo-strip .logo-item svg {
  height: 20px;
  width: auto;
  max-width: 120px;
}

.logo-strip .logo-item .wordmark {
  font: 600 14px/1 var(--q-font-display);
  letter-spacing: -0.01em;
  color: var(--site-fg);
  white-space: nowrap;
}

.logo-strip .logo-item .wordmark .dim {
  font-weight: 400;
  opacity: 0.6;
  font-size: 12px;
  margin-left: 3px;
}

@media (max-width: 720px) {
  .systems { padding: 32px 0; }
  .logo-strip .group { gap: 12px; }
  .logo-strip .logo-item { padding: 6px 10px; height: 36px; }
  .logo-strip .logo-item .wordmark { font-size: 12px; }
  .logo-strip .logo-item svg { height: 16px; }
  .logo-strip .divider { margin: 0 6px; height: 24px; }
}