/* Static form adapter: preserves the production form while matching the
   approved survey design. */
body.entry-page._page_gto9q_1 {
  overflow-x: hidden;
  overflow-y: auto;
}

.entry-page [hidden] {
  display: none !important;
}

.entry-page .skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-180%);
}

.entry-page .skip-link:focus {
  transform: none;
}

.entry-page .visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.entry-page .entry-form,
.entry-page .option-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.entry-page .entry-intro span {
  color: #0b6f69;
}

.entry-page .form-step {
  position: relative;
}

.entry-page .form-step.step-enter {
  animation: 0.24s both _enter_gto9q_1;
}

.entry-page .question-heading h1,
.entry-page .question-heading h2 {
  margin: 0;
  color: var(--navy-950);
  letter-spacing: -0.035em;
  outline: none;
  font-size: clamp(25px, 3.3vw, 36px);
  font-weight: 850;
  line-height: 1.45;
}

.entry-page .question-heading > p:not(.question-number) {
  margin: 10px 0 0;
  color: var(--slate-600);
  font-size: 13px;
  line-height: 1.75;
}

.entry-page .option-list {
  counter-reset: infra-option;
}

.entry-page .option-card {
  counter-increment: infra-option;
  position: relative;
  display: grid;
  min-height: 62px;
  align-items: center;
  padding: 11px 36px 11px 46px;
  overflow: hidden;
  color: var(--navy-950);
  background: #fbfdfe;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
  text-align: left;
  transition:
    border-color 0.16s,
    background 0.16s,
    box-shadow 0.16s,
    transform 0.16s;
}

.entry-page .option-card::before {
  content: counter(infra-option, decimal-leading-zero);
  position: absolute;
  top: 50%;
  left: 15px;
  color: var(--slate-400);
  letter-spacing: 0.08em;
  font-size: 9px;
  font-weight: 850;
  transform: translateY(-50%);
}

.entry-page .option-card:hover {
  background: var(--blue-50);
  border-color: var(--blue-500);
  box-shadow: 0 7px 18px #084e7a14;
  transform: translateY(-1px);
}

.entry-page .option-card:has(input:checked) {
  background: #eaf8f5;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 2px #1c9a911a;
}

.entry-page .option-card:has(input:checked)::before {
  color: var(--teal-600);
}

.entry-page .option-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.entry-page .option-card > span {
  display: block;
}

.entry-page .option-card:focus-within {
  outline: 3px solid #f3b642;
  outline-offset: 3px;
}

.entry-page .field-error,
.entry-page .submit-error {
  display: block;
  grid-column: 1 / -1;
  margin: 5px 0 0;
  color: #bc3737;
  font-size: 12px;
  font-weight: 750;
}

.entry-page .step-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.entry-page .step-controls:not(.split):not(.final-controls),
.entry-page .step-controls.split .back-button,
.entry-page .final-controls .back-button {
  position: static;
}

