:root { --sl-cerulean: #63C5DA; --sl-blue-dark: #2AB7CA; --sl-yellow: #FFD100; --sl-black: #000000; --sl-navy: #0f172a; --sl-bg-sand: #f6f2e7; }
body {
  font-family: 'Montserrat', sans-serif;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  overscroll-behavior-y: none;
  line-height: 1.42;
  background-color: var(--sl-bg-sand);
  background-image:
    linear-gradient(180deg, rgba(102, 204, 255, 0.05) 0%, rgba(252, 209, 22, 0.045) 50%, rgba(0, 0, 0, 0.03) 100%),
    url("/assets/slcc-bg.svg");
  background-size: cover, cover;
  background-attachment: fixed, fixed;
}
button, [data-action], a {
  touch-action: manipulation;
}

#landing-view {
  min-height: 100dvh;
}

.guest-join-emphasis {
  position: relative;
  overflow: visible;
  background: #facc15 !important;
  color: #0f172a !important;
  border: 1px solid #f59e0b;
  box-shadow:
    0 0 0 1px rgba(245, 158, 11, 0.28),
    0 10px 22px -14px rgba(245, 158, 11, 0.78);
  animation: guestJoinPulse 1.8s ease-in-out infinite;
}

.guest-join-emphasis::after {
  content: "NEW";
  position: absolute;
  top: -0.38rem;
  right: -0.38rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.7rem;
  height: 1.05rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}

@keyframes guestJoinPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow:
      0 0 0 1px rgba(245, 158, 11, 0.28),
      0 10px 22px -14px rgba(245, 158, 11, 0.78);
  }
  50% {
    transform: translateY(-1px) scale(1.03);
    box-shadow:
      0 0 0 1px rgba(245, 158, 11, 0.34),
      0 16px 30px -16px rgba(245, 158, 11, 0.9);
  }
}

@media (prefers-reduced-motion: reduce) {
  .guest-join-emphasis {
    animation: none;
  }
}

/* Hide decorative landing icons on touch/mobile devices */
@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  #landing-icons-layer,
  #landing-icons-layer *,
  #landing-view [data-landing-decor] {
    display: none !important;
  }

  body {
    background-attachment: scroll, scroll;
  }
}

.landing-gradient {
  background:
    radial-gradient(circle at 18% 24%, rgba(42, 183, 202, 0.5) 0%, rgba(42, 183, 202, 0.12) 34%, rgba(42, 183, 202, 0) 56%),
    radial-gradient(circle at 82% 74%, rgba(252, 209, 22, 0.5) 0%, rgba(252, 209, 22, 0.12) 36%, rgba(252, 209, 22, 0) 58%),
    linear-gradient(114deg, #1597c6 0%, #63c5da 28%, #f8fafc 40%, #111827 52%, #fcd116 70%, #ffd857 100%);
  background-size: 220% 220%, 220% 220%, 280% 280%;
  animation: landingGradientShift 14s linear infinite;
}

.hero-gradient { background: linear-gradient(to right, #4b5563, #1f2937); }
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-width: 200%;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.marquee-content {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  min-width: max-content;
  padding-right: 3rem;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hide-scroll::-webkit-scrollbar { display: none; }
.hide-scroll { -ms-overflow-style: none; scrollbar-width: none; }
.modal-animate { animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes modalPop { 0% { opacity: 0; transform: scale(0.95); } 100% { opacity: 1; transform: scale(1); } }
.hub-card-hover:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1); }
.modal-body {
  overflow-y: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  max-height: calc(100vh - 220px);
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
}
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
  50% { transform: translateY(-20px) rotate(10deg); opacity: 0.3; }
  100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
}
.animate-float { animation: none; }
@media (min-width: 768px) {
  .animate-float { animation: float 8s ease-in-out infinite; }
}

#hubs-container.collapsed {
  display: none;
}

#search-results-block,
#directory-filter-bar,
#creatives-grid {
  position: relative;
  z-index: 2;
  isolation: isolate;
}

#directory-filter-bar input,
#directory-filter-bar select,
#directory-filter-bar textarea,
#directory-filter-bar button,
#creatives-grid [data-profile-card] {
  pointer-events: auto;
}

#category-sticky-bar,
#global-category-menu,
#sub-category-menu,
#sub-category-menu * {
  pointer-events: auto;
}

#category-sticky-bar {
  overflow: visible;
}

#category-sticky-bar {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 8px 20px -18px rgba(15, 23, 42, 0.32);
  backdrop-filter: none;
}

#global-category-menu {
  width: 100%;
}

body.slcc-authenticated #guest-category-shell {
  display: none !important;
}

body.slcc-authenticated #plans-section {
  display: none !important;
}

#member-top-nav {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Legacy toggle row is replaced by the top member nav.
   Keep it hidden so mobile does not show clipped duplicate tabs. */
#home-view-toggle {
  display: none !important;
}

.member-top-nav-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.45rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 0.95rem;
  padding: 0.45rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.member-top-nav-shell::-webkit-scrollbar {
  display: none;
}

.member-top-nav-btn,
.member-top-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 124px;
  min-height: 2.05rem;
  border-radius: 0.72rem;
  border: 1px solid #d1d9e6;
  background: #ffffff;
  color: #334155;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  transition: border-color 0.22s ease, color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  scroll-snap-align: start;
}

.member-top-nav-mobile-only {
  display: none !important;
}

.member-top-nav-btn:hover,
.member-top-nav-link:hover {
  border-color: #94a3b8;
  color: #0f172a;
  transform: translateY(-1px);
}

.member-top-nav-btn:focus-visible,
.member-top-nav-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.14);
}

.member-top-nav-btn-active {
  border-color: #0f172a !important;
  background: #0f172a !important;
  color: #ffffff !important;
  box-shadow: 0 10px 16px -14px rgba(15, 23, 42, 0.8);
  transform: translateY(-1px);
}

.slcc-menu-animate {
  animation: slccMenuFadeSlide 0.24s ease both;
}

