:root {
  --blue: #062b6f;
  --navy: #001d5a;
  --navy-2: #003186;
  --orange: #ff7a00;
  --green: #38b000;
  --red: #e6392e;
  --bg: #f7f9fc;
  --ink: #14213d;
  --muted: #687082;
  --line: #dde5f0;
  --nav-height: 74px;
  --site-max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

button {
  font: inherit;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

textarea {
  min-height: 88px;
  resize: vertical;
}

.shell {
  display: grid;
  grid-template-columns: 236px 1fr;
  min-height: 100vh;
  background: #f4f7fb;
  border-top: 4px solid var(--navy);
  font-size: 13px;
}

.sidebar {
  background: linear-gradient(180deg, #001947, var(--blue));
  color: white;
  padding: 18px 14px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  padding: 8px 6px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.brand strong {
  font-size: 18px;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

.markImage {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.shell nav {
  display: grid;
  gap: 4px;
}

.shell nav button {
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 11px;
  text-align: left;
  cursor: pointer;
}

.shell nav button.active,
.shell nav button:hover {
  color: white;
  background: linear-gradient(90deg, #005be8, #0041a8);
}

.content {
  padding: 14px 16px 18px;
  min-width: 0;
}

.hidden {
  display: none !important;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(6, 43, 111, 0.08);
  margin-bottom: 10px;
  padding: 14px 16px;
}

.topbarTitle {
  align-items: center;
  display: flex;
  gap: 13px;
}

.topbar p {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin: 0 0 4px;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

.topbar h1 {
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
}

.iconButton,
.queueItem button {
  border: 1px solid var(--line);
  background: white;
  color: var(--blue);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  padding: 9px 11px;
  cursor: pointer;
}

.topActions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.topActions a {
  text-decoration: none;
}

.pageIntro {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(6, 43, 111, 0.05);
  margin-bottom: 10px;
  padding: 12px 14px;
}

.pageIntro span {
  color: var(--orange);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.pageIntro p {
  color: var(--muted);
  font-size: 13px;
  margin: 4px 0 0;
  max-width: 720px;
}

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

.metric,
.panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(6, 43, 111, 0.055);
}

.metric {
  min-height: 96px;
  padding: 12px 14px;
  position: relative;
  overflow: hidden;
}

.metric i {
  align-items: center;
  border-radius: 50%;
  display: block;
  display: flex;
  color: white;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  height: 26px;
  justify-content: center;
  margin-bottom: 8px;
  width: 26px;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 2px;
  text-transform: uppercase;
}

.metric strong {
  color: var(--navy);
  display: block;
  font-size: 23px;
  line-height: 1.1;
}

.metric small {
  color: var(--green);
  display: block;
  font-size: 11px;
  font-weight: 800;
  margin-top: 5px;
}

.metric-blue i { background: linear-gradient(135deg, #0b65d8, #003b95); }
.metric-green i { background: linear-gradient(135deg, #38b000, #17803a); }
.metric-orange i { background: linear-gradient(135deg, #ff7a00, #ffb000); }
.metric-red i { background: linear-gradient(135deg, #e6392e, #ff6a3d); }

.metric-blue i::before { content: "U"; }
.metric-green i::before { content: "E"; }
.metric-orange i::before { content: "J"; }
.metric-red i::before { content: "A"; }

.metric::after {
  background: rgba(6, 43, 111, 0.04);
  border-radius: 50%;
  content: "";
  height: 92px;
  position: absolute;
  right: -38px;
  top: -34px;
  width: 92px;
}

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

.panel {
  overflow: hidden;
  padding: 12px;
}

.wide {
  grid-column: span 2;
}

.full {
  grid-column: 1 / -1;
}

.panelHeader,
.queueItem,
.stack li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.panelHeader {
  background: linear-gradient(90deg, var(--navy), var(--blue));
  color: white;
  margin: -12px -12px 12px;
  min-height: 34px;
  padding: 8px 12px;
}

.panelHeader h2 {
  color: white;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.panelHeader button,
.panelHeader .textLink {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: white;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 9px;
  text-decoration: none;
}

.panelHeader svg {
  color: var(--blue);
}

.queueList {
  display: grid;
  gap: 8px;
}

.queueItem {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px;
}

.queueItem div {
  flex: 1;
}

.queueItem p {
  color: var(--muted);
  font-size: 12px;
  margin: 2px 0 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
}

.dot.orange,
.pill.orange {
  background: rgba(255, 122, 0, 0.14);
  color: var(--orange);
}

.dot.green,
.pill.green {
  background: rgba(56, 176, 0, 0.14);
  color: var(--green);
}

.dot.red {
  background: var(--red);
}

.pill.red {
  background: rgba(230, 57, 46, 0.12);
  color: var(--red);
}

.pill.blue {
  background: rgba(6, 43, 111, 0.1);
  color: var(--blue);
}

.textLink {
  color: var(--orange);
  font-weight: 800;
  text-decoration: none;
}

.stack {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.formStack {
  display: grid;
  gap: 10px;
}

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

.compactForm {
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
  padding-bottom: 12px;
}

.imagePreview {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.imagePreview img {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.hiddenTextarea {
  display: none;
}

.richEditor {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.richToolbar {
  align-items: center;
  background: #f7f9fc;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px;
}

.richToolbar button {
  min-height: 34px;
  padding: 6px 10px;
}

.richSurface {
  background: #fff;
  min-height: 190px;
  outline: none;
  padding: 14px;
}

.richSurface img {
  border-radius: 8px;
  display: block;
  margin: 10px 0;
  max-width: 100%;
}

.actionSelect {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  font-weight: 700;
  min-width: 150px;
  padding: 8px 10px;
}

.activityPanel {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 16px;
  overflow: hidden;
}

.activityHeader {
  align-items: center;
  background: #f7f9fc;
  display: flex;
  justify-content: space-between;
  padding: 12px;
}

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

.authPage {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.authCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(6, 43, 111, 0.14);
  max-width: 440px;
  padding: 28px;
  width: 100%;
}

.authCard img {
  height: 58px;
  object-fit: contain;
  width: auto;
}

.authCard h1 {
  color: var(--blue);
  margin-bottom: 8px;
}

/* Premium Jobdot homepage */
.jp-body {
  --jp-blue: #0A4D9B;
  --jp-navy: #0E1B2A;
  --jp-gold: #F5B700;
  --jp-white: #FFFFFF;
  --jp-gray: #F5F7FA;
  --jp-muted: #667085;
  background: var(--jp-gray);
  color: var(--jp-navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.jp-body * {
  box-sizing: border-box;
}

.jp-nav {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(14, 27, 42, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  padding: 14px max(22px, calc((100vw - 1180px) / 2));
  position: sticky;
  top: 0;
  z-index: 40;
}

.jp-brand,
.jp-links,
.jp-nav-actions,
.jp-hero-actions,
.jp-hero-points,
.jp-store-actions,
.jp-footer-bottom {
  align-items: center;
  display: flex;
}

.jp-brand {
  color: var(--jp-white);
  font-size: 21px;
  font-weight: 950;
  gap: 10px;
  text-decoration: none;
}

.jp-brand img {
  border-radius: 12px;
  height: 42px;
  object-fit: cover;
  width: 42px;
}

.jp-links {
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.jp-links a,
.jp-ghost-link {
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 750;
  padding: 9px 11px;
  text-decoration: none;
}

.jp-links a:hover,
.jp-ghost-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--jp-white);
}

.jp-nav-actions {
  gap: 8px;
}

.jp-nav-cta,
.jp-btn,
.jp-mini-cta {
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.jp-nav-cta {
  background: var(--jp-gold);
  color: var(--jp-navy);
  padding: 11px 16px;
}

.jp-btn {
  display: inline-flex;
  justify-content: center;
  padding: 14px 22px;
}

.jp-btn:hover,
.jp-mini-cta:hover,
.jp-nav-cta:hover,
.jp-job-card:hover,
.jp-feature-card:hover,
.jp-category-grid a:hover,
.jp-testimonial:hover {
  transform: translateY(-4px);
}

.jp-btn-gold {
  background: var(--jp-gold);
  box-shadow: 0 18px 45px rgba(245, 183, 0, 0.24);
  color: var(--jp-navy);
}

.jp-btn-white {
  background: var(--jp-white);
  color: var(--jp-blue);
}

.jp-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--jp-white);
}

.jp-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(245, 183, 0, 0.24), transparent 30%),
    radial-gradient(circle at 12% 20%, rgba(10, 77, 155, 0.48), transparent 34%),
    linear-gradient(135deg, #0E1B2A 0%, #102844 52%, #07111d 100%);
  color: white;
  overflow: hidden;
  padding: 72px max(22px, calc((100vw - 1180px) / 2)) 54px;
  position: relative;
}

.jp-hero::before {
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  position: absolute;
}

.jp-hero-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  z-index: 1;
}

.jp-eyebrow,
.jp-section-head span,
.jp-employer-card span {
  color: var(--jp-gold);
  display: inline-block;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.jp-eyebrow {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 9px 13px;
}

.jp-hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: .95;
  margin: 22px 0 20px;
  max-width: 760px;
}

.jp-hero-copy p {
  color: rgba(255, 255, 255, .76);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.75;
  max-width: 690px;
}

.jp-hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.jp-hero-points {
  color: rgba(255, 255, 255, .78);
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.jp-hero-points span {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  padding: 9px 12px;
}

.jp-dashboard-wrap {
  position: relative;
}

.jp-dashboard {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 28px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, .34);
  padding: 18px;
  position: relative;
  z-index: 2;
}

.jp-dashboard::before {
  background: rgba(255,255,255,.58);
  border-radius: 20px;
  content: "";
  inset: 18px;
  position: absolute;
}

.jp-dash-top,
.jp-dash-grid {
  position: relative;
  z-index: 1;
}

.jp-dash-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 16px;
}

.jp-dash-top span,
.jp-dash-top strong {
  display: block;
}

.jp-dash-top span {
  color: var(--jp-muted);
  font-size: 13px;
}

.jp-dash-top strong {
  color: var(--jp-navy);
  font-size: 22px;
}

.jp-pulse {
  background: #e8f7ee;
  border-radius: 999px;
  color: #087f45;
  font-weight: 900;
  padding: 9px 12px;
}

.jp-dash-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.18fr .82fr;
}

.jp-live-jobs {
  display: grid;
  gap: 12px;
}

.jp-live-jobs article,
.jp-candidate-card,
.jp-stat-card,
.jp-notification-card {
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(14, 27, 42, .08);
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(14, 27, 42, .08);
  padding: 15px;
}

.jp-live-jobs article {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.jp-live-jobs strong,
.jp-candidate-card h3,
.jp-stat-card strong,
.jp-notification-card strong {
  color: var(--jp-navy);
}

.jp-live-jobs span,
.jp-candidate-card p,
.jp-stat-card span,
.jp-stat-card small,
.jp-notification-card span {
  color: var(--jp-muted);
}

.jp-live-jobs b {
  background: var(--jp-blue);
  border-radius: 999px;
  color: white;
  padding: 7px 9px;
}

.jp-candidate-card {
  grid-row: span 2;
}

.jp-avatar-stack {
  display: flex;
  margin-bottom: 18px;
}

.jp-avatar-stack span {
  background: linear-gradient(135deg, var(--jp-blue), var(--jp-gold));
  border: 3px solid white;
  border-radius: 50%;
  height: 38px;
  margin-right: -10px;
  width: 38px;
}

.jp-progress {
  background: #e8edf4;
  border-radius: 999px;
  height: 9px;
  overflow: hidden;
}

.jp-progress i {
  background: var(--jp-gold);
  display: block;
  height: 100%;
}

.jp-stat-card strong {
  display: block;
  font-size: 38px;
  margin: 5px 0;
}

.jp-logo-float {
  align-items: center;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(0,0,0,.22);
  color: white;
  display: flex;
  font-weight: 950;
  height: 62px;
  justify-content: center;
  position: absolute;
  width: 72px;
  z-index: 3;
}

.jp-logo-a { left: -30px; top: 54px; }
.jp-logo-b { right: -20px; top: -22px; }
.jp-logo-c { bottom: 40px; right: -28px; }

.jp-search-panel {
  align-items: end;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(14, 27, 42, .08);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .24);
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 150px;
  margin: 44px auto 0;
  max-width: 1180px;
  padding: 16px;
  position: relative;
  z-index: 5;
}

.jp-search-panel label {
  display: grid;
  gap: 7px;
}

.jp-search-panel span {
  color: var(--jp-muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.jp-search-panel input,
.jp-search-panel select,
.jp-newsletter input {
  background: var(--jp-gray);
  border: 1px solid #dde5ef;
  border-radius: 16px;
  color: var(--jp-navy);
  min-height: 48px;
  padding: 0 12px;
}

.jp-search-panel input:focus,
.jp-search-panel select:focus,
.jp-newsletter input:focus {
  border-color: var(--jp-blue);
  outline: none;
}

.jp-search-panel button,
.jp-newsletter button {
  background: var(--jp-blue);
  border: 0;
  border-radius: 16px;
  color: white;
  cursor: pointer;
  font-weight: 950;
  min-height: 48px;
}

#searchStatus {
  color: var(--jp-blue);
  font-weight: 800;
  grid-column: 1 / -1;
  margin: 0;
}

.jp-trust {
  background: white;
  padding: 64px max(22px, calc((100vw - 1180px) / 2)) 54px;
  text-align: center;
}

.jp-trust p {
  color: var(--jp-muted);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.jp-company-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-top: 26px;
}

.jp-company-row span {
  color: #8a94a6;
  filter: grayscale(1);
  font-weight: 950;
  transition: color 180ms ease, filter 180ms ease, transform 180ms ease;
}

.jp-company-row span:hover {
  color: var(--jp-blue);
  filter: grayscale(0) brightness(1.05);
  transform: translateY(-2px);
}

.jp-section,
.jp-ai-section,
.jp-employer,
.jp-app-section,
.jp-final-cta,
.jp-stats {
  padding: 82px max(22px, calc((100vw - 1180px) / 2));
}

.jp-white {
  background: white;
}

.jp-section-head {
  margin-bottom: 28px;
  max-width: 780px;
}

.jp-section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.jp-section-head.split {
  align-items: end;
  display: flex;
  justify-content: space-between;
  max-width: none;
}

.jp-section-head h2,
.jp-ai-section h2,
.jp-employer-card h2,
.jp-app-section h2,
.jp-final-cta h2 {
  color: var(--jp-navy);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  margin: 10px 0 0;
}

.jp-section-head p,
.jp-ai-section p,
.jp-employer-card p,
.jp-app-section p,
.jp-final-cta p {
  color: var(--jp-muted);
  font-size: 17px;
  line-height: 1.7;
}

.jp-card-grid {
  display: grid;
  gap: 18px;
}

.jp-card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.jp-card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.jp-feature-card,
.jp-job-card,
.jp-category-grid a,
.jp-testimonial {
  background: white;
  border: 1px solid rgba(14, 27, 42, .08);
  border-radius: 24px;
  box-shadow: 0 14px 35px rgba(14, 27, 42, .06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.jp-feature-card:hover,
.jp-job-card:hover,
.jp-category-grid a:hover,
.jp-testimonial:hover {
  border-color: rgba(245, 183, 0, .45);
  box-shadow: 0 26px 60px rgba(14, 27, 42, .12);
}

.jp-feature-card {
  padding: 26px;
}

.jp-feature-card i {
  align-items: center;
  background: linear-gradient(135deg, var(--jp-blue), #1673d1);
  border-radius: 18px;
  color: white;
  display: flex;
  font-style: normal;
  font-weight: 950;
  height: 52px;
  justify-content: center;
  margin-bottom: 18px;
  width: 52px;
}

.jp-feature-card h3,
.jp-job-card h3 {
  color: var(--jp-navy);
  font-size: 20px;
}

.jp-feature-card p,
.jp-job-card p,
.jp-location {
  color: var(--jp-muted);
  line-height: 1.6;
}

.jp-job-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jp-job-card {
  padding: 24px;
}

.jp-job-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.jp-company-mark {
  align-items: center;
  background: var(--jp-blue);
  border-radius: 18px;
  color: white;
  display: flex;
  font-weight: 950;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.jp-job-head button {
  background: var(--jp-gray);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: var(--jp-blue);
  font-size: 13px;
  font-weight: 900;
  height: 42px;
  padding: 0 14px;
}

.jp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.jp-badges b {
  background: rgba(245, 183, 0, .16);
  border-radius: 999px;
  color: var(--jp-navy);
  font-size: 13px;
  padding: 7px 10px;
}

.jp-badges b:nth-child(2) {
  background: rgba(10, 77, 155, .1);
  color: var(--jp-blue);
}

.jp-badges b:nth-child(3) {
  background: #e8f7ee;
  color: #087f45;
}

.jp-job-card > a,
.jp-mini-cta {
  background: var(--jp-blue);
  color: white;
  display: inline-flex;
  justify-content: center;
  padding: 12px 18px;
  text-decoration: none;
  width: 100%;
}

.jp-mini-cta {
  width: auto;
}

.jp-category-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.jp-category-grid a {
  color: var(--jp-navy);
  font-weight: 900;
  padding: 22px 16px;
  text-align: center;
  text-decoration: none;
}

.jp-ai-section,
.jp-app-section {
  align-items: center;
  background: var(--jp-navy);
  color: white;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
}

.jp-ai-section h2,
.jp-app-section h2,
.jp-final-cta h2,
.jp-employer-card h2 {
  color: white;
}

.jp-ai-section p,
.jp-app-section p,
.jp-final-cta p,
.jp-employer-card p {
  color: rgba(255, 255, 255, .74);
}

.jp-tool-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.jp-tool-list span {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  font-weight: 850;
  padding: 10px 12px;
}

.jp-chat-preview {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 28px;
  display: grid;
  gap: 12px;
  padding: 20px;
}

.jp-chat-row {
  border-radius: 18px;
  padding: 14px 16px;
}

.jp-chat-row.user {
  background: white;
  color: var(--jp-navy);
  justify-self: end;
  max-width: 82%;
}

.jp-chat-row.ai {
  background: rgba(245, 183, 0, .18);
  color: white;
  max-width: 88%;
}

.jp-employer {
  background: var(--jp-gray);
}

.jp-employer-card {
  background:
    radial-gradient(circle at 90% 0%, rgba(245, 183, 0, .34), transparent 28%),
    linear-gradient(135deg, var(--jp-blue), var(--jp-navy));
  border-radius: 32px;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr .9fr;
  padding: clamp(30px, 6vw, 70px);
}

.jp-employer-list {
  display: grid;
  gap: 12px;
}

.jp-employer-list div {
  align-items: center;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  color: white;
  display: flex;
  gap: 12px;
  padding: 14px;
}

.jp-employer-list span {
  align-items: center;
  background: var(--jp-gold);
  border-radius: 50%;
  color: var(--jp-navy);
  display: flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.jp-testimonial {
  padding: 24px;
}

.jp-testimonial p {
  color: var(--jp-navy);
  font-size: 17px;
  line-height: 1.7;
}

.jp-testimonial strong,
.jp-testimonial span {
  display: block;
}

.jp-testimonial strong {
  color: var(--jp-blue);
  margin-top: 16px;
}

.jp-testimonial span {
  color: var(--jp-muted);
}

.jp-stats {
  background: white;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.jp-stats article {
  background: var(--jp-gray);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
}

.jp-stats strong {
  color: var(--jp-blue);
  display: block;
  font-size: clamp(34px, 4vw, 54px);
}

.jp-stats span {
  color: var(--jp-muted);
  font-weight: 850;
}

.jp-phone-wrap {
  min-height: 360px;
  position: relative;
}

.jp-phone {
  background: #101828;
  border: 8px solid #27364a;
  border-radius: 34px;
  box-shadow: 0 28px 60px rgba(0,0,0,.34);
  color: white;
  min-height: 320px;
  padding: 28px 18px;
  position: absolute;
  text-align: center;
  width: 190px;
}

.jp-phone strong {
  color: var(--jp-gold);
  display: block;
  font-size: 54px;
  margin-top: 76px;
}

.jp-phone.android {
  left: 16%;
  top: 28px;
  transform: rotate(-7deg);
}

.jp-phone.iphone {
  right: 18%;
  top: 0;
  transform: rotate(7deg);
}

.jp-store-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.jp-store-actions a {
  display: inline-flex;
  transition: transform 180ms ease, filter 180ms ease;
}

.jp-store-actions a:hover {
  filter: brightness(1.08);
  transform: translateY(-3px);
}

.jp-store-actions img {
  display: block;
  height: 48px;
  width: auto;
}

.jp-final-cta {
  background:
    radial-gradient(circle at 80% 0%, rgba(245, 183, 0, .24), transparent 30%),
    var(--jp-blue);
  color: white;
  text-align: center;
}

.jp-final-cta p {
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}

.jp-final-cta div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
}

.jp-footer {
  background: #07111d;
  color: rgba(255, 255, 255, .72);
  padding: 54px max(22px, calc((100vw - 1180px) / 2)) 24px;
}

.jp-footer-top {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.2fr 2.5fr .8fr;
}

.jp-footer-brand img {
  border-radius: 14px;
  height: 52px;
  object-fit: cover;
  width: 52px;
}

.jp-footer-brand strong,
.jp-footer h3 {
  color: white;
  display: block;
}

.jp-footer-brand strong {
  font-size: 26px;
  margin-top: 12px;
}

.jp-newsletter {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.jp-newsletter input {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  color: white;
  min-width: 0;
}

.jp-newsletter button {
  background: var(--jp-gold);
  color: var(--jp-navy);
  padding: 0 16px;
}

.jp-footer-columns {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jp-footer-columns a,
.jp-socials a,
.jp-footer-bottom a {
  color: rgba(255, 255, 255, .72);
  display: block;
  margin-top: 9px;
  text-decoration: none;
}

.jp-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.jp-socials a {
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  margin-top: 0;
  padding: 9px 11px;
}

.jp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  justify-content: space-between;
  margin-top: 36px;
  padding-top: 20px;
}

.jp-footer-bottom div {
  display: flex;
  gap: 16px;
}

@media (max-width: 1100px) {
  .jp-hero-grid,
  .jp-ai-section,
  .jp-employer-card,
  .jp-app-section,
  .jp-footer-top {
    grid-template-columns: 1fr;
  }

  .jp-search-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jp-card-grid.four,
  .jp-job-grid,
  .jp-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jp-company-row,
  .jp-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .jp-nav {
    align-items: center;
    gap: 10px;
  }

  .jp-links {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    width: 100%;
  }

  .jp-links a {
    flex: 0 0 auto;
  }

  .jp-nav-actions {
    display: none;
  }

  .jp-nav-cta {
    text-align: center;
    width: 100%;
  }

  .jp-hero {
    padding-bottom: 74px;
  }

  .jp-search-panel {
    grid-template-columns: 1fr;
  }

  .jp-trust {
    padding-top: 54px;
  }

  .jp-dash-grid,
  .jp-card-grid.four,
  .jp-card-grid.three,
  .jp-job-grid,
  .jp-stats,
  .jp-company-row,
  .jp-category-grid,
  .jp-footer-columns {
    grid-template-columns: 1fr;
  }

  .jp-section-head.split {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .jp-phone-wrap {
    min-height: 470px;
  }

  .jp-phone.android,
  .jp-phone.iphone {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .jp-phone.iphone {
    top: 150px;
  }

  .jp-footer-bottom,
  .jp-newsletter {
    align-items: flex-start;
    flex-direction: column;
  }
}

.formGrid label {
  color: var(--muted);
  display: grid;
  font-size: 14px;
  font-weight: 700;
  gap: 6px;
}

.mutedLine {
  color: var(--muted);
  display: block;
}

.subtleForm {
  border-top: 1px solid var(--line);
  margin-top: 16px;
  padding-top: 16px;
}

.adminPlaceholder p {
  color: var(--muted);
  margin-top: 0;
}

.chartWrap {
  align-items: end;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, minmax(56px, 1fr));
  min-height: 230px;
}

.chartBarItem {
  align-items: center;
  display: grid;
  gap: 8px;
  justify-items: center;
  min-width: 0;
}

.chartBarTrack {
  align-items: end;
  background: #eef3fa;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  height: 150px;
  overflow: hidden;
  width: 28px;
}

.chartBarTrack span {
  background: linear-gradient(180deg, var(--orange), var(--blue));
  border-radius: inherit;
  display: block;
  width: 100%;
}

.chartBarItem strong {
  color: var(--blue);
  font-size: 18px;
}

.chartBarItem small {
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.analyticsPreview {
  display: grid;
  gap: 12px;
}

.analyticsStat {
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.analyticsStat span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.analyticsStat strong {
  color: var(--blue);
  overflow-wrap: anywhere;
}

.formStack button {
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: white;
  cursor: pointer;
  font-weight: 700;
  padding: 11px 14px;
}

.checkRow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.checkRow input {
  width: auto;
}

.stack li {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.stack li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 12px 8px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 14px;
}

.pill {
  border-radius: 999px;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 10px;
}

.shell .stack {
  gap: 8px;
}

.shell .stack li {
  font-size: 12px;
  padding-bottom: 8px;
}

.shell table {
  border-collapse: collapse;
  font-size: 12px;
  width: 100%;
}

.shell th,
.shell td {
  border-bottom: 1px solid var(--line);
  padding: 9px 7px;
  text-align: left;
  vertical-align: top;
}

.shell th {
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.shell td {
  color: #263653;
}

.shell .pill {
  font-size: 11px;
  padding: 5px 8px;
}

.shell .chartWrap {
  gap: 10px;
  min-height: 205px;
  padding: 6px 2px 0;
}

.shell .chartBarTrack {
  height: 132px;
  width: 24px;
}

.shell .chartBarItem strong {
  font-size: 15px;
}

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

.shell .analyticsStat {
  border-radius: 6px;
  padding: 12px;
}

.shell .formStack button {
  border-radius: 6px;
}

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

  .sidebar {
    position: static;
  }

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

  .metrics,
  .grid,
  .formGrid,
  .chartWrap {
    grid-template-columns: 1fr;
  }

  .chartWrap {
    align-items: stretch;
    min-height: auto;
  }

  .chartBarItem {
    grid-template-columns: 76px 1fr 40px;
    justify-items: start;
  }

  .chartBarTrack {
    height: 20px;
    width: 100%;
  }

  .wide {
    grid-column: span 1;
  }
}

.publicBody {
  background: white;
}

.publicNav,
.publicFooter {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  justify-content: space-between;
  padding: 12px max(24px, calc((100vw - var(--site-max)) / 2));
}

.publicNav {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.premiumNav {
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(6, 43, 111, 0.06);
}

.publicBrand,
.publicLinks,
.heroActions {
  align-items: center;
  display: flex;
  gap: 14px;
}

.publicBrand {
  color: var(--blue);
  flex: 0 0 auto;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 900;
  text-decoration: none;
}

.publicBrand img {
  border-radius: 10px;
  height: clamp(34px, 3.4vw, 42px);
  object-fit: cover;
  width: clamp(34px, 3.4vw, 42px);
}

.publicLinks a,
.heroActions a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.publicLinks {
  flex-wrap: wrap;
}

.publicLinks a {
  border-radius: 999px;
  font-size: 14px;
  padding: 8px 10px;
}

.publicLinks a:hover {
  background: rgba(6, 43, 111, 0.07);
  color: var(--blue);
}

.navCta {
  background: var(--blue);
  border-radius: 999px;
  color: white;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 15px;
  text-decoration: none;
}

.landingHero {
  align-items: center;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 122, 0, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(6, 43, 111, 0.08), rgba(56, 176, 0, 0.06)),
    var(--bg);
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(300px, 1.02fr) minmax(300px, 0.98fr);
  min-height: calc(100vh - var(--nav-height));
  padding: 54px max(24px, calc((100vw - var(--site-max)) / 2)) 70px;
}

.heroMedia {
  border: 10px solid white;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(6, 43, 111, 0.2);
  min-height: clamp(390px, 46vw, 540px);
  overflow: hidden;
  position: relative;
}

.heroMedia::after {
  background: linear-gradient(180deg, transparent, rgba(6, 43, 111, 0.42));
  content: "";
  inset: 0;
  position: absolute;
}

.heroMedia img {
  height: 100%;
  min-height: clamp(390px, 46vw, 540px);
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.heroFloat {
  background: white;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  bottom: 22px;
  box-shadow: 0 18px 45px rgba(6, 43, 111, 0.22);
  left: 22px;
  padding: 14px 16px;
  position: absolute;
  z-index: 2;
}

.heroFloat strong {
  color: var(--blue);
  display: block;
  font-size: 24px;
}

.heroFloat span {
  color: var(--muted);
  font-size: 14px;
}

.heroCopy h1 {
  color: var(--blue);
  font-size: clamp(42px, 5.8vw, 74px);
  letter-spacing: 0;
  line-height: 0.98;
  max-width: 720px;
}

.heroCopy h1 span {
  color: var(--orange);
}

.heroCopy h2 {
  color: var(--blue);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 750;
  line-height: 1.16;
  margin: 14px 0;
}

.heroCopy p {
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
  max-width: 640px;
}

.announcement {
  color: var(--green) !important;
  font-weight: 800;
  margin: 0 0 10px;
}

.heroActions {
  margin-top: 22px;
}

.heroActions a {
  border-radius: 999px;
  padding: 14px 20px;
}

.heroActions a:first-child {
  background: var(--orange);
  color: white;
}

.heroActions a:last-child {
  border: 1px solid var(--line);
  background: white;
  color: var(--blue);
}

.heroStats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.heroStats span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  padding: 9px 12px;
}

.heroStats strong {
  color: var(--blue);
}

.softSection,
.contactSection {
  background: var(--bg);
}

.publicBand {
  background: var(--blue);
  color: white;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  padding: 24px max(24px, calc((100vw - var(--site-max)) / 2));
}

.publicSection {
  padding: 72px max(24px, calc((100vw - var(--site-max)) / 2));
}

.introSection {
  padding-top: 76px;
}

.contactHero {
  background:
    linear-gradient(90deg, rgba(6, 43, 111, 0.88), rgba(6, 43, 111, 0.56)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1400&q=80");
  background-position: center;
  background-size: cover;
  color: white;
  min-height: 48vh;
  padding: 84px max(24px, calc((100vw - var(--site-max)) / 2));
}

.contactHero div {
  max-width: 720px;
}

.contactHero h1 {
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 1.02;
}

.contactHero p {
  font-size: 18px;
  line-height: 1.7;
}

.sectionHeading {
  margin-bottom: 22px;
  max-width: 760px;
}

.sectionHeading h2 {
  color: var(--blue);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
}

.sectionHeading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.compactHeading {
  max-width: 880px;
}

.sectionKicker {
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.orangeText {
  color: var(--orange);
}

.splitSection {
  background: var(--blue);
  color: white;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
}

.splitSection > div {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
}

.splitSection h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
  margin: 0 0 14px;
}

.splitSection p:not(.sectionKicker) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
}

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

.publicCard {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(6, 43, 111, 0.06);
  padding: 22px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.publicCard:hover {
  box-shadow: 0 18px 40px rgba(6, 43, 111, 0.11);
  transform: translateY(-2px);
}

.publicCard strong {
  color: var(--blue);
  display: block;
  font-size: 18px;
  margin: 8px 0;
}

.publicCard p {
  color: var(--muted);
  line-height: 1.55;
}

.publicCard span {
  color: var(--orange);
  font-weight: 800;
}

.articleCard {
  color: inherit;
  display: block;
  text-decoration: none;
}

.articleCard em {
  color: var(--blue);
  display: inline-block;
  font-style: normal;
  font-weight: 850;
  margin-top: 8px;
}

.articlePage {
  margin: 0 auto;
  max-width: 860px;
  padding: 76px 24px 92px;
}

.articlePage h1 {
  color: var(--blue);
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.04;
  margin: 12px 0 16px;
}

.articleExcerpt {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.articleContent {
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.85;
  margin-top: 32px;
  padding-top: 28px;
}

.articleHeroImage {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  display: block;
  margin: 0 0 24px;
  object-fit: cover;
  width: 100%;
}

.elevatedCard {
  background: white;
  min-height: 210px;
}

.showcaseSection {
  background:
    linear-gradient(180deg, white, rgba(247, 249, 252, 0.9));
}

.publicForm {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(6, 43, 111, 0.06);
  display: grid;
  gap: 12px;
  max-width: 840px;
  padding: 18px;
}

.contactLayout {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
}

.contactInfo {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 36px);
}

.contactInfo h2 {
  color: var(--blue);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.08;
  margin: 0 0 14px;
}

.contactInfo p:not(.sectionKicker) {
  color: var(--muted);
  line-height: 1.7;
}

.contactPoints {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contactPoints span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  font-weight: 750;
  padding: 12px 14px;
}

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


.loginCard .secondaryButton {
  background: white;
  border: 1px solid var(--line);
  color: var(--blue);
}

.loginCard .secondaryButton:hover,
.loginCard .secondaryButton:focus-visible {
  background: #eef4ff;
  border-color: var(--blue);
}

.publicForm button,
.loginCard button {
  background: var(--orange);
  border: 0;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-weight: 800;
  padding: 12px 16px;
}

.publicForm p {
  color: var(--blue);
  font-weight: 700;
  margin: 0;
}

.publicFooter {
  background: #031a44;
  color: var(--muted);
  gap: 24px;
  padding-bottom: 28px;
  padding-top: 28px;
}

.footerBrand {
  align-items: center;
  display: flex;
  gap: 14px;
}

.footerBrand img {
  border-radius: 12px;
  height: 52px;
  object-fit: cover;
  width: 52px;
}

.footerBrand strong {
  color: white;
  display: block;
}

.footerBrand span {
  color: rgba(255, 255, 255, 0.68);
}

.footerLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footerLinks a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  text-decoration: none;
}

.footerConnect {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-end;
}

.footerConnect strong {
  color: white;
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}

.socialLinks,
.appLinks {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.socialLinks a {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: white;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  width: 36px;
}

.socialLinks svg {
  fill: currentColor;
  height: 18px;
  width: 18px;
}

.socialLinks a:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.appLinks a {
  align-items: center;
  background: white;
  border-radius: 8px;
  color: var(--blue);
  display: inline-flex;
  gap: 8px;
  min-width: 142px;
  padding: 9px 11px;
  text-decoration: none;
}

.appLinks .storeBadge {
  background: transparent;
  border-radius: 8px;
  display: inline-flex;
  min-width: 0;
  padding: 0;
}

.appLinks .storeBadge img {
  display: block;
  height: 44px;
  width: 147px;
}

.appLinks .storeBadge.disabled {
  cursor: default;
  opacity: 0.72;
}

.appLinks a span {
  align-items: center;
  background: var(--blue);
  border-radius: 6px;
  color: white;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  width: 36px;
}

.appLinks svg {
  fill: currentColor;
  height: 16px;
  width: 16px;
}

.appLinks a strong {
  color: var(--blue);
  font-size: 13px;
  margin: 0;
}

.mutedFooter {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

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

.settingsRow {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  grid-template-columns: auto 1fr;
  padding: 10px;
}

.settingsRow input[type="checkbox"] {
  width: auto;
}

.ctaSection {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(6, 43, 111, 0.94), rgba(6, 43, 111, 0.82)),
    url("/public/hero-african-recruitment.jpg");
  background-position: center;
  background-size: cover;
  color: white;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 74px max(24px, calc((100vw - var(--site-max)) / 2));
}

.ctaSection div {
  max-width: 760px;
}

.ctaSection h2 {
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.06;
  margin: 0 0 12px;
}

.ctaSection p:not(.sectionKicker) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
}

.ctaSection a {
  background: var(--orange);
  border-radius: 999px;
  color: white;
  flex: 0 0 auto;
  font-weight: 900;
  padding: 15px 20px;
  text-decoration: none;
}

.loginBody {
  background: radial-gradient(circle at top left, rgba(255, 122, 0, 0.14), transparent 30%), var(--bg);
}

.loginShell {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.loginCard {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(6, 43, 111, 0.14);
  display: grid;
  gap: 12px;
  max-width: 420px;
  padding: 26px;
  width: 100%;
}

.loginBrand {
  align-items: center;
  display: flex;
  gap: 12px;
}

.loginBrand img {
  border-radius: 14px;
  height: 54px;
  object-fit: cover;
  width: 54px;
}

.loginBrand strong {
  color: var(--blue);
  display: block;
  font-size: 20px;
}

.loginCard p,
.loginCard small {
  color: var(--muted);
  margin: 0;
}

.loginCard h1 {
  color: var(--blue);
  margin-bottom: 6px;
}

/* Premium public sub-pages */
.publicBody {
  background: #f5f7fa;
}

.publicNav {
  background: rgba(14, 27, 42, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.publicBrand,
.publicLinks a {
  color: white;
}

.publicBrand span {
  color: white;
}

.publicLinks a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #f5b700;
}

.navCta {
  background: #f5b700;
  color: #0e1b2a;
}

.pageHero {
  background:
    linear-gradient(90deg, rgba(14, 27, 42, 0.9), rgba(10, 77, 155, 0.58)),
    var(--page-hero-image, url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1600&q=80"));
  background-position: center;
  background-size: cover;
  min-height: 56vh;
  position: relative;
}

.aboutHero {
  --page-hero-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=80");
}

.jobsHero {
  --page-hero-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80");
}

.careerHero {
  --page-hero-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=80");
}

.blogHero {
  --page-hero-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80");
}

.contactPremiumHero {
  --page-hero-image: url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1600&q=80");
}

.pageHero::after {
  background: radial-gradient(circle at 80% 20%, rgba(245, 183, 0, 0.28), transparent 28%);
  content: "";
  inset: 0;
  position: absolute;
}

.pageHero > div {
  position: relative;
  z-index: 1;
}

.pageHero h1 {
  max-width: 820px;
}

.pageHeroCta {
  background: #f5b700;
  border-radius: 999px;
  color: #0e1b2a;
  display: inline-flex;
  font-weight: 950;
  margin-top: 22px;
  padding: 13px 20px;
  text-decoration: none;
}

.publicSection {
  background: #f5f7fa;
}

.publicSection:nth-of-type(even) {
  background: white;
}

.publicCard {
  background: white;
  border: 1px solid rgba(14, 27, 42, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(14, 27, 42, 0.08);
  overflow: hidden;
}

.publicCard strong {
  color: #0e1b2a;
}

.publicCard span,
.sectionKicker,
.announcement {
  color: #f5b700 !important;
}

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

.premiumListCard {
  min-height: 220px;
}

.premiumListCard a {
  background: #0a4d9b;
  border-radius: 999px;
  color: white;
  display: inline-flex;
  font-weight: 850;
  margin-top: 12px;
  padding: 10px 14px;
  text-decoration: none;
}

.contactInfo {
  background: white;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(14, 27, 42, 0.08);
}

.publicForm {
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(14, 27, 42, 0.08);
}

.publicFooter {
  background: #07111d;
}

@media (max-width: 1120px) {
  .featureGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landingHero {
    gap: 30px;
    grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.86fr);
  }
}

@media (max-width: 860px) {
  .landingHero,
  .featureGrid,
  .formPair,
  .splitSection,
  .contactLayout {
    grid-template-columns: 1fr;
  }

  .landingHero {
    min-height: auto;
    padding-top: 22px;
  }

  .heroMedia,
  .heroMedia img {
    min-height: 320px;
  }

  .publicNav,
  .publicFooter,
  .ctaSection {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footerConnect {
    justify-content: flex-start;
  }

  .navCta {
    display: none;
  }

  .publicLinks {
    gap: 6px;
  }

  .heroCopy h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .publicSection {
    padding-bottom: 54px;
    padding-top: 54px;
  }
}

@media (max-width: 520px) {
  .publicNav {
    padding-left: 16px;
    padding-right: 16px;
  }

  .publicBrand img {
    height: 34px;
    width: 34px;
  }

  .publicLinks a {
    font-size: 13px;
    padding: 7px 8px;
  }

  .landingHero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .publicSection,
  .publicBand,
  .ctaSection,
  .contactHero {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .heroActions a {
    text-align: center;
  }
}

/* Final public website polish overrides */
body.publicBody {
  background: #f5f7fa;
}

body.publicBody .publicNav {
  background: rgba(14, 27, 42, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.publicBody .publicBrand,
body.publicBody .publicBrand span,
body.publicBody .publicLinks a {
  color: white;
}

body.publicBody .publicLinks a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #f5b700;
}

body.publicBody .navCta {
  background: #f5b700;
  color: #0e1b2a;
}

body.publicBody .pageHero {
  background:
    linear-gradient(90deg, rgba(14, 27, 42, 0.9), rgba(10, 77, 155, 0.58)),
    var(--page-hero-image, url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1600&q=80"));
  background-position: center;
  background-size: cover;
  min-height: 56vh;
  position: relative;
}

body.publicBody .aboutHero {
  --page-hero-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=80");
}

body.publicBody .jobsHero {
  --page-hero-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80");
}

body.publicBody .careerHero {
  --page-hero-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=80");
}

body.publicBody .blogHero {
  --page-hero-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80");
}

body.publicBody .contactPremiumHero {
  --page-hero-image: url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1600&q=80");
}

body.publicBody .pageHero::after {
  background: radial-gradient(circle at 80% 20%, rgba(245, 183, 0, 0.28), transparent 28%);
  content: "";
  inset: 0;
  position: absolute;
}

body.publicBody .pageHero > div {
  position: relative;
  z-index: 1;
}

body.publicBody .pageHeroCta {
  background: #f5b700;
  border-radius: 999px;
  color: #0e1b2a;
  display: inline-flex;
  font-weight: 950;
  margin-top: 22px;
  padding: 13px 20px;
  text-decoration: none;
}

body.publicBody .publicSection {
  background: #f5f7fa;
}

body.publicBody .publicSection:nth-of-type(even) {
  background: white;
}

body.publicBody .publicCard {
  background: white;
  border: 1px solid rgba(14, 27, 42, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(14, 27, 42, 0.08);
  overflow: hidden;
}

body.publicBody .premiumListingGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.publicBody .premiumListCard a {
  background: #0a4d9b;
  border-radius: 999px;
  color: white;
  display: inline-flex;
  font-weight: 850;
  margin-top: 12px;
  padding: 10px 14px;
  text-decoration: none;
}

body.publicBody .contactInfo,
body.publicBody .publicForm {
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(14, 27, 42, 0.08);
}

body.publicBody .publicFooter {
  background: #07111d;
}

@media (max-width: 900px) {
  body.publicBody .premiumListingGrid {
    grid-template-columns: 1fr;
  }
}
/* Accessible password visibility control shared by login and settings forms. */
.passwordField {
  align-items: center;
  display: grid;
  gap: .45rem;
  grid-template-columns: minmax(0, 1fr) 2.35rem;
  min-width: 0;
  width: 100%;
}

.passwordField > input {
  grid-column: 1;
  width: 100%;
}

.loginCard .passwordReveal,
.authCard .passwordReveal,
.formStack .passwordReveal,
.passwordReveal {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  height: 2.25rem;
  justify-content: center;
  min-width: 0;
  padding: 0;
  position: static;
  transform: none;
  width: 2.25rem;
  z-index: 2;
}

.loginCard .passwordReveal:hover,
.loginCard .passwordReveal:focus-visible,
.authCard .passwordReveal:hover,
.authCard .passwordReveal:focus-visible,
.formStack .passwordReveal:hover,
.formStack .passwordReveal:focus-visible,
.passwordReveal:hover,
.passwordReveal:focus-visible {
  background: #eef4ff;
  color: var(--blue);
  outline: 2px solid transparent;
}

.passwordReveal svg {
  fill: none;
  height: 1.25rem;
  pointer-events: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 1.25rem;
}


/* Production admin responsive navigation and data layout */
.mobileMenuButton,
.sidebarBackdrop {
  display: none;
}

.panel {
  min-width: 0;
}

.panel table {
  border-collapse: collapse;
  width: 100%;
}

.panel th,
.panel td {
  overflow-wrap: anywhere;
  vertical-align: top;
}

@media (max-width: 980px) {
  body.adminNavOpen {
    overflow: hidden;
  }

  .shell {
    display: block;
  }

  .mobileMenuButton {
    background: var(--blue);
    border: 0;
    border-radius: 0 0 10px 0;
    color: white;
    display: inline-flex;
    font-weight: 850;
    left: 0;
    min-height: 44px;
    padding: 10px 16px;
    position: fixed;
    top: 0;
    z-index: 1002;
  }

  .sidebar {
    box-shadow: 18px 0 48px rgba(0, 18, 58, 0.28);
    height: 100dvh;
    left: 0;
    max-width: min(86vw, 300px);
    position: fixed;
    top: 0;
    transform: translateX(-105%);
    transition: transform 180ms ease;
    width: 300px;
    z-index: 1001;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .sidebarBackdrop {
    background: rgba(0, 18, 58, 0.52);
    inset: 0;
    position: fixed;
    z-index: 1000;
  }

  .sidebarBackdrop.open {
    display: block;
  }

  .shell nav {
    grid-template-columns: 1fr;
  }

  .content {
    padding-top: 58px;
  }

  .topbar,
  .topActions {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .topActions {
    width: 100%;
  }

  .topActions > * {
    flex: 1 1 140px;
    min-height: 44px;
    text-align: center;
  }

  .panel {
    overflow-x: auto;
  }

  .panel table {
    min-width: 680px;
  }
}

@media (max-width: 520px) {
  .content {
    padding: 54px 10px 14px;
  }

  .topbar h1 {
    font-size: 20px;
  }

  .metrics,
  .grid,
  .formGrid,
  .settingsGrid {
    grid-template-columns: 1fr;
  }

  .panel,
  .pageIntro,
  .topbar {
    padding: 12px;
  }

  .panelHeader {
    align-items: flex-start;
    flex-direction: column;
  }

  .panelHeader button,
  .panelHeader a,
  .formStack button {
    min-height: 44px;
    width: 100%;
  }
}


/* Live admin management modules */
.filterBar {
  align-items: end;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(220px, 1fr) minmax(170px, 0.4fr) auto;
  margin-bottom: 12px;
}

.filterBar.fourFilters {
  grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(150px, 0.35fr)) auto;
}

.filterBar button,
.actionCell button,
.actionCell select {
  min-height: 38px;
}

.actionCell {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 260px;
}

.actionCell button {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--blue);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 9px;
}

.actionCell button:hover,
.actionCell button:focus-visible {
  background: #eef4ff;
  border-color: var(--blue);
}

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

.reportGroup {
  background: #f8faff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.reportGroup h3 {
  color: var(--blue);
  margin: 0 0 10px;
}

.reportGroup div {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 8px 0;
}

.reportGroup span {
  color: var(--muted);
  text-transform: capitalize;
}

@media (max-width: 760px) {
  .filterBar,
  .filterBar.fourFilters,
  .reportSummary {
    grid-template-columns: 1fr;
  }

  .filterBar button {
    min-height: 44px;
  }
}


.jp-live-banner {
  background: var(--jp-gold, #f5b700);
  color: var(--jp-navy, #0e1b2a);
  padding: 10px max(22px, calc((100vw - 1180px) / 2));
  position: relative;
  z-index: 20;
}

.jp-live-banner[hidden] {
  display: none;
}

.jp-live-banner a,
.jp-live-banner > div {
  align-items: center;
  color: inherit;
  display: flex;
  gap: 12px;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

.jp-live-banner strong {
  font-weight: 900;
}

.jp-live-banner span {
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .jp-live-banner a,
  .jp-live-banner > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
}


.recoveryDialog {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 29, 90, .28);
  color: var(--ink);
  max-width: min(92vw, 480px);
  padding: 0;
  width: 100%;
}

.adminDetailDialog {
  max-height: 92vh;
  max-width: min(94vw, 980px);
  overflow: auto;
}

.adminDetailDialog form {
  min-width: 0;
}

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

.detailHistoryGrid section {
  background: #f7f9fc;
  border: 1px solid #e3e9f3;
  border-radius: 12px;
  max-height: 280px;
  overflow: auto;
  padding: 14px;
}

.detailHistoryGrid h3 {
  margin-top: 0;
}

@media (max-width: 768px) {
  .detailHistoryGrid {
    grid-template-columns: 1fr;
  }

  .adminDetailDialog {
    max-height: 96vh;
    max-width: 96vw;
  }
}

.recoveryDialog::backdrop {
  background: rgba(0, 18, 52, .62);
  backdrop-filter: blur(3px);
}

.recoveryDialog form {
  background: white;
  margin: 0;
  padding: 24px;
}

.dialogHeader {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.dialogHeader h2 {
  color: var(--navy);
  margin: 0 0 6px;
}

.dialogHeader p {
  color: var(--muted);
  margin: 0 0 18px;
}

.dialogClose {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 2.25rem;
  font-size: 1.6rem;
  height: 2.25rem;
  justify-content: center;
  padding: 0;
}

.dialogClose:hover,
.dialogClose:focus-visible {
  background: #eef4ff;
  color: var(--blue);
}

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

.dialogActions button {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  padding: 11px 16px;
  width: auto;
}

.dialogActions button[type="submit"] {
  background: var(--orange);
  color: white;
}

.dialogActions button:disabled {
  cursor: wait;
  opacity: .65;
}

.dialogStatus {
  color: var(--blue);
  font-weight: 700;
  margin: 0;
  min-height: 1.5em;
}


.authActionCard {
  gap: 14px;
  text-align: center;
}

.authActionCard .pill {
  align-self: center;
}

.authPrimaryLink {
  background: var(--orange);
  border-radius: 9px;
  color: white;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  padding: 12px 18px;
  text-decoration: none;
}

.authPrimaryLink:hover,
.authPrimaryLink:focus-visible {
  background: #df6800;
}

.confirmationIcon {
  align-items: center;
  background: rgba(56, 176, 0, .13);
  border-radius: 50%;
  color: var(--green);
  display: inline-flex;
  font-size: 2rem;
  font-weight: 900;
  height: 64px;
  justify-content: center;
  margin: 0 auto;
  width: 64px;
}

.confirmationIconError {
  background: rgba(230, 57, 46, .12);
  color: var(--red);
}

.errorText {
  color: var(--red) !important;
}


/* Clean admin sign-in experience */
.loginBody {
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 122, 0, 0.16), transparent 32%),
    radial-gradient(circle at 85% 85%, rgba(0, 49, 134, 0.18), transparent 36%),
    linear-gradient(145deg, #f8faff 0%, #eef4fc 100%);
}

.loginShell {
  min-height: 100svh;
  padding: 24px 16px;
}

.loginCard {
  border: 0;
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0, 29, 90, 0.16);
  gap: 18px;
  max-width: 430px;
  padding: 36px;
}

.loginBrand {
  justify-content: center;
  margin-bottom: 4px;
}

.loginBrand img {
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(6, 43, 111, 0.16);
  height: 58px;
  width: 58px;
}

.loginBrand > div {
  display: none;
}

.loginHeading {
  text-align: center;
}

.loginCard .loginHeading h1 {
  color: var(--navy);
  font-size: 28px;
  margin: 0;
}

.loginField {
  color: var(--navy);
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 7px;
}

.loginField input {
  background: #fbfcff;
  border: 1px solid #d8e2f0;
  border-radius: 12px;
  min-height: 50px;
  outline: none;
  padding: 12px 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.loginField input:focus {
  border-color: var(--navy-2);
  box-shadow: 0 0 0 4px rgba(0, 49, 134, 0.1);
}

.loginSubmit {
  background: linear-gradient(135deg, var(--navy-2), var(--blue));
  border: 0;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 49, 134, 0.2);
  color: white;
  cursor: pointer;
  font-weight: 900;
  min-height: 50px;
}

.loginSubmit:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.loginForgot {
  background: transparent;
  border: 0;
  color: var(--navy-2);
  cursor: pointer;
  font-weight: 800;
  justify-self: center;
  padding: 2px 8px;
}

.loginForgot:hover {
  color: var(--orange);
  text-decoration: underline;
}

.loginCard .loginStatus {
  color: var(--red);
  min-height: 20px;
  text-align: center;
}

@media (max-width: 480px) {
  .loginCard {
    border-radius: 20px;
    padding: 28px 20px;
  }
}


/* Admin management responsiveness and complete action visibility */
.panel[data-page~="users"],
.panel[data-page~="employers"],
.panel[data-page~="subscriptions"],
.panel[data-page~="sponsored"] {
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
}

.panel[data-page~="users"] table,
.panel[data-page~="employers"] table,
.panel[data-page~="subscriptions"] table,
.panel[data-page~="sponsored"] table {
  width: max-content;
  min-width: 100%;
}

.actionSelect {
  max-width: 100%;
  min-width: 150px;
}

.actionCell {
  align-content: flex-start;
  min-width: 210px;
}

.actionCell button:disabled,
.actionSelect:disabled {
  cursor: wait;
  opacity: .55;
}

#userStatus,
#employersManagementStatus,
#subscriptionPlanStatus,
#subscriptionInstancesStatus,
#sponsoredPackageStatus {
  min-height: 22px;
  overflow-wrap: anywhere;
}

@media (max-width: 768px) {
  .panel[data-page~="users"],
  .panel[data-page~="employers"],
  .panel[data-page~="subscriptions"],
  .panel[data-page~="sponsored"] {
    background:
      linear-gradient(to right, white 30%, rgba(255,255,255,0)),
      linear-gradient(to right, rgba(255,255,255,0), white 70%) 100% 0,
      radial-gradient(farthest-side at 0 50%, rgba(0,29,90,.14), transparent),
      radial-gradient(farthest-side at 100% 50%, rgba(0,29,90,.14), transparent) 100% 0;
    background-attachment: local, local, scroll, scroll;
    background-repeat: no-repeat;
    background-size: 42px 100%, 42px 100%, 14px 100%, 14px 100%;
  }

  .actionCell {
    min-width: 180px;
  }

  .actionCell button,
  .actionCell select {
    flex: 1 1 100%;
    min-height: 44px;
    width: 100%;
  }

  .adminDetailDialog .dialogActions {
    align-items: stretch;
    flex-direction: column;
  }

  .adminDetailDialog .dialogActions button {
    min-height: 44px;
    width: 100%;
  }
}


/* Guarded production launch cleanup */
.launchCleanupPanel {
  border-color: rgba(230,57,46,.3);
}

.launchCleanupPanel .panelHeader {
  align-items: flex-start;
}

.launchCleanupPanel .panelHeader p {
  margin: 6px 0 0;
  max-width: 780px;
}

.cleanupPreview {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4,minmax(130px,1fr));
}

.cleanupPreview span {
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
}

.cleanupPreview strong {
  color: var(--navy);
  display: block;
  font-size: 20px;
}

.dangerButton {
  background: var(--red) !important;
  border-color: var(--red) !important;
  color: white !important;
}

@media (max-width: 768px) {
  .cleanupPreview {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 420px) {
  .cleanupPreview {
    grid-template-columns: 1fr;
  }
}



/* Exact JobDot admin-login blueprint — 2026-08-05 revision 2 */
.adminLoginPage{background:#f6f8fc;color:#071b52;font-family:Inter,Poppins,"Plus Jakarta Sans",system-ui,-apple-system,sans-serif;margin:0;min-height:100svh}
.adminLoginPage *{box-sizing:border-box}
.adminLoginLayout{display:grid;grid-template-columns:minmax(460px,46%) minmax(520px,54%);min-height:100svh}
.adminLoginHero{background:linear-gradient(143deg,#06184c 0%,#07347e 58%,#061d5b 100%);color:#fff;display:flex;flex-direction:column;isolation:isolate;min-height:100svh;overflow:hidden;padding:clamp(34px,4.5vw,68px);position:relative}
.heroRings:before,.heroRings:after{border:1px solid rgba(67,139,255,.27);border-radius:50%;content:"";height:540px;position:absolute;right:-245px;top:-165px;width:540px;z-index:-1}.heroRings:after{height:390px;right:-110px;top:240px;width:390px}
.heroBrand{align-items:center;display:flex;gap:11px}.heroBrand img,.mobileBrand img{background:#fff;border-radius:10px;height:46px;object-fit:contain;width:46px}.heroBrand strong,.mobileBrand strong{display:block;font-size:25px;font-weight:850;letter-spacing:-.7px}.heroBrand span{display:block;font-size:9px;margin-top:1px;opacity:.9}
.heroMessage{margin-top:clamp(70px,12vh,118px);position:relative;z-index:2}.heroMessage h1{color:#fff;font-size:clamp(36px,4vw,54px);font-weight:780;letter-spacing:-1.6px;line-height:1.1;margin:0 0 23px}.heroMessage h1 span{font-size:.75em}.heroMessage p{color:#fff;font-size:clamp(15px,1.2vw,18px);line-height:1.62;margin:0;opacity:.95}.heroDots{display:flex;gap:15px;left:0;position:absolute;top:-38px}.heroDots i,.heroDecorDots i{background:#fff;border-radius:50%;height:3px;width:3px}
.heroArtwork{height:min(34vh,335px);margin:auto -5% 6px -2%;min-height:235px;position:relative}.heroArtwork svg{height:100%;overflow:visible;width:100%}.heroDecorDots{bottom:18%;display:grid;gap:13px;grid-template-columns:repeat(2,3px);position:absolute;right:9%}
.adminLoginContent{align-items:center;background:radial-gradient(circle at 50% 45%,#fff 0,#f6f8fc 73%);display:flex;justify-content:center;min-width:0;padding:42px}
.adminLoginCard{background:#fff;border:1px solid #e0e6ef;border-radius:16px;box-shadow:0 12px 30px rgba(2,6,23,.08);display:grid;gap:19px;margin:0;max-width:440px;padding:40px;width:100%}
.mobileBrand{align-items:center;display:none;gap:10px;justify-content:center}.securityBadge{align-items:center;background:#eaf1ff;border-radius:50%;color:#0b50c8;display:flex;height:64px;justify-content:center;margin:0 auto 1px;width:64px}.securityBadge svg{fill:none;height:34px;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.8;width:34px}
.adminLoginHeading{text-align:center}.adminLoginHeading h1{color:#071b52;font-size:25px;font-weight:800;letter-spacing:-.35px;margin:0 0 6px}.adminLoginHeading p{color:#64748b;font-size:13px;margin:0}
.adminFormField{color:#101e45;display:grid;font-size:12px;font-weight:700;gap:8px}.adminInput{align-items:center;background:#fff;border:1px solid #cbd5e1;border-radius:9px;display:flex;height:48px;padding:0 12px;transition:border-color .16s,box-shadow .16s}.adminInput:focus-within{border-color:#0a3d91;box-shadow:0 0 0 4px rgba(10,61,145,.1)}.adminInput>svg{fill:none;flex:0 0 18px;height:18px;margin-right:10px;stroke:#64748b;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.8;width:18px}.adminInput>input{background:transparent!important;border:0!important;border-radius:0!important;box-shadow:none!important;color:#172554;font-size:13px;height:46px!important;min-height:0!important;outline:0!important;padding:0!important;width:100%}.adminInput>input::placeholder{color:#8290a7}
.adminInput>.passwordField{align-items:center;display:grid;flex:1;grid-template-columns:minmax(0,1fr) 34px;width:auto}.adminInput>.passwordField>input{grid-column:1;grid-row:1}.adminLoginCard .passwordReveal{align-items:center;background:transparent;border:0;border-radius:50%;color:#64748b;display:flex;grid-column:2;grid-row:1;height:32px;justify-content:center;margin:0;padding:7px;width:32px}.adminLoginCard .passwordReveal:hover,.adminLoginCard .passwordReveal:focus-visible{background:#edf3ff;color:#0a4fc3}
.adminFormOptions{align-items:center;display:flex;justify-content:space-between;margin-top:-1px}.adminFormOptions label{align-items:center;color:#25365d;display:flex;font-size:12px;font-weight:600;gap:8px}.adminFormOptions input{accent-color:#0a4fc3;height:15px;margin:0;width:15px}.adminFormOptions button{background:transparent;border:0;color:#064fc6;cursor:pointer;font-size:12px;font-weight:700;padding:3px 0}.adminFormOptions button:hover{text-decoration:underline}
.adminSignIn{background:linear-gradient(90deg,#0a3d91,#0757cc);border:0;border-radius:9px;box-shadow:0 9px 18px rgba(10,61,145,.18);color:#fff;cursor:pointer;font-size:14px;font-weight:750;height:48px;width:100%}.adminSignIn:hover{background:#072f78}.adminSignIn:disabled{cursor:wait;opacity:.65}
.adminLoginStatus{color:#d92d20;font-size:12px;line-height:1.4;min-height:0;text-align:center}.adminLoginStatus:not(:empty){min-height:17px}
.adminDivider{align-items:center;color:#77849a;display:flex;font-size:12px;gap:13px}.adminDivider:before,.adminDivider:after{background:#dce2eb;content:"";height:1px;width:100%}.adminDivider span{flex:0 0 auto}
.googleSignIn{align-items:center;background:#fff;border:1px solid #cbd5e1;border-radius:9px;color:#172554;cursor:pointer;display:flex;font-size:13px;font-weight:650;gap:10px;height:46px;justify-content:center;width:100%}.googleSignIn:hover{background:#f8fafc;border-color:#94a3b8}.googleSignIn svg{height:19px;width:19px}
.adminContact{color:#64748b;font-size:12px;margin:1px 0 0;text-align:center}.adminContact a{color:#0757cc;font-weight:700;text-decoration:none}.adminContact a:hover{text-decoration:underline}
@media(max-width:1100px){.adminLoginLayout{grid-template-columns:minmax(360px,42%) minmax(480px,58%)}.adminLoginHero{padding:34px}.heroMessage{margin-top:70px}.heroMessage h1{font-size:39px}.heroArtwork{height:270px;margin-left:-12%;margin-right:-10%}.adminLoginContent{padding:30px}.adminLoginCard{padding:34px}}
@media(max-width:767px){.adminLoginLayout{display:block;min-height:100svh}.adminLoginHero{display:none}.adminLoginContent{background:#f6f8fc;min-height:100svh;padding:24px 18px}.adminLoginCard{max-width:440px;padding:32px 26px}.mobileBrand{display:flex;margin-bottom:2px}}
@media(max-width:420px){.adminLoginContent{background:#fff;padding:12px 16px}.adminLoginCard{border:0;box-shadow:none;gap:18px;padding:18px 0}.securityBadge{height:58px;width:58px}.securityBadge svg{height:30px;width:30px}.adminLoginHeading h1{font-size:24px}}


/* Career Hub and Blog/News management actions */
.contentManageRow{align-items:center;display:flex;gap:16px;justify-content:space-between}
.contentManageRow>span:first-child{display:grid;gap:4px;min-width:0}
.contentManageRow>span:first-child strong,.contentManageRow>span:first-child small{overflow-wrap:anywhere}
.inlineActions{display:flex;flex:0 0 auto;gap:8px}
.inlineActions button{min-height:38px}
@media(max-width:600px){.contentManageRow{align-items:stretch;flex-direction:column}.inlineActions{width:100%}.inlineActions button{flex:1}}
