:root {
  --white: #ffffff;
  --ink: #111311;
  --muted: #626762;
  --line: #d9ddd9;
  --line-strong: #aeb6b0;
  --green: #184f3b;
  --green-dark: #103b2c;
  --cool: #f1f4f2;
  --warm: #f6f1e9;
  --job-soft: #eef3f4;
  --job-surface: #f7f9f9;
  --danger: #9d2e2e;
  --success: #17613f;
  --warning: #7a5518;
  --max: 1180px;
  --wide: 1360px;
  --radius: 8px;
  --radius-small: 5px;
  --shadow: 0 18px 48px rgba(17, 19, 17, 0.09);
  --sans: Inter, "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.sr-only {
  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;
  white-space: nowrap !important;
  border: 0 !important;
}

.container,
.wide-container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.wide-container {
  width: min(var(--wide), calc(100% - 48px));
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-small);
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(24, 79, 59, 0.34);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(var(--wide), calc(100% - 48px));
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.brand-copy {
  display: inline-grid;
  gap: 1px;
}

.brand-mark {
  font-size: 1.06rem;
  font-weight: 750;
  line-height: 1.2;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 650;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.88rem;
  font-weight: 550;
}

.nav > a,
.lang-switch a {
  color: var(--muted);
  text-decoration: none;
}

.nav > a:hover,
.nav > a[aria-current="page"],
.lang-switch a:hover,
.lang-switch a[aria-current="page"] {
  color: var(--ink);
}

.nav > a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h1 {
  font-size: 3.25rem;
  line-height: 1.06;
  font-weight: 620;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.12;
  font-weight: 620;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 650;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 750;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-small);
  color: var(--white);
  background: var(--ink);
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line-strong);
}

.button.secondary:hover {
  background: var(--cool);
  border-color: var(--ink);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.home-hero {
  position: relative;
  min-height: min(680px, max(560px, 33.333vw));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.home-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  min-height: min(680px, max(560px, 33.333vw));
  display: flex;
  align-items: center;
}

.home-hero__copy {
  width: min(650px, 52%);
  padding: 52px 0;
}

.home-hero h1 {
  margin-bottom: 24px;
  font-size: 3.25rem;
}

.home-hero h1 span {
  display: block;
  white-space: nowrap;
}

.home-hero .lead {
  max-width: 620px;
  color: #343934;
}

.section {
  padding: 88px 0;
}

.section.cool {
  background: var(--cool);
}

.section.warm {
  background: var(--warm);
}

.section.dark {
  color: var(--white);
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 52px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading p {
  color: var(--muted);
}

.audience-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-link {
  min-height: 250px;
  padding: 36px 40px 40px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}

.audience-link + .audience-link {
  padding-left: 40px;
  border-left: 1px solid var(--line);
}

.audience-link span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: uppercase;
}

.audience-link h3 {
  margin: 34px 0 12px;
  font-size: 1.75rem;
}

.audience-link p {
  max-width: 460px;
  color: var(--muted);
}

.audience-link strong {
  margin-top: auto;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.74fr);
  gap: 96px;
  align-items: start;
}

.trust-layout p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.trust-heading--cn {
  font-size: 2rem;
  line-height: 1.25;
  white-space: nowrap;
}

.trust-list,
.proof-grid,
.preparation-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list {
  display: grid;
  gap: 18px;
  padding-top: 8px;
}

.trust-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 0;
  font-weight: 600;
}

