.sc-subview {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  width: 100%;
}

.sc-subview.mv-animate-in .mv-frame {
  animation: mvSubviewIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.sc-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.sc-frame::before {
  content: "";
  position: absolute;
  inset: auto;
  width: 720px;
  height: 720px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  background: radial-gradient(
    closest-side,
    rgba(var(--primary-color-rgb), 0.1),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.sc-search-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0;
}

.sc-search-logo {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  display: flex;
  gap: 0.01em;
  user-select: none;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
}

.sc-search-logo-space {
  width: 0.4em;
}

.sc-search-logo-c {
  display: inline-block;
  animation: scLogoPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.sc-search-logo-c-1 {
  color: var(--color-brand-green-2dba3e);
  animation-delay: 0s;
}
.sc-search-logo-c-2 {
  color: var(--color-brand-green-2dba3e);
  animation-delay: 0.04s;
}
.sc-search-logo-c-3 {
  color: var(--color-gray-900);
  animation-delay: 0.12s;
}
.sc-search-logo-c-4 {
  color: var(--color-gray-900);
  animation-delay: 0.16s;
}
.sc-search-logo-c-5 {
  color: var(--color-gray-900);
  animation-delay: 0.2s;
}
.sc-search-logo-c-6 {
  color: var(--color-gray-900);
  animation-delay: 0.24s;
}
.sc-search-logo-c-7 {
  color: var(--color-gray-900);
  animation-delay: 0.28s;
}

.sc-search-logo-c-8 {
  color: var(--color-gray-900);
  animation-delay: 0.32s;
}
.sc-search-logo-c-9 {
  color: var(--color-gray-900);
  animation-delay: 0.34s;
}
.sc-search-logo-c-10 {
  color: var(--color-gray-900);
  animation-delay: 0.38s;
}
.sc-search-logo-c-11 {
  color: var(--color-gray-900);
  animation-delay: 0.42s;
}
.sc-search-logo-c-12 {
  color: var(--color-gray-900);
  animation-delay: 0.46s;
}
.sc-search-logo-c-13 {
  color: var(--color-gray-900);
  animation-delay: 0.5s;
}
.sc-search-logo-c-14 {
  color: var(--color-gray-900);
  animation-delay: 0.54s;
}
.sc-search-logo-c-15 {
  color: var(--color-gray-900);
  animation-delay: 0.58s;
}
.sc-search-logo-c-16 {
  color: var(--color-gray-900);
  animation-delay: 0.62s;
}

@keyframes scLogoPop {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.92);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.sc-search-tagline {
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  color: var(--color-gray-500);
  margin: -0.5rem 0 0.25rem;
  text-align: center;
  font-weight: 400;
  animation: scLogoPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

.sc-search-box {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  background: var(--white-color);
  border: 1.5px solid rgba(var(--black-color-rgb), 0.08);
  border-radius: 999px;
  padding: 0.35rem 0.4rem 0.35rem 1.25rem;
  box-shadow:
    0 2px 10px rgba(var(--black-color-rgb), 0.05),
    0 1px 0 rgba(var(--white-color-rgb), 0.7) inset;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
  animation: scBoxIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@keyframes scBoxIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.sc-search-box:hover {
  box-shadow:
    0 8px 24px rgba(var(--black-color-rgb), 0.06),
    0 0 0 3px rgba(var(--black-color-rgb), 0.02);
}

.sc-search-box:focus-within {
  border-color: rgba(var(--primary-color-rgb), 0.45);
  box-shadow:
    0 10px 28px rgba(var(--primary-color-rgb), 0.12),
    0 0 0 4px rgba(var(--primary-color-rgb), 0.08);
}

.sc-search-box-icon {
  width: 18px;
  height: 18px;
  color: var(--color-gray-400);
  flex-shrink: 0;
  margin-right: 0.75rem;
  transition: color 0.2s ease;
}

.sc-search-box:focus-within .sc-search-box-icon {
  color: var(--color-brand-green-2dba3e);
}

.sc-search-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  color: var(--color-gray-900);
  padding: 0.85rem 0;
}

.sc-search-input::placeholder {
  color: var(--color-gray-400);
}

.sc-search-clear {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--color-gray-500);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 0.25rem;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.sc-search-clear:hover {
  background: rgba(var(--black-color-rgb), 0.06);
  color: var(--color-gray-900);
}

.sc-search-box--has-value .sc-search-clear {
  display: inline-flex;
}

.sc-search-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black-color);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-hover));
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  box-shadow:
    0 6px 16px -6px rgba(var(--primary-color-rgb), 0.55),
    0 1px 0 rgba(var(--white-color-rgb), 0.4) inset;
  transition: all 0.2s ease;
}

.sc-search-submit:hover {
  background: linear-gradient(135deg, var(--color-brand-green-56e066), var(--color-brand-green-45ce55));
  box-shadow:
    0 10px 22px -6px rgba(var(--primary-color-rgb), 0.65),
    0 1px 0 rgba(var(--white-color-rgb), 0.4) inset;
  transform: translateY(-1px);
}

.sc-search-submit:active {
  transform: translateY(0);
}

.sc-search-submit i {
  transition: transform 0.2s ease;
}

.sc-search-submit:hover i {
  transform: translateX(2px);
}

@media (max-width: 520px) {
  .sc-search-submit-label {
    display: none;
  }
  .sc-search-submit {
    padding: 0.6rem 0.75rem;
  }
}

.sc-search-hints {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.5rem;
  animation: scLogoPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.sc-search-hint-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  color: var(--color-gray-400);
  margin-right: 0.25rem;
  letter-spacing: 0.01em;
}

.sc-search-chip {
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--black-color-rgb), 0.06);
  background: var(--white-color);
  color: var(--color-gray-500);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(var(--black-color-rgb), 0.03);
}

.sc-search-chip:hover {
  background: rgba(var(--primary-color-rgb), 0.08);
  border-color: rgba(var(--primary-color-rgb), 0.3);
  color: var(--color-brand-green-2dba3e);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px -4px rgba(var(--primary-color-rgb), 0.25);
}

.sc-subview--has-results > .sc-frame,
.sc-subview--has-results > .sc-adv-frame {
  display: none;
}

.sc-results-host {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 0.25rem 0 0;
}

.sc-results-frame {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  animation: scResultsFrameIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes scResultsFrameIn {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.mv-frame-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sc-query-chip {
  display: inline-block;
  padding: 0.08rem 0.45rem;
  margin-left: 0.15rem;
  border-radius: 0.4rem;
  background: rgba(var(--primary-color-rgb), 0.12);
  color: var(--color-brand-green-ink-1b);
  font-weight: 600;
  font-size: 0.8rem;
}

.sc-new-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-gray-700);
  background: var(--white-color);
  border: 1px solid rgba(var(--black-color-rgb), 0.08);
  border-radius: 0.55rem;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  transition: all 0.18s ease;
  box-shadow: 0 1px 2px rgba(var(--black-color-rgb), 0.04);
}

.sc-new-search-btn:hover {
  border-color: rgba(var(--primary-color-rgb), 0.35);
  color: var(--color-brand-green-ink-1b);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -6px rgba(var(--primary-color-rgb), 0.3);
}

.sc-edit-prompt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.4rem;
  vertical-align: middle;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-gray-700);
  background: var(--white-color);
  border: 1px solid rgba(var(--black-color-rgb), 0.08);
  border-radius: 0.4rem;
  padding: 0.15rem 0.45rem;
  cursor: pointer;
  transition: all 0.18s ease;
}

.sc-edit-prompt-btn:hover {
  border-color: rgba(var(--primary-color-rgb), 0.35);
  color: var(--color-brand-green-ink-1b);
}

.sc-cand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1rem;
  padding: 0.25rem 0.25rem 0.75rem 0.25rem;
  overflow-x: hidden;
  overflow-y: auto;
  flex: 1 1 0;
  min-height: 0;
  scroll-snap-type: y proximity;
  scrollbar-width: thin;
}

.sc-cand-grid::-webkit-scrollbar {
  width: 8px;
}
.sc-cand-grid::-webkit-scrollbar-thumb {
  background: rgba(var(--black-color-rgb), 0.12);
  border-radius: 999px;
}
.sc-cand-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--black-color-rgb), 0.22);
}
.sc-cand-grid::-webkit-scrollbar-track {
  background: transparent;
}

