/* ===== Страница регистрации Time Jobs ===== */

.auth-page {
    min-height: calc(100vh - 80px); /* примерно высота хедера */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px 48px;
}

@media (min-width: 768px) {
    .auth-page {
        padding: 48px 24px 64px;
    }
}

:root {
  --tj-accent: #4CFA00;
}

/* Единый фон для всех glass-card */
.glass-card {
  background: hsl(var(--twc-grey-950) / var(--twc-grey-950-opacity, var(--tw-bg-opacity)));
}

/* Общий фон, чтобы совпадал с главной */
html[data-theme="dark"] body {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--twc-grey-1000) / var(--tw-bg-opacity));
  color: hsl(var(--twc-grey-50) / 1);
}

/* Страница регистрации */
.tj-auth {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  background-image: url("/static/img/noise.png");
  background-position: 0 0;
  background-size: 1440px;
  margin-top: 20px;
}

/* Карточка */
.tj-auth__card {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  padding: 24px 24px 28px;
  background: hsl(var(--twc-grey-950) / var(--twc-grey-950-opacity, var(--tw-bg-opacity)));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Автарка TJ */
.tj-auth__avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  background: var(--tj-accent);
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
}

/* Заголовок и подзаголовок */
.tj-auth__title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
  color: #fff;
}

.tj-auth__subtitle {
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
  color: hsl(var(--twc-grey-400) / 1);
}

/* Форма и поля */
.tj-auth__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tj-auth__input {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid hsl(var(--twc-grey-700) / 1);
  background-color: hsl(var(--twc-grey-900) / 1);
  color: #fff;
  font-size: 14px;
}

.tj-auth__input::placeholder {
  color: hsl(var(--twc-grey-400) / 1);
}

/* Кнопки ролей */
.tj-auth__roles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  font-size: 14px;
}

.tj-auth__role-btn {
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid hsl(var(--twc-grey-700) / 1);
  background-color: hsl(var(--twc-grey-900) / 1);
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition:
    border-color .15s ease,
    background-color .15s ease,
    box-shadow .15s ease;
}

.tj-auth__role-btn--active {
  border-color: var(--tj-accent);
  background: hsl(var(--twc-grey-900) / 1);
  box-shadow:
    0 0 0 1px rgba(76, 250, 0, 0.2),
    0 16px 40px rgba(0, 0, 0, 0.8);
}

/* Кнопка отправки */
.tj-auth__submit {
  margin-top: 4px;
  padding: 10px 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #4CFA00 0%, #6BFF3C 100%);
  color: #000;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 3px 20px rgba(76, 250, 0, 0.45);
}

/* Низ формы */
.tj-auth__footer {
  margin-top: 16px;
  font-size: 13px;
  text-align: center;
  color: hsl(var(--twc-grey-400) / 1);
}

.tj-auth__footer a {
  color: var(--tj-accent);
  text-decoration: none;
}

.tj-auth__footer a:hover {
  text-decoration: underline;
}




/* ===== Профиль Time Jobs ===== */

.profile-page {
    min-height: calc(100vh - 80px);
    padding: 0px 16px 56px;
    display: flex;
    justify-content: center;
}

.profile-inner {
    width: 100%;
    max-width: 1120px;
}

.vacancies-page {
    min-height: calc(100vh - 80px);
    padding: 0px 16px 56px;
    display: flex;
    justify-content: center;
}

.vacancies-inner {
    width: 100%;
    max-width: 1120px;
}
/* === HERO === */

