:root {
  --system-bg: #eef6f2;
  --system-panel: #ffffff;
  --system-ink: #0f2a23;
  --system-muted: #6a7a73;
  --system-line: #d7e6df;
  --system-green: #0f6b57;
  --system-deep: #073b31;
  --system-coral: #ff725e;
  --system-blue: #2f6bff;
  --system-shadow: 0 22px 70px rgba(7, 59, 49, 0.1);
}

.system-body {
  background:
    radial-gradient(circle at 88% 0%, rgba(216, 240, 231, 0.9), transparent 35%),
    var(--system-bg);
}

.system-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 16px;
  width: min(100% - 28px, 1500px);
  min-height: calc(100vh - 28px);
  margin: 14px auto;
}

.system-sidebar,
.system-main,
.system-card,
.view-panel {
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.system-sidebar {
  position: sticky;
  top: 14px;
  height: calc(100vh - 28px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--system-shadow);
  backdrop-filter: blur(18px);
}

.system-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--system-ink);
  text-decoration: none;
}

.system-brand .brand-symbol {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
}

.system-brand strong,
.system-brand small {
  display: block;
}

.system-brand strong {
  font-size: 17px;
}

.system-brand small {
  margin-top: 2px;
  color: var(--system-muted);
  font-size: 12px;
}

.system-nav {
  display: grid;
  gap: 8px;
  overflow: auto;
  padding-right: 2px;
}

.system-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  color: var(--system-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-align: left;
}

.system-nav-item.active,
.system-nav-item:hover {
  color: #fff;
  background: var(--system-green);
  border-color: var(--system-green);
}

.mobile-nav-more {
  display: none;
}

.sidebar-card {
  margin-top: auto;
  padding: 16px;
  background: var(--system-deep);
  color: #fff;
  border-radius: 8px;
}

.sidebar-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 850;
}

.sidebar-card strong {
  display: block;
  margin: 10px 0;
  font-size: 36px;
  line-height: 1;
}

.mini-progress {
  height: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.mini-progress i {
  display: block;
  width: 0;
  height: 100%;
  background: #d8f0e7;
  border-radius: inherit;
  transition: width 240ms ease;
}

.system-main {
  min-width: 0;
  background: rgba(255, 255, 255, 0.58);
  overflow: hidden;
}

.system-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--system-line);
}

.system-topbar p {
  margin: 0 0 8px;
  color: var(--system-green);
  font-size: 13px;
  font-weight: 900;
}

.system-topbar h1 {
  margin: 0;
  color: var(--system-ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
}

.topbar-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.soft-button,
.solid-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 8px;
  font-weight: 900;
}

.soft-button {
  color: var(--system-deep);
  background: #fff;
  border: 1px solid var(--system-line);
}

.solid-button {
  color: #fff;
  background: var(--system-deep);
  border: 1px solid var(--system-deep);
}

.view-panel {
  display: none;
  min-height: calc(100vh - 134px);
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(15, 107, 87, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(15, 107, 87, 0.035) 1px, transparent 1px),
    rgba(247, 250, 248, 0.86);
  background-size: 36px 36px;
}

.view-panel.active {
  display: block;
}

.account-menu {
  position: relative;
  z-index: 20;
}

.account-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  color: var(--system-deep);
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.account-chip::-webkit-details-marker {
  display: none;
}

.account-avatar {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  overflow: hidden;
  background: var(--system-deep);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(7, 59, 49, 0.14);
}

.account-avatar img {
  display: block;
  width: 100%;
  height: 100%;
}

.account-chip small {
  display: block;
  margin-top: 2px;
  color: var(--system-muted);
  font-size: 12px;
}

.account-chevron {
  width: 16px;
  height: 16px;
  color: var(--system-muted);
  transition: transform 180ms ease;
}

.account-menu[open] .account-chevron {
  transform: rotate(180deg);
}

.auth-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 380px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--system-line);
  border-radius: 8px;
  box-shadow: var(--system-shadow);
}

.auth-panel-head {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.auth-panel-head strong {
  color: var(--system-deep);
  font-size: 16px;
}

.auth-panel-head span {
  color: var(--system-muted);
  font-size: 12px;
  font-weight: 850;
}

.auth-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: center;
}

.auth-fields input,
.admin-import-text {
  width: 100%;
  min-height: 38px;
  padding: 0 10px;
  color: var(--system-ink);
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  outline: 0;
  font-weight: 850;
}

#registerName,
#loginEmail,
#loginPassword {
  grid-column: 1 / -1;
}