.sc-cand-flip {
  position: relative;
  width: 100%;
  perspective: 2400px;
  scroll-snap-align: start;
  isolation: isolate;
  opacity: 0;
  transform: translateY(14px);
  animation: scCandCardIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

@keyframes scCandCardIn {
  0% {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.sc-cand-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.sc-cand-flip-inner.sc-cand-flipped {
  transform: rotateY(180deg);
}

.sc-cand-face--back {
  pointer-events: none;
}
.sc-cand-flip-inner.sc-cand-flipped .sc-cand-face--front {
  pointer-events: none;
}
.sc-cand-flip-inner.sc-cand-flipped .sc-cand-face--back {
  pointer-events: auto;
}

.sc-cand-card--leaving {
  opacity: 0;
  transform: translateY(-6px) scale(0.96);
  pointer-events: none;
}

.sc-cand-card {
  background: var(--white-color);
  border: 1px solid rgba(var(--black-color-rgb), 0.08);
  border-radius: 1.1rem;
  box-shadow: 0 1px 2px rgba(var(--black-color-rgb), 0.03);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.sc-cand-face {
  display: flex;
  flex-direction: column;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  transform: translateZ(0.01px);
  -webkit-font-smoothing: subpixel-antialiased;
}

.sc-cand-face--back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg) translateZ(0.01px);
}

.sc-cand-face--front:hover {
  border-color: rgba(var(--primary-color-rgb), 0.4);
  box-shadow:
    0 18px 38px -16px rgba(var(--primary-color-rgb), 0.28),
    0 2px 6px rgba(var(--black-color-rgb), 0.04);
}

.sc-cand-face--front {
  position: relative;
  height: 100%;
  padding: 0.75rem 1rem 0.85rem;
  gap: 0.7rem;
}

.sc-cand-top-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  min-height: 34px;
  flex-shrink: 0;
}

.sc-cand-top-left {
  display: flex;
  min-width: 0;
  flex: 1;
}

.sc-cand-saved-on {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  max-width: 100%;
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-brand-green-ink-1b);
  background: rgba(var(--primary-color-rgb), 0.12);
  border: 1px solid rgba(var(--primary-color-rgb), 0.3);
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
}

.sc-cand-saved-on span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-cand-bookmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 0.55rem;
  border: 1px solid rgba(var(--black-color-rgb), 0.08);
  background: var(--white-color);
  color: var(--color-gray-500);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 2px rgba(var(--black-color-rgb), 0.03);
}

.sc-cand-bookmark:hover {
  border-color: rgba(var(--primary-color-rgb), 0.4);
  color: var(--color-brand-green-ink-1b);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -6px rgba(var(--primary-color-rgb), 0.3);
}

.sc-cand-bookmark--saved {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-hover));
  border-color: transparent;
  color: var(--black-color);
  box-shadow:
    0 4px 10px -4px rgba(var(--primary-color-rgb), 0.5),
    0 1px 0 rgba(var(--white-color-rgb), 0.35) inset;
}

.sc-cand-bookmark--saved:hover {
  color: var(--black-color);
  background: linear-gradient(135deg, var(--color-brand-green-56e066), var(--color-brand-green-45ce55));
  transform: translateY(-1px);
  box-shadow: 0 8px 16px -5px rgba(var(--primary-color-rgb), 0.55);
}

.sc-cand-bookmark--saved svg {
  fill: currentColor;
}

.sc-cand-bookmark--remove:hover {
  background: linear-gradient(135deg, var(--danger-color-lighter), var(--danger-color-light));
  color: var(--white-color);
  border-color: transparent;
  box-shadow: 0 8px 16px -5px rgba(var(--danger-color-light-rgb), 0.5);
}

.sc-cand-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.3rem;
  flex-shrink: 0;
  padding-bottom: 0.15rem;
}

.sc-cand-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-900);
  box-shadow:
    0 4px 14px rgba(var(--black-color-rgb), 0.1),
    0 0 0 4px var(--white-color),
    0 0 0 5px rgba(var(--black-color-rgb), 0.05);
  margin-bottom: 0.45rem;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s ease;
}

.sc-cand-face--front:hover .sc-cand-avatar {
  transform: translateY(-1px) scale(1.03);
  box-shadow:
    0 8px 22px rgba(var(--primary-color-rgb), 0.18),
    0 0 0 4px var(--white-color),
    0 0 0 5px rgba(var(--primary-color-rgb), 0.25);
}

.sc-cand-avatar-text {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sc-cand-name {
  font-family: "Outfit", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--color-gray-900);
  margin: 0;
  line-height: 1.25;
}

.sc-cand-email {
  font-family: "Outfit", sans-serif;
  font-size: 0.76rem;
  color: var(--color-gray-500);
  margin: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sc-cand-socials {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

.sc-cand-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 0.45rem;
  background: var(--color-zinc-100);
  color: var(--color-gray-500);
  border: 1px solid rgba(var(--black-color-rgb), 0.05);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.sc-cand-social:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px -6px rgba(var(--black-color-rgb), 0.2);
}

.sc-cand-social--github:hover {
  background: var(--github-color);
  color: var(--white-color);
  border-color: var(--github-color);
}
.sc-cand-social--twitter:hover {
  background: var(--color-neutral-ink);
  color: var(--white-color);
  border-color: var(--color-neutral-ink);
}
.sc-cand-social--portfolio:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-hover));
  color: var(--black-color);
  border-color: transparent;
}

.sc-cand-scroll {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.sc-cand-divider {
  height: 1px;
  background: rgba(var(--black-color-rgb), 0.06);
}

.sc-cand-section {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.sc-cand-section-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-400);
}

.sc-cand-exp {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.55rem;
}

.sc-cand-exp-row {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  font-family: "Outfit", sans-serif;
  line-height: 1.3;
}

.sc-cand-exp-key {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-400);
}

.sc-cand-exp-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gray-900);
}

.sc-cand-exp-row--empty .sc-cand-exp-val {
  color: var(--color-gray-400);
  font-style: italic;
  font-weight: 500;
}

.sc-cand-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
}

.sc-cand-skill {
  display: inline-flex;
  align-items: center;
  padding: 0.26rem 0.6rem;
  border-radius: 0.5rem;
  background: rgba(var(--black-color-rgb), 0.04);
  border: 1px solid rgba(var(--black-color-rgb), 0.06);
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-gray-700);
  line-height: 1;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.sc-cand-face--front:hover .sc-cand-skill:not(.sc-cand-skill--more):not(.sc-cand-skill--empty) {
  background: rgba(var(--black-color-rgb), 0.05);
  border-color: rgba(var(--black-color-rgb), 0.09);
}

.sc-cand-skill--more {
  background: rgba(var(--primary-color-rgb), 0.12);
  border-color: rgba(var(--primary-color-rgb), 0.3);
  color: var(--color-brand-green-ink-1b);
  font-weight: 600;
}

.sc-cand-skill--empty {
  background: transparent;
  border: 1px dashed rgba(var(--black-color-rgb), 0.1);
  color: var(--color-gray-400);
  font-style: italic;
}

.sc-cand-actions {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(var(--black-color-rgb), 0.05);
  background: var(--white-color);
}

.sc-cand-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.55rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.18s ease;
}

.sc-cand-btn-icon {
  font-size: 15px;
  flex-shrink: 0;
}

.sc-cand-btn--msg {
  background: var(--white-color);
  border-color: rgba(var(--black-color-rgb), 0.08);
  color: var(--color-gray-700);
}

.v-action-btn.sc-cand-btn--msg-has,
.sc-cand-btn--msg-has {
  font-weight: 400;
  color: var(--color-gray-600);
}

.v-action-btn.sc-cand-btn--msg-empty,
.sc-cand-btn--msg-empty {
  font-weight: 700;
  color: var(--color-gray-900);
}

.sc-cand-btn--msg:hover {
  border-color: rgba(var(--black-color-rgb), 0.18);
  background: var(--color-zinc-50);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px -4px rgba(var(--black-color-rgb), 0.1);
}

.v-action-btn.sc-cand-btn--profile,
.sc-cand-btn--profile {
  background: linear-gradient(
    135deg,
    rgba(var(--primary-color-rgb), 0.14),
    rgba(var(--primary-color-hover-rgb), 0.18)
  );
  border-color: rgba(var(--primary-color-rgb), 0.4);
  color: var(--color-brand-green-ink-1b);
  justify-content: space-between;
  font-weight: 400;
}

.sc-cand-btn--profile span {
  flex: 1;
  text-align: left;
}

.sc-cand-btn--profile:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-hover));
  border-color: transparent;
  color: var(--black-color);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -10px rgba(var(--primary-color-rgb), 0.55);
}

.sc-cand-face--back {
  padding: 0;
}

.sc-cand-chat-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid rgba(var(--black-color-rgb), 0.06);
  background: var(--white-color);
  flex-shrink: 0;
}

.sc-cand-chat-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  border: 1px solid rgba(var(--black-color-rgb), 0.08);
  background: var(--white-color);
  color: var(--color-gray-700);
  cursor: pointer;
  transition: all 0.18s ease;
  flex-shrink: 0;
}

.sc-cand-chat-back iconify-icon {
  font-size: 18px;
}

.sc-cand-chat-back:hover {
  background: rgba(var(--primary-color-rgb), 0.1);
  border-color: rgba(var(--primary-color-rgb), 0.35);
  color: var(--color-brand-green-ink-1b);
  transform: translateX(-1px);
}

.sc-cand-chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gray-900);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sc-cand-chat-meta {
  min-width: 0;
  flex: 1;
}