@keyframes slccMenuFadeSlide {
  from {
    opacity: 0.55;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slcc-menu-locked-item {
  opacity: 0.58;
  cursor: not-allowed !important;
}

.hub-menu-shell {
  width: 100%;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 0.95rem;
  padding: 0.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-menu-track {
  width: min(100%, 980px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.hub-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  border: 1px solid #d1d9e6;
  background: #fff;
  color: #334155;
  min-width: 122px;
  padding: 0.48rem 0.68rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.hub-menu-btn:hover {
  border-color: #94a3b8;
  color: #0f172a;
  box-shadow: 0 8px 16px -14px rgba(15, 23, 42, 0.3);
}

.hub-menu-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.14);
}

.hub-menu-btn-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hub-menu-btn-active {
  border-color: #0f172a;
  color: #ffffff;
  background: #0f172a;
  box-shadow: 0 10px 18px -14px rgba(15, 23, 42, 0.42);
}

#sub-category-menu {
  flex-wrap: wrap;
  transform: none;
  margin-top: 0.52rem !important;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}

#sub-category-menu.submenu-animate-in {
  animation: none;
}

.submenu-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.36rem 0.68rem;
  border-radius: 999px;
  border: 1px solid #d1d9e6;
  background: #ffffff;
  color: #475569;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.submenu-pill:hover {
  border-color: #94a3b8;
  color: #0f172a;
}

.submenu-pill-active {
  border-color: #0f172a;
  background: #0f172a;
  color: #ffffff;
}

.sub-menu-shell {
  width: 100%;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 0.9rem;
  padding: 0.46rem;
  box-shadow: none;
}

.sub-menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.38rem;
}

#hero-search-wrapper {
  z-index: 35;
}

.hero-search-shell {
  width: min(100%, 760px);
  margin-inline: auto;
}

.hero-search-control {
  border-color: rgba(255, 255, 255, 0.24) !important;
  background: rgba(15, 23, 42, 0.28) !important;
  box-shadow: 0 18px 30px -24px rgba(15, 23, 42, 0.75) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-search-control:focus-within {
  border-color: rgba(253, 224, 71, 0.95) !important;
  background: rgba(15, 23, 42, 0.4) !important;
  box-shadow: 0 22px 34px -22px rgba(15, 23, 42, 0.85) !important;
}

.hero-search-input {
  font-size: 15px;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-align: center;
}

.hero-search-input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.hero-search-btn {
  min-width: 134px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 20px -16px rgba(15, 23, 42, 0.68);
  transform: translateY(0);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.hero-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 22px -14px rgba(15, 23, 42, 0.7);
}

.profile-card {
  transform: translateY(0);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 10px 30px -22px rgba(15, 23, 42, 0.8);
  min-height: 112px;
}

.profile-card:hover {
  transform: translateY(-5px);
  border-color: #cbd5e1;
  box-shadow: 0 26px 40px -28px rgba(15, 23, 42, 0.75);
}

#creatives-grid {
  align-items: stretch;
}

.profile-card--compact {
  min-height: 88px;
  padding: 0.55rem !important;
  gap: 0.5rem !important;
  border-radius: 0.9rem !important;
  box-shadow: 0 8px 18px -16px rgba(15, 23, 42, 0.45);
}

.profile-card--compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px -18px rgba(15, 23, 42, 0.55);
}

.directory-featured-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
}

.directory-featured-strip::-webkit-scrollbar {
  height: 6px;
}

.directory-featured-strip::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.directory-featured-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.6rem;
  border-radius: 0.9rem;
  border: 1px solid #dbe4ef;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.directory-featured-card:hover {
  transform: translateY(-2px);
  border-color: #7dd3fc;
}

.directory-featured-card img {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #cbd5e1;
  flex-shrink: 0;
}

.directory-featured-card-name {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0f172a;
  line-height: 1.35;
}

.directory-featured-card-role {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0369a1;
}

.directory-quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.quick-filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #d4dde8;
  background: #f8fafc;
  color: #475569;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

.quick-filter-pill:hover {
  transform: translateY(-1px);
  border-color: #94a3b8;
  color: #0f172a;
}

.quick-filter-pill.active {
  border-color: #0284c7;
  background: #0ea5e9;
  color: #ffffff;
}

.quick-filter-clear {
  border-style: dashed;
}

.directory-trending-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.trending-skill-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.62rem;
  border-radius: 999px;
  border: 1px solid #dbe4ef;
  background: #f8fafc;
  color: #334155;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trending-skill-chip:hover {
  border-color: #38bdf8;
  color: #0369a1;
  background: #f0f9ff;
}

.trending-skill-chip.active {
  background: #0ea5e9;
  border-color: #0284c7;
  color: #ffffff;
}

.trending-count {
  margin-left: 0.3rem;
  font-size: 8px;
  opacity: 0.8;
}

.profile-image-blur {
  filter: blur(10px);
  transform: scale(1.05);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.profile-image-blur.loaded {
  filter: blur(0);
  transform: scale(1);
}

.directory-skeleton {
  border-radius: 1rem;
  border: 1px solid #dbe4ef;
  min-height: 140px;
  background: linear-gradient(110deg, #f8fafc 8%, #eef3f9 18%, #f8fafc 33%);
  background-size: 200% 100%;
  animation: slccSkeletonShimmer 1.2s linear infinite;
}

@keyframes slccSkeletonShimmer {
  to {
    background-position-x: -200%;
  }
}

.tier-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-card:hover .tier-pill {
  transform: translateY(-1px) scale(1.03);
}

.profile-card-avatar {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #e2e8f0;
  background: #f1f5f9;
}

.profile-card--compact .profile-card-avatar {
  width: 44px;
  height: 44px;
  border-width: 1.5px;
}

.profile-card--compact h3 {
  font-size: 0.67rem;
  letter-spacing: 0.07em;
}

.profile-card--compact .profile-card-meta {
  letter-spacing: 0.08em;
}

.profile-card--compact .profile-card-skills {
  margin-top: 0.2rem;
  gap: 0.18rem;
}

.profile-card--compact .badge {
  padding: 0.12rem 0.4rem;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
}

.profile-card--compact .chip {
  padding: 0.12rem 0.34rem;
  font-size: 0.48rem;
  letter-spacing: 0.08em;
}

.profile-card-brief {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reform-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.16rem 0.45rem;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  border: 1px solid #60a5fa;
}

.samples-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #475569;
  background: #e2e8f0;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  padding: 0.2rem 0.45rem;
  white-space: nowrap;
}

.profile-rating-label {
  font-size: 9px;
  color: #64748b;
}

.category-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.category-hub-card {
  position: relative;
  height: 248px;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  box-shadow: 0 18px 35px -24px rgba(15, 23, 42, 0.85);
  background: #ffffff;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.category-hub-card:hover {
  transform: translateY(-4px);
  border-color: #7dd3fc;
  box-shadow: 0 30px 48px -32px rgba(2, 132, 199, 0.75);
}

.category-hub-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.category-hub-card:hover .category-hub-image {
  transform: scale(1.06);
}

.category-hub-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.2) 52%, rgba(0, 0, 0, 0.05) 100%);
}