.profile-hero {
    margin-bottom: 20px;
    margin-top: 20px;
    border-radius: 18px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 768px) {
    .profile-hero {
        padding: 20px 22px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.profile-hero-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.profile-avatar-img {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.profile-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.profile-role {
    margin-top: 3px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: hsl(var(--twc-grey-400) / 1);
}

.profile-hero-right {
    display: grid;
    grid-auto-flow: column;
    gap: 12px;
    align-items: flex-end;
}

@media (max-width: 767px) {
    .profile-hero-right {
        grid-auto-flow: row;
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
    }
}

/* поля статистики выглядят как обычные поля формы */
.profile-stat-field {
    min-width: 120px;
}

/* === Нижняя сетка === */

.profile-body {
    display: grid;
    grid-template-columns: minmax(0, 1.9fr) minmax(0, 1.1fr);
    gap: 18px;
    align-items: stretch;
}

@media (max-width: 900px) {
    .profile-body {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Карточки */

.profile-card {
    padding: 20px 20px 22px;
    color: hsl(var(--twc-grey-50) / 1);
    display: flex;
    flex-direction: column;
}

.profile-card--main {
    padding: 22px 22px 24px;
}

/* правая колонка БЕЗ своих градиентов/тени — как обычная форма */
.profile-card--side {
    padding: 20px 20px 22px;
}

.profile-card__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #ffffff;
}

/* Форма */

.profile-form {
    margin-top: 4px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.profile-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
}

@media (min-width: 640px) {
    .profile-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .profile-field--wide {
        grid-column: 1 / -1;
    }
}

.profile-field {
    font-size: 13px;
}

.profile-label {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: hsl(var(--twc-grey-400) / 1);
}

/* Инпуты */

.profile-input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid hsl(var(--twc-grey-700) / 1);
    background-color: hsl(var(--twc-grey-900) / 1);
    color: #ffffff;
    font-size: 13px;
    padding: 8px 11px;
    outline: none;
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        background-color 0.15s ease;
}

.profile-input::placeholder {
    color: hsl(var(--twc-grey-500) / 1);
}

.profile-input:focus {
    border-color: var(--tj-accent);
    box-shadow: 0 0 0 1px rgba(76, 250, 0, 0.28);
    background-color: hsl(var(--twc-grey-950) / 1);
}

.profile-input--textarea {
    resize: vertical;
    min-height: 110px;
}

.profile-input--readonly {
    cursor: default;
}

/* Страховой взнос */

.profile-deposit {
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 12px;
    background-color: hsl(var(--twc-grey-950) / 1);
    border: 1px solid rgba(148, 163, 184, 0.4);
    display: grid;
    gap: 8px;
}

.profile-deposit-text {
    font-size: 12px;
    color: hsl(var(--twc-grey-200) / 1);
}

.profile-deposit-field {
    max-width: 220px;
}

/* Кнопка сохранить — прижата вниз */

.profile-actions {
    margin-top: 10px;
    display: flex;
	justify-content: flex-end;
}

.profile-save-btn {
    border: none;
    border-radius: 10px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(90deg, #4CFA00 0%, #6BFF3C 100%);
    color: #020617;
    box-shadow: 0 3px 18px rgba(76, 250, 0, 0.35);
}

/* Правая колонка */

.profile-side-section {
    margin-bottom: 14px;
}

.profile-side-subtitle {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: hsl(var(--twc-grey-200) / 1);
}

.profile-note {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.5;
    color: hsl(var(--twc-grey-400) / 1);
}

.profile-note code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 11px;
    background-color: rgba(15, 23, 42, 0.85);
    padding: 1px 4px;
    border-radius: 4px;
}

.profile-text {
    font-size: 13px;
    color: hsl(var(--twc-grey-200) / 1);
}

/* Кнопка выйти — прижата вниз и на одной высоте с "Сохранить" */

.profile-side-actions {
    margin-top: auto;
    display: flex;
    justify-content: flex-start;
}

.profile-logout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    background: #ef4444;
    color: #ffffff;
}

.profile-action-card {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

.profile-action-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profile-action-card__eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsl(var(--twc-grey-400));
}

.profile-action-card__hint {
  font-size: 13px;
  color: hsl(var(--twc-grey-200));
}

.profile-action-card__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.profile-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.15s ease;
}

.profile-action-btn__icon {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
}

.profile-action-btn svg {
  width: 18px;
  height: 18px;
}

.profile-action-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: hsl(var(--twc-grey-50));
  border-color: rgba(255, 255, 255, 0.12);
}

.profile-action-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
}

