:root {
  --recruit-ink: #07152b;
  --recruit-muted: #52627a;
  --recruit-line: #d9e2ef;
  --recruit-blue: #075cff;
  --recruit-blue-dark: #063db9;
  --recruit-cyan: #18a7ba;
  --recruit-surface: #ffffff;
  --recruit-canvas: #f5f8fc;
  --recruit-navy: #03152d;
  --recruit-success: #087857;
  --recruit-warning: #9d5b00;
  --recruit-danger: #b42318;
  --recruit-shadow: 0 24px 80px rgba(4, 31, 72, .14);
}

* { box-sizing: border-box; }

html { min-width: 320px; scroll-behavior: smooth; }

body.recruitment-page {
  margin: 0;
  color: var(--recruit-ink);
  background: var(--recruit-canvas);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.recruitment-page button,
body.recruitment-page input,
body.recruitment-page select,
body.recruitment-page textarea { font: inherit; }

body.recruitment-page button,
body.recruitment-page a,
body.recruitment-page input,
body.recruitment-page select,
body.recruitment-page textarea { outline-offset: 3px; }

body.recruitment-page :focus-visible { outline: 3px solid #78adff; }

[hidden] { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.recruitment-page.map-fullscreen-open { overflow: hidden; }

.recruit-skip {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--recruit-blue-dark);
  border-radius: 8px;
  transform: translateY(-150%);
}

.recruit-skip:focus { transform: none; }

.recruit-header {
  position: relative;
  z-index: 50;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 3vw, 42px);
  border-bottom: 1px solid rgba(214, 225, 239, .9);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px);
}

.recruit-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--recruit-ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.025em;
}