.category-hub-body {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
}

.category-hub-title {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.3;
}

.category-hub-accent {
  margin-top: 0.4rem;
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: #ffd100;
}

.tier-pill-basic {
  color: #334155;
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.tier-pill-pro {
  color: #ffffff;
  background: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%);
  border-color: #0284c7;
  box-shadow: 0 0 0 rgba(14, 165, 233, 0.45);
  animation: tierPulse 2.8s ease-in-out infinite;
}

.tier-pill-premium {
  color: #111827;
  background: linear-gradient(135deg, #facc15 0%, #fde68a 100%);
  border-color: #f59e0b;
  box-shadow: 0 0 0 rgba(250, 204, 21, 0.45);
  animation: tierPulse 2.4s ease-in-out infinite;
}

.tier-pill-reform {
  color: #f8fafc;
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
  border-color: #60a5fa;
  box-shadow: 0 0 0 rgba(96, 165, 250, 0.35);
  animation: tierPulseReform 2.6s ease-in-out infinite;
}

@keyframes tierPulse {
  0% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.25); }
  70% { box-shadow: 0 0 0 7px rgba(14, 165, 233, 0); }
  100% { box-shadow: 0 0 0 0 rgba(14, 165, 233, 0); }
}

@keyframes tierPulseReform {
  0% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.3); }
  70% { box-shadow: 0 0 0 7px rgba(96, 165, 250, 0); }
  100% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0); }
}

.reform-avatar-wrap {
  position: relative;
  overflow: visible;
}

.protected-avatar-badge {
  position: absolute;
  top: -7px;
  right: -6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.14rem 0.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
  color: #ffffff;
  border: 1px solid rgba(56, 189, 248, 0.65);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(14, 165, 233, 0.35);
  animation: protectedBadgePulse 2.2s ease-in-out infinite;
}

.resource-hub-card {
  position: relative;
  overflow: hidden;
}

.resource-hub-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.resource-format-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.62);
  color: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.48);
}

.compact-tier-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.compact-tier-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px -24px rgba(15, 23, 42, 0.85);
}

.broadcast-level-card {
  min-height: 170px;
}

.membership-modern-card {
  transition: transform 0.2s ease, box-shadow 0.22s ease;
}

.membership-modern-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 34px -24px rgba(15, 23, 42, 0.8);
}

.job-compact-card {
  border: 1px solid #d8e0eb;
  border-radius: 0.95rem;
  padding: 0.8rem;
  background: #ffffff;
  min-height: 182px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.job-compact-card:hover {
  border-color: #94a3b8;
  box-shadow: 0 18px 24px -20px rgba(15, 23, 42, 0.85);
  transform: translateY(-2px);
}

.job-compact-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.demo-card-preview {
  position: relative;
  background:
    radial-gradient(circle at 86% 22%, rgba(56, 189, 248, 0.42) 0%, rgba(56, 189, 248, 0) 42%),
    linear-gradient(130deg, #0f172a 0%, #0b2f4f 46%, #0ea5e9 100%);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 16px 30px -22px rgba(2, 6, 23, 1);
}

.demo-card-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.topic-room-section {
  background:
    radial-gradient(circle at 8% 14%, rgba(56, 189, 248, 0.18) 0%, rgba(56, 189, 248, 0) 40%),
    radial-gradient(circle at 86% 78%, rgba(250, 204, 21, 0.16) 0%, rgba(250, 204, 21, 0) 44%),
    linear-gradient(132deg, #020617 0%, #041c45 42%, #091636 68%, #020617 100%);
}

.topic-week-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.26);
  background:
    radial-gradient(circle at 84% 20%, rgba(250, 204, 21, 0.24) 0%, rgba(250, 204, 21, 0) 42%),
    radial-gradient(circle at 12% 88%, rgba(56, 189, 248, 0.24) 0%, rgba(56, 189, 248, 0) 42%),
    linear-gradient(138deg, rgba(15, 23, 42, 0.96) 0%, rgba(30, 41, 59, 0.96) 48%, rgba(2, 6, 23, 0.96) 100%);
  box-shadow: 0 28px 54px -40px rgba(2, 6, 23, 1);
}

.topic-week-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.topic-week-shell::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  top: -120px;
  right: -60px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.28) 0%, rgba(14, 165, 233, 0) 72%);
  filter: blur(3px);
  animation: topicOrbit 10s ease-in-out infinite;
  pointer-events: none;
}

.topic-week-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.62);
  color: #e2e8f0;
  animation: topicChipPulse 2.8s ease-in-out infinite;
}

.topic-week-point {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.topic-week-point-dark {
  color: #e2e8f0;
}

.topic-week-point-light {
  color: #334155;
}

.topic-host-panel {
  background:
    linear-gradient(155deg, rgba(15, 23, 42, 0.75) 0%, rgba(30, 41, 59, 0.62) 50%, rgba(51, 65, 85, 0.52) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 34px -28px rgba(2, 6, 23, 1);
}

.topic-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.26rem 0.52rem;
  border-radius: 999px;
  border: 1px solid rgba(250, 204, 21, 0.45);
  background: rgba(15, 23, 42, 0.7);
  color: #fde68a;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.topic-discussion-shell {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.topic-room-feed {
  scrollbar-width: thin;
}

.topic-room-post {
  box-shadow: 0 16px 24px -24px rgba(2, 6, 23, 0.95);
}

.topic-vote-card {
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
  background: #ffffff;
  padding: 0.75rem;
}

.topic-vote-track {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0.45rem;
  border-radius: 999px;
  background: #e2e8f0;
}

.topic-vote-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  transition: width 0.5s ease;
}