.profile-action-btn--accent {
  background: linear-gradient(90deg, #4CFA00 0%, #6BFF3C 100%);
  color: #0b1a05;
  border-color: rgba(76, 250, 0, 0.4);
  box-shadow: 0 12px 30px rgba(76, 250, 0, 0.35);
}

.profile-action-btn--accent:hover {
  box-shadow: 0 16px 36px rgba(76, 250, 0, 0.42);
}

@media (max-width: 640px) {
  .profile-action-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-action-card__buttons {
    width: 100%;
    justify-content: flex-start;
  }

  .profile-action-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==== ДОКРУТКА ПРОФИЛЯ: линии и позиционирование ===== */

/* горизонтальная линия под блоком "о себе" */
.profile-body {
    border-top: 1px solid rgba(148, 163, 184, 0.55); /* серая полоса */
    margin-top: 16px;
    padding-top: 16px;
}

/* вертикальная линия между левой и правой колонкой – через border-left у правой */
@media (min-width: 900px) {
    .profile-card--side {
        border-left: 1px solid rgba(148, 163, 184, 0.55);
        padding-left: 20px;   /* чтобы текст не прилипал к линии */
        margin-left: 20px;
    }

    .profile-body {
        column-gap: 32px;      /* чуть больше зазор между колонками */
    }
}

/* сдвигаем блок "Рейтинг / Вакансий / Откликов" ближе к аватару */
@media (min-width: 768px) {
    .profile-hero {
        justify-content: flex-start;
        gap: 24px;                 /* расстояние между левой и правой частью */
    }

    .profile-hero-right {
        margin-left: 24px;         /* подвигаем блок статистики к имени */
        justify-content: flex-start;
    }
}

.profile-card--side {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
}

/* общий блок "Сессия + текст + кнопка", прижат вниз */
.profile-side-session {
    margin-top: auto;              /* уезжает в самый низ карточки */
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ===== ������� ������������ ===== */
.employer-hero {
  margin: 20px 0 12px;
  padding: 22px 22px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: hsl(var(--twc-grey-950) / var(--twc-grey-950-opacity, var(--tw-bg-opacity)));
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.employer-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(var(--twc-grey-400));
  margin-bottom: 6px;
}

.employer-tabs {
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: hsl(var(--twc-grey-950) / var(--twc-grey-950-opacity, var(--tw-bg-opacity)));
}

.employer-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.15s ease;
}

.employer-tab:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.employer-tab.is-active {
  border-color: rgba(76, 250, 0, 0.5);
  background: rgba(76, 250, 0, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.employer-tab__counter {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--tj-accent);
  font-size: 12px;
  font-weight: 600;
}

.employer-summary {
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 12px;
}

.employer-callout,
.employer-metric {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: hsl(var(--twc-grey-950) / var(--twc-grey-950-opacity, var(--tw-bg-opacity)));
  border-radius: 16px;
  padding: 16px 18px;
}

.employer-callout {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.callout-dot {
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 50%;
  background: linear-gradient(120deg, #4cfa00, #7aff3d);
  box-shadow: 0 0 0 6px rgba(76, 250, 0, 0.08);
}

.employer-metric {
  text-align: center;
}

.metric-value {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}

.metric-label {
  font-size: 13px;
  color: hsl(var(--twc-grey-300));
  margin-top: 2px;
}

.metric-dots {
  display: inline-flex;
  gap: 6px;
  margin: 8px 0;
}

.metric-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.employer-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: hsl(var(--twc-grey-950) / var(--twc-grey-950-opacity, var(--tw-bg-opacity)));
}

.employer-search {
  flex: 1;
}

.employer-toolbar__actions {
  display: flex;
  gap: 8px;
}

.employer-table {
  margin-top: 10px;
  padding: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: hsl(var(--twc-grey-950) / var(--twc-grey-950-opacity, var(--tw-bg-opacity)));
  overflow: hidden;
}

.employer-table__head,
.employer-row {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr) repeat(4, minmax(80px, 0.7fr)) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 8px;
  padding: 14px 18px;
  align-items: center;
}

.employer-table__head {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: hsl(var(--twc-grey-400));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.employer-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background-color 0.12s ease, border-color 0.12s ease;
}

.employer-row:last-child {
  border-bottom: none;
}

.employer-row:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.06);
}

.employer-row__title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.employer-row__meta {
  font-size: 13px;
  color: hsl(var(--twc-grey-400));
  margin-top: 2px;
}

.employer-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.employer-pill {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: hsl(var(--twc-grey-200));
  background: rgba(255, 255, 255, 0.04);
}

.employer-status {
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid transparent;
}

.employer-status.success {
  background: rgba(76, 250, 0, 0.15);
  color: #4cfa00;
  border-color: rgba(76, 250, 0, 0.4);
}

.employer-status.waiting {
  background: rgba(250, 200, 0, 0.16);
  color: #facc15;
  border-color: rgba(250, 200, 0, 0.35);
}

.employer-status.muted {
  background: rgba(148, 163, 184, 0.16);
  color: #a8b3cf;
  border-color: rgba(148, 163, 184, 0.3);
}

.employer-row .col-city,
.employer-row .col-num,
.employer-row .col-expire,
.employer-row .col-actions {
  font-size: 13px;
  color: hsl(var(--twc-grey-200));
}

.col-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.employer-link {
  color: var(--tj-accent);
  font-size: 13px;
  text-decoration: none;
}

.employer-link:hover {
  text-decoration: underline;
}

.employer-empty {
  padding: 24px;
  text-align: center;
}

@media (max-width: 900px) {
  .employer-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .employer-summary {
    grid-template-columns: 1fr;
  }

  .employer-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .employer-table__head {
    display: none;
  }

  .employer-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .employer-row .col-city,
  .employer-row .col-num,
  .employer-row .col-expire,
  .employer-row .col-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    color: hsl(var(--twc-grey-400));
  }

  .employer-row .col-actions {
    justify-content: flex-start;
  }
}

