/* [project]/packages/ui/src/primitives/breadcrumb/breadcrumb.css [app-client] (css) */
.sb-bc {
  font-family: var(--font-sans);
  color: var(--fg-muted);
  align-items: center;
  gap: 8px;
  font-size: 13px;
  display: flex;
}

.sb-bc-link {
  color: var(--fg-muted);
  transition: color var(--d-1) var(--ease-out-soft), background var(--d-1) var(--ease-out-soft);
  border-radius: 6px;
  padding: 3px 8px;
  text-decoration: none;
}

.sb-bc-link:hover {
  color: var(--fg);
  background: var(--coral-glow-8);
}

.sb-bc-cur {
  color: var(--fg);
  padding: 3px 8px;
  font-weight: 600;
}

.sb-bc-sep {
  color: var(--fg-faint);
}

/* [project]/packages/ui/src/primitives/skeleton/skeleton.css [app-client] (css) */
.sb-skeleton-row {
  align-items: center;
  gap: 12px;
  display: flex;
}

.sb-spinner {
  border: 2.5px solid var(--coral-100);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: .9s linear infinite sb-spinner-rotate;
  display: inline-block;
}

@keyframes sb-spinner-rotate {
  to {
    transform: rotate(360deg);
  }
}

.sb-dots {
  align-items: center;
  gap: 4px;
  display: inline-flex;
}

.sb-dots i {
  background: var(--accent);
  width: 6px;
  height: 6px;
  animation: sb-dot-bob 1.1s var(--ease-in-out, ease-in-out) infinite;
  border-radius: 50%;
  display: block;
}

.sb-dots i:nth-child(2) {
  animation-delay: .15s;
}

.sb-dots i:nth-child(3) {
  animation-delay: .3s;
}

@keyframes sb-dot-bob {
  0%, 100% {
    opacity: .35;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-5px);
  }
}

