/* Kitex ATS — Bootstrap theme from logo palette */
:root {
  --kitex-red: #ed1c24;
  --kitex-green: #8dc63f;
  --kitex-yellow: #fff200;
  --kitex-magenta: #ec008c;
  --kitex-cyan: #00aeef;
  --kitex-black: #1a1a1a;
  --kitex-ink: #1c2430;
  --kitex-muted: #5a6570;
  --kitex-border: #e4e8ee;
  --kitex-surface: #f6f8fb;
  --kitex-white: #ffffff;
  --kitex-sidebar: 260px;
  --kitex-shadow: 0 8px 24px rgba(28, 36, 48, 0.06);
  --kitex-radius: 14px;
  --bs-primary: #00aeef;
  --bs-primary-rgb: 0, 174, 239;
  --bs-success: #8dc63f;
  --bs-danger: #ed1c24;
  --bs-warning: #fff200;
  --bs-info: #00aeef;
  --bs-body-color: #1c2430;
  --bs-body-bg: #f6f8fb;
  --bs-border-color: #e4e8ee;
  --bs-font-sans-serif: "DM Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

body {
  font-family: var(--bs-font-sans-serif);
  color: var(--kitex-ink);
  background: var(--kitex-surface);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6,
.display-font {
  font-family: "Bricolage Grotesque", "DM Sans", sans-serif;
  letter-spacing: -0.02em;
}

/* Brand bars */
.kitex-stripe {
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--kitex-red) 0 20%,
    var(--kitex-green) 20% 40%,
    var(--kitex-yellow) 40% 60%,
    var(--kitex-magenta) 60% 80%,
    var(--kitex-cyan) 80% 100%
  );
}

.kitex-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.kitex-logo-img.lg { height: 72px; }
.kitex-logo-img.xl { height: 96px; }

/* Larger logo in headers / nav / sidebar brand */
.careers-nav .kitex-logo-img,
.admin-sidebar .brand .kitex-logo-img,
.navbar .kitex-logo-img,
header .kitex-logo-img {
  height: 72px;
}

/* Buttons */
.btn {
  border-radius: 10px;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
}