/* ===== �������� �������� ===== */
.create-page {
  min-height: calc(100vh - 80px);
  padding: 24px 16px 56px;
  display: flex;
  justify-content: center;
}

.create-inner {
  width: 100%;
  max-width: 1180px;
}

.create-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: hsl(var(--twc-grey-950) / var(--twc-grey-950-opacity, var(--tw-bg-opacity)));
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.create-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 16px;
  margin-bottom: 14px;
}

.create-quick {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
}

.create-chip {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.create-chip:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.create-chip.is-active {
  border-color: rgba(76, 250, 0, 0.35);
  background: rgba(76, 250, 0, 0.08);
  box-shadow: 0 10px 30px rgba(76, 250, 0, 0.15);
}

.create-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 2.25fr);
  gap: 18px;
  align-items: start;
}

.create-nav {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.create-nav__item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.15s ease, border-color 0.15s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.create-nav__item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.create-nav .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(76, 250, 0, 0.8);
  box-shadow: 0 0 0 6px rgba(76, 250, 0, 0.12);
}

.create-flow {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.create-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}

.create-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: hsl(var(--twc-grey-200));
  background: rgba(255, 255, 255, 0.04);
}

.create-grid.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.create-helper {
  font-size: 12px;
  color: var(--tj-accent);
  text-decoration: none;
}

.create-helper:hover {
  text-decoration: underline;
}

.pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.12s ease;
}

.pill:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.pill.is-active {
  border-color: rgba(76, 250, 0, 0.45);
  background: rgba(76, 250, 0, 0.1);
  color: #cfff9c;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.pill-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pill-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.pill-row.wrap {
  flex-wrap: wrap;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  display: none;
}

.switch span {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: hsl(var(--twc-grey-700));
  border-radius: 999px;
  transition: background 0.2s ease;
}

.switch span:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.switch input:checked + span {
  background: rgba(76, 250, 0, 0.55);
}

.switch input:checked + span:before {
  transform: translateX(20px);
}

.create-map-placeholder {
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 16px;
  margin: 10px 0;
  background: rgba(255, 255, 255, 0.02);
}

.hint-list {
  margin: 0 0 12px;
  padding-left: 16px;
  color: hsl(var(--twc-grey-200));
  line-height: 1.5;
}

.ai-tip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 10px;
  color: #cdecc1;
}

.toggle-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tariff-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.tariff-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.15s ease;
}

.tariff-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.tariff-card.is-active {
  border-color: rgba(76, 250, 0, 0.5);
  box-shadow: 0 10px 30px rgba(76, 250, 0, 0.12);
}

.create-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.create-footer__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: hsl(var(--twc-grey-300));
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4cfa00;
  box-shadow: 0 0 0 6px rgba(76, 250, 0, 0.12);
}

.create-footer__actions {
  display: flex;
  gap: 10px;
}

@media (max-width: 980px) {
  .create-layout {
    grid-template-columns: 1fr;
  }
  .create-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .create-nav__item {
    flex: 1 1 140px;
  }
  .create-hero {
    grid-template-columns: 1fr;
  }
  .create-grid.two {
    grid-template-columns: 1fr;
  }
}

/* overrides */
.tariff-card {
  display: block;
  text-align: left;
}