.sc-cand-chat-archive {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
  border: 1px solid rgba(var(--black-color-rgb), 0.08);
  background: var(--white-color);
  color: var(--color-gray-700);
  cursor: pointer;
  transition: all 0.18s ease;
  flex-shrink: 0;
}
.sc-cand-chat-archive iconify-icon {
  font-size: 16px;
}
.sc-cand-chat-archive:hover {
  background: rgba(var(--black-color-rgb), 0.04);
  border-color: rgba(var(--black-color-rgb), 0.14);
  color: var(--color-gray-900);
}
.sc-cand-chat-archive.is-on {
  background: rgba(var(--color-slate-400-rgb), 0.15);
  border-color: rgba(var(--color-slate-400-rgb), 0.35);
  color: var(--color-slate-600);
}

.sc-cand-chat-name {
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-gray-900);
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sc-cand-chat-sub {
  font-family: "Outfit", sans-serif;
  font-size: 0.68rem;
  color: var(--color-gray-400);
  margin-top: 1px;
}

.sc-cand-chat-body {
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.85rem;
  background: var(--color-zinc-50);
}

.sc-cand-chat-body::-webkit-scrollbar {
  width: 6px;
}
.sc-cand-chat-body::-webkit-scrollbar-thumb {
  background: rgba(var(--black-color-rgb), 0.1);
  border-radius: 999px;
}

.sc-cand-chat-empty {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
  padding: 1rem 0.5rem;
  color: var(--color-gray-400);
}

.sc-cand-chat-empty-icon iconify-icon {
  font-size: 28px;
  color: rgba(var(--primary-color-rgb), 0.65);
}

.sc-cand-chat-empty-title {
  font-family: "Outfit", sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-gray-700);
}

.sc-cand-chat-empty-sub {
  font-family: "Outfit", sans-serif;
  font-size: 0.74rem;
  color: var(--color-gray-400);
  line-height: 1.4;
  max-width: 240px;
}

.sc-cand-msg {
  display: flex;
  max-width: 85%;
  opacity: 0;
  transform: translateY(4px);
  animation: scMsgIn 0.3s ease forwards;
}

@keyframes scMsgIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sc-cand-msg--in {
  align-self: flex-start;
}
.sc-cand-msg--out {
  align-self: flex-end;
}

.sc-cand-msg-bubble {
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  line-height: 1.4;
  padding: 0.5rem 0.7rem;
  border-radius: 0.85rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.sc-cand-msg--in .sc-cand-msg-bubble {
  background: var(--white-color);
  color: var(--color-gray-900);
  border: 1px solid rgba(var(--black-color-rgb), 0.07);
  border-bottom-left-radius: 0.25rem;
}

.sc-cand-msg--out .sc-cand-msg-bubble {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-hover));
  color: var(--black-color);
  border-bottom-right-radius: 0.25rem;
  box-shadow: 0 4px 10px -4px rgba(var(--primary-color-rgb), 0.45);
}

.sc-cand-chat-composer {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  padding: 0.55rem 0.7rem 0.7rem;
  border-top: 1px solid rgba(var(--black-color-rgb), 0.06);
  background: var(--white-color);
  flex-shrink: 0;
}

.sc-cand-chat-input {
  flex: 1;
  min-width: 0;
  max-height: 90px;
  min-height: 36px;
  padding: 0.5rem 0.6rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(var(--black-color-rgb), 0.08);
  background: var(--color-zinc-50);
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  color: var(--color-gray-900);
  resize: none;
  outline: none;
  line-height: 1.35;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.sc-cand-chat-input:focus {
  border-color: rgba(var(--primary-color-rgb), 0.45);
  background: var(--white-color);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.12);
}

.sc-cand-chat-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 0.55rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-hover));
  color: var(--black-color);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.18s ease;
  box-shadow: 0 4px 10px -4px rgba(var(--primary-color-rgb), 0.5);
}

.sc-cand-chat-send:hover {
  background: linear-gradient(135deg, var(--color-brand-green-56e066), var(--color-brand-green-45ce55));
  transform: translateY(-1px);
  box-shadow: 0 8px 16px -5px rgba(var(--primary-color-rgb), 0.55);
}

.sc-cand-chat-send iconify-icon {
  font-size: 17px;
}

.sc-cand-msg-request {
  gap: 0.6rem;
  padding: 1rem;
  text-align: center;
}

.sc-cand-request-btn {
  all: unset;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 0.6rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-hover));
  color: var(--black-color);
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s ease;
  box-shadow: 0 4px 10px -3px rgba(var(--primary-color-rgb), 0.45);
}
.sc-cand-request-btn:hover {
  background: linear-gradient(135deg, var(--color-brand-green-56e066), var(--color-brand-green-45ce55));
  transform: translateY(-1px);
  box-shadow: 0 8px 16px -5px rgba(var(--primary-color-rgb), 0.55);
}
.sc-cand-request-btn iconify-icon {
  font-size: 15px;
}

.sc-cand-request-sent-icon iconify-icon {
  color: var(--success-color-dark);
}

.sc-cand-limit-meter {
  width: 180px;
  max-width: 80%;
  height: 4px;
  margin-top: 0.85rem;
  background: rgba(var(--black-color-rgb), 0.06);
  border-radius: 999px;
  overflow: hidden;
}
.sc-cand-limit-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-color-hover));
  border-radius: inherit;
  transition: width 0.3s ease;
}
.sc-cand-limit-meter-fill--full {
  background: linear-gradient(90deg, var(--primary-color), var(--primary-color-dark));
}
.sc-cand-limit-count {
  margin-top: 0.3rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--color-gray-400);
  letter-spacing: 0.01em;
}
.sc-cand-limit-count--hit {
  color: var(--primary-color-dark);
  font-weight: 600;
}

.sc-cand-msg-limit .sc-cand-limit-icon iconify-icon {
  color: var(--primary-color);
  font-size: 30px;
  filter: drop-shadow(0 3px 6px rgba(var(--primary-color-rgb), 0.25));
}
.sc-cand-msg-limit .sc-cand-chat-empty-title {
  color: var(--color-gray-800);
  letter-spacing: -0.005em;
}
.sc-cand-msg-limit .sc-cand-chat-empty-sub strong {
  color: var(--color-gray-900);
  font-weight: 650;
}

/* Search/messages Upgrade button lives as .v-action-btn--upgrade
   — see components/ui/ActionButton.css */

.v-modal-body.sc-up-body {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  padding: 1.25rem;
}

.sc-up-hero {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-color-rgb), 0.10),
    rgba(var(--primary-color-rgb), 0.05)
  );
  border: 1px solid rgba(var(--primary-color-rgb), 0.22);
}
.sc-up-hero-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-hover));
  color: var(--color-brand-green-ink-3d);
  box-shadow: 0 6px 14px -6px rgba(var(--primary-color-rgb), 0.55);
}
.sc-up-hero-icon iconify-icon { font-size: 20px; }
.sc-up-hero-text { min-width: 0; }
.sc-up-hero-title {
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-gray-800);
  letter-spacing: -0.005em;
}
.sc-up-hero-desc {
  margin-top: 0.2rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--color-gray-600);
}

.sc-up-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
@media (max-width: 560px) {
  .sc-up-plans { grid-template-columns: 1fr; }
}

.sc-up-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.1rem 1rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(var(--black-color-rgb), 0.08);
  background: var(--white-color);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.sc-up-plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -14px rgba(var(--black-color-rgb), 0.18);
}
.sc-up-plan--pro {
  border-color: rgba(var(--primary-color-rgb), 0.45);
  box-shadow: 0 12px 30px -16px rgba(var(--primary-color-rgb), 0.45);
}
.sc-up-plan--pro::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    160deg,
    rgba(var(--primary-color-rgb), 0.08),
    transparent 55%
  );
  pointer-events: none;
}

.sc-up-plan-badge {
  align-self: flex-start;
  font-family: "Outfit", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  color: var(--black-color);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-hover));
}
.sc-up-plan-badge--ent {
  color: var(--color-gray-800);
  background: rgba(var(--black-color-rgb), 0.06);
}

.sc-up-plan-name {
  font-family: "Outfit", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-gray-900);
  letter-spacing: -0.01em;
}

.sc-up-plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: -0.15rem;
}
.sc-up-plan-price-num {
  font-family: "Outfit", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--color-gray-900);
  letter-spacing: -0.02em;
}
.sc-up-plan-price-unit {
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  color: var(--color-gray-500);
  font-weight: 500;
}

.sc-up-plan-tag {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  color: var(--color-gray-500);
  margin-bottom: 0.35rem;
}

.sc-up-plan-list {
  list-style: none;
  padding: 0;
  margin: 0.1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.sc-up-plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--color-gray-700);
}
.sc-up-plan-list li iconify-icon {
  flex-shrink: 0;
  font-size: 15px;
  margin-top: 1px;
  color: var(--success-color-dark);
}
.sc-up-plan--ent .sc-up-plan-list li iconify-icon {
  color: var(--color-gray-600);
}
.sc-up-plan-list strong {
  color: var(--color-gray-900);
  font-weight: 650;
}

.sc-up-plan-cta {
  all: unset;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 1rem;
  border-radius: 0.6rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: center;
}
.sc-up-plan-cta iconify-icon { font-size: 15px; }

