: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.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; }
}
