.ts-nav {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #e2e6ed;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 9999;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ts-nav-in {
  max-width: 960px;
  width: 100%;
  display: flex;
  align-items: center;
}
.ts-nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  margin-right: 32px;
  flex-shrink: 0;
}
.ts-nav-logo:hover { text-decoration: none; }
.ts-nav-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0d9373, #2dd4a0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ts-nav-links {
  display: flex;
  gap: 2px;
  font-size: 13px;
  font-weight: 500;
}
.ts-nav-links a {
  color: #8492a6;
  padding: 7px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.ts-nav-links a:hover {
  color: #0f1729;
  background: #f7f8f8;
  text-decoration: none;
}
.ts-nav-right {
  margin-left: auto;
  flex-shrink: 0;
}
.ts-nav-cta {
  background: #0d9373;
  color: #fff;
  padding: 8px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(13,147,115,0.25);
}
.ts-nav-cta:hover {
  background: #0a7d62;
  text-decoration: none;
}
@media (max-width: 640px) {
  .ts-nav-links { display: none; }
}