.btn-kitex {
  background: var(--kitex-cyan);
  border-color: var(--kitex-cyan);
  color: #fff;
}
.btn-kitex:hover { background: #0099d4; border-color: #0099d4; color: #fff; }

.btn-kitex-red {
  background: var(--kitex-red);
  border-color: var(--kitex-red);
  color: #fff;
}
.btn-kitex-red:hover { background: #d4141b; color: #fff; }

.btn-kitex-magenta {
  background: var(--kitex-magenta);
  border-color: var(--kitex-magenta);
  color: #fff;
}
.btn-kitex-magenta:hover { background: #c90076; color: #fff; }

.btn-kitex-green {
  background: var(--kitex-green);
  border-color: var(--kitex-green);
  color: #fff;
}
.btn-kitex-green:hover { background: #79b332; color: #fff; }

.btn-outline-kitex {
  border: 1.5px solid var(--kitex-cyan);
  color: var(--kitex-cyan);
  background: transparent;
}
.btn-outline-kitex:hover {
  background: var(--kitex-cyan);
  color: #fff;
}

.btn-outline-dark-soft {
  border: 1.5px solid var(--kitex-border);
  color: var(--kitex-ink);
  background: #fff;
}
.btn-outline-dark-soft:hover {
  background: var(--kitex-surface);
  border-color: #cfd6de;
}

/* Cards */
.card-kitex {
  background: #fff;
  border: 1px solid var(--kitex-border);
  border-radius: var(--kitex-radius);
  box-shadow: var(--kitex-shadow);
}

.card-kitex .card-header {
  background: transparent;
  border-bottom: 1px solid var(--kitex-border);
  padding: 1rem 1.25rem;
}

.kpi-card {
  background: #fff;
  border: 1px solid var(--kitex-border);
  border-radius: var(--kitex-radius);
  padding: 1.25rem;
  height: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.kpi-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--kitex-shadow);
}

.kpi-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.kpi-icon.cyan { background: rgba(0, 174, 239, 0.12); color: var(--kitex-cyan); }
.kpi-icon.green { background: rgba(141, 198, 63, 0.15); color: #6ea82c; }
.kpi-icon.magenta { background: rgba(236, 0, 140, 0.1); color: var(--kitex-magenta); }
.kpi-icon.red { background: rgba(237, 28, 36, 0.1); color: var(--kitex-red); }
.kpi-icon.yellow { background: rgba(255, 242, 0, 0.35); color: #b39b00; }

.badge-soft {
  font-weight: 600;
  font-size: 0.72rem;
  padding: 0.35em 0.65em;
  border-radius: 999px;
}
.badge-soft.green { background: rgba(141, 198, 63, 0.15); color: #5a9420; }
.badge-soft.cyan { background: rgba(0, 174, 239, 0.12); color: #0088bb; }
.badge-soft.magenta { background: rgba(236, 0, 140, 0.1); color: var(--kitex-magenta); }
.badge-soft.red { background: rgba(237, 28, 36, 0.1); color: var(--kitex-red); }
.badge-soft.yellow { background: rgba(255, 242, 0, 0.4); color: #8a7600; }
.badge-soft.gray { background: #eef1f5; color: var(--kitex-muted); }

/* ========== Landing ========== */
.landing-page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(0, 174, 239, 0.1), transparent 45%),
    radial-gradient(ellipse at 90% 10%, rgba(236, 0, 140, 0.08), transparent 40%),
    radial-gradient(ellipse at 70% 90%, rgba(141, 198, 63, 0.1), transparent 40%),
    #fff;
}

.route-card {
  background: #fff;
  border: 1px solid var(--kitex-border);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}
.route-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}
.route-card.admin::before {
  background: linear-gradient(90deg, var(--kitex-cyan), var(--kitex-green));
}
.route-card.careers::before {
  background: linear-gradient(90deg, var(--kitex-magenta), var(--kitex-red), var(--kitex-yellow));
}
.route-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(28, 36, 48, 0.1);
  border-color: transparent;
  color: inherit;
}
.route-card .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}
.route-card.admin .icon-wrap {
  background: rgba(0, 174, 239, 0.12);
  color: var(--kitex-cyan);
}
.route-card.careers .icon-wrap {
  background: rgba(236, 0, 140, 0.1);
  color: var(--kitex-magenta);
}

/* ========== Admin layout ========== */
.admin-shell {
  min-height: 100vh;
}

.admin-sidebar {
  width: var(--kitex-sidebar);
  background: #fff;
  border-right: 1px solid var(--kitex-border);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1030;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 0;
  overflow-y: auto;
}

.admin-sidebar .brand {
  padding: 0.35rem 1.25rem 1.25rem;
  border-bottom: 1px solid var(--kitex-border);
  margin-bottom: 1rem;
}

.admin-sidebar .brand small {
  display: block;
  color: var(--kitex-muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.35rem;
  font-weight: 600;
}

.admin-nav {
  flex: 1;
  padding: 0 0.75rem;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  color: var(--kitex-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
  transition: all 0.15s ease;
}
.admin-nav a i { font-size: 1.15rem; width: 22px; text-align: center; }
.admin-nav a:hover {
  background: var(--kitex-surface);
  color: var(--kitex-ink);
}
.admin-nav a.active {
  background: rgba(0, 174, 239, 0.1);
  color: var(--kitex-cyan);
  font-weight: 600;
}

.admin-sidebar .sidebar-footer {
  padding: 1rem 1.25rem 0;
  border-top: 1px solid var(--kitex-border);
  margin-top: auto;
}

.admin-main {
  margin-left: var(--kitex-sidebar);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.admin-topbar {
  height: 68px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--kitex-border);
  position: sticky;
  top: 0;
  z-index: 1020;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  gap: 1rem;
}

.admin-content {
  flex: 1;
  padding: 1.5rem;
}

.admin-footer {
  border-top: 1px solid var(--kitex-border);
  background: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--kitex-muted);
}

.search-field {
  position: relative;
  max-width: 360px;
  width: 100%;
}
.search-field i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--kitex-muted);
}
.search-field input {
  padding-left: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--kitex-border);
  background: var(--kitex-surface);
  height: 42px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 174, 239, 0.25);
}

.avatar-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-initials {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  background: var(--kitex-cyan);
}

/* Funnel */
.funnel-bar {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-bottom: 4px;
}
.funnel-bar:nth-child(1) { background: var(--kitex-cyan); border-radius: 10px 10px 0 0; width: 100%; }
.funnel-bar:nth-child(2) { background: #33bef2; width: 90%; margin-left: 5%; }
.funnel-bar:nth-child(3) { background: var(--kitex-green); width: 70%; margin-left: 15%; }
.funnel-bar:nth-child(4) { background: var(--kitex-magenta); width: 50%; margin-left: 25%; }
.funnel-bar:nth-child(5) { background: var(--kitex-red); width: 30%; margin-left: 35%; border-radius: 0 0 10px 10px; }

/* Schedule / timeline */
.schedule-item {
  display: flex;
  gap: 0.9rem;
  padding: 0.75rem;
  border: 1px solid var(--kitex-border);
  border-radius: 12px;
  margin-bottom: 0.65rem;
  transition: border-color 0.15s ease;
  text-decoration: none;
  color: inherit;
}
.schedule-item:hover {
  border-color: var(--kitex-cyan);
  color: inherit;
}
.schedule-time {
  min-width: 58px;
  background: var(--kitex-surface);
  border-radius: 10px;
  text-align: center;
  padding: 0.4rem 0.25rem;
  line-height: 1.1;
}
.schedule-time .ampm {
  font-size: 0.65rem;
  color: var(--kitex-muted);
  display: block;
}
.schedule-time .t {
  font-weight: 700;
  color: var(--kitex-cyan);
  font-size: 0.85rem;
}

/* Job cards admin */
.job-row {
  background: #fff;
  border: 1px solid var(--kitex-border);
  border-left: 4px solid var(--kitex-cyan);
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
  margin-bottom: 0.85rem;
  transition: box-shadow 0.15s ease;
}
.job-row:hover { box-shadow: var(--kitex-shadow); }
.job-row.priority { border-left-color: var(--kitex-red); }
.job-row.magenta-edge { border-left-color: var(--kitex-magenta); }
.job-row.green-edge { border-left-color: var(--kitex-green); }

.filter-panel {
  background: #fff;
  border: 1px solid var(--kitex-border);
  border-radius: var(--kitex-radius);
  padding: 1.15rem;
  position: sticky;
  top: 84px;
}

.form-check-input:checked {
  background-color: var(--kitex-cyan);
  border-color: var(--kitex-cyan);
}

/* Kanban */
.kanban-board {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}
.kanban-col {
  min-width: 280px;
  max-width: 280px;
  background: rgba(246, 248, 251, 0.8);
  border-radius: 14px;
  padding: 0.75rem;
  border: 1px solid var(--kitex-border);
}
.kanban-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.35rem;
}
.kanban-col-header h6 {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--kitex-muted);
  font-weight: 700;
}
.kanban-card {
  background: #fff;
  border: 1px solid var(--kitex-border);
  border-radius: 12px;
  padding: 0.9rem;
  margin-bottom: 0.65rem;
  cursor: grab;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.kanban-card:hover {
  box-shadow: var(--kitex-shadow);
  transform: translateY(-1px);
}
.kanban-card a {
  text-decoration: none;
  color: inherit;
}

/* Match score ring */
.score-ring {
  width: 110px;
  height: 110px;
  margin: 0 auto;
  position: relative;
}
.score-ring svg { transform: rotate(-90deg); }
.score-ring .label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score-ring .label strong {
  font-size: 1.5rem;
  line-height: 1;
}
.score-ring .label span {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--kitex-muted);
  font-weight: 700;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 1.5rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--kitex-border);
}
.timeline-item {
  position: relative;
  padding-bottom: 1.35rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--kitex-cyan);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(0, 174, 239, 0.25);
}