.sc-up-plan-cta--primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-hover));
  color: var(--black-color);
  box-shadow:
    0 6px 14px -4px rgba(var(--primary-color-rgb), 0.55),
    0 1px 0 rgba(var(--white-color-rgb), 0.4) inset;
}
.sc-up-plan-cta--primary:hover {
  background: linear-gradient(135deg, var(--color-brand-green-56e066), var(--color-brand-green-45ce55));
  transform: translateY(-1px);
  box-shadow:
    0 10px 20px -6px rgba(var(--primary-color-rgb), 0.65),
    0 1px 0 rgba(var(--white-color-rgb), 0.4) inset;
}

.sc-up-plan-cta--ghost {
  background: var(--white-color);
  color: var(--color-gray-900);
  border: 1px solid rgba(var(--black-color-rgb), 0.12);
}
.sc-up-plan-cta--ghost:hover {
  background: var(--color-gray-50);
  border-color: rgba(var(--black-color-rgb), 0.2);
  transform: translateY(-1px);
}

.sc-up-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding-top: 0.25rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  color: var(--color-gray-400);
}
.sc-up-foot iconify-icon { font-size: 14px; }

.sc-up-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  padding: 0.25rem 0.25rem 0;
  animation: scUpSuccessIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes scUpSuccessIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.sc-up-success-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
  max-width: 460px;
}

.sc-up-success-ring {
  position: relative;
  width: 4.25rem;
  height: 4.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.15rem;
}

.sc-up-success-ring-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(var(--primary-color-rgb), 0.35) 0%,
    rgba(var(--primary-color-rgb), 0) 70%
  );
  animation: scUpRingPulse 2.4s ease-out infinite;
}

@keyframes scUpRingPulse {
  0% { transform: scale(0.85); opacity: 0.9; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

.sc-up-success-ring-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-color-hover)
  );
  color: var(--color-brand-green-ink-3d);
  box-shadow:
    0 16px 30px -14px rgba(var(--primary-color-rgb), 0.6),
    0 1px 0 rgba(var(--white-color-rgb), 0.5) inset;
}

.sc-up-success-ring-inner iconify-icon {
  font-size: 30px;
}

.sc-up-success-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  font-family: "Outfit", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand-green-ink-3d);
  background: rgba(var(--primary-color-rgb), 0.18);
  border: 1px solid rgba(var(--primary-color-rgb), 0.45);
}

.sc-up-success-eyebrow iconify-icon { font-size: 13px; }

.sc-up-success-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gray-900);
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.sc-up-success-sub {
  font-family: "Outfit", sans-serif;
  font-size: 0.83rem;
  line-height: 1.5;
  color: var(--color-gray-600);
}

.sc-up-success-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  width: 100%;
}

@media (max-width: 560px) {
  .sc-up-success-grid { grid-template-columns: 1fr; }
}

.sc-up-success-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 0.9rem;
  border-radius: 0.75rem;
  background: linear-gradient(
    180deg,
    rgba(var(--primary-color-rgb), 0.07),
    rgba(var(--primary-color-rgb), 0.02)
  );
  border: 1px solid rgba(var(--primary-color-rgb), 0.28);
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}

.sc-up-success-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -14px rgba(var(--primary-color-rgb), 0.45);
}

.sc-up-success-card-ico {
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-color-hover)
  );
  color: var(--color-brand-green-ink-3d);
  box-shadow: 0 6px 14px -6px rgba(var(--primary-color-rgb), 0.5);
}

.sc-up-success-card-ico iconify-icon { font-size: 17px; }

.sc-up-success-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
  flex: 1;
}

.sc-up-success-card-title {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gray-900);
  letter-spacing: -0.005em;
}

.sc-up-success-card-sub {
  font-family: "Outfit", sans-serif;
  font-size: 0.74rem;
  line-height: 1.45;
  color: var(--color-gray-600);
}

.sc-up-success-card-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--success-color-dark);
}

.sc-up-success-card-check iconify-icon { font-size: 16px; }

.sc-up-success-actions {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 0.15rem;
}

.sc-up-success-cta {
  min-width: 12rem;
  padding: 0.7rem 1.25rem;
}

.sc-req-body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.sc-req-intro {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem;
  background: rgba(var(--black-color-rgb), 0.025);
  border: 1px solid rgba(var(--black-color-rgb), 0.07);
  border-radius: 0.65rem;
}
.sc-req-avatar {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white-color);
  letter-spacing: 0.02em;
}
.sc-req-intro-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.sc-req-intro-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-color);
}
.sc-req-intro-role {
  font-size: 0.78rem;
  color: var(--color-gray-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-req-section {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.sc-req-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-gray-500);
  display: block;
}
.sc-req-optional {
  font-weight: 400;
  color: var(--color-gray-400);
  text-transform: none;
  letter-spacing: 0;
}

.sc-req-reasons {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.sc-req-job-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-height: 11rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--black-color-rgb), 0.15) transparent;
}

.sc-req-reason {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(var(--black-color-rgb), 0.08);
  border-radius: 0.55rem;
  cursor: pointer;
  transition: all 0.18s ease;
  user-select: none;
}
.sc-req-reason:hover {
  border-color: rgba(var(--primary-color-rgb), 0.45);
  background: rgba(var(--primary-color-rgb), 0.04);
}
.sc-req-reason input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.sc-req-radio-dot {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  border: 2px solid rgba(var(--black-color-rgb), 0.2);
  flex-shrink: 0;
  position: relative;
  transition: all 0.18s ease;
}
.sc-req-reason.is-selected .sc-req-radio-dot {
  border-color: var(--success-color);
}
.sc-req-reason.is-selected .sc-req-radio-dot::after {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--success-color);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sc-req-reason.is-selected {
  border-color: rgba(var(--success-color-rgb), 0.5);
  background: rgba(var(--primary-color-rgb), 0.06);
}
.sc-req-reason-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-color);
  min-width: 0;
}
.sc-req-job-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sc-req-job-meta {
  font-size: 0.75rem;
  color: var(--color-gray-400);
}
.sc-req-no-jobs {
  font-size: 0.85rem;
  color: var(--color-gray-400);
  padding: 0.75rem 0.85rem;
  border: 1px dashed rgba(var(--black-color-rgb), 0.12);
  border-radius: 0.55rem;
  text-align: center;
}

.sc-req-textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(var(--black-color-rgb), 0.1);
  border-radius: 0.5rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-color);
  background: var(--white-color);
  resize: vertical;
  min-height: 80px;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
  box-sizing: border-box;
  outline: none;
}
.sc-req-textarea:focus {
  border-color: rgba(var(--primary-color-rgb), 0.6);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.18);
}
.sc-req-textarea::placeholder {
  color: var(--color-gray-400);
}

.sc-ai-wrap {
  gap: 1rem;
}

.sc-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray-500);
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  animation: scLogoPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) -0.1s both;
}

.sc-ai-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-brand-green-2dba3e);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.22);
  animation: scSideDotPulse 2.2s ease-in-out infinite;
}

.sc-ai-prompt {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white-color);
  border: 1.5px solid rgba(var(--black-color-rgb), 0.08);
  border-radius: 1rem;
  padding: 0.9rem 1rem 0.65rem;
  box-shadow:
    0 6px 20px -10px rgba(var(--black-color-rgb), 0.08),
    0 1px 0 rgba(var(--white-color-rgb), 0.7) inset;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  animation: scBoxIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.sc-ai-prompt:hover {
  box-shadow: 0 10px 24px -10px rgba(var(--black-color-rgb), 0.1);
}

.sc-ai-prompt:focus-within {
  border-color: rgba(var(--primary-color-rgb), 0.5);
  box-shadow:
    0 14px 36px -12px rgba(var(--primary-color-rgb), 0.22),
    0 0 0 4px rgba(var(--primary-color-rgb), 0.08);
}

.sc-ai-prompt-input {
  width: 100%;
  min-height: 4.6rem;
  resize: none;
  background: transparent;
  border: none;
  outline: none;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-gray-900);
  padding: 0.2rem 0 0.5rem;
}

.sc-ai-prompt-input::placeholder {
  color: var(--color-gray-400);
}

.sc-ai-prompt-foot {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(var(--black-color-rgb), 0.05);
}

.sc-ai-prompt-clear {
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-gray-500);
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  padding: 0.32rem 0.4rem;
  cursor: pointer;
  transition: color 0.18s ease;
}

.sc-ai-prompt-clear:hover {
  color: var(--color-gray-900);
}

.sc-ai-prompt-hint {
  margin-left: auto;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  color: var(--color-gray-400);
}

.sc-ai-kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  margin: 0 2px;
  border-radius: 4px;
  background: var(--color-gray-100);
  border: 1px solid rgba(var(--black-color-rgb), 0.08);
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  color: var(--color-gray-500);
  font-weight: 600;
}

.sc-ai-prompt-send {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black-color);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-hover));
  border: none;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  box-shadow:
    0 6px 16px -8px rgba(var(--primary-color-rgb), 0.55),
    0 1px 0 rgba(var(--white-color-rgb), 0.4) inset;
  transition: all 0.2s ease;
}