.topic-week-reaction {
  border: 1px solid #dbe3ef;
  border-radius: 1rem;
  background: #ffffff;
  padding: 0.85rem;
  box-shadow: 0 18px 28px -26px rgba(15, 23, 42, 0.85);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.topic-week-reaction:hover {
  transform: translateY(-2px);
  border-color: #94a3b8;
  box-shadow: 0 24px 34px -26px rgba(15, 23, 42, 0.82);
}

@keyframes protectedBadgePulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.45); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 5px rgba(56, 189, 248, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

@keyframes landingGradientShift {
  0% { background-position: 8% 32%, 92% 72%, 0% 50%; }
  50% { background-position: 92% 68%, 10% 24%, 100% 50%; }
  100% { background-position: 8% 32%, 92% 72%, 0% 50%; }
}

@keyframes subMenuSlideIn {
  0% { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes topicChipPulse {
  0% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.25); }
  70% { box-shadow: 0 0 0 6px rgba(56, 189, 248, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

@keyframes topicOrbit {
  0% { transform: translateY(0) scale(0.9); opacity: 0.6; }
  50% { transform: translateY(14px) scale(1.05); opacity: 1; }
  100% { transform: translateY(0) scale(0.9); opacity: 0.6; }
}

@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }

  body {
    line-height: 1.5;
  }

  body > header.sticky.top-0 {
    padding-top: calc(env(safe-area-inset-top) + 0.9rem) !important;
    padding-bottom: 0.7rem !important;
  }

  body > header.sticky.top-0 .md\:hidden {
    margin-top: 0.6rem !important;
  }

  #main-app > header {
    padding-top: calc(0.55rem + env(safe-area-inset-top));
    padding-bottom: 0.55rem;
  }

  #category-sticky-bar {
    top: calc(58px + env(safe-area-inset-top)) !important;
  }

  /* Hide all landing decorative icons on mobile */
  #landing-icons-layer,
  #landing-icons-layer *,
  #landing-view > .absolute i[data-lucide],
  #landing-view [data-landing-decor] {
    display: none !important;
  }

  #home-hero {
    height: auto !important;
    min-height: 430px;
    padding-top: 1.25rem;
    padding-bottom: 4.75rem;
  }

  #home-hero .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  #landing-view .relative.z-10 {
    width: 100%;
    max-width: 100%;
  }

  #directory-results-section {
    padding-top: 1.45rem !important;
    padding-bottom: 1.8rem !important;
  }

  body.slcc-authenticated {
    background: #eef3f9;
  }

  body.slcc-authenticated main.bg-slate-50 {
    background: transparent !important;
  }

  #featured-grid,
  #featured-artists-grid,
  #creatives-grid,
  #reform-facilities-grid,
  #home-resources-grid,
  #jobs-list {
    gap: 0.8rem !important;
  }

  #directory-filter-bar {
    padding: 0.85rem;
    border-radius: 1rem;
  }

  #directory-filter-bar .grid {
    gap: 0.55rem;
  }

  #global-category-menu {
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
  }

  .member-top-nav-shell {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    justify-content: stretch;
    gap: 0.42rem;
    overflow: visible;
    padding: 0.42rem;
    border-radius: 1rem;
    border-color: #d9e2ef;
    box-shadow: 0 10px 20px -20px rgba(15, 23, 42, 0.45);
  }

  #member-top-nav {
    padding-inline: 0.1rem;
  }

  .member-top-nav-btn,
  .member-top-nav-link {
    flex: 0 0 auto;
    min-width: 0;
    width: 100%;
    min-height: 2.35rem;
    font-size: 9px;
    letter-spacing: 0.06em;
    padding: 0.42rem 0.35rem;
    white-space: normal;
    line-height: 1.2;
    text-align: center;
  }

  #member-nav-about { order: 1; }
  #member-nav-feed { order: 2; }
  #member-nav-discover { order: 3; }
  #member-nav-discussion { order: 4; }
  #member-nav-podcasts { order: 5; }
  #member-nav-resources { order: 6; }

  .hub-menu-shell {
    border-radius: 1rem;
    padding: 0.42rem;
    box-shadow: 0 10px 20px -20px rgba(15, 23, 42, 0.45);
  }

  .hub-menu-track {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.42rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.08rem;
  }

  .hub-menu-btn {
    flex: 0 0 auto;
    min-width: 136px;
    width: auto;
    padding: 0.46rem 0.62rem;
    border-radius: 0.78rem;
    scroll-snap-align: start;
  }

  .hub-menu-btn-title {
    font-size: 9px;
    letter-spacing: 0.07em;
  }

  #sub-category-menu {
    margin-top: 0.4rem !important;
  }

  .sub-menu-shell {
    border-radius: 0.92rem;
    padding: 0.4rem;
    box-shadow: 0 10px 20px -20px rgba(15, 23, 42, 0.45);
  }

  .sub-menu-grid {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.34rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.06rem;
  }

  .submenu-pill {
    width: auto;
    flex: 0 0 auto;
    min-width: 118px;
    font-size: 9px;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.52rem;
    min-height: 1.95rem;
    justify-content: center;
    scroll-snap-align: start;
  }

  .hub-menu-track::-webkit-scrollbar,
  .sub-menu-grid::-webkit-scrollbar {
    display: none;
  }

  .member-top-nav-shell::-webkit-scrollbar {
    display: none;
  }

  .member-top-nav-mobile-only {
    display: inline-flex !important;
  }

  body.slcc-authenticated #category-sticky-bar {
    position: fixed !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 70;
    border-top: 1px solid #dbe4ef;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 1rem 1rem 0 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 -12px 24px -18px rgba(15, 23, 42, 0.65);
    padding: 0.36rem 0.34rem calc(env(safe-area-inset-bottom) + 0.36rem) !important;
  }

  body.slcc-authenticated #category-sticky-bar > .container {
    max-width: none !important;
    width: 100% !important;
    padding-left: 0.15rem !important;
    padding-right: 0.15rem !important;
  }

  body.slcc-authenticated #member-top-nav {
    width: 100%;
  }

  body.slcc-authenticated #member-top-nav .member-top-nav-shell {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 0.36rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    margin: 0 auto;
  }

  body.slcc-authenticated #member-top-nav .member-top-nav-btn,
  body.slcc-authenticated #member-top-nav .member-top-nav-link {
    flex: 0 0 auto;
    width: auto;
    min-width: 98px;
    min-height: 2.2rem;
    border-radius: 0.8rem;
    white-space: nowrap;
    font-size: 8.5px;
    letter-spacing: 0.08em;
    padding: 0.45rem 0.62rem;
  }

  body.slcc-authenticated #guest-category-shell {
    display: none !important;
  }

  body.slcc-authenticated #global-category-menu,
  body.slcc-authenticated #sub-category-menu {
    display: none !important;
  }

  body.slcc-authenticated #discover-search-toolbar {
    position: sticky;
    top: calc(56px + env(safe-area-inset-top));
    z-index: 52;
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
  }

  body.slcc-authenticated #discover-search-toolbar .rounded-2xl {
    border-radius: 1rem;
    box-shadow: 0 14px 24px -20px rgba(15, 23, 42, 0.55);
  }

  body.slcc-authenticated #directory-results-section {
    padding-bottom: calc(6.9rem + env(safe-area-inset-bottom)) !important;
  }

  body.slcc-has-mobile-nav {
    padding-bottom: calc(6.4rem + env(safe-area-inset-bottom));
  }

  body.slcc-has-mobile-nav .slcc-page-menu-band {
    display: none !important;
  }

  body.slcc-has-mobile-nav .slcc-page-menu-band > .md\:hidden {
    margin: 0 !important;
    height: 0;
  }

  body.slcc-has-mobile-nav #slccNavMobile.slcc-shared-nav-shell-mobile {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }

  body.slcc-has-mobile-nav #slccNavMobile .member-top-nav-btn,
  body.slcc-has-mobile-nav #slccNavMobile .member-top-nav-link {
    flex: 0 0 auto;
    width: auto;
    min-width: 98px;
    min-height: 2.2rem;
    border-radius: 0.8rem;
    white-space: nowrap;
    font-size: 8.5px;
    letter-spacing: 0.08em;
    padding: 0.45rem 0.62rem;
  }

  body.slcc-has-mobile-nav #slccNavMobile .member-top-nav-mobile-item {
    min-width: 98px;
  }

  body.slcc-has-mobile-nav #toast-container {
    bottom: calc(env(safe-area-inset-bottom) + 6.4rem);
  }

  body.slcc-has-mobile-nav #jobs-toast {
    bottom: calc(env(safe-area-inset-bottom) + 6.4rem);
  }

  body.slcc-authenticated #home-hero {
    padding-bottom: 5.3rem !important;
  }

  .hero-search-shell {
    width: 100%;
  }

  .hero-search-control {
    padding-right: 0.36rem !important;
  }

  .hero-search-input {
    font-size: 14px;
  }

  .hero-search-btn {
    min-width: 110px;
    padding-left: 0.95rem !important;
    padding-right: 0.95rem !important;
  }

  .profile-card {
    min-height: auto;
    padding: 0.7rem !important;
    gap: 0.58rem !important;
    border-radius: 1rem !important;
  }

  .profile-card--compact {
    min-height: 72px;
    padding: 0.5rem !important;
    gap: 0.4rem !important;
    border-radius: 0.82rem !important;
  }

  .profile-card-avatar {
    width: 52px;
    height: 52px;
  }

  .profile-card--compact .profile-card-avatar {
    width: 40px;
    height: 40px;
  }

  .tier-pill {
    min-width: 54px;
    font-size: 8px;
    padding: 0.22rem 0.45rem;
  }

  .modal-body {
    max-height: calc(100dvh - 184px);
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }

  #applicationModal,
  #profileViewModal,
  #authModal,
  #recoveryModal,
  #resourceModal,
  #demoPaymentModal,
  #messagesModal {
    align-items: flex-start;
    padding-left: 0.55rem;
    padding-right: 0.55rem;
    padding-top: calc(env(safe-area-inset-top) + 0.55rem);
    padding-bottom: calc(env(safe-area-inset-bottom) + 0.55rem);
  }

  #applicationModal > div,
  #profileViewModal > div,
  #authModal > div,
  #recoveryModal > div,
  #resourceModal > div,
  #demoPaymentModal > div,
  #messagesModal > div {
    width: 100%;
    max-height: calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 1rem);
    border-radius: 1.05rem !important;
  }

  #profile-view-content {
    max-height: calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 1rem) !important;
  }

  #applicationForm {
    gap: 0.85rem !important;
  }

  #applicationForm .grid {
    gap: 0.72rem !important;
  }

  #toast-container {
    left: 0.75rem;
    right: 0.75rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom));
  }

  .job-compact-card,
  .broadcast-level-card {
    min-height: auto;
    padding: 0.75rem;
    border-radius: 0.9rem;
  }

  .category-hub-grid {
    grid-template-columns: 1fr;
  }

  .category-hub-card {
    height: 224px;
    border-radius: 1.25rem;
  }

  .category-hub-title {
    font-size: 0.94rem;
    letter-spacing: 0.06em;
  }

  .marquee-track {
    animation-duration: 38s;
  }
}