#authMessage {
  margin: 10px 0 0;
  color: var(--system-muted);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 850;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.metric-grid article {
  padding: 18px;
  background: var(--system-panel);
  border: 1px solid var(--system-line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(7, 59, 49, 0.05);
}

.metric-link,
.clickable-row {
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.metric-link:hover,
.metric-link:focus-visible,
.clickable-row:hover,
.clickable-row:focus-visible {
  border-color: rgba(15, 107, 87, 0.42);
  box-shadow: 0 18px 46px rgba(7, 59, 49, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.metric-grid span,
.metric-grid small {
  display: block;
  color: var(--system-muted);
  font-weight: 850;
}

.metric-grid strong {
  display: block;
  margin: 8px 0;
  color: var(--system-green);
  font-size: 32px;
  line-height: 1;
}

.dashboard-grid,
.system-grid {
  display: grid;
  gap: 14px;
}

.dashboard-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.two-col {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
}

.system-card {
  padding: 20px;
  background: var(--system-panel);
  box-shadow: 0 14px 40px rgba(7, 59, 49, 0.05);
}

.card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.card-head h2,
.system-card h2 {
  margin: 0;
  color: var(--system-deep);
  font-size: 22px;
  line-height: 1.22;
}

.compact-list,
.action-list,
.task-list,
.bank-list,
.note-list,
.parent-timeline {
  display: grid;
  gap: 10px;
}

.today-workflow-card {
  margin-bottom: 14px;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.workflow-step {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 4px 10px;
  align-items: center;
  min-height: 82px;
  padding: 12px;
  text-align: left;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.workflow-step span {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--system-muted);
  background: #eef6f2;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.workflow-step strong {
  color: var(--system-deep);
  font-size: 14px;
  line-height: 1.3;
}

.workflow-step small {
  color: var(--system-muted);
  font-weight: 850;
  line-height: 1.35;
}

.workflow-step.done {
  border-color: #cde9dc;
  background: #f4fbf7;
}

.workflow-step.done span {
  color: #fff;
  background: var(--system-green);
}

.system-list-item,
.action-item,
.task-item,
.bank-item,
.note-item,
.timeline-item {
  padding: 14px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.system-list-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.score-pill {
  color: var(--system-green);
  font-size: 20px;
  font-weight: 900;
}

.system-list-item h3,
.job-system-card h3 {
  margin: 0 0 6px;
  color: var(--system-deep);
  font-size: 17px;
}

.system-list-item p,
.job-system-card p,
.action-item p,
.task-item p,
.bank-item p,
.note-item p,
.timeline-item p {
  margin: 0;
  color: var(--system-muted);
  line-height: 1.55;
}

.recommend-reason {
  display: block;
  margin-top: 5px;
  color: var(--system-green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}

.profile-form {
  display: grid;
  gap: 12px;
}

.profile-form label {
  display: grid;
  gap: 7px;
}

.profile-form span {
  color: var(--system-muted);
  font-size: 13px;
  font-weight: 900;
}

.profile-form input,
.admin-job-form input,
.admin-job-form select,
.admin-job-toolbar select,
.resume-profile-form input,
.resume-profile-form textarea,
.resume-form select,
.resume-form textarea,
.system-search input,
.jobs-toolbar select,
.job-filter-panel select,
.mentor-note-card textarea,
.mentor-chat-composer textarea {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  color: var(--system-ink);
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  outline: 0;
  font-weight: 850;
}

.resume-workflow {
  display: grid;
  gap: 14px;
}

.resume-step-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.resume-step-strip article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 4px 10px;
  align-items: center;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(7, 59, 49, 0.05);
}

.resume-step-strip article.active {
  border-color: rgba(15, 107, 87, 0.32);
  background: #f4fbf7;
}

.resume-step-strip span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--system-green);
  border-radius: 8px;
  font-weight: 900;
}

.resume-step-strip strong {
  color: var(--system-deep);
  line-height: 1.25;
}

.resume-step-strip small,
.field-hint {
  color: var(--system-muted);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 850;
}

.field-hint {
  display: block;
}

.resume-side {
  display: grid;
  gap: 14px;
  align-content: start;
}

.resume-profile-form {
  display: grid;
  gap: 12px;
}

.resume-photo-uploader {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.resume-photo-preview {
  display: grid;
  place-items: center;
  width: 96px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  color: var(--system-muted);
  background: #fff;
  border: 1px dashed #b9cfc4;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.resume-photo-preview img,
.resume-paper-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resume-photo-uploader strong {
  display: block;
  color: var(--system-deep);
  margin-bottom: 5px;
}

.resume-photo-uploader p {
  margin: 0 0 10px;
  color: var(--system-muted);
  font-size: 13px;
  line-height: 1.6;
}

.resume-photo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.resume-profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.resume-completion {
  display: grid;
  gap: 9px;
  padding: 12px;
  background: #f4fbf7;
  border: 1px solid #cde9dc;
  border-radius: 8px;
}

.resume-completion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.resume-completion-head strong {
  display: block;
  color: var(--system-deep);
  line-height: 1.35;
}

.resume-completion-head span,
.resume-completion p {
  color: var(--system-muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.5;
}

.resume-completion-head b {
  flex: 0 0 auto;
  padding: 6px 9px;
  color: #8f5f10;
  background: #fff8e9;
  border: 1px solid #f2dca8;
  border-radius: 999px;
  font-size: 12px;
}

.resume-completion-head b.ready {
  color: var(--system-green);
  background: #fff;
  border-color: #cde9dc;
}

.resume-completion-bar {
  height: 8px;
  overflow: hidden;
  background: #e2eee8;
  border-radius: 999px;
}

.resume-completion-bar i {
  display: block;
  height: 100%;
  background: var(--system-green);
  border-radius: inherit;
  transition: width 180ms ease;
}

.resume-completion p {
  margin: 0;
}

.resume-field-section {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.resume-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.resume-section-head strong {
  color: var(--system-deep);
}

.resume-section-head span {
  color: var(--system-green);
  font-size: 12px;
  font-weight: 900;
}

.resume-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.resume-profile-form label {
  display: grid;
  gap: 7px;
}

.resume-profile-form span {
  color: var(--system-muted);
  font-size: 13px;
  font-weight: 900;
}

.resume-profile-form .wide {
  grid-column: 1 / -1;
}

.resume-profile-form textarea {
  min-height: 78px;
  padding: 12px;
  resize: vertical;
  line-height: 1.6;
}

.resume-status-pill {
  padding: 7px 10px;
  color: var(--system-green);
  background: #eaf4ee;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.match-resume-card {
  margin-top: 14px;
}

.match-company-card {
  margin-top: 14px;
}

.match-company-list {
  display: grid;
  gap: 12px;
}

.match-company-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.match-company-score {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  color: #fff;
  background: var(--system-deep);
  border-radius: 8px;
}

.match-company-score strong {
  font-size: 24px;
  line-height: 1;
}

.match-company-score span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.match-company-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.match-company-head h3 {
  margin: 0 0 6px;
  color: var(--system-deep);
  font-size: 18px;
}

.match-company-head p {
  margin: 0;
  color: var(--system-muted);
  line-height: 1.5;
}

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

.fit-grid section {
  padding: 12px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.fit-grid strong {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  color: var(--system-deep);
}

.fit-grid ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--system-muted);
  line-height: 1.45;
}

.match-resume-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.resume-form {
  display: grid;
  gap: 12px;
}

.resume-form label {
  display: grid;
  gap: 7px;
}

.resume-form span {
  color: var(--system-muted);
  font-size: 13px;
  font-weight: 900;
}

.resume-form textarea {
  min-height: 260px;
  padding: 12px;
  resize: vertical;
  line-height: 1.65;
}

.resume-score-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.resume-score {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  background: var(--system-deep);
  color: #fff;
  border-radius: 8px;
}

.resume-score strong {
  font-size: 46px;
  line-height: 1;
}

.resume-score span {
  margin-top: -18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.resume-result-card p {
  color: var(--system-muted);
  line-height: 1.7;
}

.resume-paper-preview {
  padding: 22px;
  color: #17261f;
  background: #fff;
  border: 1px solid #dce8e1;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.resume-paper-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px;
  gap: 16px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--system-deep);
}

.resume-paper-head h3 {
  margin: 0 0 8px;
  color: var(--system-deep);
  font-size: 28px;
  line-height: 1.1;
}

.resume-paper-head p,
.resume-paper-target p,
.resume-paper-section-list p {
  margin: 0;
  color: #33443b;
  line-height: 1.65;
}

.resume-paper-photo {
  display: grid;
  place-items: center;
  width: 78px;
  aspect-ratio: 3 / 4;
  justify-self: end;
  overflow: hidden;
  background: #eef5f1;
  border: 1px solid var(--system-line);
  border-radius: 4px;
  color: var(--system-muted);
  font-size: 13px;
  font-weight: 900;
}

.resume-paper-target {
  margin: 16px 0;
  padding: 12px;
  background: #f4faf7;
  border-left: 4px solid var(--system-green);
}

.resume-paper-target strong,
.resume-paper-section-list strong {
  display: block;
  margin-bottom: 7px;
  color: var(--system-deep);
}

.resume-paper-section-list {
  display: grid;
  gap: 13px;
}

.resume-paper-section-list section {
  padding-bottom: 12px;
  border-bottom: 1px solid #edf3ef;
}

.resume-paper-section-list section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.resume-insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.resume-insight-grid article,
.resume-advice-block,
.resume-rewrite-block,
.resume-optimized-block {
  padding: 14px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.resume-insight-grid strong,
.resume-advice-block > strong,
.resume-rewrite-block > strong,
.resume-optimized-head > strong {
  display: block;
  margin-bottom: 10px;
  color: var(--system-deep);
}

.resume-change-list,
.resume-optimized-text {
  display: grid;
  gap: 10px;
}

.resume-change-item,
.resume-rewrite-pair {
  padding: 11px;
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.resume-change-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--system-deep);
}

.resume-change-item p,
.resume-rewrite-pair p {
  margin: 0 0 6px;
  color: var(--system-muted);
  line-height: 1.6;
}

.resume-change-item b,
.resume-rewrite-pair b {
  color: var(--system-deep);
}

.resume-change-item small,
.resume-rewrite-pair small {
  display: block;
  color: var(--system-green);
  font-weight: 850;
  line-height: 1.6;
}

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.keyword-pill {
  padding: 6px 9px;
  color: var(--system-muted);
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.keyword-pill.good {
  color: var(--system-green);
  background: #ecf8f2;
  border-color: #cde9dc;
}

.resume-advice-list {
  display: grid;
  gap: 8px;
}

.advice-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  color: var(--system-muted);
  line-height: 1.6;
}

.advice-item svg {
  color: var(--system-green);
}

.resume-rewrite-block p {
  margin: 0 0 8px;
}

.resume-rewrite-block p:last-child {
  margin-bottom: 0;
}

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

.resume-optimized-text {
  white-space: pre-wrap;
  padding: 12px;
  color: #24362d;
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  line-height: 1.7;
  max-height: 420px;
  overflow: auto;
}

.match-explainer {
  display: grid;
  gap: 10px;
}

.explain-item {
  display: flex;
  gap: 10px;
  padding: 14px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.explain-item svg {
  color: var(--system-green);
}

.jobs-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 170px auto auto;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 10px;
}

.jobs-toolbar .soft-button {
  white-space: nowrap;
}

.job-quick-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.job-quick-tab {
  min-height: 34px;
  padding: 0 12px;
  color: var(--system-deep);
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 999px;
  font-weight: 900;
}

.job-quick-tab.active,
.job-quick-tab:hover {
  color: #fff;
  background: var(--system-green);
  border-color: var(--system-green);
}

.system-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.system-search input {
  padding: 0;
  border: 0;
  background: transparent;
}

.job-filter-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.job-filter-panel-primary {
  margin-bottom: 10px;
}

.job-filter-panel-advanced[hidden] {
  display: none;
}

.filter-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 12px;
  color: var(--system-muted);
  font-size: 13px;
  font-weight: 850;
}

.filter-count,
.filter-chip,
.filter-hint {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
}

.filter-count {
  color: #fff;
  background: var(--system-deep);
}

.filter-chip {
  color: var(--system-deep);
  background: #e7f2ed;
  border: 1px solid rgba(15, 107, 87, 0.18);
}

.filter-hint {
  color: var(--system-muted);
  background: #f8fbf9;
  border: 1px solid var(--system-line);
}

.job-catalog {
  display: grid;
  gap: 12px;
}

.source-notice {
  display: grid;
  gap: 6px;
  margin: 0 0 14px;
  padding: 12px 14px;
  color: var(--system-muted);
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.55;
}

.source-notice strong {
  color: var(--system-deep);
}

.job-system-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

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

.job-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 10px;
  color: var(--system-green);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.job-source:hover {
  text-decoration: underline;
}

.job-insight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.job-insight {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 0 9px;
  color: var(--system-muted);
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.job-insight.primary,
.job-insight.trusted {
  color: var(--system-green);
  background: #ecf8f2;
  border-color: #cde9dc;
}

.job-insight.verify {
  color: #8f5f10;
  background: #fff8e9;
  border-color: #f2dca8;
}

.job-prep-actions {
  display: grid;
  gap: 7px;
  margin-top: 10px;
}

.job-prep-actions span {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 7px;
  align-items: start;
  color: var(--system-muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

.job-prep-actions svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--system-green);
}

.job-exam-box {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.job-exam-box span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--system-deep);
  font-weight: 900;
}

.job-exam-box p {
  margin: 0;
  color: var(--system-muted);
  line-height: 1.6;
}

.job-exam-box.verify {
  background: #fff8e9;
  border-color: #f2dca8;
}

.job-exam-box.trusted {
  background: #ecf8f2;
  border-color: #cde9dc;
}

.tiny-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 10px;
  color: var(--system-deep);
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.tiny-button.primary {
  color: #fff;
  background: var(--system-green);
  border-color: var(--system-green);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.tag-row span {
  padding: 5px 8px;
  color: var(--system-muted);
  background: #eef6f2;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.system-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.pipeline-column {
  min-height: 360px;
  padding: 12px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.pipeline-column > strong {
  display: block;
  margin-bottom: 10px;
  color: var(--system-deep);
}

.pipeline-card {
  padding: 12px;
  margin-bottom: 9px;
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.pipeline-card-head {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: space-between;
}

.pipeline-card h3 {
  margin: 0 0 6px;
  color: var(--system-deep);
  font-size: 15px;
}

.pipeline-title-link {
  color: inherit;
  text-decoration: none;
}

.pipeline-title-link:hover {
  color: var(--system-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pipeline-card-head span {
  flex: 0 0 auto;
  padding: 4px 7px;
  color: var(--system-green);
  background: #e7f2ed;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
}

.pipeline-card p {
  margin: 0 0 10px;
  color: var(--system-muted);
  font-size: 13px;
  line-height: 1.45;
}

.pipeline-card small {
  display: block;
  margin-bottom: 10px;
  color: var(--system-muted);
  font-size: 12px;
  line-height: 1.4;
}

.pipeline-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pipeline-card-actions a {
  text-decoration: none;
}

.pipeline-student-board {
  grid-template-columns: 1fr;
}

.pipeline-focus-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  color: #fff;
  background: var(--system-deep);
  border-radius: 8px;
}

.pipeline-focus-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.pipeline-focus-head span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.pipeline-focus-head strong {
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
}

.pipeline-focus-head .tiny-button {
  color: var(--system-deep);
  background: #fff;
  border-color: #fff;
}

.pipeline-focus-list {
  display: grid;
  gap: 9px;
}

.pipeline-focus-item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 11px;
  color: var(--system-ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
}

.pipeline-focus-item > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  background: var(--system-green);
  border-radius: 8px;
  font-weight: 900;
}

.pipeline-focus-item strong {
  color: var(--system-deep);
  line-height: 1.35;
}

.pipeline-focus-item p {
  margin: 4px 0 0;
  color: var(--system-muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

.pipeline-stage-summary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.pipeline-stage-summary article {
  padding: 12px;
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.pipeline-stage-summary span {
  display: block;
  color: var(--system-muted);
  font-size: 12px;
  font-weight: 900;
}

.pipeline-stage-summary strong {
  display: block;
  margin-top: 6px;
  color: var(--system-green);
  font-size: 26px;
  line-height: 1;
}

.pipeline-board-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.task-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.task-item.done {
  background: #ecf8f2;
}

.bank-item strong,
.action-item strong,
.timeline-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--system-deep);
}

.learning-platform-card {
  margin-bottom: 14px;
}

.learning-player-card {
  margin-bottom: 14px;
}

.learning-player {
  display: grid;
  gap: 14px;
}

.learning-player-hero {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
}

.learning-player-hero h2 {
  margin: 4px 0 8px;
  color: var(--system-deep);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.16;
}

.learning-player-hero p {
  margin: 0;
  color: var(--system-muted);
  font-weight: 850;
}

.learning-state {
  flex: 0 0 auto;
  padding: 8px 12px;
  color: #fff;
  background: var(--system-green);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.learning-state.done {
  color: var(--system-deep);
  background: #e7f2ed;
}

.learning-player-progress {
  height: 10px;
}

.learning-player-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 12px;
}

.learning-content-main,
.learning-content-side article {
  padding: 14px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.learning-content-main > span,
.learning-content-side span {
  display: block;
  margin-bottom: 8px;
  color: var(--system-muted);
  font-size: 12px;
  font-weight: 900;
}

.learning-content-main h3 {
  margin: 0 0 12px;
  color: var(--system-deep);
  font-size: 18px;
  line-height: 1.45;
}

.learning-content-block {
  display: grid;
  gap: 10px;
}

.learning-content-block p {
  display: flex;
  gap: 10px;
  margin: 0;
  color: var(--system-muted);
  line-height: 1.58;
}

.learning-content-block p strong {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--system-green);
  border-radius: 999px;
  font-size: 12px;
}

.learning-content-side {
  display: grid;
  gap: 10px;
}

.learning-content-side strong {
  color: var(--system-deep);
  line-height: 1.5;
}

.learning-player-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.learning-player-actions a {
  text-decoration: none;
}

.course-start-button {
  width: 100%;
  margin-top: 12px;
}

.course-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.course-system-card,
.practice-item {
  padding: 14px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.course-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.course-head span,
.lesson-item span {
  color: var(--system-muted);
  font-size: 12px;
  font-weight: 900;
}

.course-head h3 {
  margin: 5px 0 6px;
  color: var(--system-deep);
  font-size: 18px;
  line-height: 1.25;
}

.course-head p {
  margin: 0;
  color: var(--system-muted);
  line-height: 1.5;
}

.course-head > strong {
  color: var(--system-green);
  font-size: 24px;
  line-height: 1;
}

.course-progress {
  height: 8px;
  overflow: hidden;
  background: #e5f0eb;
  border-radius: 8px;
}

.course-progress i {
  display: block;
  height: 100%;
  background: var(--system-green);
  border-radius: inherit;
}

.lesson-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.lesson-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.lesson-item.done {
  background: #ecf8f2;
}

.lesson-item.active {
  border-color: rgba(15, 107, 87, 0.42);
  box-shadow: 0 0 0 2px rgba(15, 107, 87, 0.08);
}

.lesson-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--system-deep);
}

.practice-item {
  display: grid;
  gap: 10px;
}

.practice-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--system-deep);
}

#platformToday {
  font-size: 20px;
  line-height: 1.25;
}

.exam-paper-list,
.exam-question-list,
.exam-history-list {
  display: grid;
  gap: 10px;
}

.exam-module-guide-card {
  margin: 14px 0;
}

.exam-module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.exam-module-card {
  display: grid;
  gap: 11px;
  min-height: 260px;
  padding: 14px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.exam-module-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.exam-module-head span,
.exam-module-meta span {
  color: var(--system-muted);
  font-size: 12px;
  font-weight: 900;
}

.exam-module-head strong {
  display: block;
  margin-top: 5px;
  color: var(--system-deep);
  font-size: 18px;
  line-height: 1.3;
}

.exam-module-head b {
  color: var(--system-green);
  font-size: 24px;
  line-height: 1;
}

.exam-module-head b.needs-review {
  color: #9a3412;
  font-size: 16px;
  padding: 6px 8px;
  background: #ffedd5;
  border-radius: 8px;
  white-space: nowrap;
}

.exam-module-card p {
  margin: 0;
  color: var(--system-muted);
  line-height: 1.6;
  font-weight: 850;
}

.exam-module-meta {
  display: grid;
  gap: 7px;
}

.exam-module-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.exam-module-meta svg {
  width: 15px;
  height: 15px;
  color: var(--system-green);
}

.exam-module-jobs {
  min-height: 44px;
  color: var(--system-deep);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.55;
}

.exam-module-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.exam-module-actions a {
  text-decoration: none;
}

.exam-paper-card,
.exam-question-card,
.exam-history-row {
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.exam-paper-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.exam-paper-card.active {
  border-color: rgba(15, 107, 87, 0.45);
  background: #edf8f3;
}

.exam-paper-card span,
.exam-paper-card small,
.exam-question-card p,
.exam-progress-head p,
.exam-result-head p,
.exam-history-row p {
  color: var(--system-muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.5;
}

.exam-paper-card h3,
.exam-question-card strong,
.exam-history-row strong {
  display: block;
  margin: 5px 0 6px;
  color: var(--system-deep);
  line-height: 1.35;
}

.exam-workspace {
  min-height: 300px;
}

.exam-progress-head,
.exam-result-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
  padding: 14px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

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

.exam-progress-head strong {
  color: var(--system-deep);
  font-size: 17px;
}

.exam-question-card {
  padding: 14px;
}

.exam-question-card.wrong {
  background: #fff7f4;
  border-color: rgba(255, 114, 94, 0.32);
}

.exam-option-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.exam-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 42px;
  padding: 10px;
  color: var(--system-ink);
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1.45;
}

.exam-option input {
  margin-top: 3px;
  accent-color: var(--system-green);
}

.exam-option.selected {
  border-color: var(--system-green);
  background: #ecf8f2;
}

.exam-result-head {
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
}

.exam-result-head h2 {
  margin: 4px 0;
  color: var(--system-deep);
  font-size: 22px;
  line-height: 1.25;
}

.exam-explanation {
  margin-top: 10px;
  padding: 10px;
  color: var(--system-deep);
  background: #fff;
  border: 1px solid rgba(255, 114, 94, 0.24);
  border-radius: 8px;
  line-height: 1.6;
  font-weight: 850;
}

.exam-history-card {
  margin-top: 14px;
}

.exam-history-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
}

.exam-history-row span {
  color: var(--system-green);
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.exam-detail-shell {
  width: min(100% - 28px, 1320px);
}

.exam-detail-layout {
  display: grid;
  gap: 14px;
}

.exam-hero-panel h1 {
  font-size: clamp(24px, 3vw, 36px);
}

.exam-status-pill {
  flex: 0 0 auto;
  padding: 8px 12px;
  color: #fff;
  background: var(--system-green);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.exam-detail-stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.exam-test-grid,
.exam-review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 14px;
  align-items: start;
}

.exam-question-panel {
  display: grid;
  gap: 14px;
}

.exam-page-toolbar {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.exam-page-toolbar h2,
.exam-side-panel h2 {
  margin: 0;
  color: var(--system-deep);
}

.exam-page-progress {
  height: 10px;
}

.exam-page-question-list,
.exam-review-list,
.exam-side-stack,
.exam-paper-switcher {
  display: grid;
  gap: 12px;
}

.exam-page-question,
.exam-review-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  scroll-margin-top: 14px;
}

.exam-review-card.correct {
  background: #f2fbf7;
}

.exam-review-card.wrong {
  background: #fff7f4;
  border-color: rgba(255, 114, 94, 0.32);
}

.exam-page-question-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.exam-page-question-head span {
  color: var(--system-muted);
  font-size: 12px;
  font-weight: 900;
}

.exam-page-question-head strong {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--system-green);
  border-radius: 999px;
  font-size: 13px;
}

.exam-page-question h2,
.exam-review-card h2 {
  margin: 0;
  color: var(--system-deep);
  font-size: 18px;
  line-height: 1.5;
}

.exam-detail-option-list {
  display: grid;
  gap: 9px;
}

.exam-detail-option {
  display: grid;
  grid-template-columns: 18px 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 11px;
  color: var(--system-ink);
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  cursor: pointer;
  line-height: 1.45;
}

.exam-detail-option input {
  accent-color: var(--system-green);
}

.exam-detail-option span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--system-green);
  background: #eef6f2;
  border-radius: 999px;
  font-weight: 900;
}

.exam-detail-option strong {
  color: var(--system-deep);
}

.exam-detail-option.selected {
  border-color: var(--system-green);
  background: #ecf8f2;
  box-shadow: 0 0 0 2px rgba(15, 107, 87, 0.08);
}

.exam-side-panel {
  display: grid;
  gap: 12px;
}

.exam-sheet-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.exam-sheet-grid a {
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--system-muted);
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.exam-sheet-grid a.answered {
  color: #fff;
  background: var(--system-green);
  border-color: var(--system-green);
}

.exam-save-message {
  min-height: 20px;
  margin: 0;
  color: var(--system-muted);
  font-size: 13px;
  font-weight: 850;
}

.exam-paper-switcher a {
  display: grid;
  gap: 5px;
  padding: 11px;
  color: var(--system-deep);
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  text-decoration: none;
}

.exam-paper-switcher a.active {
  border-color: rgba(15, 107, 87, 0.45);
  background: #ecf8f2;
  box-shadow: 0 0 0 2px rgba(15, 107, 87, 0.08);
}

.exam-paper-switcher strong {
  color: var(--system-deep);
  line-height: 1.35;
}

.exam-paper-switcher span {
  color: var(--system-muted);
  font-size: 13px;
  font-weight: 850;
}

.exam-review-answer {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.exam-review-answer p {
  margin: 0;
  color: var(--system-muted);
  font-weight: 850;
}

.exam-review-answer strong {
  color: var(--system-deep);
}

.exam-conflict-panel {
  display: grid;
  gap: 12px;
}

.exam-conflict-panel h1 {
  margin: 0;
  color: var(--system-deep);
}

.exam-conflict-panel p {
  margin: 0;
  color: var(--system-muted);
  line-height: 1.65;
  font-weight: 850;
}

.mentor-advice-box {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  padding: 14px;
  background: #f3f8f5;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.mentor-advice-box strong {
  color: var(--system-deep);
  font-size: 14px;
}

.mentor-advice-box p,
.mentor-member-card p,
.mentor-message p {
  margin: 0;
  color: var(--system-muted);
  line-height: 1.6;
}

.mentor-guidance-summary,
.mentor-student-brief,
.mentor-guidance-timeline {
  display: grid;
  gap: 10px;
}

.mentor-guidance-summary {
  margin-bottom: 12px;
}

.mentor-guidance-summary-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.mentor-guidance-summary-head strong,
.mentor-guidance-block strong,
.mentor-student-brief strong {
  color: var(--system-deep);
}

.mentor-guidance-summary-head span {
  color: var(--system-muted);
  font-size: 12px;
  font-weight: 900;
}

.mentor-guidance-block,
.mentor-student-brief article {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.mentor-guidance-block p,
.mentor-guidance-block ul,
.mentor-student-brief p {
  margin: 0;
  color: var(--system-muted);
  line-height: 1.6;
}

.mentor-guidance-block ul {
  padding-left: 18px;
}

.mentor-layout {
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
}

.mentor-team-card,
.mentor-chat-card {
  min-height: 560px;
}

.mentor-team-list {
  display: grid;
  gap: 10px;
}

.mentor-member-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--system-line);
  border-left: 4px solid var(--system-green);
  border-radius: 8px;
}

.mentor-member-card.service {
  border-left-color: var(--system-blue);
}

.mentor-member-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mentor-member-head strong {
  color: var(--system-deep);
  font-size: 18px;
}

.mentor-member-head span,
.mentor-message-head span {
  color: var(--system-muted);
  font-size: 12px;
  font-weight: 900;
}

.mentor-member-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mentor-member-meta span {
  padding: 5px 8px;
  color: var(--system-green);
  background: #eaf4ee;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.mentor-member-card.service .mentor-member-meta span {
  color: #2453b8;
  background: #eef4ff;
}

.mentor-group-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  height: 430px;
  padding: 14px;
  overflow: auto;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.mentor-message {
  width: min(82%, 620px);
  padding: 12px;
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.mentor-message.student {
  justify-self: end;
  background: #eaf4ee;
  border-color: #cbe2d7;
}

.mentor-message.service {
  background: #eef4ff;
  border-color: #d5e1ff;
}

.mentor-message.admin {
  background: #fff4ec;
  border-color: #ffd7c8;
}

.mentor-message-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.mentor-message-head strong {
  color: var(--system-deep);
}

.mentor-chat-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  margin-top: 12px;
}

.mentor-chat-composer textarea {
  min-height: 88px;
  padding: 12px;
  resize: vertical;
}

.admin-mentor-team-list {
  max-height: 520px;
  overflow: auto;
  padding-right: 2px;
}

.mentor-admin-actions {
  justify-content: flex-start;
}

.mentor-note-card p:not(.section-kicker) {
  color: var(--system-muted);
  line-height: 1.7;
}

.mentor-note-card textarea {
  min-height: 120px;
  padding: 12px;
  resize: vertical;
  margin: 14px 0 10px;
}

.mentor-workbench-layout {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
}

.mentor-workbench-list {
  display: grid;
  gap: 10px;
}

.mentor-student-item {
  display: grid;
  gap: 6px;
  width: 100%;
  padding: 13px;
  text-align: left;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  cursor: pointer;
}

.mentor-student-item.active {
  background: #ecf8f2;
  border-color: rgba(15, 107, 87, 0.45);
  box-shadow: 0 0 0 2px rgba(15, 107, 87, 0.08);
}

.mentor-student-item strong {
  color: var(--system-deep);
  font-size: 16px;
}

.mentor-student-item span,
.mentor-student-item small {
  color: var(--system-muted);
  font-weight: 850;
}

.mentor-guidance-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.mentor-guidance-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mentor-sop-panel {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.mentor-sop-panel > strong {
  color: var(--system-deep);
}

.mentor-sop-checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mentor-sop-checklist label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.mentor-sop-checklist span {
  color: var(--system-muted);
  font-size: 12px;
  font-weight: 900;
}

.mentor-guidance-form label {
  display: grid;
  gap: 7px;
}

.mentor-guidance-form span {
  color: var(--system-muted);
  font-size: 13px;
  font-weight: 900;
}

.mentor-guidance-form input,
.mentor-guidance-form textarea {
  min-height: 110px;
  padding: 12px;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  background: #fff;
}

.mentor-guidance-form input {
  min-height: 44px;
}

.mentor-guidance-form textarea {
  resize: vertical;
}

#mentorResumeDraft {
  min-height: 220px;
}

.mentor-brief-jobs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mentor-brief-jobs span {
  padding: 5px 8px;
  color: var(--system-green);
  background: #eaf4ee;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.mentor-assignment-list {
  align-content: start;
}

.mentor-assignment-layout select[multiple] {
  min-height: 140px;
}

.agent-layout {
  align-items: start;
}

.agent-product-list,
.agent-card-list {
  margin-top: 14px;
}

.agent-product-list {
  display: grid;
  gap: 10px;
}

.agent-product-item {
  display: grid;
  gap: 6px;
  padding: 12px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.agent-product-item strong {
  color: var(--system-deep);
}

.agent-product-item span,
.agent-product-item p {
  margin: 0;
  color: var(--system-muted);
  line-height: 1.5;
  font-weight: 850;
}

.agent-ledger-card {
  margin-top: 14px;
}

.service-order-layout {
  grid-template-columns: minmax(320px, 0.46fr) minmax(0, 1fr);
}

.service-order-row .admin-job-meta span:nth-child(1) {
  color: #8d3e22;
  background: #fff1ec;
}

.service-order-row.overdue {
  border-color: rgba(255, 114, 94, 0.38);
  background: #fff9f6;
}

.service-order-row.overdue .admin-job-meta span:nth-child(3) {
  color: #9a3412;
  background: #ffedd5;
}

.service-order-metrics {
  margin: 4px 0 14px;
}

.student-service-progress {
  display: grid;
  gap: 12px;
}

.student-command-card {
  margin: 14px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.student-command {
  display: grid;
  gap: 14px;
}

.student-command-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  color: #fff;
  background: var(--system-deep);
  border-radius: 8px;
}

.student-command-main span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.student-command-main h2 {
  margin: 6px 0 8px;
  color: #fff;
  font-size: 28px;
  line-height: 1.2;
}

.student-command-main p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  font-weight: 850;
}

.student-command-main .solid-button {
  min-width: 148px;
  color: var(--system-deep);
  background: #fff;
}

.student-command-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.student-command-tags b {
  padding: 6px 9px;
  color: #153b31;
  background: #dff2e8;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.2;
}

.student-action-queue {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.student-action-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 2px;
}

.student-action-title strong {
  color: var(--system-deep);
  font-size: 18px;
}

.student-action-title span {
  color: var(--system-muted);
  font-size: 13px;
  font-weight: 850;
}

.student-action-card {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 8px 10px;
  min-height: 116px;
  padding: 12px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  cursor: pointer;
}

.student-action-card span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--system-green);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.student-action-card strong {
  color: var(--system-deep);
  line-height: 1.35;
}

.student-action-card small {
  grid-column: 1 / -1;
  color: var(--system-muted);
  font-size: 12px;
  line-height: 1.55;
  font-weight: 850;
}

.student-action-card.done span {
  color: var(--system-green);
  background: #e2f3ea;
}

.student-action-card.urgent {
  border-color: #f2dca8;
  background: #fffaf0;
}

.student-action-card.urgent span {
  background: #b86b16;
}

.student-service-item {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.student-service-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.student-service-head strong {
  display: block;
  color: var(--system-deep);
  font-size: 17px;
}

.student-service-head span,
.student-service-item p {
  display: block;
  margin: 4px 0 0;
  color: var(--system-muted);
  line-height: 1.55;
  font-weight: 850;
}

.student-service-head b {
  color: var(--system-green);
  font-size: 24px;
}

.service-progress-bar {
  height: 8px;
  overflow: hidden;
  background: #e6f0eb;
  border-radius: 999px;
}

.service-progress-bar i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--system-green);
  border-radius: inherit;
}

.service-step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-step-list span,
.service-order-steps label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 10px;
  color: var(--system-muted);
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.service-step-list span.done {
  color: var(--system-deep);
  background: #eaf7f0;
  border-color: rgba(15, 107, 87, 0.26);
}

.service-step-list svg {
  width: 16px;
  height: 16px;
  color: var(--system-green);
}

.student-service-next {
  display: grid;
  gap: 5px;
  padding: 10px 12px;
  background: #f7fbf8;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.student-service-next strong {
  color: var(--system-deep);
  font-size: 14px;
}

.student-service-next p,
.student-service-next span {
  margin: 0;
  color: var(--system-muted);
  line-height: 1.55;
  font-weight: 850;
}

.student-service-next span {
  font-size: 12px;
}

.service-step-editor {
  display: grid;
  gap: 10px;
  padding: 12px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.service-step-editor strong {
  color: var(--system-deep);
}

.service-order-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-order-steps label input {
  width: auto;
}

.admin-service-progress {
  margin-top: 10px;
}

.admin-service-steps {
  margin-top: 8px;
}

.empty-state {
  padding: 20px;
  color: var(--system-muted);
  text-align: center;
  background: #f8fbf9;
  border: 1px dashed var(--system-line);
  border-radius: 8px;
}

.career-plan-card {
  margin: 14px 0;
}

.career-plan-report {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.career-plan-report article {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.career-plan-report article.wide {
  grid-column: span 2;
}

.career-plan-report span {
  color: var(--system-muted);
  font-size: 12px;
  font-weight: 900;
}

.career-plan-report strong {
  color: var(--system-deep);
  line-height: 1.35;
}

.career-plan-report p,
.career-plan-report ol {
  margin: 0;
  color: var(--system-muted);
  line-height: 1.6;
}

.career-plan-report ol {
  padding-left: 18px;
}

.career-plan-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.career-plan-tags b {
  padding: 5px 8px;
  color: var(--system-green);
  background: #eaf4ee;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.25;
}

.career-plan-tags.warning b {
  color: #8d3e22;
  background: #fff1ec;
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-job-card {
  margin: 14px 0;
}

.compact-metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 4px;
}

.admin-job-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.5fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.marketing-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
  align-items: start;
}

.marketing-panel {
  padding: 16px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.marketing-panel .card-head {
  margin-bottom: 12px;
}

.marketing-panel .card-head h2 {
  font-size: 18px;
}

.marketing-panel .admin-job-form + .admin-job-form {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--system-line);
}

.marketing-list {
  max-height: 420px;
  margin-top: 12px;
}

.operations-layout {
  align-items: stretch;
}

.operations-layout .marketing-panel {
  display: grid;
  align-content: start;
}

.admin-job-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.admin-job-form label {
  display: grid;
  gap: 7px;
}

.admin-job-form span {
  color: var(--system-muted);
  font-size: 13px;
  font-weight: 900;
}

.admin-job-form .wide,
.admin-form-actions,
.admin-message {
  grid-column: 1 / -1;
}

.admin-form-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.admin-job-manager {
  display: grid;
  gap: 12px;
}

.admin-job-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 10px;
}

.admin-job-list {
  display: grid;
  gap: 10px;
  max-height: 720px;
  overflow: auto;
  padding-right: 2px;
}

.admin-job-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.admin-job-row h3 {
  margin: 0;
  color: var(--system-deep);
  font-size: 15px;
  line-height: 1.35;
}

.admin-job-row p {
  margin: 5px 0 8px;
  color: var(--system-muted);
  line-height: 1.45;
}

.admin-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-job-meta span {
  padding: 4px 8px;
  color: var(--system-green);
  background: #eaf4ee;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.admin-job-actions {
  display: flex;
  gap: 8px;
}

.admin-job-actions .tiny-button {
  width: auto;
}

.admin-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.admin-row strong {
  color: var(--system-deep);
}

.admin-row p {
  margin: 4px 0 0;
  color: var(--system-muted);
}

.admin-row span {
  color: var(--system-green);
  font-size: 13px;
  font-weight: 900;
}

.admin-import-text {
  min-height: 320px;
  padding: 12px;
  resize: vertical;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  line-height: 1.55;
}

.admin-message {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--system-muted);
  font-weight: 850;
}

.job-intel-card {
  align-self: start;
}

.job-intel-card .source-notice {
  margin: 12px 0;
}

.job-intel-settings {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 1.25fr;
  gap: 10px;
  align-items: end;
  margin: 12px 0 14px;
  padding: 12px;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  background: #f8fbf9;
}

.job-intel-settings label {
  display: grid;
  gap: 6px;
}

.job-intel-settings span,
.job-intel-settings small {
  color: var(--system-muted);
  font-size: 12px;
  font-weight: 900;
}

.job-intel-settings small {
  align-self: center;
  line-height: 1.45;
}

.job-intel-run-list {
  margin: 12px 0 14px;
}

.job-intel-candidate-list {
  max-height: 760px;
}

.job-intel-row {
  position: relative;
  overflow: hidden;
}

.job-intel-row::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  content: "";
  background: var(--system-line);
}

.job-intel-row.pending {
  border-color: rgba(15, 107, 87, 0.24);
  background: #fbfdfb;
}

.job-intel-row.pending::before {
  background: var(--system-green);
}

.job-intel-row.published {
  border-color: rgba(47, 107, 255, 0.2);
  background: #f8fbff;
}

.job-intel-row.published::before {
  background: var(--system-blue);
}

.job-intel-row.rejected {
  opacity: 0.74;
}

.job-intel-row.rejected::before {
  background: #a6b5ae;
}

.job-intel-evidence {
  display: block;
  margin-top: 8px;
  color: var(--system-muted);
  font-size: 12px;
  line-height: 1.55;
}

#runJobIntelAgentsButton[disabled] {
  cursor: wait;
  opacity: 0.72;
}

#runJobIntelAgentsButton[disabled] i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.admin-audit-card {
  margin-top: 14px;
}