.sc-ai-prompt-send:hover {
  background: linear-gradient(135deg, var(--color-brand-green-56e066), var(--color-brand-green-45ce55));
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -8px rgba(var(--primary-color-rgb), 0.65);
}

.sc-ai-prompt-send:active {
  transform: translateY(0);
}

.sc-ai-prompt:not(.sc-ai-prompt--has-value) .sc-ai-prompt-send {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}

.sc-ai-prompt:not(.sc-ai-prompt--has-value) .sc-ai-prompt-send:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-hover));
  transform: none;
  box-shadow: none;
}

@media (max-width: 520px) {
  .sc-ai-prompt-hint {
    display: none;
  }
}

.sc-search-hints {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
  animation: scLogoPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.sc-search-hint-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-gray-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sc-search-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.sc-adv-frame {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  background:
    radial-gradient(
      900px 320px at 50% 0%,
      rgba(var(--primary-color-rgb), 0.08),
      transparent 70%
    ),
    var(--white-color);
}

.sc-adv-empty {
  max-width: 420px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: scLogoPop 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

.sc-adv-empty-icon {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-color-rgb), 0.18),
    rgba(var(--primary-color-rgb), 0.06)
  );
  border: 1px solid rgba(var(--primary-color-rgb), 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-green-2dba3e);
  margin-bottom: 0.5rem;
  box-shadow: 0 12px 28px -12px rgba(var(--primary-color-rgb), 0.45);
}

.sc-adv-empty-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin: 0;
  letter-spacing: -0.02em;
}

.sc-adv-empty-desc {
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  color: var(--color-gray-500);
  line-height: 1.5;
  margin: 0;
}

.sc-adv-empty-desc strong {
  color: var(--color-brand-green-ink-1b);
  font-weight: 700;
}

.sc-flt-frame {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(
      1100px 380px at 50% -180px,
      rgba(var(--primary-color-rgb), 0.1),
      transparent 70%
    ),
    linear-gradient(180deg, var(--white-color) 0%, var(--background-color-warm) 100%);
}

.sc-flt-frame-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.6rem 1.15rem;
  border-bottom: 1px solid rgba(var(--black-color-rgb), 0.06);
  flex-shrink: 0;
  position: relative;
}

.sc-flt-frame-head::after {
  content: "";
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--primary-color-rgb), 0.35),
    transparent
  );
  pointer-events: none;
}

.sc-flt-frame-title {
  text-align: center;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.sc-flt-frame-title h2 {
  font-family: "Outfit", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin: 0;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.sc-flt-frame-title h2 .sc-flt-title-spark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-hover));
  color: var(--black-color);
  box-shadow: 0 6px 14px -6px rgba(var(--primary-color-rgb), 0.65);
}

.sc-flt-frame-title p {
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  color: var(--color-gray-500);
  margin: 0;
  font-weight: 400;
}

.sc-flt-frame-spacer {
  min-width: 70px;
  display: flex;
  justify-content: flex-end;
}

.sc-flt-head-count {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 650;
  color: var(--color-brand-green-ink-1b);
  background: rgba(var(--primary-color-rgb), 0.14);
  border: 1px solid rgba(var(--primary-color-rgb), 0.3);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  white-space: nowrap;
}

.sc-flt-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-gray-700);
  background: var(--white-color);
  border: 1px solid rgba(var(--black-color-rgb), 0.08);
  border-radius: 999px;
  padding: 0.5rem 0.95rem 0.5rem 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(var(--black-color-rgb), 0.04);
}

.sc-flt-back:hover {
  border-color: rgba(var(--primary-color-rgb), 0.4);
  color: var(--color-brand-green-ink-1b);
  transform: translateX(-2px);
  box-shadow: 0 8px 16px -6px rgba(var(--primary-color-rgb), 0.35);
  background: rgba(var(--primary-color-rgb), 0.05);
}

.sc-flt-back i {
  transition: transform 0.2s ease;
}
.sc-flt-back:hover i {
  transform: translateX(-2px);
}

.sc-flt-body {
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  padding: 1.35rem 1.6rem 1.25rem;
  scrollbar-width: thin;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.sc-flt-body::-webkit-scrollbar {
  width: 6px;
}
.sc-flt-body::-webkit-scrollbar-thumb {
  background: rgba(var(--black-color-rgb), 0.12);
  border-radius: 999px;
}

.sc-flt-search-section {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.sc-flt-search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--white-color);
  border: 1.5px solid rgba(var(--black-color-rgb), 0.08);
  border-radius: 999px;
  padding: 0.4rem 0.5rem 0.4rem 1.2rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
  box-shadow: 0 2px 10px -4px rgba(var(--black-color-rgb), 0.06);
}

.sc-flt-search-box:hover {
  border-color: rgba(var(--black-color-rgb), 0.14);
  box-shadow: 0 6px 16px -6px rgba(var(--black-color-rgb), 0.08);
}

.sc-flt-search-box:focus-within {
  border-color: rgba(var(--primary-color-rgb), 0.55);
  box-shadow:
    0 10px 24px -10px rgba(var(--primary-color-rgb), 0.35),
    0 0 0 4px rgba(var(--primary-color-rgb), 0.12);
}

.sc-flt-search-icon {
  width: 16px;
  height: 16px;
  color: var(--color-gray-400);
  margin-right: 0.65rem;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.sc-flt-search-box:focus-within .sc-flt-search-icon {
  color: var(--color-brand-green-2dba3e);
}

.sc-flt-search-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  color: var(--color-gray-900);
  padding: 0.7rem 0;
}

.sc-flt-search-input::placeholder {
  color: var(--color-gray-400);
}

.sc-flt-card {
  background: var(--white-color);
  border: 1px solid rgba(var(--black-color-rgb), 0.06);
  border-radius: 0.9rem;
  padding: 1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow:
    0 1px 0 rgba(var(--white-color-rgb), 0.7) inset,
    0 2px 8px -4px rgba(var(--black-color-rgb), 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.sc-flt-card:hover {
  border-color: rgba(var(--black-color-rgb), 0.1);
  box-shadow:
    0 1px 0 rgba(var(--white-color-rgb), 0.7) inset,
    0 6px 18px -8px rgba(var(--black-color-rgb), 0.08);
}

.sc-flt-card-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sc-flt-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 0.55rem;
  background: rgba(var(--primary-color-rgb), 0.14);
  color: var(--color-brand-green-2dba3e);
  border: 1px solid rgba(var(--primary-color-rgb), 0.25);
  flex-shrink: 0;
}

.sc-flt-card-title {
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-gray-900);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}

.sc-flt-card-sub {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  color: var(--color-gray-400);
  margin: 0.1rem 0 0;
  line-height: 1.3;
}

.sc-flt-card-title-wrap {
  flex: 1;
  min-width: 0;
}

.sc-flt-card-meta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.sc-flt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.1rem;
}

.sc-flt-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.sc-flt-group--wide {
  grid-column: 1 / -1;
}

@media (max-width: 680px) {
  .sc-flt-grid {
    grid-template-columns: 1fr;
  }
  .sc-flt-frame-head {
    grid-template-columns: auto 1fr;
    padding: 0.9rem 1rem 0.85rem;
  }
  .sc-flt-frame-title {
    text-align: left;
    grid-column: 2 / 3;
  }
  .sc-flt-frame-spacer {
    display: none;
  }
  .sc-flt-body {
    padding: 1rem;
  }
}

.sc-flt-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.sc-flt-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.76rem;
  font-weight: 650;
  color: var(--color-gray-600);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.sc-flt-label i {
  color: var(--color-gray-400);
  flex-shrink: 0;
}

.sc-flt-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.sc-flt-input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gray-400);
  pointer-events: none;
}

.sc-flt-input {
  width: 100%;
  height: 2.5rem;
  background: var(--white-color);
  border: 1px solid rgba(var(--black-color-rgb), 0.1);
  border-radius: 0.55rem;
  padding: 0 0.85rem 0 2.1rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-gray-900);
  outline: none;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.sc-flt-input::placeholder {
  color: var(--color-gray-400);
}
.sc-flt-input:hover {
  border-color: rgba(var(--black-color-rgb), 0.18);
}
.sc-flt-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.12);
}

.sc-flt-select {
  cursor: pointer;
  padding-right: 2.2rem;
}

.sc-flt-select-caret {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gray-500);
  pointer-events: none;
}

.sc-flt-sk-wrapper {
  min-height: 2.5rem;
  padding: 0.4rem 0.65rem;
  background: var(--white-color);
}

.sc-flt-logic {
  display: inline-flex;
  background: var(--color-gray-100);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}

.sc-flt-logic-opt {
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-gray-500);
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sc-flt-logic-opt:hover {
  color: var(--color-gray-900);
}

.sc-flt-logic-opt.is-active {
  background: var(--white-color);
  color: var(--color-brand-green-2dba3e);
  box-shadow:
    0 2px 6px rgba(var(--color-gray-900-rgb), 0.08),
    0 0 0 1px rgba(var(--primary-color-rgb), 0.3);
}