/* Calendar */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.cal-head {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--kitex-muted);
  padding: 0.65rem;
  background: var(--kitex-surface);
  border-bottom: 1px solid var(--kitex-border);
}
.cal-cell {
  min-height: 100px;
  border-right: 1px solid var(--kitex-border);
  border-bottom: 1px solid var(--kitex-border);
  padding: 0.4rem;
  font-size: 0.8rem;
}
.cal-cell.muted {
  background: #fafbfc;
  color: #b0b8c2;
}
.cal-event {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.2rem 0.35rem;
  border-radius: 4px;
  margin-top: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-left: 3px solid;
}
.cal-event.cyan {
  background: rgba(0, 174, 239, 0.12);
  color: #0077a8;
  border-color: var(--kitex-cyan);
}
.cal-event.magenta {
  background: rgba(236, 0, 140, 0.1);
  color: var(--kitex-magenta);
  border-color: var(--kitex-magenta);
}
.cal-event.green {
  background: rgba(141, 198, 63, 0.15);
  color: #5a9420;
  border-color: var(--kitex-green);
}

/* Report bars */
.report-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  height: 240px;
  padding: 1rem 0.5rem 0;
}
.report-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}
.report-bar {
  width: 100%;
  border-radius: 8px 8px 0 0;
  position: relative;
  min-height: 12px;
  transition: opacity 0.15s ease;
}
.report-bar:hover { opacity: 0.85; }
.report-bar .val {
  position: absolute;
  top: -1.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--kitex-ink);
  white-space: nowrap;
}
.report-bar-wrap .lbl {
  margin-top: 0.6rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--kitex-muted);
  text-align: center;
}