.trust-list li::before {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  color: #c1dfd1;
  background: rgba(193, 223, 209, 0.08);
  border: 1px solid rgba(193, 223, 209, 0.46);
  border-radius: 50%;
  content: "\2713";
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.proof-grid li {
  padding: 28px 36px 0 0;
}

.proof-grid li + li {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 10px;
}

.proof-grid span {
  color: var(--muted);
}

.inner-hero {
  padding: 82px 0 68px;
  border-bottom: 1px solid var(--line);
}

.employer-page .inner-hero {
  background: var(--cool);
}

.jobseeker-page .inner-hero {
  background: var(--job-soft);
}

.inner-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.inner-hero__content {
  max-width: 1000px;
}

.inner-hero h1 {
  max-width: 1000px;
  margin-bottom: 24px;
  font-size: 3.25rem;
}

.inner-hero h1 span {
  display: block;
  white-space: nowrap;
}

.consultation-band {
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.consultation-band__inner {
  display: grid;
  grid-template-columns: 180px repeat(3, 1fr);
  gap: 32px;
}

.consultation-band strong,
.consultation-band span {
  display: block;
}

.consultation-band strong {
  margin-bottom: 4px;
}

.consultation-band span {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-stage {
  padding: 88px 0 104px;
}

.employer-page .form-stage {
  background: linear-gradient(180deg, var(--cool), var(--white));
}

.jobseeker-page .form-stage {
  background: var(--job-surface);
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.form-context {
  position: sticky;
  top: 104px;
}

.form-context h2 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.form-context > p {
  color: var(--muted);
}

.context-points {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.context-points li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--line);
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
  background: #fafbfa;
  overflow: hidden;
}

.form-progress li {
  min-height: 72px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  border-right: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 600;
}

.form-progress li:last-child {
  border-right: 0;
}

.form-progress li[aria-current="step"] {
  color: var(--ink);
  background: var(--white);
}

.form-progress li.is-complete {
  color: var(--green);
}

.form-progress b {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
  color: var(--white);
  background: var(--line-strong);
  border-radius: 50%;
  font-size: 0.72rem;
}

.form-progress li[aria-current="step"] b,
.form-progress li.is-complete b {
  background: var(--green);
}

.form-step {
  margin: 0;
  padding: 36px 40px 40px;
  border: 0;
}

.form-step > legend:not(.sr-only) {
  width: 100%;
  margin-bottom: 26px;
  padding: 0;
  font-size: 1.55rem;
  font-weight: 650;
}

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

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

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

.field label,
.group-label {
  color: var(--ink);
  font-size: 0.87rem;
  font-weight: 650;
}

.hint {
  color: var(--muted);
  font-size: 0.8rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  outline: none;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(24, 79, 59, 0.12);
}

input[type="file"] {
  padding: 10px;
}

.attachment-picker {
  min-width: 0;
}

.attachment-picker.is-enhanced {
  padding: 14px;
  display: grid;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
}

.attachment-picker.is-enhanced > input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.attachment-picker__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.attachment-picker__add {
  min-height: 40px;
  padding: 9px 14px;
  color: var(--white);
  font: inherit;
  font-weight: 700;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: var(--radius-small);
  cursor: pointer;
}

.attachment-picker__add:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.attachment-picker__add:focus-visible,
.attachment-picker__remove:focus-visible {
  outline: 3px solid rgba(24, 79, 59, 0.2);
  outline-offset: 2px;
}

.attachment-picker__summary {
  color: var(--muted);
  font-size: 14px;
}

.attachment-picker__list {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.attachment-picker__item {
  min-width: 0;
  padding: 12px 0;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.attachment-picker__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.attachment-picker__file-icon {
  width: 17px;
  height: 21px;
  position: relative;
  border: 1.5px solid var(--green);
  border-radius: 2px;
}

.attachment-picker__file-icon::after {
  width: 6px;
  height: 6px;
  position: absolute;
  top: -1.5px;
  right: -1.5px;
  content: "";
  background: var(--white);
  border-bottom: 1.5px solid var(--green);
  border-left: 1.5px solid var(--green);
}

.attachment-picker__details {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.attachment-picker__name {
  overflow-wrap: anywhere;
  font-weight: 650;
}

.attachment-picker__size {
  color: var(--muted);
  font-size: 13px;
}

.attachment-picker__remove {
  padding: 6px 8px;
  color: var(--green-dark);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.attachment-picker__remove:hover {
  background: var(--cool);
}

.phone-control {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) minmax(0, 1.3fr);
  gap: 10px;
  align-items: start;
}

.phone-prefix {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.phone-country-control {
  position: relative;
  min-width: 0;
}

.phone-country-control:not(.is-enhanced) > select {
  width: 100%;
  padding-left: 46px;
}

.phone-flag {
  width: 20px;
  height: 15px;
  flex: 0 0 20px;
  position: relative;
  background-color: var(--cool);
  background-image: url("assets/flags/sg.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid rgba(17, 19, 17, 0.16);
  border-radius: 2px;
  pointer-events: none;
}

.phone-country-control:not(.is-enhanced) > .phone-flag {
  position: absolute;
  top: 50%;
  left: 14px;
  z-index: 1;
  transform: translateY(-50%);
}

.phone-flag.is-custom {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  background: transparent;
  border: 1.5px solid var(--muted);
  border-radius: 50%;
}

.phone-flag.is-custom::before,
.phone-flag.is-custom::after {
  position: absolute;
  content: "";
}

.phone-flag.is-custom::before {
  inset: 2px 5px;
  border-right: 1px solid var(--muted);
  border-left: 1px solid var(--muted);
  border-radius: 50%;
}

.phone-flag.is-custom::after {
  top: 50%;
  right: 2px;
  left: 2px;
  border-top: 1px solid var(--muted);
}

.phone-code-native {
  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;
  white-space: nowrap !important;
  border: 0 !important;
}

.phone-country-picker {
  position: relative;
  min-width: 0;
}

.phone-country-picker > summary {
  min-height: 50px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  cursor: pointer;
  list-style: none;
}

.phone-country-picker > summary::-webkit-details-marker {
  display: none;
}

.phone-country-picker > summary:focus-visible,
.phone-country-picker[open] > summary {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(24, 79, 59, 0.12);
}

.phone-country-picker__label {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-country-picker__chevron {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.phone-country-picker[open] .phone-country-picker__chevron {
  transform: rotate(225deg) translate(-2px, -2px);
}

.phone-country-picker__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 40;
  width: max(100%, 280px);
  max-width: calc(100vw - 32px);
  max-height: 300px;
  padding: 6px;
  display: grid;
  gap: 2px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow);
}

.phone-country-picker__option {
  width: 100%;
  min-height: 42px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.phone-country-picker__option:hover,
.phone-country-picker__option:focus-visible,
.phone-country-picker__option[aria-selected="true"] {
  background: var(--cool);
}

.phone-control select,
.phone-control input {
  min-width: 0;
}

.multi-select {
  position: relative;
  min-width: 0;
}

.multi-select > summary {
  min-height: 50px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  cursor: pointer;
  list-style: none;
}

.multi-select > summary::-webkit-details-marker {
  display: none;
}

.multi-select > summary:hover {
  border-color: var(--green);
}

.multi-select > summary:focus-visible {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(24, 79, 59, 0.12);
  outline: none;
}

.multi-select > summary > span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.multi-select__chevron {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.multi-select[open] .multi-select__chevron {
  transform: rotate(225deg) translate(-2px, -2px);
}

.multi-select__menu {
  position: static;
  width: 100%;
  max-height: 280px;
  margin-top: 6px;
  padding: 6px;
  display: grid;
  gap: 2px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  box-shadow: none;
}

.multi-select__menu--columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.multi-select__option {
  position: relative;
  min-height: 42px;
  padding: 9px 10px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  cursor: pointer;
}

.multi-select__option:hover {
  background: var(--cool);
}

.multi-select__option input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
}

.multi-select__option > span:first-of-type {
  min-width: 0;
}

.multi-select__option input:focus-visible + span {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.multi-select__option input:checked + span {
  color: var(--green-dark);
  font-weight: 650;
}

.multi-select__check {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--green);
}

.multi-select__option input:checked ~ .multi-select__check::before {
  content: "";
  width: 6px;
  height: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
}

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

.check-option,
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: #fbfcfb;
  cursor: pointer;
}

.check-option input,
.consent input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  flex: 0 0 18px;
  accent-color: var(--green);
}

.checkbox-group.is-invalid .checkbox-grid {
  outline: 2px solid rgba(157, 46, 46, 0.36);
  outline-offset: 3px;
}

.checkbox-group.is-invalid .multi-select > summary {
  border-color: var(--danger);
  box-shadow: 0 0 0 2px rgba(157, 46, 46, 0.14);
}

.other-field[hidden] {
  display: none;
}

.role-requirements {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.role-requirements__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.role-requirements__heading h3,
.role-requirements__heading p,
.role-item h4 {
  margin: 0;
}

.role-requirements__heading h3 {
  font-size: 1rem;
}

.role-requirements__heading p {
  max-width: 520px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.add-role-button,
.remove-role-button {
  min-height: 38px;
  padding: 8px 11px;
  color: var(--green);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  font-size: 0.82rem;
  font-weight: 650;
  cursor: pointer;
}

.add-role-button:hover,
.remove-role-button:hover {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.add-role-button:disabled {
  color: var(--muted);
  background: var(--cool);
  cursor: not-allowed;
}

.role-list {
  margin-top: 24px;
  border-top: 1px solid var(--line-strong);
}

.role-item {
  padding: 24px 0 28px;
  border-bottom: 1px solid var(--line);
}

.role-item__header {
  min-height: 38px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.role-item h4 {
  font-size: 0.94rem;
}

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

.step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.step-actions .button:only-child {
  margin-left: auto;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 28px;
  border-top: 1px solid var(--line);
}

.review-item {
  min-width: 0;
  padding: 16px 18px 16px 0;
  border-bottom: 1px solid var(--line);
}

.review-item:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.review-item dt,
.review-item dd {
  margin: 0;
}

.review-item dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.review-item dd {
  overflow-wrap: anywhere;
  font-weight: 550;
}

.turnstile-container {
  display: flex;
  min-height: 0;
  padding: 0 40px;
}

.turnstile-container:not(:empty) {
  margin-bottom: 16px;
}

.status {
  min-height: 26px;
  margin: 0;
  padding: 0 40px 30px;
  font-size: 0.9rem;
}

.status.error {
  color: var(--danger);
}

.status.success {
  color: var(--success);
}

.status.warning {
  color: var(--warning);
}

.contact-hero {
  padding: 82px 0 58px;
}

.contact-hero h1 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 3.25rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-route {
  min-height: 260px;
  padding: 38px 42px 38px 0;
}

.contact-route + .contact-route {
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.contact-route h2 {
  margin-bottom: 14px;
  font-size: 1.8rem;
}

.contact-route p {
  color: var(--muted);
}

.contact-route a:not(.button) {
  display: inline-block;
  margin-top: 24px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.detail-rows {
  border-top: 1px solid var(--line);
}

.detail-row {
  display: grid;
  grid-template-columns: 60px 220px minmax(0, 1fr);
  gap: 26px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.detail-row span:first-child {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 750;
}

.detail-row strong {
  font-weight: 650;
}

.detail-row p {
  margin: 0;
  color: var(--muted);
}

.closing-cta {
  padding: 58px 0;
  color: var(--white);
  background: var(--green-dark);
}

.closing-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.closing-cta h2,
.closing-cta p {
  margin-bottom: 0;
}

.closing-cta h2 {
  font-size: 2rem;
}

.closing-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.closing-cta .action-row {
  margin-top: 0;
  flex: 0 0 auto;
}

.closing-cta .button {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.closing-cta .button.secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.48);
}

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  padding: 46px 0 30px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.55fr);
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 12px;
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
  list-style: none;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  padding: 18px 0 24px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.76rem;
}

@media (max-width: 1300px) {
  .home-hero {
    min-height: 0;
    padding-top: min(400px, 34vw);
  }

  .home-hero__media {
    height: min(400px, 34vw);
    object-position: center;
  }

  .home-hero__inner {
    min-height: 0;
    align-items: stretch;
  }

  .home-hero__copy {
    width: 100%;
    padding: 40px 0 46px;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 2.85rem;
  }

  .home-hero h1,
  .inner-hero h1,
  .contact-hero h1 {
    font-size: 2.85rem;
  }

  .home-hero__copy {
    width: 100%;
  }

  .section-heading,
  .trust-layout,
  .inner-hero__grid,
  .form-shell {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-context {
    position: static;
    max-width: 680px;
  }

  .consultation-band__inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .consultation-band__inner > strong {
    grid-column: 1 / -1;
  }

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

@media (max-width: 760px) {
  .container,
  .wide-container,
  .header-inner,
  .footer-grid,
  .footer-bottom {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-inner {
    min-height: 0;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 9px 16px;
    font-size: 0.82rem;
  }

  .lang-switch {
    margin-left: auto;
    padding-left: 14px;
  }

  h1 {
    font-size: 2.25rem;
  }

  .home-hero h1,
  .inner-hero h1,
  .contact-hero h1 {
    font-size: 2.25rem;
  }

  .trust-heading--cn {
    font-size: 1.35rem;
  }

  h2 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }

  .home-hero {
    min-height: 0;
    padding-top: 260px;
  }

  .home-hero__media {
    height: 260px;
    object-position: 68% center;
  }

  .home-hero__inner {
    min-height: 0;
    align-items: stretch;
  }

  .home-hero__copy {
    width: 100%;
    margin-left: 0;
    padding: 32px 0 36px;
    background: transparent;
  }

  .home-hero h1 span {
    white-space: nowrap;
  }

  .section,
  .form-stage {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .audience-split,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .audience-link,
  .audience-link + .audience-link,
  .contact-route,
  .contact-route + .contact-route {
    min-height: 0;
    padding: 30px 0;
    border-left: 0;
  }

  .audience-link + .audience-link,
  .contact-route + .contact-route {
    border-top: 1px solid var(--line);
  }

  .audience-link h3 {
    margin-top: 22px;
  }

  .audience-link strong {
    margin-top: 18px;
  }

  .proof-grid li,
  .proof-grid li + li {
    padding: 22px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .inner-hero,
  .contact-hero {
    padding: 58px 0 46px;
  }

  .consultation-band__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .consultation-band__inner > strong {
    grid-column: auto;
  }

  .form-progress li {
    min-height: 62px;
    padding: 12px 10px;
    justify-content: center;
    text-align: center;
    font-size: 0.74rem;
  }

  .form-progress b {
    display: none;
  }

  .form-step {
    padding: 28px 20px 30px;
  }

  .form-grid,
  .review-list,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .multi-select__menu {
    position: static;
    width: 100%;
    max-height: none;
    margin-top: 6px;
    box-shadow: none;
  }

  .multi-select__menu--columns {
    grid-template-columns: 1fr;
  }

  .employer-page .checkbox-grid {
    grid-template-columns: 1fr;
  }

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

  .add-role-button {
    align-self: flex-start;
  }

  .review-item,
  .review-item:nth-child(even) {
    padding: 14px 0;
    border-left: 0;
  }

  .status {
    padding: 0 20px 24px;
  }

  .turnstile-container {
    padding: 0 20px;
  }

  .detail-row {
    grid-template-columns: 42px 1fr;
    gap: 10px 18px;
  }

  .detail-row p {
    grid-column: 2;
  }

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

  .closing-cta .action-row {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: 2.2rem;
  }

  .home-hero h1,
  .inner-hero h1 {
    font-size: 1.75rem;
  }

  .employer-page .inner-hero h1 {
    font-size: 1.6rem;
  }

  .trust-heading--cn {
    font-size: 1.2rem;
  }

  .home-hero h1 span,
  .inner-hero h1 span {
    white-space: nowrap;
  }

  .button {
    min-height: 46px;
    padding-inline: 16px;
  }

  .phone-control {
    grid-template-columns: 1fr;
  }

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

  .action-row .button {
    width: 100%;
  }

  .step-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .step-actions .button,
  .step-actions .button:only-child {
    width: 100%;
    margin-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
