/* TechnoPkg clean navigation/category tabs */
.tp-clean-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(8, 12, 30, 0.94);
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  backdrop-filter: blur(10px);
}
.tp-clean-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.tp-clean-brand {
  color: #ffffff !important;
  font-weight: 800;
  text-decoration: none !important;
  letter-spacing: .2px;
  white-space: nowrap;
}
.tp-clean-tabs {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.tp-clean-tabs a {
  color: #dbeafe !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.55);
}
.tp-clean-tabs a:hover {
  background: rgba(79, 70, 229, 0.35);
  border-color: rgba(165, 180, 252, 0.65);
}
.tp-home-categories,
.tp-workspace-priority,
.tp-directory-wrap {
  max-width: 1200px;
  margin: 22px auto;
  padding: 0 18px;
}
.tp-section-title {
  margin: 0 0 8px;
  color: inherit;
  font-size: 1.65rem;
  line-height: 1.2;
}
.tp-section-subtitle {
  margin: 0 0 16px;
  color: #94a3b8;
}
.tp-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}
.tp-tool-card {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 18px;
  padding: 18px;
  background: rgba(15, 23, 42, 0.74);
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.24);
}
.tp-tool-card h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.08rem;
}
.tp-tool-card p {
  margin: 0 0 14px;
  color: #cbd5e1;
  line-height: 1.45;
}
.tp-tool-card a,
.tp-primary-link {
  display: inline-block;
  color: #ffffff !important;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  text-decoration: none !important;
  padding: 9px 13px;
  border-radius: 12px;
  font-weight: 800;
}
.tp-directory-section {
  margin: 22px 0;
  padding-top: 10px;
}
.tp-directory-section h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.3rem;
}
.tp-directory-note {
  padding: 12px 14px;
  border: 1px solid rgba(245, 158, 11, 0.45);
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.10);
  color: #fde68a;
  margin: 18px 0;
}
@media (max-width: 760px) {
  .tp-clean-nav-inner { align-items: flex-start; flex-direction: column; }
  .tp-clean-tabs { justify-content: flex-start; }
  .tp-clean-tabs a { font-size: 13px; padding: 6px 9px; }
}