.sc-flt-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.sc-flt-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 550;
  color: var(--color-gray-700);
  background: var(--white-color);
  border: 1px solid rgba(var(--black-color-rgb), 0.1);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.sc-flt-chip i {
  color: var(--color-gray-400);
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.sc-flt-chip:hover {
  border-color: rgba(var(--primary-color-rgb), 0.45);
  color: var(--color-gray-900);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -8px rgba(var(--primary-color-rgb), 0.35);
}

.sc-flt-chip:hover i {
  color: var(--color-brand-green-2dba3e);
  transform: scale(1.1);
}

.sc-flt-chip.is-active {
  background: linear-gradient(
    135deg,
    rgba(var(--primary-color-rgb), 0.22),
    rgba(var(--primary-color-rgb), 0.1)
  );
  border-color: rgba(var(--primary-color-rgb), 0.55);
  color: var(--color-brand-green-ink-3d);
  box-shadow:
    0 6px 16px -6px rgba(var(--primary-color-rgb), 0.4),
    inset 0 0 0 1px rgba(var(--primary-color-rgb), 0.2);
  padding-left: 0.7rem;
}

.sc-flt-chip.is-active::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-brand-green-2dba3e);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.25);
  flex-shrink: 0;
}

.sc-flt-chip.is-active i {
  color: var(--color-brand-green-2dba3e);
}

.sc-flt-match-val {
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-brand-green-ink-3d);
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(var(--primary-color-rgb), 0.22),
    rgba(var(--primary-color-rgb), 0.08)
  );
  border: 1px solid rgba(var(--primary-color-rgb), 0.35);
  letter-spacing: -0.01em;
}

.sc-flt-slider-wrap {
  position: relative;
  padding: 0.2rem 0;
}

.sc-flt-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    var(--color-brand-green-2dba3e) 0%,
    var(--primary-color) var(--sc-slider-fill, 0%),
    rgba(var(--black-color-rgb), 0.06) var(--sc-slider-fill, 0%),
    rgba(var(--black-color-rgb), 0.06) 100%
  );
  outline: none;
  cursor: pointer;
  margin: 0.5rem 0 0.25rem;
  transition: background 0.15s ease;
}

.sc-flt-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--white-color) 0%, var(--success-color-bg-faint) 100%);
  border: 2px solid var(--color-brand-green-2dba3e);
  box-shadow:
    0 4px 10px -2px rgba(var(--primary-color-rgb), 0.45),
    0 0 0 0 rgba(var(--primary-color-rgb), 0);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.sc-flt-slider::-webkit-slider-thumb:hover {
  transform: scale(1.12);
  box-shadow:
    0 6px 14px -2px rgba(var(--primary-color-rgb), 0.55),
    0 0 0 6px rgba(var(--primary-color-rgb), 0.12);
}
.sc-flt-slider::-webkit-slider-thumb:active {
  transform: scale(1.05);
  box-shadow:
    0 4px 12px -2px rgba(var(--primary-color-rgb), 0.55),
    0 0 0 8px rgba(var(--primary-color-rgb), 0.18);
}

.sc-flt-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--white-color) 0%, var(--success-color-bg-faint) 100%);
  border: 2px solid var(--color-brand-green-2dba3e);
  box-shadow: 0 4px 10px -2px rgba(var(--primary-color-rgb), 0.45);
  cursor: pointer;
}

.sc-flt-slider-ticks {
  display: flex;
  justify-content: space-between;
  font-family: "Outfit", sans-serif;
  font-size: 0.68rem;
  color: var(--color-gray-400);
  padding: 0 2px;
  margin-top: 0.25rem;
  letter-spacing: 0.02em;
}

.sc-flt-frame-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.6rem;
  border-top: 1px solid rgba(var(--black-color-rgb), 0.06);
  background: rgba(var(--white-color-rgb), 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-shrink: 0;
  position: relative;
}

.sc-flt-frame-foot::before {
  content: "";
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  top: -1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--primary-color-rgb), 0.3),
    transparent
  );
  pointer-events: none;
}

.sc-flt-foot-left {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.sc-flt-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--color-brand-green-ink-1b);
  background: rgba(var(--primary-color-rgb), 0.14);
  border: 1px solid rgba(var(--primary-color-rgb), 0.28);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
}

.sc-flt-count-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-brand-green-2dba3e);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.22);
}

.sc-flt-clear {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-gray-500);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 0.42rem 0.75rem;
  border-radius: 0.5rem;
  transition: all 0.18s ease;
}

.sc-flt-clear:hover {
  color: var(--danger-color-dark);
  background: rgba(var(--danger-color-light-rgb), 0.06);
  border-color: rgba(var(--danger-color-light-rgb), 0.15);
}

.sc-flt-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--black-color);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-hover));
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.6rem;
  cursor: pointer;
  box-shadow:
    0 10px 22px -8px rgba(var(--primary-color-rgb), 0.65),
    0 1px 0 rgba(var(--white-color-rgb), 0.5) inset;
  transition:
    transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.2s ease,
    background 0.2s ease;
  letter-spacing: -0.005em;
  position: relative;
  overflow: hidden;
}

.sc-flt-apply::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(var(--white-color-rgb), 0.4) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.sc-flt-apply:hover {
  background: linear-gradient(135deg, var(--color-brand-green-56e066), var(--color-brand-green-45ce55));
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(var(--primary-color-rgb), 0.75);
}

.sc-flt-apply:hover::before {
  transform: translateX(100%);
}

.sc-flt-apply:active {
  transform: translateY(0);
}

.sc-flt-apply i {
  transition: transform 0.2s ease;
}
.sc-flt-apply:hover i {
  transform: translateX(2px);
}

.sc-flt-frame.is-flying {
  pointer-events: none;
}

.sc-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 0.75rem;
}

.sc-result-flt-chip {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-brand-green-ink-1b);
  background: rgba(var(--primary-color-rgb), 0.1);
  border: 1px solid rgba(var(--primary-color-rgb), 0.25);
  border-radius: 999px;
  padding: 0.22rem 0.65rem;
}

.sc-empty-results {
  flex: 1 1 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 3rem 1rem;
  text-align: center;
}

.sc-empty-icon {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: rgba(var(--primary-color-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-green-2dba3e);
  margin-bottom: 0.4rem;
}

.sc-empty-title {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 650;
  color: var(--color-gray-900);
  margin: 0;
}

.sc-empty-desc {
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  color: var(--color-gray-500);
  margin: 0 0 0.75rem;
  max-width: 32rem;
}

.sc-side-flip {
  perspective: 1600px;
  position: relative;
  padding: 0 !important;
  overflow: hidden;
}

.sc-side-flip-inner {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.sc-side-flip.is-flipped .sc-side-flip-inner {
  transform: rotateY(180deg);
}

.sc-side-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
}

.sc-side-face--front {
  padding: 0.75rem;
  overflow-y: auto;
}

@media (min-width: 640px) {
  .sc-side-face--front {
    padding: 1rem;
  }
}
@media (min-width: 1024px) {
  .sc-side-face--front {
    padding: 1.25rem;
  }
}

.sc-side-face--back {
  transform: rotateY(180deg);
  overflow: hidden;
}

.sc-side-flt {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  background: linear-gradient(
    180deg,
    rgba(var(--primary-color-rgb), 0.08) 0%,
    rgba(var(--primary-color-rgb), 0.02) 40%,
    transparent 100%
  );
  position: relative;
}

.sc-side-flt-head {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.85rem 0.85rem 0.75rem;
  border-bottom: 1px solid rgba(var(--black-color-rgb), 0.06);
  flex-shrink: 0;
}

.sc-side-flt-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 0.55rem;
  border: 1px solid rgba(var(--black-color-rgb), 0.08);
  background: var(--white-color);
  color: var(--color-gray-500);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 2px rgba(var(--black-color-rgb), 0.04);
}

.sc-side-flt-close:hover {
  background: linear-gradient(135deg, var(--danger-color-light), var(--danger-color));
  border-color: transparent;
  color: var(--white-color);
  transform: rotate(90deg) scale(1.05);
  box-shadow: 0 6px 14px -4px rgba(var(--danger-color-light-rgb), 0.5);
}

.sc-side-flt-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
  padding-top: 0.15rem;
}

.sc-side-flt-title {
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin: 0;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.sc-side-flt-title-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-brand-green-2dba3e);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.25);
  flex-shrink: 0;
  animation: scSideDotPulse 2.2s ease-in-out infinite;
}

@keyframes scSideDotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.25);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(var(--primary-color-rgb), 0.1);
  }
}

.sc-side-flt-subtitle {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  color: var(--color-gray-500);
  margin: 0;
  line-height: 1.3;
}

