/* Shared Sportswiz product lockup — used by trAIner and SFA without flattening product colors */

.sw-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.sw-lockup-home {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.sw-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(120deg, #2563eb 0%, #06b6d4 55%, #22d3ee 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.3);
}

.sw-name {
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.sw-name .ai {
  background: linear-gradient(120deg, #2563eb 0%, #06b6d4 55%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sw-slash {
  color: inherit;
  opacity: 0.35;
  font-weight: 400;
  font-size: 1.05rem;
}

.sw-product {
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.sw-lockup--on-dark .sw-name,
.sw-lockup--on-dark .sw-slash {
  color: #eef4ff;
}

.sw-lockup--on-light .sw-name,
.sw-lockup--on-light .sw-slash {
  color: #0a1628;
}

.sw-lockup--trainer .sw-product {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sw-lockup--sfa .sw-product {
  color: #dc2626;
}

.nav-overlay {
  display: none;
}

@media (max-width: 860px) {
  .sw-name {
    font-size: 1rem;
  }

  .sw-product {
    font-size: 1rem;
  }
}