.recruit-brand img { width: 38px; height: 38px; border-radius: 10px; }
.recruit-brand span { display: grid; line-height: 1.05; }
.recruit-brand small { margin-top: 4px; color: var(--recruit-muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.recruit-header-center { display: flex; align-items: center; gap: clamp(18px, 3vw, 42px); }
.recruit-header-center a { color: #35445c; text-decoration: none; font-size: 13px; font-weight: 700; }
.recruit-header-center a:hover { color: var(--recruit-blue); }

.recruit-header-actions { display: flex; align-items: center; gap: 10px; }

.language-pills {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--recruit-line);
  border-radius: 999px;
  background: #f5f8fc;
}

.language-pills button {
  min-height: 32px;
  padding: 5px 10px;
  border: 0;
  border-radius: 999px;
  color: #52627a;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.language-pills button[aria-pressed="true"] { color: #fff; background: var(--recruit-ink); }

.recruit-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid var(--recruit-line);
  border-radius: 10px;
  color: var(--recruit-ink);
  background: #fff;
  cursor: pointer;
  text-decoration: none;
  font-weight: 780;
}

.recruit-button:hover:not(:disabled) { border-color: #aebed4; background: #f8fbff; }
.recruit-button:disabled { cursor: not-allowed; opacity: .52; }
.recruit-button.primary { border-color: var(--recruit-blue); color: #fff; background: var(--recruit-blue); box-shadow: 0 10px 30px rgba(7, 92, 255, .2); }
.recruit-button.primary:hover:not(:disabled) { border-color: var(--recruit-blue-dark); background: var(--recruit-blue-dark); }
.recruit-button.ghost { color: #1f4d94; border-color: #bfd2ee; background: #f4f8ff; }
.recruit-button.full { width: 100%; }
.recruit-button.small { min-height: 36px; padding: 7px 11px; border-radius: 8px; font-size: 12px; }

.recruitment-hero {
  display: grid;
  min-height: calc(100vh - 72px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 18px;
  align-items: start;
  padding: 18px;
  background: #edf3f9;
}

.recruit-map-stage {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid #d5e1ee;
  border-radius: 18px;
  background: #e9f2fb;
  box-shadow: 0 18px 55px rgba(4, 31, 72, .1);
}

.recruit-map-viewport { position: relative; min-height: clamp(500px, calc(100vh - 164px), 780px); }
.recruit-map { position: absolute; inset: 0; }
.recruit-map .maplibregl-canvas { cursor: crosshair; }
.recruit-map .maplibregl-ctrl-group { border-radius: 10px; overflow: hidden; box-shadow: 0 8px 24px rgba(4, 31, 72, .15); }
.recruit-map .maplibregl-ctrl-attrib { color: #52627a; background: rgba(255, 255, 255, .84); }

.map-expand-control,
.map-fullscreen-close {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid #c5d5e8;
  border-radius: 10px;
  color: #123f83;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 30px rgba(4, 31, 72, .16);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.map-expand-control {
  position: absolute;
  z-index: 6;
  top: 14px;
  right: 14px;
  padding: 9px 13px;
}

.map-fullscreen-toolbar { display: none; }

.map-fullscreen-message { display: none; }

.map-footer {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border-top: 1px solid #d5e1ee;
  background: rgba(255, 255, 255, .97);
}

.campaign-panel {
  margin: 0 0 28px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--recruit-line);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--recruit-blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.campaign-panel h1 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(34px, 3.2vw, 49px);
  line-height: 1;
  letter-spacing: -.052em;
}

.campaign-panel > p:not(.eyebrow) { margin: 16px 0 0; max-width: 530px; color: var(--recruit-muted); font-size: 14px; line-height: 1.58; }

.national-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; margin-top: 24px; }
.national-metric { min-width: 0; padding: 13px; border: 1px solid #dce7f4; border-radius: 12px; background: rgba(247, 250, 255, .94); }
.national-metric strong { display: block; font-size: clamp(21px, 2.2vw, 31px); letter-spacing: -.04em; }
.national-metric span { display: block; margin-top: 5px; color: var(--recruit-muted); font-size: 10px; font-weight: 700; line-height: 1.35; }

.map-legend {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 15px;
  color: #42536b;
  font-size: 11px;
}

.legend-item { display: inline-flex; align-items: center; gap: 7px; }
.legend-swatch { width: 18px; height: 18px; border: 1px solid rgba(3, 82, 227, .18); border-radius: 5px; }
.legend-swatch.early { background: #dbe8ff; }
.legend-swatch.growing { background: #77a7ff; }
.legend-swatch.strong { background: #075cff; }
.legend-swatch.open { background: #b8f5df; }
.legend-swatch.facility { border-color: #d18c31; background: #ffd177; box-shadow: 0 0 9px rgba(255, 185, 66, .42); }
.legend-swatch.selected { border: 3px solid #002bd6; background: #b8d3ff; }

.map-loading {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #38516f;
  background: #eef5fb;
  text-align: center;
  font-weight: 750;
}

.map-scope-card { display: none; }

.map-scope-card > div:first-child { display: grid; gap: 3px; }
.map-scope-card > div:first-child span { color: #64748a; font-size: 11px; }
.map-scope-card dl,
.resolved-market-scope dl { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; margin: 10px 0; }
.map-scope-card dl div,
.resolved-market-scope dl div { min-width: 0; padding: 8px; border: 1px solid #d8e4f2; border-radius: 8px; background: #fff; }
.map-scope-card dt,
.resolved-market-scope dt { color: #6a788c; font-size: 9px; font-weight: 760; text-transform: uppercase; }
.map-scope-card dd,
.resolved-market-scope dd { margin: 4px 0 0; overflow-wrap: anywhere; color: #123f83; font-size: 11px; font-weight: 820; }
.map-scope-card p,
.resolved-market-scope p { margin: 5px 0 0; color: #596b82; font-size: 10px; line-height: 1.42; }
.map-scope-card .scope-diameter-note,
.resolved-market-scope .scope-diameter-note {
  margin-top: 8px;
  padding: 8px 9px;
  border: 1px solid #cfe0fb;
  border-radius: 8px;
  color: #123f83;
  background: #eef5ff;
  font-weight: 720;
}

.market-planning-reference {
  margin-top: 12px;
  padding: 11px;
  border: 1px solid #d6e3f2;
  border-radius: 10px;
  background: #f8fbff;
}

.market-planning-reference > strong { display: block; color: var(--recruit-ink); font-size: 12px; }
.market-planning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin: 9px 0; }
.market-planning-grid > div { min-width: 0; padding: 9px; border: 1px solid #dbe6f3; border-radius: 8px; background: #fff; }
.market-planning-grid small { display: block; color: #6a788c; font-size: 9px; font-weight: 760; text-transform: uppercase; }
.market-planning-grid b { display: block; margin-top: 4px; color: #123f83; font-size: 11px; line-height: 1.3; }
.market-planning-reference p:first-of-type { color: #123f83; font-weight: 720; }

.recruit-panel {
  position: relative;
  min-width: 0;
  padding: clamp(24px, 3vw, 40px) clamp(22px, 3vw, 36px) 38px;
  border: 1px solid var(--recruit-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(4, 31, 72, .08);
}

.panel-language-mobile { display: none; justify-content: flex-end; margin-bottom: 18px; }
.recruit-panel h2 { margin: 0; font-size: clamp(31px, 3vw, 44px); line-height: 1.04; letter-spacing: -.045em; }
.panel-intro { margin: 14px 0 0; color: var(--recruit-muted); line-height: 1.6; }

.flow-progress { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: 28px 0 30px; }
.flow-progress-step { position: relative; display: grid; justify-items: center; gap: 8px; color: #748196; text-align: center; font-size: 10px; font-weight: 750; }
.flow-progress-step:not(:last-child)::after { position: absolute; z-index: -1; top: 17px; left: 64%; width: 72%; height: 1px; background: #cbd7e7; content: ""; }
.flow-progress-step b { display: grid; width: 35px; height: 35px; place-items: center; border: 1px solid #cfdaea; border-radius: 50%; color: #536177; background: #eef2f7; font-size: 14px; }
.flow-progress-step.active { color: var(--recruit-blue); }
.flow-progress-step.active b { border-color: var(--recruit-blue); color: #fff; background: var(--recruit-blue); }
.flow-progress-step.complete b { border-color: #a9c4f4; color: var(--recruit-blue); background: #eaf2ff; }

.flow-step { animation: recruit-fade .22s ease-out; }
@keyframes recruit-fade { from { opacity: .35; transform: translateY(5px); } to { opacity: 1; transform: none; } }
.flow-step-head { margin-bottom: 17px; }
.flow-step-head small { color: var(--recruit-blue); font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.flow-step-head h3 { margin: 6px 0 0; font-size: 23px; letter-spacing: -.03em; }
.flow-step-head p { margin: 8px 0 0; color: var(--recruit-muted); font-size: 13px; line-height: 1.55; }

.search-field { display: grid; gap: 7px; }
.search-field label,
.form-field label { color: #34445c; font-size: 12px; font-weight: 760; }
.search-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }

.recruit-input,
.recruit-select,
.recruit-textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cbd7e7;
  border-radius: 10px;
  color: var(--recruit-ink);
  background: #fff;
}

.recruit-textarea { min-height: 112px; resize: vertical; line-height: 1.5; }
.recruit-input::placeholder,
.recruit-textarea::placeholder { color: #8a98aa; }

.location-action { width: 100%; margin-top: 9px; }
.location-action i { color: var(--recruit-blue); }
.map-click-note { margin: 10px 0 0; color: #748196; font-size: 11px; line-height: 1.5; }

.flow-message { margin: 13px 0 0; padding: 11px 12px; border: 1px solid #c9d9ef; border-radius: 9px; color: #28517e; background: #f3f8ff; font-size: 12px; line-height: 1.5; }
.flow-message[data-tone="success"] { border-color: #a9d8c7; color: var(--recruit-success); background: #f1fbf7; }
.flow-message[data-tone="warning"] { border-color: #efd09c; color: #7e4a00; background: #fff9ec; }
.flow-message[data-tone="error"] { border-color: #efb6b0; color: var(--recruit-danger); background: #fff5f3; }

.resolved-market-card { margin-top: 14px; padding: 15px; border: 1px solid #bfd4f4; border-radius: 12px; background: #f7faff; }
.resolved-market-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.resolved-market-card h4 { margin: 0; font-size: 17px; letter-spacing: -.02em; }
.resolved-market-code { margin: 5px 0 0; color: #6b7a8f; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
.resolved-selection-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 11px; padding: 9px 10px; border-radius: 9px; background: #edf4ff; }
.resolved-selection-row p { margin: 0; color: #38577f; font-size: 10px; font-weight: 720; line-height: 1.4; }
.resolved-selection-row p[data-state="selected"] { color: #076047; }
.resolved-selection-row p[data-state="full"] { color: #7e4a00; }
.resolved-selection-row .recruit-button.compact { min-height: 34px; flex: 0 0 auto; padding: 7px 10px; font-size: 10px; }
.market-status { display: inline-flex; min-height: 25px; align-items: center; padding: 4px 8px; border-radius: 999px; color: #075a45; background: #e6f7f0; font-size: 10px; font-weight: 820; white-space: nowrap; }
.market-status.high_interest { color: #063cae; background: #e1ebff; }
.market-status.review_in_progress { color: #835000; background: #fff0d6; }
.market-status.local_operator_selected { color: #6e3b00; background: #f5e7d5; }
.resolved-market-count { display: flex; align-items: baseline; gap: 8px; margin-top: 13px; }
.resolved-market-count strong { color: var(--recruit-blue); font-size: 25px; letter-spacing: -.035em; }
.resolved-market-count span { color: var(--recruit-muted); font-size: 11px; }
.resolved-market-scope { margin-top: 14px; padding-top: 13px; border-top: 1px solid #d4e1f1; }
.resolved-market-scope > strong { display: block; font-size: 12px; }

.selected-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 22px 0 10px; }
.selected-header strong { font-size: 13px; }
.selected-summary { display: grid; justify-items: end; gap: 2px; text-align: right; }
.selected-limit { color: #52627a; font-size: 11px; font-weight: 760; }
.selected-total-area { color: var(--recruit-blue); font-size: 12px; font-weight: 850; }
.selected-markets { display: grid; gap: 8px; }
.selected-market { display: grid; grid-template-columns: 34px minmax(0, 1fr) auto; align-items: center; gap: 9px; padding: 10px; border: 1px solid var(--recruit-line); border-radius: 10px; background: #fff; }
.selected-rank { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 8px; color: #fff; background: var(--recruit-ink); font-size: 11px; font-weight: 850; }
.selected-market-identity { min-width: 0; }
.selected-market strong { display: block; overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.selected-market small { display: block; margin-top: 3px; color: #6b7a8f; font-size: 10px; }
.selected-market-area { display: inline-flex; margin-top: 5px; color: #11458f; font-size: 10px; font-weight: 820; }
.selected-actions { display: flex; gap: 3px; }
.selected-actions button { display: grid; width: 29px; height: 29px; place-items: center; border: 1px solid #d6e0ed; border-radius: 7px; color: #42536b; background: #f8fafc; cursor: pointer; }

.step-actions { display: flex; gap: 8px; margin-top: 20px; }
.step-actions .recruit-button { flex: 1; }

.residence-mode { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 13px; padding: 4px; border: 1px solid var(--recruit-line); border-radius: 10px; background: #f4f7fb; }
.residence-mode button { min-height: 38px; border: 0; border-radius: 7px; color: #5b6a7e; background: transparent; cursor: pointer; font-size: 11px; font-weight: 760; }
.residence-mode button[aria-pressed="true"] { color: #123f83; background: #fff; box-shadow: 0 3px 10px rgba(4, 31, 72, .08); }

.distance-results { display: grid; gap: 8px; margin-top: 15px; }
.distance-result { padding: 12px; border: 1px solid #d7e2ef; border-radius: 10px; background: #fafcff; }
.distance-result-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.distance-result strong { font-size: 12px; }
.distance-result b { color: var(--recruit-blue); font-size: 13px; }
.distance-result p { margin: 6px 0 0; color: #617086; font-size: 11px; line-height: 1.45; }
.distance-result.outside { border-color: #efd09c; background: #fffaf0; }

.nearby-suggestions { margin-top: 18px; }
.nearby-suggestions h4 { margin: 0 0 9px; font-size: 13px; }
.nearby-list { display: grid; gap: 7px; }
.nearby-suggestion { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 8px; padding: 10px 11px; border: 1px solid #d9e3f0; border-radius: 9px; background: #fff; }
.nearby-suggestion strong { display: block; font-size: 11px; }
.nearby-suggestion small { display: block; margin-top: 3px; color: #6e7c90; font-size: 10px; }

.application-form { display: grid; gap: 17px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.field-hint { margin: 0; color: #728095; font-size: 10px; line-height: 1.45; }
.contact-consent { display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: 8px; margin-top: 1px; color: #58687e; font-size: 10px; line-height: 1.48; }
.contact-consent input { width: 16px; height: 16px; margin: 0; accent-color: var(--recruit-blue); }
.privacy-promise { padding: 13px; border: 1px solid #c6d9ef; border-radius: 10px; color: #36516f; background: #f5f9ff; font-size: 11px; line-height: 1.55; }
.privacy-promise strong { display: block; margin-bottom: 4px; color: #183f73; }
.application-check { display: grid; grid-template-columns: 19px minmax(0, 1fr); gap: 9px; color: #3e4f66; font-size: 11px; line-height: 1.5; }
.application-check input { width: 17px; height: 17px; margin: 0; accent-color: var(--recruit-blue); }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.submission-success { padding: 20px; border: 1px solid #9ed5be; border-radius: 14px; color: #095f46; background: #f0fbf6; }
.submission-success h3 { margin: 0 0 8px; color: #064f3b; }
.submission-success p { margin: 7px 0 0; font-size: 12px; line-height: 1.55; }

.below-fold { padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 72px); background: #fff; }
.below-fold.tinted { background: #f3f7fc; }
.content-shell { width: min(1180px, 100%); margin: 0 auto; }
.section-heading { max-width: 800px; }
.section-heading h2 { margin: 0; font-size: clamp(33px, 5vw, 60px); line-height: 1.02; letter-spacing: -.052em; }
.section-heading p:not(.eyebrow) { margin: 19px 0 0; color: var(--recruit-muted); font-size: 17px; line-height: 1.7; }

.process-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 38px; }
.process-card { padding: 24px; border: 1px solid var(--recruit-line); border-radius: 16px; background: #fff; }
.process-card b { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 10px; color: #fff; background: var(--recruit-blue); }
.process-card h3 { margin: 18px 0 0; font-size: 19px; letter-spacing: -.025em; }
.process-card p { margin: 9px 0 0; color: var(--recruit-muted); font-size: 13px; line-height: 1.6; }

.mission-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr); gap: clamp(36px, 8vw, 100px); align-items: start; }
.mission-points { display: grid; gap: 10px; }
.mission-point { display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 12px; padding: 18px; border: 1px solid #dbe5f1; border-radius: 13px; background: #fff; }
.mission-point i { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 10px; color: var(--recruit-blue); background: #eaf2ff; }
.mission-point strong { display: block; font-size: 14px; }
.mission-point p { margin: 5px 0 0; color: var(--recruit-muted); font-size: 12px; line-height: 1.55; }

.pathways { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 38px; }
.pathway { padding: 24px; border: 1px solid var(--recruit-line); border-radius: 16px; background: #fff; }
.pathway i { color: var(--recruit-blue); font-size: 23px; }
.pathway h3 { margin: 17px 0 0; font-size: 20px; letter-spacing: -.025em; }
.pathway p { margin: 10px 0 0; color: var(--recruit-muted); font-size: 13px; line-height: 1.62; }

.truth-banner { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 24px; padding: 28px; border-radius: 18px; color: #fff; background: var(--recruit-navy); }
.truth-banner h2 { margin: 0; font-size: clamp(27px, 4vw, 43px); letter-spacing: -.045em; }
.truth-banner p { margin: 10px 0 0; max-width: 760px; color: #bdcbe0; line-height: 1.6; }
.truth-banner .recruit-button { border-color: #3978d9; color: #fff; background: var(--recruit-blue); }

.recruit-footer { padding: 34px clamp(20px, 5vw, 72px); border-top: 1px solid var(--recruit-line); background: #fff; }
.recruit-footer-inner { display: flex; width: min(1180px, 100%); margin: 0 auto; align-items: center; justify-content: space-between; gap: 24px; }
.recruit-footer p { margin: 0; max-width: 760px; color: var(--recruit-muted); font-size: 11px; line-height: 1.55; }
.recruit-footer nav { display: flex; gap: 14px; }
.recruit-footer a { color: #3b4e68; font-size: 11px; font-weight: 720; text-decoration: none; }

.recruit-map-stage.is-fullscreen {
  position: fixed;
  z-index: 1000;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.recruit-map-stage.is-fullscreen .map-fullscreen-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(330px, 560px) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #d5e1ee;
  background: #fff;
}

.recruit-map-stage.is-fullscreen .map-fullscreen-toolbar[aria-hidden="true"] { display: none; }
.map-fullscreen-heading { display: grid; gap: 3px; }
.map-fullscreen-heading strong { font-size: 15px; }
.map-fullscreen-heading span { color: #63738a; font-size: 10px; }
.map-fullscreen-search { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.map-fullscreen-search .recruit-input { min-height: 44px; }
.map-fullscreen-close { padding: 9px 13px; }
.recruit-map-stage.is-fullscreen .recruit-map-viewport { min-height: 0; }
.recruit-map-stage.is-fullscreen .map-expand-control { display: none; }
.recruit-map-stage.is-fullscreen .map-fullscreen-message:not([hidden]) {
  display: block;
  padding: 8px 14px;
  border-top: 1px solid #d5e1ee;
  color: #28517e;
  background: #f3f8ff;
  font-size: 11px;
  font-weight: 700;
}
.recruit-map-stage.is-fullscreen .map-fullscreen-message[data-tone="success"] { color: var(--recruit-success); background: #f1fbf7; }
.recruit-map-stage.is-fullscreen .map-fullscreen-message[data-tone="warning"] { color: #7e4a00; background: #fff9ec; }
.recruit-map-stage.is-fullscreen .map-fullscreen-message[data-tone="error"] { color: var(--recruit-danger); background: #fff5f3; }
.recruit-map-stage.is-fullscreen .map-footer { align-items: flex-start; padding: 10px 14px; }
.recruit-map-stage.is-fullscreen .map-legend { flex: 1 1 52%; padding-top: 5px; }
.recruit-map-stage.is-fullscreen .map-scope-card:not([hidden]) {
  display: block;
  flex: 1 1 460px;
  max-width: 620px;
  padding: 10px 12px;
  border: 1px solid #c8d9ed;
  border-radius: 10px;
  background: #f6f9fe;
}

@media (max-width: 1120px) {
  .recruitment-hero { grid-template-columns: minmax(0, 1fr) minmax(350px, 390px); gap: 14px; padding: 14px; }
  .campaign-panel h1 { font-size: clamp(32px, 3.8vw, 42px); }
  .national-metric { padding: 10px 8px; }
  .national-metric strong { font-size: 21px; }
  .recruit-panel { padding: 26px 24px 34px; }
}

@media (max-width: 900px) {
  .recruit-header-center { display: none; }
  .recruit-header-actions > .language-pills { display: none; }
  .panel-language-mobile { display: flex; }
  .recruit-map-stage.is-fullscreen .map-fullscreen-toolbar { grid-template-columns: minmax(0, 1fr) auto; }
  .recruit-map-stage.is-fullscreen .map-fullscreen-heading { display: none; }
}

@media (max-width: 820px) {
  .recruitment-hero { display: flex; min-height: 0; flex-direction: column; }
  .recruit-map-stage { width: 100%; order: 1; }
  .recruit-map-viewport { min-height: 560px; }
  .recruit-panel { width: 100%; order: 2; }
  .mission-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .recruit-header { min-height: 62px; padding: 9px 14px; }
  .recruit-brand img { width: 34px; height: 34px; }
  .recruit-brand small { display: none; }
  .recruit-header-actions .recruit-button { min-height: 38px; padding: 7px 11px; font-size: 11px; }
  .recruitment-hero { min-height: 0; }
  .recruitment-hero { gap: 12px; padding: 12px; }
  .recruit-map-viewport { min-height: 440px; }
  .campaign-panel h1 { font-size: clamp(34px, 10vw, 43px); }
  .campaign-panel > p:not(.eyebrow) { margin-top: 13px; font-size: 14px; }
  .national-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; margin-top: 16px; }
  .national-metric { padding: 9px 7px; }
  .national-metric strong { font-size: 18px; }
  .national-metric span { font-size: 8px; }
  .map-footer { padding: 9px 10px; }
  .map-legend { justify-content: center; gap: 7px 10px; }
  .legend-item { font-size: 9px; }
  .legend-swatch { width: 14px; height: 14px; }
  .map-expand-control { top: 10px; right: 10px; min-height: 42px; padding: 8px 10px; }
  .map-expand-control { font-size: 10px; }
  .recruit-panel { padding: 25px 16px 34px; }
  .recruit-panel h2 { font-size: 34px; }
  .flow-progress { margin: 24px 0; }
  .search-row { grid-template-columns: 1fr; }
  .search-row .recruit-button { width: 100%; }
  .step-actions { flex-direction: column-reverse; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .below-fold { padding: 62px 18px; }
  .process-cards, .pathways { grid-template-columns: 1fr; }
  .truth-banner { grid-template-columns: 1fr; padding: 22px; }
  .truth-banner .recruit-button { width: 100%; }
  .recruit-footer-inner { align-items: flex-start; flex-direction: column; }
  .recruit-map-stage.is-fullscreen .map-fullscreen-toolbar { grid-template-columns: minmax(0, 1fr) auto; padding: 9px 10px; }
  .map-fullscreen-search { grid-template-columns: minmax(0, 1fr) 44px; }
  .map-fullscreen-search .recruit-button { min-width: 44px; padding: 8px; }
  .map-fullscreen-search .recruit-button span { display: none; }
  .map-fullscreen-close { min-width: 44px; padding: 8px; }
  .map-fullscreen-close span { display: inline; }
  .recruit-map-stage.is-fullscreen .map-footer { max-height: 34vh; flex-direction: column; overflow-y: auto; }
  .recruit-map-stage.is-fullscreen .map-legend { width: 100%; flex: none; }
  .recruit-map-stage.is-fullscreen .map-scope-card:not([hidden]) { width: 100%; max-width: none; flex: none; }
  .map-scope-card dl,
  .resolved-market-scope dl { grid-template-columns: 1fr 1fr; }
  .map-scope-card dl div:first-child,
  .resolved-market-scope dl div:first-child { grid-column: 1 / -1; }
  .market-planning-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .flow-step { animation: none; }
}

/* Reference-led development preview: dark infrastructure map + calm white action panel. */
body.recruitment-page[data-development-preview="true"] {
  --recruit-ink: #06142d;
  --recruit-muted: #59677d;
  --recruit-line: #dce3eb;
  --recruit-blue: #075bd8;
  --recruit-blue-dark: #052e73;
  --recruit-cyan: #23c8f4;
  --recruit-canvas: #020b19;
  --recruit-navy: #020b19;
  overflow-x: hidden;
  background: #020b19;
}

body.recruitment-page[data-development-preview="true"] .recruit-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 66px;
  padding: 8px clamp(18px, 2.6vw, 40px);
  color: #fff;
  border-bottom-color: rgba(121, 169, 212, .18);
  background: rgba(2, 11, 25, .97);
  backdrop-filter: blur(16px);
}

body.recruitment-page[data-development-preview="true"] .recruit-brand { color: #fff; }
body.recruitment-page[data-development-preview="true"] .recruit-brand small { color: rgba(255, 255, 255, .72); }
body.recruitment-page[data-development-preview="true"] .recruit-header-center a { color: rgba(255, 255, 255, .72); }
body.recruitment-page[data-development-preview="true"] .recruit-header-center a:hover { color: #fff; }
body.recruitment-page[data-development-preview="true"] .recruit-header .language-pills {
  border-color: rgba(126, 180, 218, .24);
  background: rgba(10, 32, 55, .78);
}
body.recruitment-page[data-development-preview="true"] .recruit-header .language-pills button { color: #a9bdcf; }
body.recruitment-page[data-development-preview="true"] .recruit-header .language-pills button[aria-pressed="true"] { color: #051322; background: #8ceaff; }
body.recruitment-page[data-development-preview="true"] .recruit-header .recruit-button.primary {
  border-color: rgba(35, 200, 244, .62);
  color: #8ceaff;
  background: rgba(5, 39, 72, .44);
  box-shadow: none;
}

body.recruitment-page[data-development-preview="true"] .recruitment-hero {
  min-height: calc(100dvh - 66px);
  grid-template-columns: minmax(0, 1fr) clamp(430px, 28vw, 478px);
  gap: 18px;
  align-items: start;
  padding: 0 12px 14px 0;
  background: #020b19;
}

body.recruitment-page[data-development-preview="true"] .recruit-map-stage {
  min-height: calc(100dvh - 66px);
  border: 0;
  border-radius: 0 20px 20px 0;
  background: #031127;
  box-shadow: none;
}

body.recruitment-page[data-development-preview="true"] .recruit-map-viewport {
  min-height: calc(100dvh - 66px);
  background: #031127;
}

body.recruitment-page[data-development-preview="true"] .recruit-map-viewport::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  content: "";
  box-shadow: inset -80px 0 120px rgba(2, 11, 25, .5), inset 0 -80px 130px rgba(0, 6, 16, .56);
}

body.recruitment-page[data-development-preview="true"] .recruit-map .maplibregl-ctrl-attrib {
  color: #7f91a8;
  background: rgba(1, 10, 24, .75);
}
body.recruitment-page[data-development-preview="true"] .recruit-map .maplibregl-ctrl-attrib a { color: #9fc5df; }
body.recruitment-page[data-development-preview="true"] .recruit-map .maplibregl-ctrl-group {
  border: 1px solid rgba(99, 180, 222, .28);
  background: rgba(4, 18, 39, .9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}
body.recruitment-page[data-development-preview="true"] .recruit-map .maplibregl-ctrl button .maplibregl-ctrl-icon {
  filter: invert(1);
  opacity: .72;
}

.map-simulation-note {
  position: absolute;
  z-index: 8;
  top: 18px;
  left: 22px;
  display: grid;
  gap: 3px;
  max-width: min(520px, calc(100% - 160px));
  padding: 10px 13px;
  border: 1px solid rgba(52, 199, 240, .36);
  border-radius: 9px;
  color: #b4cadb;
  background: rgba(2, 14, 33, .78);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .28);
  font-size: 10.5px;
  line-height: 1.42;
  backdrop-filter: blur(12px);
}
.map-simulation-note strong { color: #63defe; font-size: 10px; letter-spacing: .1em; }

body.recruitment-page[data-development-preview="true"] .map-loading {
  color: #a9c3d6;
  background: #031127;
}

body.recruitment-page[data-development-preview="true"] .map-expand-control {
  z-index: 8;
  border-color: rgba(77, 182, 224, .34);
  color: #a2efff;
  background: rgba(3, 24, 48, .86);
}

body.recruitment-page[data-development-preview="true"] .map-footer {
  position: absolute;
  z-index: 7;
  right: 20px;
  bottom: 14px;
  left: 22px;
  width: min(820px, calc(100% - 42px));
  padding: 12px 14px;
  border: 1px solid rgba(119, 169, 208, .35);
  border-radius: 10px;
  color: #d6e2ed;
  background: rgba(2, 14, 33, .82);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
}
body.recruitment-page[data-development-preview="true"] .map-legend { color: #d6e2ed; }
body.recruitment-page[data-development-preview="true"] .map-legend > strong { color: #8ceaff; letter-spacing: .08em; text-transform: uppercase; }
body.recruitment-page[data-development-preview="true"] .simulation-map-scope { padding: 3px 7px; border: 1px solid rgba(140, 234, 255, .26); border-radius: 999px; color: #bcecf6; background: rgba(8, 113, 151, .14); font-size: 9px; font-weight: 790; }
body.recruitment-page[data-development-preview="true"] .simulation-map-count { display: inline-flex; align-items: baseline; gap: 5px; color: #b9d5e4; }
body.recruitment-page[data-development-preview="true"] .simulation-map-count b { color: #ecfdff; font-size: 18px; line-height: 1; letter-spacing: -.035em; }
body.recruitment-page[data-development-preview="true"] .legend-swatch { border-color: rgba(91, 222, 255, .4); }
body.recruitment-page[data-development-preview="true"] .legend-swatch.open { border-color: rgba(85, 243, 201, .7); background: rgba(31, 230, 181, .28); box-shadow: inset 0 0 0 1px rgba(85, 243, 201, .16); }
body.recruitment-page[data-development-preview="true"] .legend-swatch.early { background: #136d8c; }
body.recruitment-page[data-development-preview="true"] .legend-swatch.growing { background: #1bc6ee; }
body.recruitment-page[data-development-preview="true"] .legend-swatch.strong { background: #2ad9ff; box-shadow: 0 0 10px rgba(42, 217, 255, .58); }
body.recruitment-page[data-development-preview="true"] .legend-swatch.facility { border-color: #ffc56f; background: #f4a83c; box-shadow: 0 0 11px rgba(255, 183, 72, .58); }
body.recruitment-page[data-development-preview="true"] .legend-swatch.selected { border-color: #a5f4ff; background: #38dbff; box-shadow: 0 0 12px rgba(56, 219, 255, .7); }

body.recruitment-page[data-development-preview="true"] .recruit-panel {
  position: sticky;
  top: 84px;
  display: flex;
  height: calc(100dvh - 98px);
  margin-top: 18px;
  align-self: start;
  flex-direction: column;
  overflow: hidden;
  padding: 26px 10px 12px 28px;
  border: 1px solid rgba(208, 217, 229, .92);
  border-radius: 18px;
  background: #fff;
  box-shadow: -18px 20px 54px rgba(0, 0, 0, .3);
}

.participation-choice {
  z-index: 5;
  flex: 0 0 auto;
  margin: 0 16px 12px 0;
  padding: 0 0 12px;
  border-bottom: 1px solid #dce5ef;
  background: #fff;
}
.participation-choice .eyebrow { display: block; margin: 0 0 7px; color: #078db3; font-size: 11px; }
.participation-choice > p { margin: 7px 0 0; color: #627287; font-size: 11.5px; line-height: 1.45; }
.participation-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 4px; border: 1px solid #d4e0ec; border-radius: 12px; background: #f1f5fa; }
.participation-tabs button {
  display: grid;
  min-width: 0;
  min-height: 47px;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border: 0;
  border-radius: 9px;
  color: #53657c;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 12px;
  font-weight: 780;
  line-height: 1.25;
}
.participation-tabs button i { color: #60738a; text-align: center; }
.participation-tabs button[aria-selected="true"] { color: #073d77; background: #fff; box-shadow: 0 4px 15px rgba(5, 36, 79, .1); }
.participation-tabs button[aria-selected="true"] i { color: #078db3; }

html:lang(zh) .participation-tabs {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
}
html:lang(zh) .participation-tabs button {
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 5px;
  padding-inline: 7px;
  font-size: 12.5px;
}
html:lang(zh) .participation-tabs button span { white-space: nowrap; }

.facility-flow {
  min-height: 0;
  flex: 1 1 auto;
  flex-direction: column;
  padding-right: 8px;
  overflow: hidden;
}
.facility-flow:not([hidden]) { display: flex; }
.facility-flow-heading { flex: 0 0 auto; padding: 0 8px 13px 0; border-bottom: 1px solid #dce5ef; }
.facility-flow-heading .eyebrow { margin-bottom: 7px; color: #078db3; font-size: 10px; }
.facility-flow-heading h1 { margin: 0; font-size: clamp(31px, 3.1vw, 40px); line-height: 1.02; letter-spacing: -.047em; }
html:lang(zh) .facility-flow-heading h1 {
  font-size: clamp(27px, 2.6vw, 34px);
  letter-spacing: -.035em;
  white-space: nowrap;
}
.facility-flow-heading > p:not(.eyebrow) { margin: 10px 0 0; color: #52627a; font-size: 12.5px; line-height: 1.48; }
.facility-flow-scroll { min-height: 0; flex: 1 1 auto; overflow-y: auto; padding: 14px 8px 24px 0; scrollbar-gutter: stable; }

.facility-supply-card { margin-top: 14px; padding: 13px; border: 1px solid #b9d9e7; border-radius: 12px; background: linear-gradient(145deg, #f4fbff, #f1f6ff); }
.facility-supply-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.facility-supply-head small { display: block; color: #087fa3; font-size: 9px; font-weight: 850; letter-spacing: .09em; }
.facility-supply-head h2,
.facility-supply-head h4 { margin: 4px 0 0; color: #0a294b; font-size: 15px !important; line-height: 1.25; letter-spacing: -.015em; }
.facility-supply-head > span { display: grid; min-width: 34px; height: 34px; place-items: center; border-radius: 10px; color: #fff; background: #087fa3; font-size: 15px; font-weight: 850; }
.facility-supply-card > p { margin: 8px 0 0; color: #536b7e; font-size: 11px; line-height: 1.45; }
.facility-supply-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; margin-top: 10px; }
.facility-supply-metric { min-width: 0; padding: 8px; border: 1px solid #d2e1ec; border-radius: 8px; background: rgba(255, 255, 255, .86); }
.facility-supply-metric b { display: block; color: #0b466f; font-size: 16px; }
.facility-supply-metric span { display: block; margin-top: 2px; color: #627488; font-size: 9px; line-height: 1.25; }
.facility-list { display: grid; gap: 7px; margin-top: 10px; }
.facility-list-empty { margin: 0; padding: 10px; border: 1px dashed #bfcfdd; border-radius: 9px; color: #5b6d82; background: rgba(255,255,255,.72); font-size: 11px; line-height: 1.4; }
.facility-list-item { display: grid; width: 100%; grid-template-columns: 31px minmax(0, 1fr) auto; align-items: center; gap: 8px; padding: 9px; border: 1px solid #cddde8; border-radius: 9px; color: #17344f; background: #fff; cursor: pointer; text-align: left; }
.facility-list-item > i { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 8px; color: #087fa3; background: #e4f7fc; }
.facility-list-item strong { display: block; overflow: hidden; font-size: 11.5px; text-overflow: ellipsis; white-space: nowrap; }
.facility-list-item small { display: block; margin-top: 3px; color: #65778b; font-size: 9.5px; line-height: 1.35; }
.facility-status-pill { padding: 4px 6px; border-radius: 999px; color: #7c510b; background: #fff1d7; font-size: 8px; font-weight: 850; white-space: nowrap; }
.facility-status-pill.verified { color: #076047; background: #dff7ed; }

.facility-application-form { display: grid; gap: 16px; margin-top: 17px; }
.facility-form-section { display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 9px; align-items: start; padding-top: 14px; border-top: 1px solid #dce5ef; }
.facility-form-section > span { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 8px; color: #fff; background: #087fa3; font-size: 12px; font-weight: 850; }
.facility-form-section strong { display: block; color: #0d2d4f; font-size: 15px; }
.facility-form-section p { margin: 4px 0 0; color: #637489; font-size: 11px; line-height: 1.42; }
.compact-number-grid .form-field label { min-height: 31px; }
.facility-capabilities { display: flex; flex-wrap: wrap; gap: 7px 12px; margin: 0; padding: 12px; border: 1px solid #d4e0ec; border-radius: 10px; }
.facility-capabilities legend { padding: 0 5px; color: #34445c; font-size: 12px; font-weight: 780; }
.facility-capabilities label { display: inline-flex; align-items: center; gap: 6px; color: #4d6077; font-size: 11px; }
.facility-capabilities input { width: 16px; height: 16px; accent-color: #087fa3; }

.facility-detail-dialog { width: min(560px, calc(100vw - 28px)); max-height: min(760px, calc(100dvh - 28px)); padding: 0; overflow: auto; border: 1px solid #c7d7e6; border-radius: 18px; color: #102c49; background: #fff; box-shadow: 0 30px 90px rgba(0, 18, 45, .36); }
.facility-detail-dialog::backdrop { background: rgba(1, 12, 29, .72); backdrop-filter: blur(4px); }
.facility-dialog-close { position: sticky; z-index: 2; top: 12px; float: right; width: 38px; height: 38px; margin: 12px 12px 0 0; border: 1px solid #d1deea; border-radius: 10px; color: #38506a; background: #fff; cursor: pointer; }
.facility-detail-content { padding: 24px; }
.facility-detail-content .eyebrow { margin-bottom: 8px; color: #087fa3; }
.facility-detail-content h2 { margin: 0; padding-right: 48px; font-size: 28px !important; line-height: 1.05; }
.facility-detail-content > p { color: #5c6f84; font-size: 12px; line-height: 1.5; }
.facility-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 16px; }
.facility-detail-grid div { padding: 11px; border: 1px solid #dce6ef; border-radius: 9px; background: #f8fbfe; }
.facility-detail-grid small { display: block; color: #6c7d90; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.facility-detail-grid strong { display: block; margin-top: 4px; color: #123c62; font-size: 13px; }
.facility-detail-note { margin-top: 14px; padding: 11px; border: 1px solid #efd3a2; border-radius: 9px; color: #74470b; background: #fff8eb; font-size: 11px; line-height: 1.48; }

body.recruitment-page[data-development-preview="true"] .panel-language-mobile { order: 0; }
body.recruitment-page[data-development-preview="true"] .campaign-panel { display: none; }
body.recruitment-page[data-development-preview="true"] .recruit-panel-fixed {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  padding-right: 16px;
  background: #fff;
}
body.recruitment-page[data-development-preview="true"] .recruit-panel-scroll {
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 16px 22px 0;
  scrollbar-gutter: stable;
}

body.recruitment-page[data-development-preview="true"] .recruit-panel-heading h1 {
  margin: 0;
  max-width: 390px;
  font-size: clamp(36px, 3.1vw, 43px);
  line-height: 1.04;
  letter-spacing: -.047em;
}
body.recruitment-page[data-development-preview="true"] .panel-kicker { margin-bottom: 9px; color: #079ac3; font-size: 11px; }
body.recruitment-page[data-development-preview="true"] .panel-intro { margin-top: 12px; color: #5b6980; font-size: 14.5px; line-height: 1.5; }
body.recruitment-page[data-development-preview="true"] .flow-step[data-flow-step="1"] { margin-top: 15px; }
body.recruitment-page[data-development-preview="true"] .flow-step[data-flow-step="1"] .flow-step-head { display: none; }
body.recruitment-page[data-development-preview="true"] .search-row {
  gap: 7px;
  padding: 7px;
  border: 1px solid #dce3eb;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(9, 31, 63, .05);
}
body.recruitment-page[data-development-preview="true"] .search-row .recruit-input {
  min-height: 42px;
  padding-left: 14px;
  border: 0;
  font-size: 15px;
}
body.recruitment-page[data-development-preview="true"] .search-row .recruit-button {
  min-height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0b327c, #062766);
  box-shadow: none;
  font-size: 13px;
}
body.recruitment-page[data-development-preview="true"] .flow-step[data-flow-step="1"] > .location-action {
  width: auto;
  min-height: 30px;
  justify-content: flex-start;
  margin-top: 7px;
  padding: 4px 2px;
  border: 0;
  color: #225b9c;
  background: transparent;
  box-shadow: none;
  font-size: 12px;
}
body.recruitment-page[data-development-preview="true"] .flow-step[data-flow-step="1"] > .map-click-note { display: none; }
body.recruitment-page[data-development-preview="true"] .flow-step[data-flow-step="1"] > .flow-message {
  margin-top: 7px;
  padding: 8px 9px;
  font-size: 12px;
  line-height: 1.4;
}

.simulation-timeline {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding: 15px 16px;
  border: 1px solid #bcd9e9;
  border-radius: 12px;
  background: linear-gradient(145deg, #f2fbff, #edf4ff);
}
.simulation-timeline-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.simulation-timeline-head > div { min-width: 0; }
.simulation-timeline-badge,
.simulation-result-label span {
  display: block;
  color: #047fa3;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  line-height: 1.35;
  text-transform: uppercase;
}
.simulation-timeline-head strong { display: block; margin-top: 4px; font-size: 16px; line-height: 1.28; }
.simulation-timeline output {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff;
  background: #071b32;
  font-size: 11px;
  font-weight: 820;
  white-space: nowrap;
}
.simulation-timeline > p { margin: 0; color: #52667d; font-size: 13px; line-height: 1.5; }
.simulation-layer-status {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(20, 113, 176, .14);
  border-radius: 10px;
  background: rgba(255, 255, 255, .72);
}
.simulation-layer-status span { display: grid; gap: 3px; }
.simulation-layer-status span:last-child { text-align: right; }
.simulation-layer-status small { color: #078db3; font-size: 10px; font-weight: 850; letter-spacing: .055em; text-transform: uppercase; }
.simulation-layer-status span:last-child small { color: #079a77; }
.simulation-layer-status strong { color: #0b2d55; font-size: 15px; line-height: 1.2; text-transform: uppercase; }
.simulation-layer-status span:last-child strong { color: #05856a; font-size: 20px; }
.simulation-timeline input[type="range"] {
  --simulation-progress: 0%;
  appearance: none;
  width: 100%;
  height: 22px;
  margin: 0;
  border-radius: 999px;
  background: transparent;
  cursor: ew-resize;
}
.simulation-timeline input[type="range"]::-webkit-slider-runnable-track {
  height: 7px;
  border: 1px solid rgba(5, 107, 145, .16);
  border-radius: 999px;
  background: linear-gradient(90deg, #08a9cf 0 var(--simulation-progress), #c6dbe6 var(--simulation-progress) 100%);
}
.simulation-timeline input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  margin-top: -7px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #08a9cf;
  box-shadow: 0 0 0 2px #087ba2, 0 3px 10px rgba(0, 105, 143, .28);
}
.simulation-timeline input[type="range"]::-moz-range-track { height: 7px; border: 1px solid rgba(5, 107, 145, .16); border-radius: 999px; background: #c6dbe6; }
.simulation-timeline input[type="range"]::-moz-range-progress { height: 7px; border-radius: 999px; background: #08a9cf; }
.simulation-timeline input[type="range"]::-moz-range-thumb { width: 15px; height: 15px; border: 3px solid #fff; border-radius: 50%; background: #08a9cf; box-shadow: 0 0 0 2px #087ba2, 0 3px 10px rgba(0, 105, 143, .28); }
.simulation-timeline input[type="range"]:focus-visible { outline: 3px solid rgba(8, 142, 184, .38); outline-offset: 3px; }
.simulation-timeline-labels { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px; color: #53677f; font-size: 11px; font-weight: 760; }
.simulation-timeline-labels button { min-width: 0; padding: 3px 2px; border: 0; border-radius: 5px; color: inherit; background: transparent; font: inherit; cursor: pointer; }
.simulation-timeline-labels button:first-child { text-align: left; }
.simulation-timeline-labels button:nth-child(2) { text-align: center; }
.simulation-timeline-labels button:last-child { text-align: right; }
.simulation-timeline-labels button[aria-pressed="true"] { color: #075e87; background: rgba(7, 142, 184, .1); }
.simulation-timeline-labels button:focus-visible { outline: 2px solid rgba(8, 142, 184, .58); outline-offset: 2px; }
.simulation-timeline .simulation-availability { padding: 8px 9px; border: 1px solid rgba(18, 158, 119, .22); border-radius: 9px; color: #11644f; background: rgba(31, 230, 181, .1); font-weight: 780; }
.simulation-application-mode {
  display: grid;
  gap: 3px;
  padding: 7px 2px 7px 10px;
  border: 0;
  border-left: 3px solid #08a9cf;
  color: #143f59;
  background: transparent;
}
.simulation-application-mode > span { color: #087da3; font-size: 11px; font-weight: 850; letter-spacing: .055em; text-transform: uppercase; }
.simulation-application-mode > strong { font-size: 15px; line-height: 1.28; }
.simulation-application-mode > p { margin: 0; color: #49657a; font-size: 13px; font-weight: 650; line-height: 1.5; }
.simulation-application-mode[data-state="emerging"] { border-left-color: #087fa7; }
.simulation-application-mode[data-state="mature"] { border-left-color: #c57b18; }
.simulation-application-mode[data-state="mature"] > span { color: #9a5b0d; }
.simulation-application-mode[data-selection="selected"] > strong { color: #092f49; }
.simulation-timeline .simulation-timeline-truth { padding-top: 7px; border-top: 1px solid #cfe1eb; color: #38536b; font-weight: 720; }
.simulation-timeline-guidance { margin-top: 8px; border-radius: 10px; background: rgba(6, 75, 119, .06); padding: 8px 9px; color: #31516a; font-size: 12px; font-weight: 650; line-height: 1.48; }
body.recruitment-page[data-development-preview="true"] .simulation-timeline-copy { display: block; }
body.recruitment-page[data-development-preview="true"] .simulation-timeline-guidance { display: none; }

.simulation-result-label { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 11px; }
.simulation-result-label b { color: #1c4c69; font-size: 11px; white-space: nowrap; }
.market-status.simulation { color: #075d76; background: #def8ff; }
.simulation-scenario-message { margin: 10px 0 0; padding: 10px; border: 1px solid #b9dce9; border-radius: 9px; color: #174c63; background: #edfaff; font-size: 12px; font-weight: 690; line-height: 1.48; }
.simulation-scenario-message[data-state="emerging"] { border-color: #9acfe4; color: #0e4b68; background: #e8f8ff; }
.simulation-scenario-message[data-state="mature"] { border-color: #e0bd8a; color: #71450b; background: #fff7e9; }
.resolved-selection-row p[data-state="mature"] { color: #7e4a00; }
body.recruitment-page[data-development-preview="true"] .resolved-market-count { display: grid; gap: 3px; }
body.recruitment-page[data-development-preview="true"] .resolved-market-count strong { overflow-wrap: anywhere; color: #075e87; font-size: 13px; line-height: 1.25; letter-spacing: .01em; }
body.recruitment-page[data-development-preview="true"] .selected-market[data-simulation-state="mature"] { border-color: #e5c18d; background: #fffaf1; }
body.recruitment-page[data-development-preview="true"] .selected-market-empty { margin: 0; padding: 10px 11px; border: 1px dashed #c5d5e2; border-radius: 10px; color: #557086; background: #f8fbfd; font-size: 12px; font-weight: 720; line-height: 1.45; }
body.recruitment-page[data-development-preview="true"] .selected-market-empty[data-simulation-state="mature"] { border-color: #dfbd89; color: #7b4b10; background: #fffaf2; }
body.recruitment-page[data-development-preview="true"] [data-market-next-action][data-ready="false"] { border-color: #9acfe2; color: #075f84; background: #edfaff; box-shadow: none; }
body.recruitment-page[data-development-preview="true"] [data-market-next-action][data-ready="false"]:hover { border-color: #58b7d4; color: #054d6b; background: #e1f7ff; }

body.recruitment-page[data-development-preview="true"] .resolved-market-scope {
  margin-top: 10px;
  padding-top: 0;
}
body.recruitment-page[data-development-preview="true"] .resolved-market-scope summary {
  padding: 10px 1px;
  color: #1a5474;
  cursor: pointer;
  font-size: 12px;
  font-weight: 820;
}
body.recruitment-page[data-development-preview="true"] .resolved-market-scope summary:focus-visible {
  outline: 3px solid rgba(8, 142, 184, .34);
  outline-offset: 2px;
}
body.recruitment-page[data-development-preview="true"] .market-details-body { padding-bottom: 3px; }
body.recruitment-page[data-development-preview="true"] .selected-header { margin: 13px 0 7px; }
body.recruitment-page[data-development-preview="true"] .selected-market {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 8px 9px;
}
body.recruitment-page[data-development-preview="true"] .selected-rank,
body.recruitment-page[data-development-preview="true"] .selected-market-area { display: none; }

body.recruitment-page[data-development-preview="true"] .initial-market-policy {
  margin-top: 9px;
  padding: 9px 1px 0;
  border: 0;
  border-top: 1px solid #d6e0e9;
  border-radius: 0;
  background: transparent;
}
body.recruitment-page[data-development-preview="true"] .initial-market-policy strong { display: inline; font-size: 11.5px; }
body.recruitment-page[data-development-preview="true"] .initial-market-policy p { display: inline; margin: 0 0 0 3px; color: var(--recruit-muted); font-size: 11.5px; line-height: 1.48; }

body.recruitment-page[data-development-preview="true"] .flow-progress {
  margin: 15px 0 10px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--recruit-line);
}
body.recruitment-page[data-development-preview="true"] .flow-progress-step { gap: 5px; font-size: 10px; }
body.recruitment-page[data-development-preview="true"] .flow-progress-step:not(:last-child)::after { top: 13px; }
body.recruitment-page[data-development-preview="true"] .flow-progress-step b {
  position: relative;
  z-index: 1;
  width: 29px;
  height: 29px;
  font-size: 12px;
}
body.recruitment-page[data-development-preview="true"] .search-field label,
body.recruitment-page[data-development-preview="true"] .form-field label { font-size: 13px; }
body.recruitment-page[data-development-preview="true"] .flow-step-head small { font-size: 11px; }
body.recruitment-page[data-development-preview="true"] .flow-step-head h3 { font-size: 25px; }
body.recruitment-page[data-development-preview="true"] .flow-step-head p { font-size: 14px; }
body.recruitment-page[data-development-preview="true"] .recruit-input,
body.recruitment-page[data-development-preview="true"] .recruit-select,
body.recruitment-page[data-development-preview="true"] .recruit-textarea { font-size: 15px; }
body.recruitment-page[data-development-preview="true"] .field-hint,
body.recruitment-page[data-development-preview="true"] .contact-consent { font-size: 12px; }
body.recruitment-page[data-development-preview="true"] .privacy-promise,
body.recruitment-page[data-development-preview="true"] .application-check { font-size: 12px; }
body.recruitment-page[data-development-preview="true"] .flow-step .step-actions .recruit-button {
  min-height: 46px;
  font-size: 14px;
}
body.recruitment-page[data-development-preview="true"] .flow-step .step-actions {
  position: sticky;
  z-index: 4;
  bottom: 0;
  margin-top: 14px;
  padding: 10px 0 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 28%);
}

main[data-active-step="2"] .recruit-panel-heading,
main[data-active-step="3"] .recruit-panel-heading { display: none; }
main[data-active-step="2"] .recruit-panel-fixed .flow-progress,
main[data-active-step="3"] .recruit-panel-fixed .flow-progress { margin-top: 0; }

body.recruitment-page[data-development-preview="true"] .below-fold,
body.recruitment-page[data-development-preview="true"] .recruit-footer { position: relative; z-index: 2; }

@media (max-width: 1120px) {
  body.recruitment-page[data-development-preview="true"] .recruitment-hero {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 410px);
  }
  body.recruitment-page[data-development-preview="true"] .recruit-panel { padding: 22px 7px 10px 22px; }
}

@media (max-width: 820px) {
  body.recruitment-page[data-development-preview="true"] .recruitment-hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  body.recruitment-page[data-development-preview="true"] .recruit-map-stage {
    width: 100%;
    min-height: 420px;
    order: 1;
    border-radius: 0;
  }
  body.recruitment-page[data-development-preview="true"] .recruit-map-viewport { min-height: 420px; }
  body.recruitment-page[data-development-preview="true"] .recruit-panel {
    position: static;
    width: 100%;
    height: auto;
    min-height: 0;
    margin-top: 0;
    order: 2;
    overflow: visible;
    padding: 18px 16px 28px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -18px 40px rgba(0, 0, 0, .24);
  }
  body.recruitment-page[data-development-preview="true"] .recruit-panel-fixed { padding-right: 0; }
  body.recruitment-page[data-development-preview="true"] .recruit-panel-scroll {
    min-height: 0;
    overflow: visible;
    padding: 0;
  }
  .participation-choice { margin-right: 0; }
  .facility-flow { overflow: visible; padding-right: 0; }
  .facility-flow-heading { padding-right: 0; }
  .facility-flow-scroll { overflow: visible; padding-right: 0; }
  body.recruitment-page[data-development-preview="true"] .flow-step .step-actions {
    position: static;
    padding-top: 0;
    background: transparent;
  }
  body.recruitment-page[data-development-preview="true"] .map-simulation-note { top: 12px; left: 12px; max-width: calc(100% - 100px); }
  body.recruitment-page[data-development-preview="true"] .map-footer {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    padding: 10px 12px;
  }
  body.recruitment-page[data-development-preview="true"] .map-legend { gap: 7px 10px; }
  body.recruitment-page[data-development-preview="true"] .recruit-panel-heading h1 { font-size: 34px; }
}

@media (max-width: 520px) {
  body.recruitment-page[data-development-preview="true"] .recruit-header { min-height: 60px; padding: 8px 12px; }
  body.recruitment-page[data-development-preview="true"] .recruit-brand { font-size: 15px; }
  body.recruitment-page[data-development-preview="true"] .recruit-brand img { width: 30px; height: 30px; }
  body.recruitment-page[data-development-preview="true"] .recruit-header-actions .recruit-button { min-height: 36px; padding: 6px 9px; font-size: 10px; }
  body.recruitment-page[data-development-preview="true"] .recruit-map-stage,
  body.recruitment-page[data-development-preview="true"] .recruit-map-viewport { min-height: 400px; }
  body.recruitment-page[data-development-preview="true"] .map-footer { max-height: 112px; overflow-y: auto; }
  body.recruitment-page[data-development-preview="true"] .map-legend > strong { width: 100%; }
  body.recruitment-page[data-development-preview="true"] .search-row { grid-template-columns: minmax(0, 1fr) auto; }
  body.recruitment-page[data-development-preview="true"] .search-row .recruit-button { width: auto; min-width: 118px; padding: 8px 10px; font-size: 12px; }
  .simulation-timeline { padding: 12px; }
  .simulation-timeline-head { gap: 8px; }
  .simulation-timeline-labels { font-size: 10px; }
  .participation-tabs { grid-template-columns: 1fr; }
  .participation-tabs button { min-height: 43px; }
  .facility-supply-metrics { grid-template-columns: 1fr 1fr; }
  .compact-number-grid { grid-template-columns: 1fr; }
  .compact-number-grid .form-field label { min-height: 0; }
  .facility-detail-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  body.recruitment-page[data-development-preview="true"] *,
  body.recruitment-page[data-development-preview="true"] *::before,
  body.recruitment-page[data-development-preview="true"] *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

body.recruitment-page[data-development-preview="true"][data-reduced-motion="true"] *,
body.recruitment-page[data-development-preview="true"][data-reduced-motion="true"] *::before,
body.recruitment-page[data-development-preview="true"][data-reduced-motion="true"] *::after {
  animation-duration: .001ms !important;
  animation-iteration-count: 1 !important;
  scroll-behavior: auto !important;
  transition-duration: .001ms !important;
}