@media (min-width: 640px) {
  .category-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-hub-card {
    height: 226px;
  }
}

@media (min-width: 1024px) {
  .category-hub-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-hub-card {
    height: 262px;
  }
}

@media (max-width: 640px) {
  .landing-gradient {
    animation-duration: 18s;
  }

  #landing-icons-layer,
  #landing-icons-layer *,
  #landing-view > .absolute i[data-lucide],
  #landing-view [data-landing-decor] {
    display: none !important;
  }
}

.slcc-shared-nav-shell {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.45rem;
  width: min(100%, 1120px);
  margin: 0 auto;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 0.95rem;
  padding: 0.45rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.slcc-shared-nav-shell::-webkit-scrollbar {
  display: none;
}

.slcc-shared-nav-shell-mobile {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: center;
  gap: 0.45rem;
  width: min(100%, 1120px);
  margin: 0 auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 0.95rem;
  padding: 0.45rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.slcc-shared-nav-shell-mobile::-webkit-scrollbar {
  display: none;
}

.member-top-nav-mobile-item {
  flex: 0 0 auto;
  min-width: 126px;
}

.slcc-page-header {
  padding-top: max(12px, calc(env(safe-area-inset-top) + 12px));
}

.slcc-page-header #slccNavDesktop,
.slcc-page-menu-band #slccNavDesktop {
  min-width: 560px;
}

.slcc-page-header .slcc-shared-nav-shell,
.slcc-page-menu-band .slcc-shared-nav-shell {
  justify-content: center;
}

.slcc-page-header .slcc-shared-nav-shell-mobile,
.slcc-page-menu-band .slcc-shared-nav-shell-mobile {
  justify-content: center;
}

.slcc-page-menu-band {
  margin-bottom: 1.55rem;
  padding: 0;
}

.slcc-page-backdrop {
  position: relative;
  isolation: isolate;
}

.slcc-page-backdrop::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  inset: 0 -6vw;
  border-radius: 2.2rem;
  background:
    radial-gradient(circle at 8% 22%, rgba(56, 189, 248, 0.16) 0%, rgba(56, 189, 248, 0) 52%),
    radial-gradient(circle at 92% 78%, rgba(250, 204, 21, 0.2) 0%, rgba(250, 204, 21, 0) 54%),
    linear-gradient(90deg, rgba(241, 245, 249, 0) 0%, rgba(241, 245, 249, 0.82) 18%, rgba(241, 245, 249, 0.82) 82%, rgba(241, 245, 249, 0) 100%);
}