.toast-stack {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 28px));
}

.toast-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  color: var(--system-deep);
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  box-shadow: var(--system-shadow);
}

.toast-item span {
  line-height: 1.5;
  font-weight: 850;
}

.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 59, 49, 0.28);
  backdrop-filter: blur(6px);
}

.modal-backdrop[hidden] {
  display: none;
}

.job-detail-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(780px, calc(100vh - 32px));
  overflow: auto;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  box-shadow: var(--system-shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--system-deep);
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.job-detail-head {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding-right: 42px;
  margin-bottom: 16px;
}

.job-detail-head h2 {
  margin: 4px 0 8px;
  color: var(--system-deep);
  font-size: 24px;
  line-height: 1.24;
}

.job-detail-head p,
.job-detail-section p {
  margin: 0;
  color: var(--system-muted);
  line-height: 1.65;
}

.job-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.job-detail-grid article,
.job-detail-section {
  padding: 12px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.job-detail-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--system-muted);
  font-size: 12px;
  font-weight: 900;
}

.job-detail-grid strong,
.job-detail-section strong {
  color: var(--system-deep);
  line-height: 1.45;
}

.job-check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0;
}

.job-check {
  padding: 10px;
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.job-check span {
  display: block;
  margin-bottom: 6px;
  color: var(--system-muted);
  font-size: 12px;
  font-weight: 900;
}

.job-check.trusted {
  border-color: #cde9dc;
  background: #f4fbf7;
}

.job-prep-detail-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.job-prep-detail-list article {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.job-prep-detail-list span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: var(--system-green);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.job-check.verify {
  border-color: #f2dca8;
  background: #fff8e9;
}

.job-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.job-detail-actions a.tiny-button {
  text-decoration: none;
}

.application-detail-body {
  min-height: 100vh;
}

.application-detail-shell {
  width: min(100% - 28px, 1180px);
  margin: 14px auto;
}

.application-detail-top,
.application-hero-panel,
.application-panel {
  border: 1px solid var(--system-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--system-shadow);
}

.application-detail-top {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  margin-bottom: 14px;
}

.application-detail-top-actions,
.application-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.application-detail-top-actions a,
.application-actions a {
  text-decoration: none;
}

.application-detail-layout {
  display: grid;
  gap: 14px;
}

.application-loading {
  padding: 18px;
  color: var(--system-muted);
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.application-hero-panel {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
}

.application-hero-panel h1,
.application-panel h1,
.application-panel h2 {
  margin: 0;
  color: var(--system-deep);
}

.application-hero-panel h1 {
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.12;
}

.application-hero-panel p {
  margin: 10px 0 0;
  color: var(--system-muted);
  font-weight: 850;
}

.application-status {
  flex: 0 0 auto;
  padding: 8px 12px;
  color: #fff;
  background: var(--system-green);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.application-detail-grid,
.application-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.application-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.application-detail-grid article,
.application-facts div,
.application-step {
  padding: 14px;
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.application-detail-grid span,
.application-facts span {
  display: block;
  margin-bottom: 7px;
  color: var(--system-muted);
  font-size: 12px;
  font-weight: 900;
}

.application-detail-grid strong,
.application-facts strong {
  color: var(--system-deep);
  line-height: 1.45;
}

.application-panel {
  padding: 18px;
}

.application-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.application-step {
  display: grid;
  gap: 7px;
}

.application-step span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--system-muted);
  background: #eef6f2;
  border-radius: 999px;
  font-weight: 900;
}

.application-step.done span,
.application-step.current span {
  color: #fff;
  background: var(--system-green);
}

.application-step strong {
  color: var(--system-deep);
}

.application-step small {
  color: var(--system-muted);
  font-weight: 850;
}

.application-facts {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.application-checklist,
.application-gap-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.application-check-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding: 12px;
  background: #fff8e9;
  border: 1px solid #f2dca8;
  border-radius: 8px;
}

.application-check-item span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #8f5f10;
  background: #fff;
  border-radius: 999px;
  font-weight: 900;
}

.application-check-item.done {
  background: #f4fbf7;
  border-color: #cde9dc;
}

.application-check-item.done span {
  color: #fff;
  background: var(--system-green);
}

.application-check-item strong {
  display: block;
  color: var(--system-deep);
  line-height: 1.35;
}

.application-check-item small {
  display: block;
  margin-top: 4px;
  color: var(--system-muted);
  font-weight: 850;
  line-height: 1.45;
}

.application-advice {
  color: var(--system-muted);
  line-height: 1.7;
}

.application-gap-list span {
  padding: 10px 12px;
  color: var(--system-muted);
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

.application-package-panel {
  background:
    linear-gradient(135deg, rgba(216, 240, 231, 0.78), rgba(255, 255, 255, 0.92)),
    #fff;
}

.resume-version-message {
  display: block;
  margin-top: 6px;
  color: var(--system-muted);
  font-size: 13px;
  font-weight: 850;
}

.resume-version-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.resume-version-flow article {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 5px 10px;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.resume-version-flow span {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--system-muted);
  background: #eef6f2;
  border-radius: 999px;
  font-weight: 900;
}

.resume-version-flow strong {
  color: var(--system-deep);
  line-height: 1.35;
}

.resume-version-flow small {
  color: var(--system-muted);
  font-weight: 850;
  line-height: 1.35;
}

.resume-version-flow article.done {
  background: #f4fbf7;
  border-color: #cde9dc;
}

.resume-version-flow article.done span {
  color: #fff;
  background: var(--system-green);
}

.application-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.application-package-grid article {
  padding: 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.application-package-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--system-muted);
  font-size: 12px;
  font-weight: 900;
}

.application-package-grid strong {
  display: block;
  color: var(--system-deep);
  line-height: 1.45;
}

.application-package-grid p {
  margin: 8px 0 0;
  color: var(--system-muted);
  line-height: 1.6;
}

.application-material-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.application-material-tags em {
  padding: 7px 9px;
  color: var(--system-green);
  background: #ecf8f2;
  border: 1px solid #cde9dc;
  border-radius: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.application-mentor-brief {
  display: grid;
  gap: 8px;
}

.application-mentor-brief p {
  margin: 0;
  padding: 10px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.resume-version-center,
.material-library,
.job-material-map,
.deadline-radar,
.subscription-list,
.company-dossier-grid {
  display: grid;
  gap: 12px;
}

.company-dossier-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.version-card,
.material-item,
.job-material-card,
.deadline-item,
.subscription-item,
.company-dossier-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.version-card.missing,
.deadline-item.danger,
.material-item.missing {
  background: #fff8e9;
  border-color: #f2dca8;
}

.material-item.ready,
.version-card:not(.missing) {
  background: #f4fbf7;
  border-color: #cde9dc;
}

.version-card h3,
.material-item h3,
.job-material-card h3,
.deadline-item h3,
.subscription-item h3,
.company-dossier-card h3 {
  margin: 0 0 6px;
  color: var(--system-deep);
  font-size: 17px;
  line-height: 1.25;
}

.version-card p,
.version-card small,
.material-item p,
.job-material-card p,
.deadline-item p,
.subscription-item p,
.company-dossier-card p {
  margin: 0;
  color: var(--system-muted);
  line-height: 1.55;
}

.version-status {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 6px 9px;
  color: #8f5f10;
  background: #fff;
  border: 1px solid #f2dca8;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.version-status.ready {
  color: var(--system-green);
  border-color: #cde9dc;
}

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

.material-item > div:first-child span,
.deadline-item span,
.company-dossier-head span {
  display: block;
  margin-bottom: 6px;
  color: var(--system-muted);
  font-size: 12px;
  font-weight: 900;
}

.material-actions strong {
  width: 100%;
  color: var(--system-deep);
  text-align: right;
}

.material-priority-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  color: #fff;
  background: var(--system-deep);
  border-radius: 8px;
}

.material-priority-panel.ready {
  color: var(--system-deep);
  background: #f4fbf7;
  border: 1px solid #cde9dc;
}

.material-priority-panel span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.material-priority-panel.ready span {
  color: var(--system-muted);
}

.material-priority-panel strong {
  color: inherit;
  line-height: 1.45;
}

.material-priority-panel .tiny-button {
  color: var(--system-deep);
  background: #fff;
  border-color: #fff;
}

.material-priority-panel.ready .tiny-button {
  color: #fff;
  background: var(--system-green);
  border-color: var(--system-green);
}

.material-status-select {
  display: grid;
  gap: 6px;
  min-width: 132px;
}

.material-status-select span {
  color: var(--system-muted);
  font-size: 12px;
  font-weight: 900;
  text-align: right;
}

.material-status-select select {
  min-height: 38px;
  padding: 0 10px;
  color: var(--system-deep);
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  font-weight: 900;
}

.subscription-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.subscription-form input,
.subscription-form select {
  min-height: 42px;
  padding: 0 12px;
  color: var(--system-ink);
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  font-weight: 850;
}

.subscription-form .solid-button {
  grid-column: 1 / -1;
}

.company-dossier-card {
  display: block;
}

.company-dossier-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.company-dossier-head strong {
  color: var(--system-green);
  font-size: 22px;
  font-weight: 900;
}

.company-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0;
}

.company-stat-row span {
  padding: 7px 9px;
  color: var(--system-muted);
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.next-action p {
  color: var(--system-muted);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.65;
}

.lesson-detail-shell {
  width: min(100% - 28px, 1260px);
}

.lesson-detail-layout {
  display: grid;
  gap: 14px;
}

.lesson-hero-panel h1 {
  font-size: clamp(24px, 3vw, 36px);
}

.lesson-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lesson-video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 14px;
  align-items: stretch;
}

.lesson-video-card,
.lesson-video-side {
  display: grid;
  gap: 14px;
}

.lesson-video-topline {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.lesson-video-topline h2,
.lesson-video-side h2 {
  margin: 0;
  color: var(--system-deep);
}

.lesson-video-topline > span {
  flex: 0 0 auto;
  padding: 8px 12px;
  color: #fff;
  background: var(--system-green);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.lesson-video-frame {
  overflow: hidden;
  background: var(--system-deep);
  border: 1px solid rgba(15, 107, 87, 0.2);
  border-radius: 8px;
}

.lesson-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--system-deep);
}

.lesson-video-progress-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.lesson-video-progress-row span {
  color: var(--system-muted);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.lesson-video-progress {
  height: 8px;
}

.lesson-video-chapters {
  display: grid;
  gap: 10px;
}

.lesson-video-chapters article {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 12px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.lesson-video-chapters span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--system-green);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.lesson-video-chapters strong {
  color: var(--system-deep);
  line-height: 1.5;
}

.lesson-study-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 14px;
  align-items: start;
}

.lesson-study-main {
  display: grid;
  gap: 16px;
}

.lesson-study-main h2,
.lesson-side-panel h2 {
  margin: 0;
  color: var(--system-deep);
}

.lesson-main-progress {
  height: 10px;
}

.lesson-block {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.lesson-block > span,
.lesson-practice-box label > span {
  color: var(--system-muted);
  font-size: 12px;
  font-weight: 900;
}

.lesson-block h3 {
  margin: 0;
  color: var(--system-deep);
  font-size: 19px;
  line-height: 1.45;
}

.lesson-block p {
  margin: 0;
  color: var(--system-muted);
  line-height: 1.7;
}

.lesson-point-list {
  display: grid;
  gap: 10px;
}

.lesson-point-list p {
  display: flex;
  gap: 10px;
}

.lesson-point-list strong {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--system-green);
  border-radius: 999px;
  font-size: 12px;
}

.lesson-step-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: var(--system-muted);
  line-height: 1.65;
  font-weight: 800;
}

.lesson-practice-box label {
  display: grid;
  gap: 8px;
}

.lesson-practice-box textarea {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  padding: 12px;
  color: var(--system-deep);
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  font: inherit;
  line-height: 1.6;
}

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

.lesson-action-message {
  min-height: 20px;
  color: var(--system-green);
  font-weight: 900;
}

.lesson-side-stack {
  display: grid;
  gap: 14px;
}

.lesson-side-panel {
  display: grid;
  gap: 12px;
}

.lesson-directory {
  display: grid;
  gap: 12px;
}

.lesson-directory-course {
  display: grid;
  gap: 10px;
}

.lesson-directory-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--system-deep);
  font-weight: 900;
}