/* ===== HH-����� �������� � �������� ===== */
.hh-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr);
  gap: 16px;
  margin-top: 14px;
}
.hh-filters {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px;
  position: sticky;
  top: 90px;
  align-self: start;
  padding: 16px;
}
.hh-checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: hsl(var(--twc-grey-200));
  margin: 4px 0;
}
.hh-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hh-card {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 16px;
}
.hh-card__meta {
  font-size: 12px;
  color: hsl(var(--twc-grey-400));
  margin-bottom: 6px;
}
.hh-card__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}
.hh-card__title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
}
.hh-card__salary {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
.hh-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.hh-tag {
  background: rgba(255,255,255,0.06);
  color: hsl(var(--twc-grey-200));
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 10px;
}
.hh-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.08);
}
.hh-company {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 6px;
}
.hh-company__name {
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
}
.hh-rating {
  font-size: 13px;
  color: hsl(var(--twc-grey-300));
}
.hh-star { color: #fbbf24; }
.hh-badge {
  background: rgba(76,250,0,0.12);
  color: #caff9c;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(76,250,0,0.4);
  font-size: 12px;
}
.hh-location {
  color: hsl(var(--twc-grey-200));
  font-size: 14px;
  margin-bottom: 10px;
}
.hh-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hh-button {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
  cursor: pointer;
}
.hh-button.primary {
  background: linear-gradient(90deg, #0063f7, #1f7bff);
  border-color: #1f7bff;
}
.hh-button.ghost {
  background: rgba(255,255,255,0.03);
}
@media (max-width: 980px) {
  .hh-layout {
    grid-template-columns: 1fr;
  }
  .hh-filters {
    position: static;
  }
}

/* ===== ��������� �������� (HH-�����) ===== */
.hh-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 0.9fr);
  gap: 16px;
  padding: 20px 24px 60px;
}
.hh-detail-main {
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}
.hh-detail-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 14px;
  color: hsl(var(--twc-grey-200));
  line-height: 1.5;
}
.hh-detail-list li { margin-bottom: 6px; }
.hh-detail-description h3,
.hh-detail-qa h3,
.hh-detail-location h3 {
  margin: 14px 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.hh-tag-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.map-placeholder {
  height: 180px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px dashed rgba(255,255,255,0.12);
}
.hh-detail-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hh-side-card {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 980px) {
  .hh-detail { grid-template-columns: 1fr; }
  .hh-detail { padding: 16px 12px 50px; }
}

/* overrides ��� detail */
.hh-detail-main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  border: none;
  background: transparent;
}
.hh-info-card {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ===== Applications (employer view) ===== */
.applications-shell {
  min-height: calc(100vh - 80px);
  padding: 0 16px 56px;
  display: flex;
  justify-content: center;
}
.applications-shell .profile-inner {
  width: 100%;
  max-width: 1120px;
}
.apps-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}
.apps-hero__title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 2px 0;
}
.apps-hero__meta {
  color: hsl(var(--twc-grey-400));
  font-size: 13px;
  margin-top: 4px;
}
.apps-hero__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.apps-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: hsl(var(--twc-grey-200));
  font-size: 12px;
}
.apps-chip--success {
  background: rgba(76,250,0,0.12);
  border-color: rgba(76,250,0,0.35);
  color: #caff9c;
}
.apps-chip--muted {
  color: hsl(var(--twc-grey-300));
}
.apps-chip--danger {
  background: rgba(248,113,113,0.12);
  border-color: rgba(248,113,113,0.35);
  color: #fecaca;
}
.apps-chip--ghost {
  background: rgba(255,255,255,0.03);
}
.apps-chip--inline {
  padding: 6px 8px;
  font-weight: 600;
}
.apps-toolbar {
  margin: 14px 0 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.apps-toolbar__left,
.apps-toolbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.apps-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: hsl(var(--twc-grey-200));
}
.apps-check input {
  width: 16px;
  height: 16px;
  accent-color: #4cfa00;
}
.apps-divider {
  width: 1px;
  height: 26px;
  background: rgba(255,255,255,0.08);
}
.apps-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  flex: 1 1 240px;
}
.apps-search input {
  background: transparent;
  border: none;
  color: #fff;
  outline: none;
  width: 100%;
  font-size: 13px;
}
.apps-search svg {
  color: hsl(var(--twc-grey-350));
}
.apps-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.apps-pill {
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: hsl(var(--twc-grey-200));
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  cursor: pointer;
}
.apps-pill--active {
  background: rgba(76,250,0,0.14);
  color: #d1fbb1;
  border-color: rgba(76,250,0,0.4);
}
.apps-views {
  display: flex;
  align-items: center;
  gap: 8px;
}
.apps-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: hsl(var(--twc-grey-200));
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.apps-icon-btn--active {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.16);
}
.apps-icon-btn svg {
  pointer-events: none;
}
.apps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}
.apps-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px;
}
.apps-card__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  justify-content: space-between;
}
.apps-avatar {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  flex: 0 0 auto;
}
.apps-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apps-card__headline {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.apps-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.apps-card__meta {
  font-size: 13px;
  color: hsl(var(--twc-grey-400));
}
.apps-card__status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.apps-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}
.apps-status--warning {
  background: rgba(251,191,36,0.12);
  border-color: rgba(251,191,36,0.35);
  color: #fbbf24;
}
.apps-status--success {
  background: rgba(76,250,0,0.12);
  border-color: rgba(76,250,0,0.35);
  color: #caff9c;
}
.apps-status--danger {
  background: rgba(248,113,113,0.12);
  border-color: rgba(248,113,113,0.35);
  color: #fecaca;
}
.apps-status--muted {
  background: rgba(255,255,255,0.03);
  color: hsl(var(--twc-grey-300));
}
.apps-card__controls {
  display: flex;
  gap: 8px;
  align-items: center;
}
.apps-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 10px;
}
.apps-info__label {
  font-size: 12px;
  color: hsl(var(--twc-grey-400));
  margin-bottom: 6px;
}
.apps-info__value {
  color: hsl(var(--twc-grey-50));
  font-size: 13px;
  line-height: 1.5;
}
.apps-info__value--chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.apps-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.apps-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.apps-btn {
  padding: 9px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 13px;
}
.apps-btn--primary {
  background: linear-gradient(90deg, #4CFA00 0%, #6BFF3C 100%);
  color: #0b1a05;
  border-color: rgba(76,250,0,0.4);
  box-shadow: 0 10px 30px rgba(76,250,0,0.25);
}
.apps-btn--ghost {
  background: rgba(255,255,255,0.04);
  color: hsl(var(--twc-grey-100));
  border-color: rgba(255,255,255,0.08);
}
.apps-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.apps-empty {
  text-align: left;
  padding: 18px;
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,0.12);
}
/* ===== Chat in applications ===== */
.chat-shell {
  min-height: calc(100vh - 80px);
  padding: 0 16px 56px;
  display: flex;
  justify-content: center;
}
.chat-inner {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}
.chat-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsl(var(--twc-grey-400));
  font-size: 11px;
  margin-bottom: 6px;
}
.chat-header h1 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.chat-subtitle {
  color: hsl(var(--twc-grey-400));
  font-size: 13px;
  line-height: 1.5;
  max-width: 640px;
}
.chat-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.chat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: hsl(var(--twc-grey-200));
  font-size: 12px;
}
.chat-header__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chat-btn {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #fff;
  color: #0b1a05;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(76,250,0,0.25);
}
.chat-btn.ghost {
  background: rgba(255,255,255,0.03);
  color: hsl(var(--twc-grey-50));
  box-shadow: none;
}
.chat-window {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-participants {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.chat-person {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.chat-person img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
}
.chat-person__role {
  font-size: 12px;
  color: hsl(var(--twc-grey-400));
}
.chat-person__name {
  color: #fff;
  font-weight: 700;
}
.chat-person__divider {
  width: 38px;
  height: 1px;
  background: rgba(255,255,255,0.16);
}
.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 460px;
  min-height: 240px;
  overflow-y: auto;
  padding: 4px 2px;
}
.chat-bubble {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 10px 12px;
  max-width: 82%;
}
.chat-bubble--mine {
  margin-left: auto;
  background: linear-gradient(120deg, rgba(76,250,0,0.18), rgba(76,250,0,0.08));
  border-color: rgba(76,250,0,0.35);
}
.chat-bubble__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: hsl(var(--twc-grey-350));
  font-size: 12px;
  margin-bottom: 4px;
}
.chat-bubble__text {
  color: hsl(var(--twc-grey-50));
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}
.chat-author {
  font-weight: 700;
  color: #fff;
}
.chat-empty {
  padding: 12px;
  border-radius: 12px;
  border: 1px dashed rgba(255,255,255,0.12);
  color: hsl(var(--twc-grey-300));
  text-align: center;
}
.chat-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chat-form__label {
  font-size: 13px;
  color: hsl(var(--twc-grey-300));
}
.chat-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  padding: 10px 12px;
  font-size: 14px;
  resize: vertical;
  min-height: 120px;
}
.chat-form__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.chat-link {
  color: hsl(var(--twc-grey-200));
  font-size: 13px;
}
.chat-submit {
  padding: 10px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, #4CFA00 0%, #6BFF3C 100%);
  color: #0b1a05;
  font-weight: 800;
  border: 1px solid rgba(76,250,0,0.4);
  box-shadow: 0 10px 30px rgba(76,250,0,0.25);
}
.chat-preview {
  margin-top: 10px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.chat-preview__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.chat-preview__label {
  font-size: 12px;
  color: hsl(var(--twc-grey-400));
  margin-bottom: 4px;
}
.chat-preview__text {
  color: hsl(var(--twc-grey-50));
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.chat-preview__text--muted {
  color: hsl(var(--twc-grey-400));
}
.chat-preview__snippet {
  display: inline;
}
.chat-preview__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(76,250,0,0.14);
  color: #d1fbb1;
  font-weight: 700;
  border: 1px solid rgba(76,250,0,0.35);
  font-size: 12px;
}
.responses-chat,
.apps-chat {
  margin-top: 12px;
}
.chat-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0;
}
.chat-offer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.chat-offer label {
  font-size: 13px;
  color: hsl(var(--twc-grey-300));
}
.chat-offer input[type="number"] {
  width: 160px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #fff;
  padding: 8px 10px;
}
.chat-offer--row {
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
/* ===== Worker resume cabinet ===== */
.resume-shell {
  min-height: calc(100vh - 80px);
  padding: 0 16px 56px;
  display: flex;
  justify-content: center;
}
.resume-shell .profile-inner {
  width: 100%;
  max-width: 1120px;
}
.resume-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 18px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}
.resume-hero__badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: hsl(var(--twc-grey-200));
  font-size: 12px;
}
.resume-hero__title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 8px 0 4px;
}
.resume-hero__subtitle {
  color: hsl(var(--twc-grey-300));
  font-size: 14px;
  margin-bottom: 12px;
}
.resume-hero__cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.resume-btn {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.resume-btn--primary {
  background: linear-gradient(90deg, #4CFA00 0%, #6BFF3C 100%);
  color: #0a1a04;
  border-color: rgba(76,250,0,0.35);
  box-shadow: 0 12px 30px rgba(76,250,0,0.3);
}
.resume-btn--ghost {
  background: rgba(255,255,255,0.08);
  color: hsl(var(--twc-grey-50));
}
.resume-hero__stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: flex-end;
}
.resume-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: hsl(var(--twc-grey-200));
  font-size: 13px;
}
.resume-chip--success {
  background: rgba(76,250,0,0.12);
  border-color: rgba(76,250,0,0.35);
  color: #caff9c;
}
.resume-chip--muted {
  color: hsl(var(--twc-grey-400));
}
.resume-strip {
  margin: 14px 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.resume-strip__info {
  display: flex;
  gap: 10px;
  align-items: center;
}
.resume-strip__icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(76,250,0,0.12);
  border: 1px solid rgba(76,250,0,0.35);
  color: #caff9c;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.resume-strip__title {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.resume-strip__text {
  color: hsl(var(--twc-grey-300));
  font-size: 13px;
}
.resume-strip__link {
  color: #7dd3fc;
  font-weight: 600;
  font-size: 13px;
}
.resume-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.resume-card {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}
.resume-card--accent {
  background: rgba(255,255,255,0.03);
}
.resume-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.resume-card__text {
  font-size: 13px;
  color: hsl(var(--twc-grey-300));
  margin-top: 4px;
}
.resume-card--deposit {
  position: relative;
}
.deposit-metric {
  margin: 14px 0;
}
.deposit-amount {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.deposit-note {
  font-size: 13px;
  color: hsl(var(--twc-grey-300));
  margin-top: 6px;
}
.deposit-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.deposit-input {
  flex: 1;
  min-width: 160px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  color: #fff;
  font-size: 13px;
}
.deposit-input::placeholder {
  color: hsl(var(--twc-grey-400));
}
.resume-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.responses-shell {
  min-height: calc(100vh - 80px);
  padding: 0 16px 56px;
  display: flex;
  justify-content: center;
}
.responses-inner {
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.responses-header {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.responses-header h1 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}
.responses-eyebrow {
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: hsl(var(--twc-grey-350));
}
.responses-subtitle {
  color: hsl(var(--twc-grey-300));
  margin-top: 6px;
  font-size: 14px;
}
.responses-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.responses-stat {
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.responses-stat span {
  display: block;
  font-size: 12px;
  color: hsl(var(--twc-grey-350));
}
.responses-stat strong {
  font-size: 20px;
  color: #fff;
}
.responses-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}
.responses-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: hsl(var(--twc-grey-200));
  font-size: 13px;
  transition: all .2s ease;
}
.responses-tab__count {
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 12px;
}
.responses-tab.is-active {
  background: #ffffff0f;
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.responses-empty {
  padding: 26px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.responses-empty__title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.responses-empty__text {
  color: hsl(var(--twc-grey-300));
  margin: 8px 0 16px;
}
.responses-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.responses-card {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}
.responses-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 12px;
}
.responses-card__status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.responses-status--waiting {
  color: #fbbf24;
  background: rgba(251,191,36,.12);
}
.responses-status--success {
  color: #caff9c;
  background: rgba(76,250,0,.12);
}
.responses-status--danger {
  color: #fecaca;
  background: rgba(248,113,113,.12);
}
.responses-status--info {
  color: #bfdbfe;
  background: rgba(59,130,246,.12);
}
.responses-status--warning {
  color: #fbbf24;
  background: rgba(251,191,36,.12);
}
.responses-status--muted {
  color: hsl(var(--twc-grey-400));
  background: rgba(255,255,255,0.05);
}
.responses-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.responses-card__main h3 {
  font-size: 18px;
  color: #fff;
  margin: 0;
}
.responses-company {
  color: hsl(var(--twc-grey-200));
  margin: 4px 0;
  font-size: 14px;
}
.responses-meta {
  color: hsl(var(--twc-grey-400));
  font-size: 13px;
}
.responses-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.responses-tags span {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: hsl(var(--twc-grey-200));
}
.responses-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.responses-btn {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.responses-btn.primary {
  background: linear-gradient(90deg, #4cfa00, #6bff3c);
  color: #0b1a05;
  border-color: rgba(76,250,0,0.3);
  box-shadow: 0 10px 30px rgba(76,250,0,0.25);
}
.responses-btn.secondary {
  background: rgba(255,255,255,0.1);
}
.responses-btn.ghost {
  background: rgba(255,255,255,0.04);
  color: hsl(var(--twc-grey-50));
}
.responses-btn.outline {
  background: transparent;
  border-color: rgba(255,255,255,0.2);
}
.responses-promo {
  margin-top: 8px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.responses-promo h3 {
  margin: 0;
  color: #fff;
}
.responses-promo p {
  margin: 4px 0 0;
  color: hsl(var(--twc-grey-300));
}
.responses-promo .responses-btn {
  flex-shrink: 0;
}
.resume-pill {
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: hsl(var(--twc-grey-50));
  font-size: 13px;
}
.resume-pill--primary {
  background: rgba(76,250,0,0.16);
  border-color: rgba(76,250,0,0.35);
  color: #caff9c;
}
.resume-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
  margin-top: 10px;
}
.resume-service {
  padding: 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}
.resume-service__icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: grid;
  place-items: center;
}
.resume-service__label {
  color: hsl(var(--twc-grey-100));
  font-size: 13px;
}
.resume-job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  gap: 10px;
}
.resume-job__title {
  color: #fff;
  font-weight: 700;
}
.resume-job__meta {
  color: hsl(var(--twc-grey-300));
  font-size: 13px;
}
.resume-job__date {
  color: hsl(var(--twc-grey-400));
  font-size: 12px;
}
.resume-empty {
  color: hsl(var(--twc-grey-300));
  margin-top: 6px;
}
.resume-steps {
  margin-top: 14px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}
.resume-steps__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.resume-progress {
  min-width: 220px;
}
.resume-progress__bar {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}
.resume-progress__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #4CFA00, #22c55e);
  border-radius: 999px;
}
.resume-progress__text {
  font-size: 12px;
  color: hsl(var(--twc-grey-300));
  margin-top: 6px;
}
.resume-step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.resume-step {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.resume-step__title {
  color: #fff;
  font-weight: 700;
}
.resume-step__desc {
  color: hsl(var(--twc-grey-350));
  font-size: 13px;
}
.resume-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.resume-tags--wrap {
  margin-top: 10px;
}
.resume-tag {
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  color: hsl(var(--twc-grey-50));
  font-size: 13px;
}
.resume-skills {
  margin-top: 12px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) {
  .resume-hero {
    grid-template-columns: 1fr;
  }
  .resume-hero__stats {
    align-items: flex-start;
  }
}
@media (max-width: 960px) {
  .apps-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .apps-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .apps-toolbar__right {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 720px) {
  .apps-card__header {
    flex-direction: column;
  }
  .apps-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .apps-info-grid {
    grid-template-columns: 1fr;
  }
  .chat-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .chat-header__actions {
    width: 100%;
    justify-content: flex-start;
  }
  .chat-participants {
    flex-direction: column;
    align-items: flex-start;
  }
  .chat-preview {
    flex-direction: column;
  }
}

/* Modal helpers */
.tj-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.55);
  z-index: 999;
}
.tj-modal.is-open {
  display: flex;
}
.tj-modal__dialog {
  width: min(720px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: hsl(var(--twc-grey-950) / 1);
  border: 1px solid hsl(var(--twc-grey-850) / 1);
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
  padding: 18px 18px 20px;
}
.tj-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.tj-modal__title {
  font-size: 18px;
  font-weight: 700;
}
.tj-modal__close {
  border: 1px solid hsl(var(--twc-grey-850) / 1);
  border-radius: 10px;
  background: hsl(var(--twc-grey-900) / 1);
  color: hsl(var(--twc-grey-100) / 1);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.tj-modal__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