#slccBottomNav {
  display: none;
}

body.about-intro-open {
  overflow: hidden !important;
}

body.about-intro-open #aboutIntroModal {
  z-index: 11060 !important;
  isolation: isolate;
}

body.about-intro-open #slccBottomNav,
body.about-intro-open #category-sticky-bar,
body.about-intro-open #discover-search-toolbar,
body.about-intro-open #home-hero .absolute.bottom-0.left-0.right-0,
body.about-intro-open #slccUpdateBar,
body.about-intro-open #installBtn,
body.about-intro-open #toast-container,
body.about-intro-open #jobs-toast {
  display: none !important;
}

body.slcc-has-mobile-nav {
  padding-bottom: calc(6.4rem + env(safe-area-inset-bottom));
}

body.slcc-has-mobile-nav .slcc-page-menu-band {
  display: none !important;
}

body.slcc-has-mobile-nav #category-sticky-bar {
  display: none !important;
}

body.slcc-has-mobile-nav .slcc-page-menu-band > .md\:hidden {
  display: block !important;
  margin: 0 !important;
  height: 0;
}

body.slcc-has-mobile-nav .slcc-page-menu-band > .hidden.md\:block {
  display: none !important;
}

body.slcc-has-mobile-nav #slccNavMobile {
  display: none !important;
}

body.slcc-has-mobile-nav .slcc-page-header #slccNavMobile {
  display: none !important;
}

body.slcc-has-mobile-nav #slccBottomNav.slcc-shared-nav-shell-mobile {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  z-index: 85;
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  border: 1px solid #dbe4ef;
  border-bottom: 0;
  border-radius: 1rem 1rem 0 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 -16px 28px -22px rgba(15, 23, 42, 0.7);
  padding: 0.4rem 1.75rem calc(env(safe-area-inset-bottom) + 0.4rem);
  scroll-padding-inline: 1.75rem;
}

body.slcc-has-mobile-nav #slccBottomNav .member-top-nav-btn,
body.slcc-has-mobile-nav #slccBottomNav .member-top-nav-link {
  flex: 0 0 auto;
  width: auto;
  min-width: 98px;
  min-height: 2.2rem;
  border-radius: 0.8rem;
  white-space: nowrap;
  font-size: 8.5px;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.62rem;
}

body.slcc-has-mobile-nav #slccBottomNav .member-top-nav-mobile-item {
  min-width: 98px;
}

body.slcc-has-mobile-nav::before,
body.slcc-has-mobile-nav::after {
  position: fixed;
  bottom: calc(env(safe-area-inset-bottom) + 2.15rem);
  z-index: 86;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(255, 255, 255, 0.95);
  color: #334155;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.45rem;
  text-align: center;
  pointer-events: none;
  box-shadow: 0 8px 20px -16px rgba(15, 23, 42, 0.7);
  animation: slccSwipeHintPulse 1.5s ease-in-out infinite;
}

body.slcc-has-mobile-nav::before {
  content: "‹";
  left: 0.45rem;
}

body.slcc-has-mobile-nav::after {
  content: "›";
  right: 0.45rem;
}

@keyframes slccSwipeHintPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

body.about-intro-open::before,
body.about-intro-open::after {
  display: none !important;
}

body.slcc-has-mobile-nav #toast-container {
  bottom: calc(env(safe-area-inset-bottom) + 6.4rem);
}

body.slcc-has-mobile-nav #jobs-toast {
  bottom: calc(env(safe-area-inset-bottom) + 6.4rem);
}

.slcc-unified-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.2);
  border-radius: 1.8rem;
  padding: 1.25rem 1.1rem 1.35rem;
  margin-bottom: 0.85rem;
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 24%, rgba(42, 183, 202, 0.46) 0%, rgba(42, 183, 202, 0.08) 38%, rgba(42, 183, 202, 0) 58%),
    radial-gradient(circle at 84% 76%, rgba(252, 209, 22, 0.5) 0%, rgba(252, 209, 22, 0.12) 34%, rgba(252, 209, 22, 0) 58%),
    linear-gradient(114deg, #1597c6 0%, #63c5da 28%, #f8fafc 40%, #111827 52%, #fcd116 70%, #ffd857 100%);
  background-size: 220% 220%, 220% 220%, 280% 280%;
  animation: landingGradientShift 14s linear infinite;
  box-shadow: 0 24px 34px -28px rgba(15, 23, 42, 0.78);
}