.sc-side-flt-body {
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  padding: 0.85rem 0.85rem 0.6rem;
  scrollbar-width: thin;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sc-side-flt-body::-webkit-scrollbar {
  width: 5px;
}
.sc-side-flt-body::-webkit-scrollbar-thumb {
  background: rgba(var(--black-color-rgb), 0.1);
  border-radius: 999px;
}

.sc-side-flt-row {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.6rem 0.7rem;
  background: var(--white-color);
  border: 1px solid rgba(var(--black-color-rgb), 0.06);
  border-radius: 0.65rem;
  box-shadow: 0 1px 2px rgba(var(--black-color-rgb), 0.03);
}

.sc-side-flt-row-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sc-side-flt-row-label i {
  color: var(--color-brand-green-2dba3e);
}

.sc-side-flt-row-value {
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-gray-900);
  line-height: 1.35;
  word-break: break-word;
}

.sc-side-flt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.sc-side-flt-tag {
  display: inline-flex;
  align-items: center;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-brand-green-ink-3d);
  background: rgba(var(--primary-color-rgb), 0.15);
  border: 1px solid rgba(var(--primary-color-rgb), 0.3);
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
}

.sc-side-flt-empty {
  text-align: center;
  padding: 1.5rem 0.5rem;
  color: var(--color-gray-400);
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.sc-side-flt-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(var(--primary-color-rgb), 0.08);
  color: var(--color-brand-green-2dba3e);
}

.sc-side-flt-foot {
  padding: 0.7rem 0.85rem 0.85rem;
  border-top: 1px solid rgba(var(--black-color-rgb), 0.06);
  display: flex;
  gap: 0.45rem;
  flex-shrink: 0;
}

.sc-side-flt-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 650;
  padding: 0.5rem 0.65rem;
  border-radius: 0.55rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.sc-side-flt-btn--edit {
  background: var(--white-color);
  color: var(--color-brand-green-ink-1b);
  border-color: rgba(var(--primary-color-rgb), 0.35);
  box-shadow: 0 1px 2px rgba(var(--black-color-rgb), 0.04);
}

.sc-side-flt-btn--edit:hover {
  background: rgba(var(--primary-color-rgb), 0.08);
  border-color: rgba(var(--primary-color-rgb), 0.55);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -6px rgba(var(--primary-color-rgb), 0.35);
}

.sc-side-flt-btn--new {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-hover));
  color: var(--black-color);
  box-shadow: 0 4px 12px -4px rgba(var(--primary-color-rgb), 0.55);
}

.sc-side-flt-btn--new:hover {
  background: linear-gradient(135deg, var(--color-brand-green-56e066), var(--color-brand-green-45ce55));
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -6px rgba(var(--primary-color-rgb), 0.65);
}

.sc-flt-fly-layer {
  position: fixed;
  inset: 0;
  z-index: 100000;
  pointer-events: none;
}

.sc-flt-fly {
  position: fixed;
  top: 0;
  left: 0;
  transform-origin: top left;
  will-change: transform, opacity;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(var(--black-color-rgb), 0.25),
    0 10px 24px -12px rgba(var(--primary-color-rgb), 0.35);
  transition:
    transform 0.75s cubic-bezier(0.65, 0.01, 0.25, 1),
    opacity 0.35s ease 0.4s;
  background: var(--white-color);
}

.sc-flt-fly--end {
  opacity: 0;
}

.sc-flt-fly-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    closest-side,
    rgba(var(--primary-color-rgb), 0.25),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.sc-flt-fly--end .sc-flt-fly-glow {
  opacity: 1;
}

@keyframes scSideArrive {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0) inset;
  }
  25% {
    box-shadow: 0 0 0 6px rgba(var(--primary-color-rgb), 0.2) inset;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0) inset;
  }
}

.sc-side-flt--arriving {
  animation: scSideArrive 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sc-adv-side {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  background: transparent;
}

.sc-adv-side-head {
  position: relative;
  padding: 1.25rem 1.25rem 0.6rem;
  flex-shrink: 0;
}

.sc-adv-side-icon {
  margin-bottom: 0.75rem;
}

.sc-adv-side-title {
  margin: 0;
}

.sc-adv-side-desc {
  margin: 0.25rem 0 0;
}

.sc-adv-side-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(var(--black-color-rgb), 0.08);
  background: var(--white-color);
  color: var(--color-gray-500);
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(var(--black-color-rgb), 0.04);
  transition:
    background 0.2s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.2s ease;
  z-index: 2;
}

.sc-adv-side-close i {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.sc-adv-side-close:hover {
  background: linear-gradient(135deg, var(--danger-color-light), var(--danger-color));
  border-color: transparent;
  color: var(--white-color);
  transform: scale(1.08);
  box-shadow: 0 8px 18px -6px rgba(var(--danger-color-light-rgb), 0.55);
}

.sc-adv-side-close:hover i {
  transform: rotate(90deg);
}

.sc-adv-side-close:active {
  transform: scale(0.96);
  box-shadow: 0 4px 10px -4px rgba(var(--danger-color-light-rgb), 0.5);
}

.sc-adv-side-close:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(var(--primary-color-rgb), 0.18),
    0 1px 2px rgba(var(--black-color-rgb), 0.04);
}

.sc-adv-side-body {
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  padding: 0.4rem 1.25rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  scrollbar-width: thin;
}

.sc-adv-side-body::-webkit-scrollbar {
  width: 5px;
}
.sc-adv-side-body::-webkit-scrollbar-thumb {
  background: rgba(var(--black-color-rgb), 0.08);
  border-radius: 999px;
}

.sc-adv-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sc-adv-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-gray-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sc-adv-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.sc-adv-input {
  width: 100%;
  height: 2.4rem;
  background: var(--white-color);
  border: 1px solid rgba(var(--black-color-rgb), 0.1);
  border-radius: 0.55rem;
  padding: 0 0.85rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.85rem;
  color: var(--color-gray-900);
  outline: none;
  transition: all 0.18s ease;
  appearance: none;
  -webkit-appearance: none;
}

.sc-adv-input::placeholder {
  color: var(--color-gray-400);
}
.sc-adv-input:hover {
  border-color: rgba(var(--black-color-rgb), 0.2);
}
.sc-adv-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.12);
}

.sc-adv-select {
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--color-gray-500) 50%),
    linear-gradient(135deg, var(--color-gray-500) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 50%,
    calc(100% - 11px) 50%;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

.sc-adv-sk-wrapper {
  min-height: 2.4rem;
  padding: 0.35rem 0.55rem;
  background: var(--white-color);
  border-radius: 0.55rem;
}

.sc-adv-match-val {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-gray-900);
  letter-spacing: -0.005em;
}

.sc-adv-side-foot {
  padding: 0.85rem 1.25rem 1.1rem;
  border-top: 1px solid rgba(var(--black-color-rgb), 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
  background: rgba(var(--white-color-rgb), 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.sc-adv-apply {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--black-color);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-hover));
  border: none;
  border-radius: 0.7rem;
  padding: 0.7rem 1rem;
  cursor: pointer;
  box-shadow:
    0 8px 18px -8px rgba(var(--primary-color-rgb), 0.55),
    0 1px 0 rgba(var(--white-color-rgb), 0.4) inset;
  transition: all 0.2s ease;
}

.sc-adv-apply:hover {
  background: linear-gradient(135deg, var(--color-brand-green-56e066), var(--color-brand-green-45ce55));
  transform: translateY(-1px);
  box-shadow: 0 12px 22px -8px rgba(var(--primary-color-rgb), 0.65);
}

.sc-adv-apply:active {
  transform: translateY(0);
}

.sc-adv-apply-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(var(--color-brand-green-ink-rgb-3d12), 0.18);
  color: var(--color-brand-green-ink-3d);
  font-size: 0.72rem;
  font-weight: 700;
}

.sc-adv-clear {
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-gray-500);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.3rem 0;
  transition: color 0.18s ease;
}

.sc-adv-clear:hover {
  color: var(--danger-color-dark);
}