.sb-scanline {
  background: var(--bg-sunken);
  border: 1px solid var(--line);
  border-radius: 10px;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 12px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.sb-scanline:before {
  content: "";
  background: var(--coral-glow-16);
  animation: sb-scanline-pass 1.8s var(--ease-in-out, ease-in-out) infinite;
  background-repeat: no-repeat;
  background-size: 30% 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

@keyframes sb-scanline-pass {
  0% {
    background-position: -40% 0;
  }

  100% {
    background-position: 140% 0;
  }
}

.sb-scanline-label {
  z-index: 1;
  color: var(--fg-soft);
  font-size: 12.5px;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: -.005em;
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  .sb-spinner, .sb-dots i, .sb-scanline:before {
    animation: none;
  }
}

/* [project]/packages/ui/src/primitives/section/icon-section-header.css [app-client] (css) */
.sb-sect-hd {
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  display: flex;
}

.sb-sect-hd--mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .sb-sect-hd--mobile-only {
    display: flex;
  }
}

.sb-sect-hd-ico {
  background: var(--coral-glow-8);
  width: 26px;
  height: 26px;
  color: var(--accent);
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.sb-sect-hd-ico svg {
  width: 13px;
  height: 13px;
}

.sb-sect-hd-title {
  font-family: var(--font-sans);
  letter-spacing: -.012em;
  color: var(--fg);
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  overflow: hidden;
}

.sb-sect-hd-ct {
  font-family: var(--font-mono);
  color: var(--fg-muted);
  background: var(--bg-sunken);
  font-variant-numeric: tabular-nums;
  border-radius: 999px;
  flex-shrink: 0;
  margin-left: auto;
  padding: 2px 7px;
  font-size: 10.5px;
  font-weight: 600;
}

/* [project]/packages/ui/src/primitives/textarea/textarea.css [app-client] (css) */
.sb-field--multi {
  align-items: stretch;
}

.sb-field-textarea {
  resize: vertical;
  vertical-align: top;
  min-height: 64px;
  line-height: 1.5;
  font: inherit;
}

/* [project]/apps/web/src/app/(with-chrome)/jobs/[id]/sections/comment-composer.css [app-client] (css) */
.sb-comment-composer {
  column-gap: var(--s-3);
  padding: var(--s-3) 0;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  display: grid;
}

.sb-comment-composer-body {
  gap: var(--s-2);
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.sb-comment-composer-row {
  justify-content: flex-end;
  align-items: center;
  gap: var(--s-3);
  flex-wrap: wrap;
  display: flex;
}

.sb-comment-composer-error {
  font-size: var(--text-xs);
  color: var(--critical);
  margin-right: auto;
}

.sb-comment-composer--compact {
  padding: var(--s-2) 0 var(--s-3) var(--s-5);
  column-gap: var(--s-2);
}

.sb-comment-composer--compact .sb-comment-composer-body {
  gap: var(--s-1);
}

/* [project]/apps/web/src/app/(with-chrome)/jobs/[id]/sections/comment-thread.css [app-client] (css) */
.sb-comment-thread {
  gap: var(--s-2);
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.sb-comment-thread-empty, .sb-comment-thread-status {
  padding: var(--s-3) 0;
  font-size: var(--text-sm);
  color: var(--fg-muted);
  margin: 0;
}

.sb-comment-thread-sentinel {
  width: 1px;
  height: 1px;
}

.sb-comment {
  gap: var(--s-2);
  padding: var(--s-3) 0;
  border-top: 1px solid var(--line);
  flex-direction: column;
  display: flex;
}

.sb-comment:first-child {
  border-top: 0;
  padding-top: 0;
}

.sb-comment-head {
  column-gap: var(--s-3);
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  display: grid;
}

.sb-comment-body {
  gap: var(--s-1);
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.sb-comment-meta {
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-xs);
  color: var(--fg-muted);
  display: flex;
}

.sb-comment-name {
  color: var(--fg);
  font-weight: 600;
}

.sb-comment-time {
  color: var(--fg-muted);
}

.sb-comment-text {
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed, 1.6);
  color: var(--fg-soft);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 0;
}

.sb-comment-text--deleted {
  color: var(--fg-faint);
  font-style: italic;
}

.sb-comment-actions {
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-1);
  display: flex;
}

.sb-comment-action {
  color: var(--fg-muted);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  cursor: pointer;
  transition: color var(--d-1, .12s) var(--ease-out-soft, ease), background var(--d-1, .12s) var(--ease-out-soft, ease);
  background: none;
  border: 0;
  border-radius: 6px;
  align-items: center;
  gap: 4px;
  margin: -4px -6px;
  padding: 4px 6px;
  font-weight: 500;
  display: inline-flex;
}

.sb-comment-action:hover {
  color: var(--fg);
  background: var(--bg-sunken);
}

.sb-comment-action:focus-visible {
  color: var(--fg);
  background: var(--bg-sunken);
}

.sb-comment-action:focus-visible {
  outline: 2px solid var(--coral-300, var(--accent));
  outline-offset: 1px;
}

.sb-comment-action--on {
  color: var(--accent);
}

.sb-comment-action--on:hover {
  color: var(--accent-hover, var(--accent));
}

.sb-comment-action--danger:hover {
  color: var(--critical);
}

.sb-comment-action--danger:focus-visible {
  color: var(--critical);
}

.sb-comment-action-count {
  font-variant-numeric: tabular-nums;
}

.sb-comment-replies {
  margin: 0;
  margin-left: var(--s-5);
  border-left: 2px solid var(--line);
  padding: 0;
  padding-left: var(--s-3);
  list-style: none;
}

.sb-comment-replies .sb-comment {
  border-top: 1px dashed var(--line);
}

.sb-comment-replies .sb-comment:first-child {
  border-top: 0;
}

.sb-comment--reply .sb-comment-text {
  font-size: var(--text-xs);
}

@media (max-width: 768px) {
  .sb-comment-thread {
    gap: 12px;
  }

  .sb-comment {
    border-top: 0;
    gap: 0;
    padding: 0;
  }

  .sb-comment:first-child {
    padding-top: 0;
  }

  .sb-comment-head {
    column-gap: 10px;
  }

  .sb-comment :where(.sb-av) {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }

  .sb-comment-meta {
    gap: 6px;
    font-size: 11px;
  }

  .sb-comment-name {
    font-size: 12.5px;
  }

  .sb-comment-text {
    margin-top: 3px;
    font-size: 13px;
    line-height: 1.5;
  }

  .sb-comment-actions {
    gap: 12px;
    margin-top: 6px;
  }

  .sb-comment-action {
    border-radius: 0;
    margin: 0;
    padding: 0;
    font-size: 11.5px;
  }

  .sb-comment-action svg {
    width: 11px;
    height: 11px;
  }

  .sb-comment-action:hover {
    background: none;
  }

  .sb-comment-action:focus-visible {
    background: none;
  }

  .sb-comment-replies {
    margin-left: 12px;
    padding-left: 10px;
  }

  .sb-comment--reply :where(.sb-av) {
    width: 26px;
    height: 26px;
    font-size: 10px;
  }
}

/* [project]/apps/web/src/app/(with-chrome)/jobs/[id]/sections/job-comments.css [app-client] (css) */
.sb-job-comments {
  gap: var(--s-4);
  flex-direction: column;
  display: flex;
}

.sb-job-comments-title {
  font-family: var(--font-display, var(--font-sans));
  font-size: var(--text-lg);
  letter-spacing: -.012em;
  color: var(--fg);
  margin: 0;
  font-weight: 700;
}

@media (max-width: 768px) {
  .sb-job-comments-title--desktop {
    display: none;
  }
}

.sb-job-comments-skeleton-row {
  padding-top: var(--s-3);
}

/* [project]/apps/web/src/app/(with-chrome)/jobs/[id]/sections/job-description.css [app-client] (css) */
.sb-job-desc {
  gap: var(--s-2);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  display: flex;
}

.sb-job-desc-header {
  font-family: var(--font-sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.sb-job-desc--empty {
  background: var(--bg-sunken);
  border: 1px dashed var(--line);
  padding: var(--s-5);
  border-radius: 12px;
}

.sb-job-desc-empty {
  font-size: var(--text-sm);
  color: var(--fg-muted);
  margin: 0;
}

.sb-job-desc-prose {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  line-height: var(--lh-normal, 1.5);
  color: var(--fg-soft);
}

.sb-job-desc-prose > * + * {
  margin-top: var(--s-3);
}

.sb-job-desc-prose > :first-child {
  margin-top: 0;
}

.sb-job-desc-prose h1, .sb-job-desc-prose h2, .sb-job-desc-prose h3 {
  font-family: var(--font-display);
  color: var(--fg);
  letter-spacing: -.012em;
  font-weight: 600;
  line-height: var(--lh-snug, 1.2);
}

.sb-job-desc-prose h1, .sb-job-desc-prose h2 {
  font-size: var(--text-lg);
  margin-top: var(--s-6);
  margin-bottom: var(--s-3);
}

.sb-job-desc-prose h1:after, .sb-job-desc-prose h2:after {
  content: "";
  background: var(--accent);
  border-radius: 2px;
  width: 28px;
  height: 2px;
  margin-top: 8px;
  display: block;
}

.sb-job-desc-prose h3 {
  font-size: var(--text-md);
  margin-top: var(--s-5);
  margin-bottom: var(--s-2);
}

.sb-job-desc-prose h4 {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--fg);
  letter-spacing: -.008em;
  margin-top: var(--s-4);
  margin-bottom: var(--s-2);
  font-weight: 700;
}

.sb-job-desc-prose p {
  margin: 0;
}

.sb-job-desc-prose strong {
  color: var(--fg);
  font-weight: 600;
}

.sb-job-desc-prose em {
  font-style: italic;
}

.sb-job-desc-prose a {
  color: var(--accent);
  text-underline-offset: 2px;
  text-decoration: underline;
}

.sb-job-desc-prose ul {
  padding-left: var(--s-5);
  margin: 0;
  list-style-type: disc;
  list-style-position: outside;
}

.sb-job-desc-prose ol {
  padding-left: var(--s-5);
  margin: 0;
  list-style-type: decimal;
  list-style-position: outside;
}

.sb-job-desc-prose li {
  margin: var(--s-2) 0;
}

.sb-job-desc-prose ul > li::marker {
  color: var(--accent);
}

.sb-job-desc-prose li > p {
  margin: 0;
}

.sb-job-desc-clamp {
  transition: max-height var(--d-3, .32s) var(--ease-out-soft, ease);
  position: relative;
  overflow: hidden;
}

.sb-job-desc-clamp--expanded {
  max-height: 8000px;
}

@media (prefers-reduced-motion: reduce) {
  .sb-job-desc-clamp {
    transition: none;
  }
}

.sb-job-desc-clamp--clamped {
  cursor: pointer;
}

.sb-job-desc-clamp--clamped:after {
  content: "";
  background: linear-gradient(to bottom, transparent 0, var(--bg) 90%);
  pointer-events: none;
  height: 2.5em;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.sb-job-desc-clamp--clamped:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.sb-job-desc-toggle {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: var(--lh-normal, 1.5);
  color: var(--accent);
  cursor: pointer;
  transition: color var(--d-1, .12s) var(--ease-out-soft, ease);
  background: none;
  border: 0;
  align-self: flex-start;
  margin: 0;
  padding: 0;
}

.sb-job-desc-toggle:hover {
  color: var(--accent-hover);
}

.sb-job-desc-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* [project]/packages/ui/src/primitives/tooltip/tooltip.css [app-client] (css) */
.sb-tt-host {
  display: contents;
}

.sb-tt-positioner {
  z-index: 9999;
}

.sb-tt {
  color: #fdfbf5;
  font: 500 12px / 1.45 var(--font-sans);
  letter-spacing: -.005em;
  white-space: nowrap;
  background: #1f1b16;
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: 10px;
  padding: 10px 13px;
  animation: .22s cubic-bezier(.34, 1.56, .64, 1) sb-tt-pop;
  display: inline-block;
  box-shadow: 0 1px 2px rgba(31, 27, 22, .12), 0 8px 20px -6px rgba(31, 27, 22, .28);
}

.sb-tt--wrap {
  white-space: pre-line;
  width: max-content;
  max-width: min(320px, 100vw - 16px);
}

@keyframes sb-tt-pop {
  0% {
    opacity: 0;
    transform: scale(.92);
  }

  60% {
    opacity: 1;
    transform: scale(1.02);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.sb-tt-ttl {
  color: #fdfbf5;
  letter-spacing: -.005em;
  font-size: 12.5px;
  font-weight: 600;
}

.sb-tt-sub {
  color: #bfb59e;
  margin-top: 2px;
  font-size: 11px;
}

.sb-tt-bdy {
  color: #d4cab3;
  margin-top: 6px;
  font-size: 11.5px;
  line-height: 1.5;
}

.sb-tt-hr {
  background: rgba(255, 255, 255, .08);
  border: 0;
  height: 1px;
  margin: 8px -2px;
}

.sb-tt-kbd {
  color: #bfb59e;
  font-family: var(--font-mono);
  vertical-align: 1px;
  gap: 3px;
  margin-left: 8px;
  font-size: 10.5px;
  display: inline-flex;
}

.sb-tt-kbd kbd {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 4px;
  padding: 1px 5px;
}

.sb-tt-meter {
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  display: flex;
}

.sb-tt-meter-bar {
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
  flex: 1;
  height: 4px;
  overflow: hidden;
}

.sb-tt-meter-bar-fill {
  background: var(--coral-400);
  border-radius: inherit;
  height: 100%;
  display: block;
  box-shadow: 0 0 8px rgba(255, 107, 53, .6);
}

.sb-tt-meter-v {
  font: 600 11px var(--font-mono);
  color: var(--coral-200);
}

.sb-tt table {
  border-collapse: collapse;
  margin-top: 6px;
  font-size: 11.5px;
}

.sb-tt th, .sb-tt td {
  text-align: left;
  color: #d4cab3;
  white-space: nowrap;
  padding: 4px 10px 4px 0;
  font-weight: 500;
}

.sb-tt th {
  color: #fdfbf5;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding-bottom: 6px;
  font-size: 10.5px;
  font-weight: 600;
}

.sb-tt td {
  border-bottom: 1px dashed rgba(255, 255, 255, .06);
}

.sb-tt tr:last-child td {
  border-bottom: none;
}

.sb-tt td.sb-tt-n {
  font-family: var(--font-mono);
  color: #ffe4d1;
  text-align: right;
  padding-right: 0;
}

.sb-tt ul {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.sb-tt li {
  color: #d4cab3;
  padding-left: 14px;
  font-size: 11.5px;
  line-height: 1.6;
  position: relative;
}

.sb-tt li:before {
  content: "";
  background: var(--coral-400);
  border-radius: 50%;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 9px;
  left: 2px;
  box-shadow: 0 0 6px rgba(255, 107, 53, .5);
}

.sb-tt-avatar-row {
  align-items: center;
  gap: 8px;
  display: flex;
}

.sb-tt-av {
  background: var(--accent);
  color: #fff;
  width: 22px;
  height: 22px;
  font: 700 9px var(--font-sans);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

/* [project]/packages/ui/src/primitives/chart-timeline/chart-timeline.css [app-client] (css) */
.sb-chart-tl {
  flex-direction: column;
  gap: 6px;
  width: 100%;
  display: flex;
}

.sb-chart-tl--empty {
  height: 100px;
}

.sb-chart-tl-bars {
  flex-direction: row;
  align-items: flex-end;
  gap: 3px;
  height: 100px;
  padding: 0 1px;
  display: flex;
}

.sb-chart-tl-bar {
  cursor: pointer;
  min-width: 0;
  min-height: 0;
  transition: opacity var(--d-1, .12s) var(--ease-out-soft, ease);
  background: none;
  border: none;
  border-radius: 2px;
  flex-direction: column;
  flex: 1 1 0;
  justify-content: flex-end;
  align-items: stretch;
  margin: 0;
  padding: 0;
  display: flex;
}

.sb-chart-tl-bar:hover {
  opacity: .78;
}

.sb-chart-tl-bar:focus-visible {
  opacity: .78;
}

.sb-chart-tl-bar:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.sb-chart-tl-bar-seg {
  width: 100%;
  display: block;
}

.sb-chart-tl-bar-seg--positive {
  background: var(--positive);
}

.sb-chart-tl-bar-seg--attention {
  background: var(--attention);
}

.sb-chart-tl-bar-seg--critical {
  background: var(--critical);
}

.sb-chart-tl-bar-seg--accent {
  background: var(--accent);
}

.sb-chart-tl-bar-seg--neutral {
  background: var(--fg-muted);
}

.sb-chart-tl-bar-seg--primary, .sb-chart-tl-bar-seg--secondary + .sb-chart-tl-bar-seg--primary {
  border-radius: 0 0 2px 2px;
}

.sb-chart-tl-bar-seg--secondary {
  border-radius: 2px 2px 0 0;
  min-height: 3px;
}

.sb-chart-tl-bar-seg--primary:only-child {
  border-radius: 2px;
}

.sb-chart-tl-axis {
  font-family: var(--font-mono);
  color: var(--fg-faint);
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
  justify-content: space-between;
  font-size: 10.5px;
  font-weight: 500;
  display: flex;
}

/* [project]/apps/web/src/app/(with-chrome)/jobs/[id]/sections/job-h1b-history.css [app-client] (css) */
.sb-job-h1b {
  gap: var(--s-3);
  padding: var(--s-5);
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 14px;
  flex-direction: column;
  display: flex;
}

.sb-job-h1b-header {
  justify-content: space-between;
  align-items: center;
  gap: var(--s-2);
  display: flex;
}

.sb-job-h1b-overline {
  font-family: var(--font-sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin: 0;
  font-size: 11px;
  font-weight: 700;
}

.sb-job-h1b-capexempt {
  font-family: var(--font-sans);
  letter-spacing: -.005em;
  color: var(--positive);
  background: color-mix(in srgb, var(--positive) 14%, transparent);
  white-space: nowrap;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 10.5px;
  font-weight: 600;
}

.sb-job-h1b-headline {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--fg-soft);
  font-variant-numeric: tabular-nums;
  margin: 0;
}

.sb-job-h1b-headline strong {
  color: var(--fg);
  font-weight: 700;
}

.sb-job-h1b-sep {
  color: var(--fg-faint);
  margin: 0 6px;
}

.sb-job-h1b-legend {
  gap: var(--s-3);
  font-family: var(--font-sans);
  color: var(--fg-muted);
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  font-size: 11.5px;
  list-style: none;
  display: flex;
}

.sb-job-h1b-legend-item {
  align-items: center;
  gap: 6px;
  display: inline-flex;
}

.sb-job-h1b-legend-dot {
  border-radius: 50%;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
}

.sb-job-h1b-legend-dot--positive {
  background: var(--positive);
}

.sb-job-h1b-legend-dot--critical {
  background: var(--critical);
}

.sb-job-h1b-legend-n {
  font-variant-numeric: tabular-nums;
  color: var(--fg);
  font-weight: 600;
}

.sb-job-h1b-legend-l {
  color: var(--fg-muted);
}

.sb-job-h1b-tt-table {
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  width: 100%;
}

.sb-job-h1b-tt-table td {
  padding: 2px 0;
}

.sb-job-h1b-tt-table td:last-child {
  text-align: right;
  padding-left: var(--s-4);
  font-weight: 600;
}

.sb-job-h1b-tt-total td {
  border-top: 1px solid rgba(255, 255, 255, .18);
  margin-top: 4px;
  padding-top: 6px;
  font-weight: 700;
}

/* [project]/packages/ui/src/primitives/banner/banner.css [app-client] (css) */
.sb-banner {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  transition: box-shadow var(--d-2) var(--ease-out-soft);
  border-radius: 14px;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 14px;
  display: grid;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(31, 27, 22, .04), 0 2px 8px -4px rgba(31, 27, 22, .08);
}

.sb-banner:hover {
  box-shadow: 0 2px 3px rgba(31, 27, 22, .05), 0 10px 20px -10px rgba(31, 27, 22, .14);
}

.sb-banner:before {
  content: "";
  width: 4px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.sb-banner--attention:before {
  background: var(--attention);
}

.sb-banner--critical:before {
  background: var(--critical);
}

.sb-banner-icon {
  z-index: 1;
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
  position: relative;
}

.sb-banner--attention .sb-banner-icon {
  background: var(--attention);
  color: #fff5da;
}

.sb-banner--critical .sb-banner-icon {
  background: var(--critical);
  color: #ffede9;
}

.sb-banner-body {
  z-index: 1;
  min-width: 0;
  position: relative;
}

.sb-banner-title {
  font-family: var(--font-sans);
  color: var(--fg);
  letter-spacing: -.008em;
  font-size: 14.5px;
  font-weight: 600;
}

.sb-banner-desc {
  font-family: var(--font-sans);
  color: var(--fg-soft);
  margin-top: 2px;
  font-size: 12.5px;
  line-height: 1.4;
}

.sb-banner-desc b {
  color: var(--fg);
  font-weight: 600;
}

.sb-banner-action {
  z-index: 1;
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  .sb-banner {
    transition: none;
  }
}

/* [project]/packages/ui/src/primitives/modal/modal.css [app-client] (css) */
.sb-modal-scrim {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 90;
  animation: sb-modal-scrim-in var(--d-2) var(--ease-out-soft);
  background: rgba(31, 27, 22, .06);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

@keyframes sb-modal-scrim-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.sb-modal {
  z-index: 100;
  width: 460px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 64px);
  animation: sb-modal-pop var(--d-4) var(--ease-jelly) both;
  border-radius: 16px;
  flex-direction: column;
  display: flex;
  position: fixed;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

@keyframes sb-modal-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%)scale(.94);
  }

  55% {
    opacity: 1;
    transform: translate(-50%, -50%)scale(1.03);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%)scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sb-modal-scrim, .sb-modal {
    animation: none;
  }
}

.sb-modal-hd {
  align-items: center;
  gap: 14px;
  padding: 22px 56px 0 22px;
  display: flex;
}

.sb-modal-icon {
  background: var(--coral-glow-16);
  width: 40px;
  height: 40px;
  color: var(--accent);
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.sb-modal-title {
  font-family: var(--font-sans);
  letter-spacing: -.012em;
  color: var(--fg);
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.sb-modal-desc {
  font-family: var(--font-sans);
  color: var(--fg-soft);
  margin: 0;
  padding: 6px 22px 20px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.55;
}

.sb-modal-body {
  flex: 1;
  min-height: 0;
  padding: 14px 22px 20px;
  overflow-y: auto;
}

.sb-modal-footer {
  border-top: 1px solid var(--line);
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  display: flex;
}

.sb-modal-hint {
  font-family: var(--font-sans);
  color: var(--fg-muted);
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 500;
  display: inline-flex;
}

.sb-modal-hint kbd {
  font-family: var(--font-mono);
  background: var(--bg-raised);
  border: 1px solid var(--line);
  color: var(--fg-soft);
  letter-spacing: -.01em;
  border-bottom-width: 2px;
  border-radius: 5px;
  padding: 1px 6px;
  font-size: 10.5px;
  font-weight: 500;
}

.sb-modal-actions {
  gap: 8px;
  margin-left: auto;
  display: flex;
}

.sb-modal-close {
  width: 28px;
  height: 28px;
  color: var(--fg-muted);
  cursor: pointer;
  transition: background-color var(--d-1) var(--ease-out-soft), color var(--d-1) var(--ease-out-soft);
  z-index: 1;
  background: none;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  position: absolute;
  top: 14px;
  right: 14px;
}

.sb-modal-close:hover {
  background: var(--bg-sunken);
  color: var(--fg);
}

.sb-modal-close:active {
  animation: jelly-squish var(--d-4) var(--ease-jelly);
}

/* [project]/packages/ui/src/primitives/chip/chip.css [app-client] (css) */
.sb-chip {
  font-family: var(--font-sans);
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--fg-soft);
  cursor: pointer;
  transition: background var(--d-1) var(--ease-out-soft);
  border-radius: 9999px;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
}

.sb-chip:not(.sb-chip--decorative):hover {
  background: color-mix(in srgb, var(--fg) 6%, var(--bg));
}

[data-theme="dark"] .sb-chip, .dark .sb-chip {
  background: var(--bg-raised);
}

[data-theme="dark"] .sb-chip:not(.sb-chip--decorative):hover, .dark .sb-chip:not(.sb-chip--decorative):hover {
  background: color-mix(in srgb, var(--fg) 10%, var(--bg-raised));
}

.sb-chip:disabled, .sb-chip[aria-disabled="true"] {
  cursor: default;
  opacity: .55;
  pointer-events: none;
}

.sb-chip--decorative {
  cursor: default;
  transition: none;
}

.sb-chip--active {
  background: color-mix(in srgb, var(--accent) 10%, var(--bg));
  color: var(--accent-pressed);
  border-color: var(--accent);
}

.sb-chip--active:not(.sb-chip--decorative):hover {
  background: color-mix(in srgb, var(--accent) 16%, var(--bg));
}

[data-theme="dark"] .sb-chip--active, .dark .sb-chip--active {
  background: var(--coral-800);
  color: var(--coral-200);
  border-color: var(--coral-500);
}

[data-theme="dark"] .sb-chip--active:not(.sb-chip--decorative):hover, .dark .sb-chip--active:not(.sb-chip--decorative):hover {
  background: var(--coral-700);
}

.sb-chip-dot {
  border-radius: 50%;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
}

.sb-chip-dot--positive {
  background: var(--positive);
}

.sb-chip-dot--attention {
  background: var(--attention);
}

.sb-chip-dot--critical {
  background: var(--critical);
}

.sb-chip-dot--muted {
  background: var(--fg-muted);
}

/* [project]/packages/ui/src/primitives/help-hint/help-hint.css [app-client] (css) */
.sb-help-hint {
  width: 18px;
  height: 18px;
  color: var(--fg-faint);
  cursor: help;
  transition: color var(--d-1) var(--ease-out-soft);
  background: none;
  border: 0;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: inline-flex;
}

.sb-help-hint:hover {
  color: var(--accent);
}

.sb-help-hint:focus-visible {
  color: var(--accent);
}

.sb-help-hint:focus-visible {
  outline: 2px solid var(--coral-300);
  outline-offset: 2px;
}

/* [project]/packages/ui/src/primitives/spotlight/spotlight.css [app-client] (css) */
.sb-spotlight {
  padding: var(--s-6) var(--s-6);
  background: var(--accent);
  color: var(--accent-fg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), inset 0 -1px 0 rgba(0, 0, 0, .14), 0 8px 24px -8px var(--coral-glow-40), var(--sh-rest);
  gap: var(--s-5);
  border-radius: 16px;
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: clip;
}

.sb-spotlight-head {
  column-gap: var(--s-4);
  align-items: center;
  display: grid;
}

.sb-spotlight--with-icon .sb-spotlight-head {
  grid-template-columns: auto 1fr auto;
}

.sb-spotlight--no-icon .sb-spotlight-head {
  grid-template-columns: 1fr auto;
}

.sb-spotlight-badge {
  width: 52px;
  height: 52px;
  color: var(--accent-fg);
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 14px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.sb-spotlight-badge svg {
  width: 26px;
  height: 26px;
}

.sb-spotlight-body {
  min-width: 0;
}

.sb-spotlight-kicker {
  font-family: var(--font-sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--accent-fg) 92%, transparent);
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
}

.sb-spotlight-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--text-lg);
  line-height: var(--lh-snug, 1.2);
  letter-spacing: -.018em;
  color: var(--accent-fg);
  margin: 0;
}

.sb-spotlight-sub {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: color-mix(in srgb, var(--accent-fg) 90%, transparent);
  max-width: 60ch;
  margin: 4px 0 0;
  font-weight: 500;
  line-height: 1.4;
}

.sb-spotlight-actions {
  gap: var(--s-2);
  flex-shrink: 0;
  display: flex;
}

.sb-spotlight--window-chrome {
  gap: 0;
  padding: 0;
}

.sb-spotlight--window-chrome .sb-spotlight-head {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  column-gap: var(--s-3);
  padding: 10px 16px;
}

.sb-spotlight--window-chrome .sb-spotlight-badge {
  width: auto;
  height: auto;
  color: var(--fg-soft);
  background: none;
  border: none;
  border-radius: 0;
}

.sb-spotlight--window-chrome .sb-spotlight-badge svg {
  width: 18px;
  height: 18px;
}

.sb-spotlight--window-chrome .sb-spotlight-kicker {
  color: var(--fg-soft);
  background: color-mix(in srgb, var(--fg) 4%, transparent);
  border-color: var(--line);
  margin-bottom: 2px;
}

.sb-spotlight--window-chrome .sb-spotlight-title {
  color: var(--fg);
  font-size: var(--text-base);
}

.sb-spotlight--window-chrome .sb-spotlight-sub {
  color: var(--fg-soft);
  font-size: var(--text-xs);
  max-width: none;
  margin-top: 2px;
}

.sb-spotlight--window-chrome .sb-spotlight-content {
  padding: var(--s-5) var(--s-6);
}

/* [project]/packages/ui/src/primitives/tabs/tabs.css [app-client] (css) */
.sb-tabs {
  border-bottom: 1px solid var(--line);
  gap: 0;
  display: flex;
  position: relative;
}

.sb-tab {
  font-family: var(--font-sans);
  letter-spacing: -.005em;
  color: var(--fg-muted);
  cursor: pointer;
  transition: color var(--d-1) var(--ease-out-soft), transform var(--d-3) var(--ease-jelly);
  background: none;
  border: none;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  position: relative;
}

.sb-tab:hover {
  color: var(--fg);
}

.sb-tab--on {
  color: var(--fg);
  animation: sb-tab-pop var(--d-4) var(--ease-jelly) both;
}

@keyframes sb-tab-pop {
  0% {
    transform: translateY(0)scale(1);
  }

  45% {
    transform: translateY(-1px)scale(1.03);
  }

  70% {
    transform: translateY(0)scale(.99);
  }

  100% {
    transform: translateY(0)scale(1);
  }
}

.sb-tab--on:after {
  content: "";
  background: var(--accent);
  height: 2px;
  box-shadow: var(--glow-coral-sm);
  transform-origin: center;
  animation: sb-tab-underline var(--d-4) var(--ease-jelly) both;
  border-radius: 2px 2px 0 0;
  position: absolute;
  bottom: -1px;
  left: 10px;
  right: 10px;
}

@keyframes sb-tab-underline {
  0% {
    opacity: 0;
    transform: scaleX(.2);
  }

  55% {
    opacity: 1;
    transform: scaleX(1.08);
  }

  80% {
    transform: scaleX(.97);
  }

  100% {
    transform: scaleX(1);
  }
}

.sb-tab:active {
  animation: jelly-squish var(--d-4) var(--ease-jelly);
}

.sb-tab-count {
  background: var(--bg-sunken);
  font-family: var(--font-mono);
  color: var(--fg-muted);
  transition: background var(--d-2) var(--ease-out-soft), color var(--d-2) var(--ease-out-soft);
  border-radius: 999px;
  margin-left: 6px;
  padding: 1px 6px;
  font-size: 10.5px;
}

.sb-tab--on .sb-tab-count {
  background: var(--coral-glow-16);
  color: var(--coral-700);
}

.sb-seg {
  background: var(--bg-sunken);
  box-shadow: var(--neu-in);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 3px;
  display: inline-flex;
}

.sb-seg--vertical {
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  width: 100%;
  padding: 4px;
  display: flex;
}

.sb-seg--vertical .sb-sg {
  justify-content: flex-start;
  align-items: center;
  gap: var(--s-2);
  text-align: left;
  border-radius: 8px;
  width: 100%;
  padding: 8px 12px;
  display: flex;
}

.sb-sg {
  font-family: var(--font-sans);
  color: var(--fg-soft);
  cursor: pointer;
  transition: color var(--d-2) var(--ease-out-soft);
  background: none;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 7px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  position: relative;
}

.sb-sg:hover {
  color: var(--fg);
}

.sb-sg--on {
  background: var(--bg-raised);
  color: var(--fg);
  border-color: var(--line-strong);
  box-shadow: var(--sh-rest);
  animation: sb-seg-pop var(--d-4) var(--ease-jelly) both;
}

@keyframes sb-seg-pop {
  0% {
    transform: scale(.94);
  }

  50% {
    transform: scale(1.04);
  }

  75% {
    transform: scale(.99);
  }

  100% {
    transform: scale(1);
  }
}

.sb-sg:active {
  transform: scale(.96);
}

@media (prefers-reduced-motion: reduce) {
  .sb-tab, .sb-tab--on, .sb-tab--on:after, .sb-sg--on {
    animation: none;
  }
}

/* [project]/packages/ui/src/primitives/locked-feature/locked-feature.css [app-client] (css) */
.sb-locked-feature {
  isolation: isolate;
  display: block;
  position: relative;
}

.sb-locked-feature-content {
  filter: blur(6px) saturate(.85);
  opacity: .55;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.sb-locked-feature-overlay {
  z-index: 1;
  background: color-mix(in srgb, var(--bg-raised) 35%, transparent);
  -webkit-backdrop-filter: saturate(1.05);
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.sb-locked-feature-cta {
  font-family: var(--font-sans);
  letter-spacing: -.005em;
  color: var(--fg);
  background: var(--bg-raised);
  border: 1px solid var(--line);
  cursor: pointer;
  border-radius: 9999px;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  transition: background .12s, transform .12s;
  display: inline-flex;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04), 0 2px 6px rgba(0, 0, 0, .06);
}

.sb-locked-feature-cta:hover {
  background: color-mix(in srgb, var(--bg-raised) 92%, var(--fg) 8%);
}

.sb-locked-feature-cta:active {
  transform: translateY(1px);
}

.sb-locked-feature-cta:focus-visible {
  outline: 2px solid var(--focus-ring, var(--fg));
  outline-offset: 2px;
}

/* [project]/packages/ui/src/primitives/chart-donut/chart-donut.css [app-client] (css) */
.sb-chart-donut {
  flex-shrink: 0;
  position: relative;
}

.sb-chart-donut svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.sb-chart-donut-track {
  stroke: var(--bg-sunken);
}

.sb-chart-donut-fill {
  stroke: var(--positive);
  transition: stroke-dashoffset var(--d-5) var(--ease-out-spring);
}

.sb-chart-donut--attention .sb-chart-donut-fill {
  stroke: var(--attention);
}

.sb-chart-donut--critical .sb-chart-donut-fill {
  stroke: var(--critical);
}

@media (prefers-reduced-motion: reduce) {
  .sb-chart-donut-fill {
    transition: none;
  }
}

.sb-chart-donut-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.sb-chart-donut-kicker {
  font-family: var(--font-sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 700;
  line-height: 1;
}

.sb-chart-donut-pct {
  font-family: var(--font-sans);
  color: var(--positive);
  font-variant-numeric: tabular-nums;
  letter-spacing: -.025em;
  font-weight: 700;
  line-height: 1;
}

.sb-chart-donut--attention .sb-chart-donut-pct {
  color: var(--attention);
}

.sb-chart-donut--critical .sb-chart-donut-pct {
  color: var(--critical);
}

.sb-chart-donut-pc {
  color: var(--fg-muted);
  margin-left: 1px;
  font-weight: 500;
}

.sb-chart-donut--inline {
  width: 56px;
  height: 56px;
}

.sb-chart-donut--inline .sb-chart-donut-kicker {
  font-size: 8px;
}

.sb-chart-donut--inline .sb-chart-donut-pct {
  margin-top: 3px;
  font-size: 17px;
}

.sb-chart-donut--inline .sb-chart-donut-pc {
  font-size: 10px;
}

.sb-chart-donut--md {
  width: 88px;
  height: 88px;
}

.sb-chart-donut--md .sb-chart-donut-kicker {
  font-size: 9px;
}

.sb-chart-donut--md .sb-chart-donut-pct {
  margin-top: 5px;
  font-size: 26px;
}

.sb-chart-donut--md .sb-chart-donut-pc {
  font-size: 13px;
}

.sb-chart-donut--lg {
  width: 128px;
  height: 128px;
}

.sb-chart-donut--lg .sb-chart-donut-kicker {
  font-size: 10px;
}

.sb-chart-donut--lg .sb-chart-donut-pct {
  margin-top: 7px;
  font-size: 38px;
}

.sb-chart-donut--lg .sb-chart-donut-pc {
  font-size: 18px;
}

/* [project]/apps/web/src/app/(with-chrome)/jobs/[id]/sections/job-h1b-simulator/styles.css [app-client] (css) */
.sb-job-sim-grid {
  gap: var(--s-6);
  grid-template-columns: minmax(0, 1fr);
  display: grid;
}

@media (min-width: 1024px) {
  .sb-job-sim-grid {
    gap: var(--s-6);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    align-items: start;
  }
}

.sb-job-sim-form {
  gap: var(--s-3);
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.sb-job-sim-identity {
  align-items: center;
  gap: var(--s-3);
  padding-bottom: var(--s-3);
  margin-bottom: var(--s-3);
  border-bottom: 1px solid rgba(255, 255, 255, .24);
  min-width: 0;
  display: flex;
}

.sb-job-sim-identity-meta {
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.sb-job-sim-identity-co {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--accent-fg);
  font-weight: 600;
}

.sb-job-sim-identity-role {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: color-mix(in srgb, var(--accent-fg) 80%, transparent);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.sb-job-sim-identity-score {
  flex-shrink: 0;
  margin-left: auto;
}

.sb-job-sim-field {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.sb-job-sim-label-row {
  align-items: center;
  gap: 4px;
  display: inline-flex;
}

.sb-job-sim-label-row .sb-help-hint {
  color: color-mix(in srgb, var(--accent-fg) 65%, transparent);
}

.sb-job-sim-label-row .sb-help-hint:hover {
  color: var(--accent-fg);
}

.sb-job-sim-label-row .sb-help-hint:focus-visible {
  color: var(--accent-fg);
}

.sb-job-sim-label-row .sb-help-hint:focus-visible {
  outline-color: color-mix(in srgb, var(--accent-fg) 50%, transparent);
}

.sb-job-sim-label {
  font-family: var(--font-sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--accent-fg) 85%, transparent);
  font-size: 11px;
  font-weight: 700;
}

.sb-job-sim-chips {
  gap: var(--s-1);
  flex-wrap: wrap;
  align-items: center;
  margin-top: 6px;
  display: flex;
}

.sb-job-sim-submit.sb-btn--primary {
  background: var(--accent-fg);
  color: var(--coral-700);
  border: none;
}

.sb-job-sim-submit.sb-btn--primary:hover:not(:disabled) {
  background: var(--coral-50);
  color: var(--coral-800);
}

.sb-job-sim-submit.sb-btn--primary:disabled {
  background: color-mix(in srgb, var(--accent-fg) 60%, transparent);
  color: var(--coral-700);
}

.sb-job-sim-hint {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: color-mix(in srgb, var(--accent-fg) 80%, transparent);
  text-align: center;
  margin: 0;
}

.sb-job-sim-caption {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: color-mix(in srgb, var(--accent-fg) 80%, transparent);
  margin: 4px 0 0;
  font-style: italic;
}

.sb-job-sim-result {
  gap: var(--s-2);
  padding: var(--s-3) var(--s-4);
  background: var(--bg-raised);
  min-width: 0;
  scroll-margin-top: var(--s-2);
  border-radius: 12px;
  flex-direction: column;
  display: flex;
}

@media (min-width: 1024px) {
  .sb-job-sim-result {
    top: calc(var(--sb-notch-bottom, 68px)  + var(--s-3));
    max-height: calc(100vh - var(--sb-notch-bottom, 68px)  - var(--s-5));
    position: -webkit-sticky;
    position: sticky;
    overflow-y: auto;
  }
}

.sb-job-sim-verdict-pane {
  gap: var(--s-2);
  flex-direction: column;
  width: 100%;
  display: flex;
}

.sb-job-sim-verdict-top {
  align-items: stretch;
  gap: var(--s-3);
  flex-direction: row;
  width: 100%;
  display: flex;
}

.sb-job-sim-score-block {
  flex-direction: column;
  flex: none;
  align-items: center;
  gap: 6px;
  display: flex;
}

.sb-job-sim-score-caption {
  font-family: var(--font-sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-align: center;
  font-size: 10px;
  font-weight: 700;
}

.sb-job-sim-verdict-text {
  flex-direction: column;
  flex: auto;
  gap: 0;
  min-width: 0;
  display: flex;
}

.sb-job-sim-verdict-kicker {
  font-family: var(--font-sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-size: 11px;
  font-weight: 700;
}

.sb-job-sim-verdict-headline {
  font-family: var(--font-display, var(--font-sans));
  font-size: var(--text-lg);
  color: var(--fg);
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}

.sb-job-sim-verdict-sentence {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--fg-soft);
  margin: var(--s-2) 0 0;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 4.35em;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
}

.sb-job-sim-donut {
  justify-content: center;
  align-items: center;
  display: flex;
}

.sb-job-sim-delta {
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  color: var(--fg-muted);
  background: color-mix(in srgb, var(--fg-muted) 12%, transparent);
  border-radius: 999px;
  align-items: center;
  gap: 3px;
  margin-top: auto;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
}

.sb-job-sim-delta--up {
  color: var(--positive);
  background: color-mix(in srgb, var(--positive) 12%, transparent);
}

.sb-job-sim-delta--down {
  color: var(--critical);
  background: color-mix(in srgb, var(--critical) 12%, transparent);
}

.sb-job-sim-delta--skeleton {
  color: rgba(0, 0, 0, 0);
  background: none;
}

.sb-job-sim-pw--skeleton {
  gap: var(--s-2);
}

.sb-job-sim-verdict-pane--placeholder .sb-job-sim-verdict-headline, .sb-job-sim-verdict-pane--placeholder .sb-job-sim-verdict-sentence, .sb-job-sim-pw--placeholder .sb-job-sim-pw-value {
  color: var(--fg-soft);
}

.sb-job-sim-roles--placeholder .sb-job-sim-by-soc-list li {
  color: var(--fg-muted);
}

.sb-job-sim-roles--placeholder .sb-job-sim-by-soc-score {
  color: var(--fg-muted);
  font-weight: 500;
}

.sb-job-sim-pw {
  padding: var(--s-2) var(--s-3);
  background: var(--bg-sunken);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  display: flex;
}

.sb-job-sim-pw-label {
  color: var(--fg-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}

.sb-job-sim-pw-value {
  color: var(--fg);
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.sb-job-sim-pw-level {
  color: var(--fg-muted);
  font-weight: 400;
}

.sb-job-sim-pw-locked {
  min-width: 14ch;
  display: inline-block;
}

.sb-job-sim-quota-benefits {
  gap: var(--s-2);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--fg);
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.sb-job-sim-quota-benefits li {
  padding-left: 22px;
  line-height: 1.45;
  position: relative;
}

.sb-job-sim-quota-benefits li:before {
  content: "✓";
  color: var(--brand, var(--fg));
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 639px) {
  .sb-job-sim-verdict-top {
    align-items: center;
    gap: var(--s-3);
    flex-direction: column;
  }

  .sb-job-sim-verdict-text {
    width: 100%;
  }

  .sb-job-sim-verdict-sentence {
    -webkit-line-clamp: unset;
    height: auto;
    max-height: none;
    display: block;
    overflow: visible;
  }

  .sb-job-sim-pw {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .sb-job-sim-pw-value {
    font-size: var(--text-sm);
  }
}

.sb-job-sim-roles {
  margin-top: var(--s-2);
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
  gap: var(--s-2);
  flex-direction: column;
  display: flex;
}

.sb-job-sim-by-soc {
  gap: var(--s-2);
  flex-direction: column;
  width: 100%;
  display: flex;
}

.sb-job-sim-by-soc-title {
  font-family: var(--font-sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin: 0;
  font-size: 11px;
  font-weight: 700;
}

.sb-job-sim-by-soc-list {
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.sb-job-sim-by-soc-list li {
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s-2);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--fg-soft);
  display: flex;
}

.sb-job-sim-by-soc-soc {
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
  overflow: hidden;
}

.sb-job-sim-by-soc-score {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  color: var(--fg);
  letter-spacing: -.01em;
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 600;
}

.sb-job-sim-by-soc-detail {
  color: var(--fg-muted);
  font-size: .85em;
  font-weight: 400;
}

.sb-job-sim-disclaimer {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: color-mix(in srgb, var(--accent-fg) 60%, transparent);
  margin: var(--s-3) 0 0;
  padding-top: var(--s-3);
  border-top: 1px solid color-mix(in srgb, var(--accent-fg) 14%, transparent);
  line-height: 1.5;
}

/* [project]/packages/ui/src/primitives/badge/badge.css [app-client] (css) */
.sb-badge {
  font-family: var(--font-sans);
  letter-spacing: -.005em;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  color: var(--fg-soft);
  border-radius: 9999px;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
}

.sb-badge--sunken {
  background: var(--bg-sunken);
}

.sb-badge--coral {
  color: var(--coral-700);
}

.sb-badge--positive {
  color: #1e5a41;
}

.sb-badge--attention {
  color: #7a5510;
}

.sb-badge--critical {
  color: var(--critical);
}

.sb-badge--ghost {
  color: var(--fg-soft);
}

.sb-badge-dot {
  background: currentColor;
  border-radius: 50%;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
}

.sb-badge-dot--muted {
  background: var(--fg-muted);
}

.sb-badge-icon {
  flex-shrink: 0;
  align-items: center;
  display: inline-flex;
}

/* [project]/packages/ui/src/primitives/chart-bar/chart-bar.css [app-client] (css) */
.sb-chart-bar {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  display: grid;
}

.sb-chart-bar-label {
  font-family: var(--font-sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  font-size: 9px;
  font-weight: 700;
}

.sb-chart-bar-rail {
  background: var(--bg-sunken);
  border-radius: 999px;
  height: 7px;
  overflow: hidden;
}

.sb-chart-bar-fill {
  background: var(--positive);
  border-radius: inherit;
  height: 100%;
  transition: width var(--d-3) var(--ease-out-soft);
}

.sb-chart-bar--attention .sb-chart-bar-fill {
  background: var(--attention);
}

.sb-chart-bar--critical .sb-chart-bar-fill {
  background: var(--critical);
}

@media (prefers-reduced-motion: reduce) {
  .sb-chart-bar-fill {
    transition: none;
  }
}

.sb-chart-bar-score {
  align-items: baseline;
  display: inline-flex;
}

.sb-chart-bar-n {
  font-family: var(--font-sans);
  letter-spacing: -.025em;
  color: var(--positive);
  font-variant-numeric: tabular-nums;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.sb-chart-bar--attention .sb-chart-bar-n {
  color: var(--attention);
}

.sb-chart-bar--critical .sb-chart-bar-n {
  color: var(--critical);
}

.sb-chart-bar-d {
  font-family: var(--font-sans);
  color: var(--fg-muted);
  margin-left: 1px;
  font-size: 10.5px;
  font-weight: 500;
}

.sb-chart-bar--stacked {
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 8px;
}

.sb-chart-bar--stacked .sb-chart-bar-label {
  letter-spacing: .14em;
  color: var(--fg-muted);
  font-size: 9.5px;
  font-weight: 600;
}

.sb-chart-bar--stacked .sb-chart-bar-score {
  font-variant-numeric: tabular-nums;
}

.sb-chart-bar--stacked .sb-chart-bar-n {
  font-family: var(--font-mono);
  letter-spacing: -.02em;
  font-size: 22px;
  font-weight: 600;
}

.sb-chart-bar--stacked .sb-chart-bar-d {
  font-family: var(--font-sans);
  color: var(--fg-faint);
  margin-left: 2px;
  font-size: 11px;
  font-weight: 500;
}

.sb-chart-bar--stacked .sb-chart-bar-rail {
  box-shadow: inset var(--sh-flat);
  grid-area: 2 / 1 / auto / -1;
  position: relative;
}

.sb-chart-bar--stacked .sb-chart-bar-fill {
  transition: width var(--d-5, .6s) var(--ease-out-spring, ease);
}

@media (prefers-reduced-motion: reduce) {
  .sb-chart-bar--stacked .sb-chart-bar-fill {
    transition: none;
  }
}

[data-theme="dark"] .sb-chart-bar--stacked .sb-chart-bar-rail, .dark .sb-chart-bar--stacked .sb-chart-bar-rail {
  background: var(--bg-raised);
  box-shadow: none;
}

/* [project]/apps/web/src/app/(with-chrome)/jobs/[id]/sections/icon-circle-button.css [app-client] (css) */
.sb-icb {
  border: 1px solid var(--line);
  background: var(--bg-raised);
  width: 36px;
  height: 36px;
  color: var(--fg-soft);
  box-shadow: var(--sh-flat);
  cursor: pointer;
  transition: color var(--d-1, .12s) var(--ease-out-soft, ease), border-color var(--d-1, .12s) var(--ease-out-soft, ease);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.sb-icb:hover {
  color: var(--fg);
}

.sb-icb:focus-visible {
  color: var(--fg);
}

.sb-icb:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.sb-icb--on {
  border-color: var(--coral-200);
}

/* [project]/apps/web/src/app/(with-chrome)/jobs/[id]/sections/job-hero.css [app-client] (css) */
.sb-job-hero {
  gap: var(--s-4);
  flex-direction: column;
  display: flex;
  position: relative;
}

.sb-job-hero-actions {
  display: none;
}

@media (max-width: 768px) {
  .sb-job-hero-actions {
    gap: var(--s-2);
    z-index: 1;
    display: flex;
    position: absolute;
    top: 6px;
    right: 18px;
  }
}

.sb-job-hero-head {
  column-gap: var(--s-4);
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  min-width: 0;
  display: grid;
}

.sb-job-hero-titleblock {
  gap: var(--s-1);
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.sb-job-hero-title {
  word-break: break-word;
  margin: 0;
}

.sb-job-hero-meta {
  font-size: var(--text-sm);
  color: var(--fg-muted);
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0;
  overflow: hidden;
}

.sb-job-hero-meta-sep {
  margin: 0 var(--s-2);
  color: var(--fg-faint);
}

.sb-job-hero-meta--mobile {
  display: none;
}

.sb-job-hero-donut {
  align-self: center;
}

.sb-job-hero-chips {
  display: none;
}

@media (max-width: 768px) {
  .sb-job-hero {
    gap: 14px;
    padding: 6px 18px 8px;
  }

  .sb-job-hero-head {
    align-items: flex-start;
    column-gap: 14px;
  }

  .sb-job-hero {
    --sb-jh-actions-w: calc((36px * 2)  + var(--s-2)  + 8px);
  }

  .sb-job-hero-titleblock {
    padding-right: var(--sb-jh-actions-w);
  }

  .sb-job-hero-meta--mobile {
    font-family: var(--font-sans);
    color: var(--fg-soft);
    white-space: normal;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
  }

  .sb-job-hero-meta-dot {
    background: var(--fg-faint);
    border-radius: 50%;
    flex-shrink: 0;
    width: 3px;
    height: 3px;
  }

  .sb-job-hero-meta-dept {
    color: var(--fg-muted);
    font-size: 11.5px;
    font-weight: 500;
  }

  .sb-job-hero-meta--desktop {
    display: none;
  }

  .sb-job-hero-title {
    letter-spacing: -.018em;
    text-wrap: pretty;
    margin-top: 2px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
  }

  .sb-job-hero-donut--desktop, .sb-job-hero-match-wrap {
    display: none;
  }

  .sb-job-hero-chips {
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
    display: flex;
  }

  .sb-job-hero-chip--salary {
    font-family: var(--font-mono);
    font-variant-numeric: tabular-nums;
    letter-spacing: -.01em;
  }

  .sb-job-hero-chip--posted {
    color: var(--fg-muted);
  }
}

/* [project]/apps/web/src/app/(with-chrome)/jobs/[id]/sections/job-quick-details.css [app-client] (css) */
.sb-job-qd {
  gap: var(--s-3);
  padding: var(--s-5);
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 14px;
  flex-direction: column;
  display: flex;
}

.sb-job-qd-overline {
  font-family: var(--font-sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin: 0;
  font-size: 11px;
  font-weight: 700;
}

.sb-job-qd-rows {
  gap: var(--s-3);
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.sb-job-qd-row {
  column-gap: var(--s-3);
  grid-template-columns: 18px 1fr;
  align-items: start;
  min-width: 0;
  display: grid;
}

.sb-job-qd-row-icon {
  color: var(--fg-muted);
  justify-content: center;
  align-items: center;
  margin-top: 2px;
  display: inline-flex;
}

.sb-job-qd-row-text {
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.sb-job-qd-row-value {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--fg);
  word-break: break-word;
  font-weight: 500;
}

.sb-job-qd-row-sub {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--fg-muted);
}

/* [project]/apps/web/src/app/(with-chrome)/jobs/[id]/job-detail-view.css [app-client] (css) */
.sb-job-detail-page {
  padding: 0 var(--s-4) 64px;
}

@media (max-width: 768px) {
  .sb-job-detail-page {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }
}

.sb-job-detail {
  gap: var(--s-5);
  flex-direction: column;
  display: flex;
}

.sb-job-detail-grid, .sb-job-detail-top {
  gap: var(--s-6);
  flex-direction: column;
  display: flex;
}

@media (min-width: 1024px) {
  .sb-job-detail-grid {
    gap: var(--s-8);
  }

  .sb-job-detail-top {
    gap: var(--s-8);
    grid-template-columns: 1fr 320px;
    grid-template-areas: "hero rail"
                         "main rail";
    display: grid;
  }

  .sb-job-detail-hero {
    grid-area: hero;
  }

  .sb-job-detail-main {
    grid-area: main;
  }

  .sb-job-detail-rail {
    top: var(--sb-sticky-top, var(--s-4));
    grid-area: rail;
    align-self: start;
    position: -webkit-sticky;
    position: sticky;
  }
}

.sb-job-detail-hero, .sb-job-detail-main, .sb-job-detail-rail {
  gap: var(--s-4);
  flex-direction: column;
  min-width: 0;
  display: flex;
}

.sb-job-detail-rail-col {
  display: contents;
}

@media (min-width: 769px) and (max-width: 1023px) {
  .sb-job-detail-rail {
    flex-direction: row;
    align-items: flex-start;
  }

  .sb-job-detail-rail-col {
    gap: var(--s-4);
    flex-direction: column;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
  }
}

@media (min-width: 1024px) {
  .sb-job-detail-rail-cta {
    order: -1;
  }
}

.sb-job-detail-comments {
  flex-direction: column;
  min-width: 0;
  display: flex;
}

@media (max-width: 768px) {
  .sb-job-detail-crumb, .sb-job-detail-rail-cta {
    display: none;
  }
}

/*# sourceMappingURL=_22f0efa1._.css.map*/