.slcc-unified-hero-match {
  background:
    radial-gradient(circle at 16% 24%, rgba(42, 183, 202, 0.46) 0%, rgba(42, 183, 202, 0.08) 38%, rgba(42, 183, 202, 0) 58%),
    radial-gradient(circle at 84% 76%, rgba(252, 209, 22, 0.5) 0%, rgba(252, 209, 22, 0.12) 34%, rgba(252, 209, 22, 0) 58%),
    linear-gradient(114deg, #1597c6 0%, #63c5da 28%, #f8fafc 40%, #111827 52%, #fcd116 70%, #ffd857 100%) !important;
  background-size: 220% 220%, 220% 220%, 280% 280% !important;
  animation: landingGradientShift 14s linear infinite !important;
}

.slcc-unified-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.03) 40%, rgba(15, 23, 42, 0.2));
  pointer-events: none;
}

.slcc-unified-hero::after {
  content: "";
  position: absolute;
  right: -4.5rem;
  bottom: -4.5rem;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 72%);
  filter: blur(12px);
  pointer-events: none;
}

.slcc-unified-hero-content {
  position: relative;
  z-index: 2;
  max-width: 74rem;
  margin: 0 auto;
}

.slcc-unified-hero-logo {
  width: 5rem;
  height: auto;
  margin-bottom: 0.9rem;
  filter: drop-shadow(0 12px 18px rgba(15, 23, 42, 0.46));
}

.slcc-unified-hero-kicker {
  margin: 0;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(252, 211, 77, 0.95);
}

.slcc-unified-hero-title {
  margin-top: 0.55rem;
  margin-bottom: 0;
  font-size: clamp(1.55rem, 4.1vw, 3.6rem);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
  text-wrap: balance;
}

.slcc-unified-hero-subtitle {
  margin-top: 0.78rem;
  margin-bottom: 0;
  max-width: 72ch;
  font-size: clamp(0.84rem, 1.55vw, 1.05rem);
  line-height: 1.45;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.94);
}

.slcc-unified-hero-pills {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.slcc-unified-hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  padding: 0.3rem 0.66rem;
  font-size: 9px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.96);
  background: rgba(15, 23, 42, 0.32);
  backdrop-filter: blur(6px);
}

.slcc-unified-hero-search {
  margin-top: 1.15rem;
  max-width: 42rem;
}

.slcc-unified-hero-search-control {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(15, 23, 42, 0.24);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 32px -26px rgba(15, 23, 42, 0.88);
  padding: 0.42rem 0.45rem 0.42rem 1rem;
}

.slcc-unified-hero-search-control:focus-within {
  border-color: rgba(255, 209, 0, 0.64);
  box-shadow: 0 24px 34px -24px rgba(15, 23, 42, 0.9), 0 0 0 3px rgba(255, 209, 0, 0.12);
}

.slcc-unified-hero-search-icon {
  width: 1.2rem;
  height: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
  flex: 0 0 auto;
}

.slcc-unified-hero-search-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.slcc-unified-hero-search-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.slcc-unified-hero-search-input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.slcc-unified-hero-search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.4rem;
  padding: 0.95rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: #ffd100;
  color: #0f172a;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 14px 24px -18px rgba(15, 23, 42, 0.9);
}

.slcc-unified-hero-search-button:hover {
  background: #ffe15d;
  transform: translateY(-1px);
}

.slcc-unified-hero-search-hint {
  margin-top: 0.72rem;
  margin-bottom: 0;
  font-size: 0.76rem;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.86);
}

.slcc-unified-ticker {
  margin-bottom: 1.25rem;
}

.slcc-unified-ticker .marquee-container {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: #ffd100;
  box-shadow: 0 18px 30px -28px rgba(15, 23, 42, 0.78);
}

.slcc-unified-ticker .marquee-track {
  gap: 2.5rem;
}

.slcc-unified-ticker .marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0.9rem 0;
  min-width: max-content;
}

.slcc-unified-ticker .marquee-content span {
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0f172a;
  white-space: nowrap;
}