/* Tables */
.table-kitex {
  margin: 0;
}
.table-kitex thead th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--kitex-muted);
  font-weight: 700;
  border-bottom-width: 1px;
  background: var(--kitex-surface);
  white-space: nowrap;
}
.table-kitex tbody td {
  vertical-align: middle;
  padding: 0.85rem 0.75rem;
  border-color: var(--kitex-border);
}
.table-kitex tbody tr:hover {
  background: rgba(0, 174, 239, 0.03);
}

/* ========== Careers (end-user) ========== */
.careers-nav {
  background: #fff;
  border-bottom: 1px solid var(--kitex-border);
  position: sticky;
  top: 0;
  z-index: 1030;
  min-height: 84px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.careers-nav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  color: var(--kitex-ink);
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
}
.careers-nav .nav-link {
  font-weight: 550;
  color: var(--kitex-muted) !important;
  padding: 0.5rem 0.85rem !important;
}
.careers-nav .nav-link:hover,
.careers-nav .nav-link.active {
  color: var(--kitex-magenta) !important;
}

.careers-hero {
  position: relative;
  padding: 4.5rem 0 4rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.75) 55%, rgba(255, 255, 255, 0.55) 100%),
    url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  overflow: hidden;
}
.careers-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(237, 28, 36, 0.06),
    rgba(141, 198, 63, 0.06),
    rgba(255, 242, 0, 0.05),
    rgba(236, 0, 140, 0.06),
    rgba(0, 174, 239, 0.07)
  );
  pointer-events: none;
}
.careers-hero .container { position: relative; z-index: 1; }

.pill-label {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(236, 0, 140, 0.1);
  color: var(--kitex-magenta);
}

.public-job-card {
  background: #fff;
  border: 1px solid var(--kitex-border);
  border-radius: 18px;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.public-job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(28, 36, 48, 0.08);
  border-color: rgba(236, 0, 140, 0.25);
}
.public-job-card .dept {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--kitex-cyan);
}
.public-job-card .meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  color: var(--kitex-muted);
  font-size: 0.9rem;
}
.public-job-card .meta li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