.lesson-directory-head span {
  color: var(--system-green);
}

.lesson-directory-list {
  display: grid;
  gap: 7px;
}

.lesson-directory-list a {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 9px;
  color: var(--system-muted);
  background: #fff;
  border: 1px solid var(--system-line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.lesson-directory-list a.active {
  color: var(--system-deep);
  border-color: rgba(15, 107, 87, 0.45);
  box-shadow: 0 0 0 2px rgba(15, 107, 87, 0.08);
}

.lesson-directory-list a.done {
  background: #ecf8f2;
}

.lesson-directory-list svg {
  width: 18px;
  height: 18px;
  color: var(--system-green);
}

.lesson-linked-job {
  display: grid;
  gap: 7px;
  padding: 13px;
  background: #f8fbf9;
  border: 1px solid var(--system-line);
  border-radius: 8px;
}

.lesson-linked-job strong {
  color: var(--system-deep);
  line-height: 1.45;
}

.lesson-linked-job span {
  color: var(--system-muted);
  font-size: 13px;
  font-weight: 850;
}

.lesson-checklist {
  display: grid;
  gap: 8px;
}

.lesson-checklist span {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--system-muted);
  font-weight: 900;
}

.lesson-checklist svg {
  width: 18px;
  height: 18px;
  color: var(--system-green);
}

@media (max-width: 1080px) {
  .system-shell {
    grid-template-columns: 1fr;
  }

  .system-sidebar {
    position: static;
    height: auto;
  }

  .system-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dashboard-grid,
  .two-col,
  .course-list,
  .auth-fields,
  .admin-job-layout,
  .marketing-layout,
  .mentor-workbench-layout,
  .agent-layout,
  .service-order-layout,
  .career-plan-report,
  .admin-job-toolbar,
  .job-intel-settings,
  .mentor-chat-composer,
  .workflow-steps,
  .job-check-grid,
  .jobs-toolbar,
  .job-filter-panel,
  .application-detail-grid,
  .application-two-col,
  .application-steps,
  .application-package-grid,
  .resume-version-flow,
  .company-dossier-grid,
  .version-card,
  .material-item,
  .job-material-card,
  .deadline-item,
  .subscription-item,
  .subscription-form,
  .lesson-stat-grid,
  .lesson-video-grid,
  .lesson-study-grid,
  .exam-detail-stat-grid,
  .exam-test-grid,
  .exam-review-grid,
  .learning-player-grid,
  .pipeline-board-list,
  .pipeline-stage-summary,
  .material-priority-panel,
  .system-board,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .account-menu {
    width: 100%;
  }

  .account-chip {
    width: 100%;
  }

  .auth-panel {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .student-action-queue,
  .exam-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .system-shell {
    width: min(100% - 14px, 1500px);
    margin: 7px auto;
  }

  .system-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-sidebar {
    gap: 12px;
    padding: 12px;
  }

  .system-brand .brand-symbol {
    width: 42px;
    height: 42px;
  }

  .mobile-nav-more {
    display: flex;
  }

  .system-nav:not(.expanded) .system-nav-item:not(.mobile-primary):not(.mobile-nav-more):not(.active) {
    display: none;
  }

  .sidebar-card,
  #resetDemo {
    display: none;
  }

  .system-topbar,
  .application-detail-top,
  .application-hero-panel,
  .learning-player-hero,
  .card-head,
  .resume-photo-uploader,
  .resume-paper-head,
  .resume-score-row,
	  .resume-insight-grid,
	  .resume-profile-grid,
	  .resume-optimized-head,
	  .student-command-main,
	  .exam-paper-card,
	  .exam-progress-head,
	  .exam-result-head,
  .exam-history-row,
  .admin-job-form,
  .admin-form-actions,
  .admin-job-row,
  .admin-row,
  .mentor-chat-composer,
  .mentor-guidance-summary-head,
  .mentor-guidance-meta,
  .student-service-head,
  .mentor-sop-checklist,
  .job-detail-head,
  .job-detail-grid,
  .job-check-grid,
  .match-company-item,
  .match-company-head,
  .fit-grid,
  .job-system-card,
	  .system-list-item,
	  .task-item,
	  .lesson-item {
	    grid-template-columns: 1fr;
	    align-items: stretch;
	  }

  .student-action-queue,
  .exam-module-grid {
    grid-template-columns: 1fr;
  }

  .resume-step-strip {
    grid-template-columns: 1fr;
  }

  .job-quick-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .job-quick-tab {
    width: 100%;
  }

  .student-action-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .student-command-main {
    padding: 14px;
  }

  .student-command-main h2 {
    font-size: 22px;
  }

  .student-command-main .solid-button {
    min-width: 0;
  }

  .student-action-card,
  .exam-module-card {
    min-height: auto;
  }

	  .mentor-message {
	    width: 100%;
	  }

  .system-topbar {
    display: grid;
  }

  .topbar-actions,
  .match-resume-actions,
  .job-actions {
    justify-content: stretch;
  }

  .account-menu {
    order: -1;
  }

  .soft-button,
  .solid-button,
  .tiny-button {
    width: 100%;
  }

  .marketing-panel {
    padding: 12px;
  }

  .career-plan-report article.wide {
    grid-column: auto;
  }

  .system-sidebar {
    gap: 10px;
    min-width: 0;
    padding: 10px;
  }

  .system-brand {
    gap: 10px;
    min-width: 0;
  }

  .system-brand .brand-symbol {
    width: 36px;
    height: 36px;
  }

  .system-brand strong {
    font-size: 16px;
  }

  .system-brand small {
    font-size: 11px;
  }

  .system-nav {
    display: flex;
    gap: 6px;
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .system-nav-item {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 10px;
    gap: 7px;
    font-size: 14px;
  }

  .system-nav.expanded {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .system-nav.expanded .system-nav-item {
    min-width: 0;
  }

  .system-nav-item svg {
    width: 18px;
    height: 18px;
  }

  .system-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
  }

  .system-topbar p {
    display: none;
  }

  .system-topbar h1 {
    font-size: 22px;
    line-height: 1.2;
  }

  .system-topbar .topbar-actions > .solid-button {
    display: none;
  }

  .topbar-actions {
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-end;
  }

  .account-menu {
    order: 0;
    width: auto;
  }

  .account-chip {
    width: auto;
    min-height: 40px;
    padding: 0 9px;
  }

  .account-chip small {
    display: none;
  }

  .auth-panel {
    position: fixed;
    top: 106px;
    right: 7px;
    left: 7px;
    width: auto;
    max-height: calc(100vh - 120px);
    overflow: auto;
  }

  .view-panel,
  .system-card {
    padding: 14px;
  }

  .metric-grid {
    gap: 8px;
  }

  .metric-grid article {
    padding: 14px;
  }

  .resume-step-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .resume-step-strip article {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px;
  }

  .resume-step-strip span {
    width: 26px;
    height: 26px;
  }

  .resume-step-strip small {
    display: none;
  }

  .resume-completion-head,
  .resume-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .resume-section-grid {
    grid-template-columns: 1fr;
  }

  #view-jobs:not(.filters-open) .job-filter-panel-primary {
    display: none;
  }

  #view-jobs .source-notice {
    display: none;
  }

  #view-jobs .jobs-toolbar {
    gap: 8px;
  }

  .job-quick-tab,
  .tiny-button {
    min-height: 44px;
  }

  .job-prep-actions span:nth-child(n + 2) {
    display: none;
  }

  .job-system-card {
    padding: 14px;
  }

  .pipeline-focus-head,
  .material-priority-panel {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .pipeline-focus-head {
    flex-direction: column;
  }

  .pipeline-focus-item {
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: start;
  }

  .pipeline-focus-item .tiny-button {
    grid-column: 1 / -1;
  }

  .pipeline-stage-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .material-actions {
    justify-content: stretch;
  }

  .material-actions strong,
  .material-status-select span {
    text-align: left;
  }

  .material-status-select {
    width: 100%;
  }

  .system-topbar .soft-button,
  .system-topbar .solid-button,
  .system-topbar .tiny-button,
  .topbar-actions .account-chip {
    width: auto;
  }
}