.slcc-unified-hero--about {
  background:
    radial-gradient(circle at 18% 18%, rgba(14, 165, 233, 0.48) 0%, rgba(14, 165, 233, 0.06) 36%, rgba(14, 165, 233, 0) 58%),
    radial-gradient(circle at 84% 68%, rgba(255, 209, 0, 0.38) 0%, rgba(255, 209, 0, 0.08) 34%, rgba(255, 209, 0, 0) 58%),
    linear-gradient(120deg, #03131f 0%, #0f3d56 28%, #12304c 52%, #5f5511 100%);
}

.slcc-unified-hero--resources {
  background:
    radial-gradient(circle at 16% 18%, rgba(34, 197, 94, 0.24) 0%, rgba(34, 197, 94, 0) 34%),
    radial-gradient(circle at 80% 18%, rgba(56, 189, 248, 0.44) 0%, rgba(56, 189, 248, 0.08) 40%, rgba(56, 189, 248, 0) 58%),
    linear-gradient(120deg, #0f3d56 0%, #1a8ab2 26%, #809ca7 52%, #75640d 100%);
}

.slcc-unified-hero--discussion {
  background:
    radial-gradient(circle at 16% 20%, rgba(56, 189, 248, 0.5) 0%, rgba(56, 189, 248, 0.12) 34%, rgba(56, 189, 248, 0) 56%),
    radial-gradient(circle at 84% 74%, rgba(255, 209, 0, 0.42) 0%, rgba(255, 209, 0, 0.1) 34%, rgba(255, 209, 0, 0) 58%),
    linear-gradient(120deg, #1597c6 0%, #7dc8d7 30%, #c0cbc8 50%, #28323f 68%, #9e8317 100%);
}

.slcc-unified-hero--podcast {
  background:
    radial-gradient(circle at 22% 18%, rgba(14, 165, 233, 0.52) 0%, rgba(14, 165, 233, 0.12) 34%, rgba(14, 165, 233, 0) 56%),
    radial-gradient(circle at 84% 74%, rgba(255, 209, 0, 0.34) 0%, rgba(255, 209, 0, 0.08) 34%, rgba(255, 209, 0, 0) 58%),
    linear-gradient(120deg, #0f5b7b 0%, #12a2d3 32%, #8ac4cf 58%, #d7e0e3 100%);
}

.slcc-unified-hero--jobs,
.slcc-unified-hero--opportunities,
.slcc-unified-hero--opportunity-detail {
  background:
    radial-gradient(circle at 14% 24%, rgba(99, 102, 241, 0.3) 0%, rgba(99, 102, 241, 0.08) 34%, rgba(99, 102, 241, 0) 60%),
    radial-gradient(circle at 84% 78%, rgba(255, 209, 0, 0.42) 0%, rgba(255, 209, 0, 0.12) 34%, rgba(255, 209, 0, 0) 60%),
    linear-gradient(124deg, #08172b 0%, #0e3a62 28%, #1d3b5a 52%, #7c6910 100%);
}

.discussion-messages {
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 1rem;
  background: #f8fafc;
  padding: 0.75rem;
  max-height: 420px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.discussion-message {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.discussion-message-mine {
  flex-direction: row;
}

.discussion-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 1px solid rgba(148, 163, 184, 0.35);
  flex: 0 0 auto;
  background: #e2e8f0;
}

.discussion-bubble {
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 0.8rem;
  padding: 0.6rem 0.7rem;
  max-width: min(100%, 860px);
  width: 100%;
}

.discussion-message-mine .discussion-bubble {
  background: #dbeafe;
  border-color: rgba(14, 165, 233, 0.35);
}

.discussion-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.25rem;
}

.discussion-name {
  font-size: 0.67rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #0f172a;
}

.discussion-time {
  font-size: 0.62rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #94a3b8;
}

.discussion-text {
  font-size: 0.86rem;
  line-height: 1.45;
  font-weight: 600;
  color: #1e293b;
  white-space: pre-wrap;
  word-break: break-word;
}

@media (max-width: 480px) {
  #landing-view {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    padding-top: calc(env(safe-area-inset-top) + 1rem) !important;
    padding-bottom: calc(env(safe-area-inset-bottom) + 1rem) !important;
  }

  #landing-view .relative.z-10 {
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  #landing-view h1 {
    font-size: clamp(2.45rem, 12vw, 3.5rem) !important;
    line-height: 1;
    margin-bottom: 0.65rem !important;
  }

  #landing-view p {
    font-size: 0.95rem !important;
    margin-bottom: 1.25rem !important;
    line-height: 1.35;
  }

  #landing-view [data-action="enter-site"] {
    width: min(300px, 92vw);
    justify-content: center;
  }

  #landing-icons-layer,
  #landing-icons-layer *,
  #landing-view > .absolute i[data-lucide],
  #landing-view [data-landing-decor] {
    display: none !important;
  }

  #home-hero h1 {
    font-size: clamp(1.85rem, 8.6vw, 2.5rem) !important;
    line-height: 1.05;
  }

  #home-hero p {
    line-height: 1.38;
  }

  #searchInput {
    font-size: 14px !important;
  }

  [data-action="trigger-search"] {
    font-size: 11px !important;
    padding-left: 0.95rem !important;
    padding-right: 0.95rem !important;
  }

  .member-top-nav-btn,
  .member-top-nav-link {
    min-width: 112px;
    font-size: 8.5px;
    letter-spacing: 0.07em;
    padding-left: 0.55rem;
    padding-right: 0.55rem;
  }

  .hub-menu-btn {
    min-width: 126px;
  }

  .submenu-pill {
    min-width: 112px;
  }

  #featured-grid button,
  #featured-artists-grid button {
    padding: 0.92rem !important;
  }

  .profile-card h3 {
    font-size: 0.72rem;
  }

  .profile-card-brief {
    font-size: 10px;
  }

  .samples-pill,
  .profile-rating-label,
  .reform-chip {
    font-size: 8px;
  }

  #category-hub-section {
    padding-top: 1.2rem !important;
    padding-bottom: 1.3rem !important;
  }

  .topic-week-shell {
    border-radius: 1rem !important;
  }

  .topic-host-panel {
    border-radius: 0.95rem !important;
  }

  .topic-week-reaction {
    padding: 0.72rem;
  }
}

@media (min-width: 768px) {
  .slcc-page-menu-band {
    margin-bottom: 1.8rem;
  }

  .slcc-unified-hero {
    border-radius: 2rem;
    padding: 1.7rem 1.75rem 1.75rem;
    margin-bottom: 0.95rem;
  }

  .slcc-unified-hero-logo {
    width: 6.1rem;
    margin-bottom: 1rem;
  }

  .slcc-unified-hero-subtitle {
    margin-top: 0.92rem;
  }

  .slcc-unified-hero-pills {
    margin-top: 1.15rem;
    gap: 0.55rem;
  }

  .slcc-unified-hero-search {
    margin-top: 1.35rem;
  }

  .slcc-unified-ticker {
    margin-bottom: 1.6rem;
  }
}

@media (max-width: 640px) {
  .slcc-unified-hero-search-control {
    min-height: 3.6rem;
    padding: 0.34rem 0.34rem 0.34rem 0.9rem;
  }

  .slcc-unified-hero-search-input {
    font-size: 0.86rem;
  }

  .slcc-unified-hero-search-button {
    min-width: 6.8rem;
    padding: 0.9rem 1rem;
    letter-spacing: 0.16em;
  }

  .slcc-unified-ticker .marquee-content {
    gap: 1.75rem;
    padding: 0.78rem 0;
  }

  .slcc-unified-ticker .marquee-content span {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }
}

@media (max-width: 900px) {
  .slcc-page-backdrop::before {
    inset: 0 -0.45rem;
    border-radius: 1.2rem;
    background:
      radial-gradient(circle at 8% 20%, rgba(56, 189, 248, 0.12) 0%, rgba(56, 189, 248, 0) 52%),
      radial-gradient(circle at 90% 80%, rgba(250, 204, 21, 0.14) 0%, rgba(250, 204, 21, 0) 54%),
      linear-gradient(180deg, rgba(241, 245, 249, 0.65) 0%, rgba(241, 245, 249, 0.28) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