.entry-page .back-button {
  min-width: 44px;
  min-height: 44px;
  padding: 8px 4px;
  color: var(--slate-600);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.entry-page .back-button span {
  display: none;
}

.entry-page .next-button {
  flex: 1;
  width: 100%;
  min-height: 58px;
  margin-top: 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  border: 0;
  border-radius: 12px;
  box-shadow: 0 14px 30px #1389d438;
}

.entry-page .review-panel {
  margin-top: 22px;
}

.entry-page .review-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.entry-page .review-heading h3 {
  color: var(--slate-700);
  font-size: 13px;
  font-weight: 800;
}

.entry-page .review-heading span {
  color: var(--slate-400);
  font-size: 12px;
  font-weight: 700;
}

.entry-page .review-list {
  margin: 12px 0 0;
}

.entry-page .review-list > div {
  display: grid;
  grid-template-columns: 94px 1fr auto;
  gap: 12px;
  padding: 7px 0;
  border-top: 1px solid var(--slate-100);
}

.entry-page .review-list dt {
  color: var(--slate-400);
  font-size: 12px;
  font-weight: 700;
}

.entry-page .review-list dd {
  margin: 0;
  color: var(--slate-700);
  font-size: 13px;
  font-weight: 750;
}

.entry-page .review-list button {
  align-self: start;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
  color: var(--blue-600);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--blue-500);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.entry-page .contact-fields > .form-field--wide {
  grid-column: 1 / -1;
}

.entry-page .form-field {
  min-width: 0;
}

.entry-page .contact-fields {
  row-gap: 10px;
  margin-bottom: 12px;
}

.entry-page .form-field label {
  color: var(--slate-700);
  font-size: 13px;
  font-weight: 800;
}

.entry-page .form-field label .required {
  margin-left: 5px;
  color: #cf4545;
  font-size: 11px;
}

.entry-page .form-field label .optional,
.entry-page .form-field > small {
  margin-left: 5px;
  color: var(--slate-400);
  font-size: 12px;
}

.entry-page .form-field > small {
  display: block;
  margin: 4px 0 0 4px;
  line-height: 1.4;
}

.entry-page .form-field > input {
  width: 100%;
  height: 54px;
  margin-top: 7px;
  padding: 0 13px;
  color: var(--navy-950);
  background: #fbfcfd;
  border: 1px solid var(--slate-200);
  border-radius: 9px;
  outline: none;
  font-size: 14px;
}

.entry-page .form-field > input:focus {
  background: var(--white);
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px #1389d41a;
}

.entry-page .form-field > input[aria-invalid="true"] {
  border-color: #cf4545;
}

.entry-page .privacy-panel {
  grid-column: 1 / -1;
  min-width: 0;
  margin: 4px 0 14px;
  padding: 0 16px 12px;
  background: #f8fbfd;
  border: 1px solid #d5e4ed;
  border-radius: 12px;
}

.entry-page .privacy-panel legend {
  max-width: calc(100% - 16px);
  padding: 0 8px;
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.5;
}

.entry-page .privacy-assurance {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 6px 0 0;
  color: var(--slate-600);
  text-align: left;
  font-size: 12px;
  line-height: 1.65;
}

.entry-page .privacy-assurance strong {
  color: var(--slate-700);
  font-size: 13px;
}

.entry-page .privacy-panel .privacy-choice {
  display: flex;
  width: 100%;
  min-height: 44px;
  margin: 0;
  padding: 12px 0;
  color: var(--slate-700);
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  gap: 10px;
  font-size: 12px;
  line-height: 1.65;
}

.entry-page .privacy-panel .privacy-choice--optional {
  margin-top: 10px;
  border-top: 1px solid #dfe9ef;
}

.entry-page .privacy-panel .privacy-choice > input {
  flex: none;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue-600);
}

.entry-page .privacy-panel .privacy-choice > input[aria-invalid="true"] {
  outline: 2px solid #cf4545;
  outline-offset: 2px;
}

.entry-page .privacy-panel .privacy-choice__body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 3px;
}

.entry-page .privacy-panel .privacy-choice__heading {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  gap: 5px 8px;
}

.entry-page .privacy-panel .privacy-choice__heading strong,
.entry-page .privacy-consent-heading strong {
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.entry-page .privacy-panel .privacy-choice small {
  color: var(--slate-600);
  font-size: 12px;
  line-height: 1.65;
}

.entry-page .choice-badge {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
}

.entry-page .choice-badge--optional {
  color: var(--slate-600);
  background: #e6f0f5;
}

.entry-page .choice-badge--required {
  color: #b93e3e;
  background: #fff0f0;
}

.entry-page .privacy-consent-block {
  padding-top: 12px;
  border-top: 1px solid #dfe9ef;
}

.entry-page .privacy-consent-heading {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
}

.entry-page .privacy-panel .privacy-choice--required {
  padding: 8px 0 2px;
}

.entry-page .privacy-panel .consent-row span {
  display: block;
}

.entry-page .privacy-panel .consent-row a {
  color: var(--blue-600);
  text-underline-offset: 2px;
  text-decoration: underline;
}

.entry-page .privacy-panel .consent-error {
  margin: 6px 0 0 28px;
}

.entry-page .final-controls {
  display: flex;
  align-items: center;
  grid-column: 1 / -1;
  margin: 0;
}

.entry-page .submit-note {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: var(--slate-600);
  text-align: center;
  font-size: 12px;
  line-height: 1.7;
}

.entry-page .entry-navigation {
  min-height: 39px;
}

.entry-page .entry-legal {
  padding: 28px 16px;
  background: var(--navy-950);
}

.entry-page .entry-legal a {
  color: #a9dff3;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.entry-page .success-panel h1 {
  color: var(--navy-950);
  font-size: clamp(25px, 3.3vw, 36px);
  font-weight: 850;
}

.entry-page .success-panel .section-kicker {
  margin: 0 0 8px;
}

.entry-page .success-panel .receipt {
  margin-top: 13px;
}

.entry-page .success-panel .button-outline {
  width: min(360px, 100%);
  min-height: 58px;
  margin-top: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  border-radius: 12px;
}

.entry-page .location-select-wrap {
  margin-top: 28px;
}

.entry-page .location-select-wrap label {
  display: block;
  color: var(--slate-700);
  font-size: 13px;
  font-weight: 800;
}

.entry-page .location-select-wrap select {
  width: 100%;
  min-height: 60px;
  margin-top: 8px;
  padding: 0 46px 0 16px;
  color: var(--navy-950);
  background: #fbfdfe;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 750;
}

.entry-page .location-select-wrap select:focus {
  background: var(--white);
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px #1389d41a;
  outline: none;
}

.entry-page .location-select-wrap small {
  display: block;
  margin-top: 9px;
  color: var(--slate-600);
  font-size: 12px;
}

.entry-page .matching-panel {
  min-height: 515px;
  align-items: center;
  justify-content: center;
}

.entry-page .matching-panel:not([hidden]) {
  display: flex;
}

.entry-page .matching-content {
  width: min(600px, 100%);
  text-align: center;
}

.entry-page .matching-content h2 {
  margin: 0;
  color: var(--navy-950);
  letter-spacing: -0.035em;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 850;
  line-height: 1.4;
}

.entry-page .matching-content > p:not(.section-kicker) {
  margin-top: 12px;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.8;
}

.entry-page .matching-progress {
  height: 10px;
  margin-top: 30px;
  overflow: hidden;
  background: #d7e6ed;
  border-radius: 999px;
}

.entry-page .matching-progress > span {
  display: block;
  width: 10%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal-500), var(--blue-500));
  border-radius: inherit;
  transition: width 0.48s ease;
}