/* Explore-talent message bubbles: edit / delete / context-active states */
.sc-cand-msg--actionable .sc-cand-msg-bubble {
  cursor: context-menu;
  transition: filter 0.15s ease, box-shadow 0.15s ease;
}
.sc-cand-msg--actionable .sc-cand-msg-bubble:hover {
  filter: brightness(0.97);
}
.sc-cand-msg--ctx-active .sc-cand-msg-bubble {
  outline: 2px solid var(--primary-color, #4f46e5);
  outline-offset: 2px;
}

.sc-cand-msg-bubble--deleted {
  background: rgba(var(--black-color-rgb), 0.04) !important;
  color: var(--color-zinc-500) !important;
  border: 1px dashed rgba(var(--black-color-rgb), 0.18) !important;
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.7rem !important;
  font-style: italic;
  line-height: 1;
  box-shadow: none !important;
}
.sc-cand-msg-bubble--deleted iconify-icon {
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-zinc-400);
}
.sc-cand-msg-bubble--deleted span {
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.sc-cand-msg--out .sc-cand-msg-bubble--deleted,
.sc-cand-msg--in .sc-cand-msg-bubble--deleted {
  background: rgba(var(--black-color-rgb), 0.04) !important;
  color: var(--color-zinc-500) !important;
}

.sc-cand-msg-bubble--editing {
  outline: 2px dashed var(--primary-color, #4f46e5);
  outline-offset: 2px;
  opacity: 0.85;
}
.sc-cand-msg-edit-hint {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.65rem;
  color: var(--primary-color, #4f46e5);
  margin-top: 0.3rem;
  font-style: italic;
}

.sc-cand-msg-edited {
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 0.6rem;
  font-style: italic;
  opacity: 0.65;
}

/* Composer needs to stack banner(s) above the input row */
.sc-cand-chat-composer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
}
.sc-cand-chat-row {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
}
.sc-cand-chat-composer--editing {
  background: rgba(var(--primary-color-rgb, 79, 70, 229), 0.04);
}
.sc-cand-chat-send--save {
  background: linear-gradient(
    135deg,
    var(--primary-color, #4f46e5),
    var(--primary-color-hover, #4338ca)
  ) !important;
  color: var(--white-color) !important;
}


/* Flat (non-flip) sidebar host for Explore Talents */
.sc-side-flat {
  padding: 0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sc-side-flat-inner {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Floating "Saved Talents" pill in the right panel */
.sc-right-host {
  position: relative;
}

.sc-saved-pill {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black-color);
  background: var(--white-color);
  border: 1px solid rgba(var(--black-color-rgb), 0.1);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  box-shadow: 0 6px 16px -8px rgba(var(--black-color-rgb), 0.18),
    0 1px 2px rgba(var(--black-color-rgb), 0.05);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.sc-saved-pill:hover {
  border-color: rgba(var(--primary-color-rgb), 0.35);
  box-shadow: 0 12px 24px -10px rgba(var(--primary-color-rgb), 0.35),
    0 1px 2px rgba(var(--black-color-rgb), 0.05);
  transform: translateY(-1px);
}

.sc-saved-pill:active {
  transform: translateY(0);
}

.sc-saved-pill i {
  color: var(--primary-color);
  transition: color 0.2s ease;
}

.sc-saved-pill-label {
  letter-spacing: -0.005em;
}

.sc-saved-pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-color-hover, var(--primary-color))
  );
  color: var(--white-color);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

.sc-saved-pill--active {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-color-hover, var(--primary-color))
  );
  color: var(--white-color);
  border-color: transparent;
  box-shadow: 0 10px 22px -8px rgba(var(--primary-color-rgb), 0.45);
}

.sc-saved-pill--active i {
  color: var(--white-color);
}

@media (max-width: 640px) {
  .sc-saved-pill {
    top: 0.6rem;
    right: 0.6rem;
    font-size: 0.78rem;
    padding: 0.4rem 0.7rem;
  }
  .sc-saved-pill-label {
    display: none;
  }
}

.sc-adv-side-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.sc-adv-side-head-row .back-btn {
  margin-top: 0;
  margin-bottom: 0;
}

.v-action-btn.sc-saved-pill--sidebar {
  position: relative;
  top: auto;
  right: auto;
  flex-shrink: 0;
  padding: 0;
  width: 42px;
  height: 42px;
  background: var(--white-color);
  border: 1px solid rgba(var(--black-color-rgb), 0.1);
  border-radius: 0.6rem;
  box-shadow: none;
  color: var(--color-gray-700);
}

.sc-saved-pill--sidebar:hover {
  border-color: rgba(var(--primary-color-rgb), 0.4);
  background: rgba(var(--primary-color-rgb), 0.05);
  color: var(--primary-color);
  transform: none;
  box-shadow: none;
}

.sc-saved-pill--sidebar .v-action-btn-icon {
  display: inline-flex;
}

.sc-saved-pill--sidebar .sc-saved-pill-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white-color);
  pointer-events: none;
}

.sc-adv-side-foot {
  flex-shrink: 0;
  padding: 0.9rem 1.25rem 1.1rem;
  border-top: 1px solid rgba(var(--black-color-rgb), 0.06);
  background: linear-gradient(
    180deg,
    rgba(var(--white-color-rgb, 255, 255, 255), 0) 0%,
    rgba(var(--white-color-rgb, 255, 255, 255), 0.6) 100%
  );
  display: flex;
  flex-direction: column;
}

.sc-new-search-btn {
  width: 100%;
  justify-content: center;
}

.sc-adv-side--results .sc-adv-side-body--results {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.sc-side-prompt {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(var(--primary-color-rgb), 0.18);
  background:
    linear-gradient(
      135deg,
      rgba(var(--primary-color-rgb), 0.08) 0%,
      rgba(var(--primary-color-rgb), 0.02) 100%
    );
  box-shadow: 0 1px 2px rgba(var(--black-color-rgb), 0.04);
  overflow: hidden;
}

.sc-side-prompt::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--primary-color) 0%,
    rgba(var(--primary-color-rgb), 0.45) 100%
  );
}

.sc-side-prompt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.sc-side-prompt-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-color);
}

.sc-side-prompt-label-icon {
  width: 13px;
  height: 13px;
  color: var(--primary-color);
}

.sc-side-prompt-quote-block {
  position: relative;
  padding: 0.1rem 0 0.1rem 1.4rem;
}

.sc-side-prompt-quote-mark {
  position: absolute;
  top: -0.55rem;
  left: 0;
  font-family: "Outfit", sans-serif;
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(var(--primary-color-rgb), 0.35);
  user-select: none;
  pointer-events: none;
}

.sc-side-prompt-text {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--black-color);
  white-space: pre-wrap;
  word-break: break-word;
}

.sc-side-prompt-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.15rem;
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(var(--primary-color-rgb), 0.18);
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  color: var(--color-gray-600);
}

.sc-side-prompt-meta strong {
  color: var(--black-color);
  font-weight: 700;
}

.sc-side-prompt-meta-icon {
  width: 13px;
  height: 13px;
  color: var(--color-gray-500);
}

.sc-side-prompt-input {
  width: 100%;
  resize: vertical;
  min-height: 96px;
  padding: 0.6rem 0.7rem;
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--black-color);
  background: var(--white-color);
  border: 1px solid rgba(var(--primary-color-rgb), 0.35);
  border-radius: 0.6rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sc-side-prompt-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.18);
}

.sc-side-prompt-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.sc-saved-drawer {
  padding: 0;
}

.sc-saved-drawer-flip {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sc-saved-drawer-face--front {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: var(--white-color);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease;
}

.sc-saved-drawer-face--back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: var(--white-color);
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease;
}

.sc-saved-drawer.is-flipped .sc-saved-drawer-face--front {
  transform: translateX(-10%);
  opacity: 0;
  pointer-events: none;
}

.sc-saved-drawer.is-flipped .sc-saved-drawer-face--back {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.sc-saved-drawer .sc-cand-flip--drawer,
.sc-saved-drawer .sc-cand-flip-inner--drawer {
  position: relative;
  width: 100%;
  height: 100%;
  transform: none;
  transform-style: flat;
}

.sc-saved-drawer .sc-cand-flip--drawer .sc-cand-card.sc-cand-face--back {
  position: relative;
  inset: auto;
  transform: none;
  height: 100%;
  border: none;
  border-radius: 0;
  box-shadow: none;
  pointer-events: auto;
}

.sc-saved-drawer #sc-saved-drawer-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  padding: 1rem 1.75rem 1.75rem;
}

.sc-saved-drawer #sc-saved-drawer-list > .sc-saved-card {
  flex: 0 0 auto;
}

.sc-saved-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0.95rem 1rem 0.85rem;
  background: var(--white-color);
  border: 1px solid rgba(var(--black-color-rgb), 0.08);
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(var(--black-color-rgb), 0.03);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.sc-saved-card:hover {
  border-color: rgba(var(--primary-color-rgb), 0.4);
  box-shadow:
    0 18px 38px -16px rgba(var(--primary-color-rgb), 0.28),
    0 2px 6px rgba(var(--black-color-rgb), 0.04);
}

.sc-saved-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.sc-saved-row-date {
  font-family: "Outfit", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--color-gray-500);
}

.sc-saved-row-date--empty {
  visibility: hidden;
}

.sc-saved-row-remove.v-action-btn {
  width: 30px;
  height: 30px;
  padding: 0;
  flex-shrink: 0;
}

.sc-saved-row-remove.v-action-btn:hover {
  background: rgba(var(--danger-color-light-rgb), 0.12);
  border-color: rgba(var(--danger-color-light-rgb), 0.4);
  color: var(--danger-color);
}

.sc-saved-card-hero {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.sc-saved-card-avatar {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(var(--primary-color-rgb), 0.08);
}

.sc-saved-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sc-saved-card-id {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.sc-saved-card-name {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gray-900);
  line-height: 1.2;
  letter-spacing: -0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sc-saved-card-email {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  color: var(--color-gray-500);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sc-saved-card-socials {
  margin-top: 0.25rem;
}

.sc-saved-card .sc-cand-divider {
  margin: 0;
}

.sc-saved-card .sc-cand-exp,
.sc-saved-card .sc-cand-section {
  margin: 0;
}

.sc-saved-card-skills .sc-cand-section-label {
  margin-bottom: 0.4rem;
}

.sc-saved-row-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(var(--black-color-rgb), 0.05);
  margin-top: 0.1rem;
}

.sc-saved-row-actions .sc-cand-btn {
  flex: 1;
  justify-content: center;
}