/* Apply wizard */
.wizard-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 2rem;
}
.wizard-steps::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--kitex-border);
  z-index: 0;
}
.wizard-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
}
.wizard-step .dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--kitex-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--kitex-muted);
}
.wizard-step .lbl {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--kitex-muted);
  text-align: center;
  max-width: 80px;
}
.wizard-step.done .dot {
  background: var(--kitex-green);
  border-color: var(--kitex-green);
  color: #fff;
}
.wizard-step.active .dot {
  background: var(--kitex-magenta);
  border-color: var(--kitex-magenta);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(236, 0, 140, 0.15);
}
.wizard-step.active .lbl { color: var(--kitex-magenta); }

.upload-zone {
  border: 2px dashed var(--kitex-border);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
  background: var(--kitex-surface);
}
.upload-zone:hover {
  border-color: var(--kitex-magenta);
  background: rgba(236, 0, 140, 0.03);
}

.success-panel {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--kitex-border);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--kitex-shadow);
}
.success-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(141, 198, 63, 0.15);
  color: var(--kitex-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.app-status-card {
  background: #fff;
  border: 1px solid var(--kitex-border);
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1rem;
}

.progress-kitex {
  height: 8px;
  border-radius: 999px;
  background: #eef1f5;
}
.progress-kitex .progress-bar {
  background: linear-gradient(90deg, var(--kitex-magenta), var(--kitex-cyan));
  border-radius: 999px;
}

/* Empty states */
.empty-drop {
  border: 2px dashed var(--kitex-border);
  border-radius: 14px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0b8c2;
  font-size: 0.85rem;
}

/* Activity feed */
.activity-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--kitex-border);
}
.activity-item:last-child { border-bottom: 0; }

/* Mobile sidebar */
.sidebar-toggle {
  display: none;
  border: 1px solid var(--kitex-border);
  background: #fff;
  border-radius: 10px;
  width: 40px;
  height: 40px;
}

@media (max-width: 991.98px) {
  .admin-sidebar {
    transform: translateX(-100%);
    transition: transform 0.2s ease;
  }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .sidebar-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .admin-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(28, 36, 48, 0.4);
    z-index: 1025;
  }
  .admin-overlay.show { display: block; }
  .wizard-step .lbl { display: none; }
  .cal-cell { min-height: 72px; }
}

/* Helpers */
.text-muted-kitex { color: var(--kitex-muted) !important; }
.text-kitex-cyan { color: var(--kitex-cyan) !important; }
.text-kitex-magenta { color: var(--kitex-magenta) !important; }
.text-kitex-red { color: var(--kitex-red) !important; }
.text-kitex-green { color: var(--kitex-green) !important; }
.bg-soft-cyan { background: rgba(0, 174, 239, 0.08); }
.bg-soft-magenta { background: rgba(236, 0, 140, 0.06); }
.page-title { font-size: 1.6rem; font-weight: 700; margin-bottom: 0.25rem; }
.page-sub { color: var(--kitex-muted); margin-bottom: 0; }

.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 10px;
  background: rgba(0, 174, 239, 0.08);
  color: var(--kitex-cyan);
  font-weight: 700;
  font-size: 0.85rem;
}

.skill-tag {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  background: var(--kitex-surface);
  border: 1px solid var(--kitex-border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--kitex-ink);
  margin: 0 0.3rem 0.3rem 0;
}

.benefit-tile {
  background: #fff;
  border: 1px solid var(--kitex-border);
  border-radius: 16px;
  padding: 1.25rem;
  height: 100%;
}
.benefit-tile .bi {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.step-panel { display: none; }
.step-panel.active { display: block; }

.toast-kitex {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2000;
  background: var(--kitex-ink);
  color: #fff;
  padding: 0.85rem 1.15rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: none;
  max-width: 320px;
}
.toast-kitex.show { display: block; animation: fadeUp 0.25s ease; }

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