.entry-page .matching-status-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 22px;
}

.entry-page .matching-status-list li {
  min-height: 44px;
  padding: 11px 8px;
  color: var(--slate-600);
  background: #f7fafc;
  border: 1px solid var(--slate-200);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 750;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s;
}

.entry-page .matching-status-list li.is-complete {
  color: var(--teal-600);
  background: #eaf8f5;
  border-color: var(--teal-500);
}

.entry-page .matching-content .matching-disclaimer {
  font-size: 12px;
}

.entry-page .matching-content .matching-back {
  margin-top: 18px;
}

.entry-page .check-row {
  min-height: 44px;
  color: var(--slate-700);
  font-size: 12px;
}

.entry-page .final-step {
  min-height: auto;
}

.entry-page .final-controls .submit-button {
  flex: 1;
  width: auto;
  min-height: 62px;
  margin-top: 0;
  gap: 10px;
  font-size: 16px;
}

.entry-page .salary-controls .next-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  box-shadow: none;
}

.entry-page .success-panel:focus {
  outline: none;
}

.entry-page button:focus-visible,
.entry-page select:focus-visible,
.entry-page input:focus-visible,
.entry-page a:focus-visible {
  outline: 3px solid #f3b642;
  outline-offset: 3px;
}

@media (width <= 680px) {
  .entry-page .brand-mark {
    width: 34px;
    height: 34px;
  }

  .entry-page .brand-copy strong {
    font-size: 12px;
  }

  .entry-page .brand-copy small {
    font-size: 8px;
  }

  .entry-page .question-heading h1,
  .entry-page .question-heading h2 {
    font-size: 25px;
    line-height: 1.4;
  }

  .entry-page .option-card {
    min-height: 58px;
    padding-right: 18px;
    font-size: 14px;
  }

  .entry-page .contact-fields > .form-field,
  .entry-page .contact-fields > .form-field--wide {
    grid-column: auto;
  }

  .entry-page .contact-fields {
    row-gap: 12px;
  }

  .entry-page .privacy-panel {
    padding-inline: 12px;
  }

  .entry-page .form-field > input {
    height: 52px;
    font-size: 16px;
  }

  .entry-page .review-list > div {
    grid-template-columns: 72px 1fr 44px;
    gap: 8px;
  }

  .entry-page .step-controls.split,
  .entry-page .final-controls {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .entry-page .step-controls.split .back-button,
  .entry-page .final-controls .back-button {
    align-self: flex-start;
  }

  .entry-page .final-controls .submit-button,
  .entry-page .step-controls.split .next-button {
    width: 100%;
  }

  .entry-page .matching-panel {
    min-height: 540px;
  }

  .entry-page .matching-content h2 {
    font-size: 28px;
  }

  .entry-page .matching-status-list {
    gap: 6px;
  }

  .entry-page .matching-status-list li {
    padding-inline: 5px;
    font-size: 11px;
  }

  .entry-page .entry-trust strong {
    font-size: 11px;
  }

  body.entry-page {
    padding-bottom: 0;
  }

  .entry-page .mobile-break {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .entry-page .form-step.step-enter,
  .entry-page .option-card,
  .entry-page .matching-progress > span,
  .entry-page .matching-status-list li {
    animation: none;
    transition: none;
  }
}
