:root {
  --navy: #16204d;
  --ink: #252b4f;
  --muted: #69708e;
  --purple: #4b4ecf;
  --purple2: #6c57d6;
  --mint: #1f9d88;
  --bg: #f7f7fc;
  --line: #e5e6f0;
  --card: #fff;
  --danger: #a83a45;
  --shadow: 0 18px 55px rgba(22, 32, 77, 0.09);
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Quicksand, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
a {
  color: inherit;
}
.skip {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip:focus {
  top: 12px;
}
.site-header {
  height: 70px;
  padding: 0 clamp(18px, 5vw, 78px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--navy);
}
.brand strong {
  font-size: 19px;
}
.brand span {
  padding-left: 9px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-header nav a,
.site-footer a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.site-header nav a:not(.outline):hover {
  color: var(--purple);
}
.outline {
  padding: 10px 16px;
  border: 1px solid #d9d9e8;
  border-radius: 999px;
}
.jobs-hero {
  padding: 68px clamp(18px, 7vw, 110px) 48px;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(95, 201, 180, 0.18),
      transparent 30%
    ),
    linear-gradient(145deg, #fbfbff, #f0effc);
}
.jobs-hero > div {
  max-width: 760px;
}
.eyebrow {
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.jobs-hero h1 {
  max-width: 15ch;
  margin: 10px 0 14px;
  color: var(--navy);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.jobs-hero p {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.hero-search {
  max-width: 1040px;
  margin: 38px 0 0;
  padding: 12px;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.hero-search label {
  padding: 3px 14px;
  border-right: 1px solid var(--line);
}
.hero-search label span {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
}
.hero-search input {
  width: 100%;
  padding: 5px 0;
  border: 0;
  outline: 0;
  color: var(--ink);
}
.hero-search button,
.primary {
  border: 0;
  border-radius: 12px;
  padding: 13px 22px;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 9px 22px rgba(75, 78, 207, 0.24);
}
.jobs-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 38px 24px 70px;
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 28px;
}
.filters {
  min-width: 0;
  margin: 0;
  align-self: start;
  padding: 20px;
  display: grid;
  gap: 17px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  position: sticky;
  top: 92px;
}
.filters-title {
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filters-title button {
  border: 0;
  background: transparent;
  color: var(--purple);
  font-size: 12px;
  cursor: pointer;
}
.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;
}
.filters label,
.results-head label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}
.filters select,
.filters input,
.results-head select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}
.results-head {
  min-height: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.results-head > div > strong {
  color: var(--navy);
  font-size: 18px;
}
.results-head label {
  min-width: 170px;
}
.results-actions {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.results-actions > button {
  min-height: 39px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.active-filters {
  margin-top: 9px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip {
  padding: 5px 9px;
  border: 1px solid #dcd8f5;
  border-radius: 999px;
  background: #f5f3ff;
  color: #5142a5;
  font-size: 11px;
}
.chip button {
  margin-left: 5px;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}
.status:empty {
  display: none;
}
.status {
  margin: 18px 0;
  padding: 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
}
.jobs-list {
  margin-top: 17px;
  display: grid;
  gap: 12px;
}
.job-card {
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  transition:
    transform 0.16s,
    border-color 0.16s,
    box-shadow 0.16s;
}
.job-card:hover {
  transform: translateY(-2px);
  border-color: #cfcaf0;
  box-shadow: 0 14px 38px rgba(22, 32, 77, 0.08);
}
.job-card h2 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 19px;
}
.job-company {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
}
.job-card p {
  margin: 11px 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}
.job-meta,
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.badge {
  padding: 5px 9px;
  border-radius: 999px;
  background: #f1f2f8;
  color: #59607f;
  font-size: 11px;
  font-weight: 600;
}
.badge.salary {
  background: #eaf7f3;
  color: #19755f;
}
.badge.applied {
  background: #eeecff;
  color: var(--purple);
}
.job-card .arrow {
  align-self: center;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f2f0fb;
  color: var(--purple);
  font-size: 20px;
}
.seen {
  opacity: 0.78;
}
.seen::after {
  content: "Visualizada";
  justify-self: end;
  color: var(--muted);
  font-size: 10px;
}
.pagination {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.pagination button {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
}
.pagination button[aria-current] {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}
.empty {
  padding: 50px 28px;
  text-align: center;
  background: #fff;
  border: 1px dashed #d7d5e4;
  border-radius: 16px;
}
.empty h2 {
  color: var(--navy);
}
.job-detail,
.company-detail {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 24px 80px;
}
.detail-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--purple);
  font-weight: 700;
  text-decoration: none;
}
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
}
.detail-main,
.detail-aside,
.company-hero {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.detail-main {
  padding: clamp(24px, 4vw, 46px);
}
.detail-aside {
  align-self: start;
  padding: 22px;
  position: sticky;
  top: 92px;
}
.detail-head h1 {
  max-width: 20ch;
  margin: 12px 0;
  color: var(--navy);
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.08;
}
.detail-head .company-link {
  color: var(--purple);
  font-weight: 700;
  text-decoration: none;
}
.detail-section {
  margin-top: 34px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}
.detail-section h2 {
  margin: 0 0 13px;
  color: var(--navy);
  font-size: 19px;
}
.detail-section p,
.detail-section li {
  color: #4f5778;
  line-height: 1.7;
}
.detail-section ul {
  padding-left: 20px;
}
.detail-aside .primary {
  width: 100%;
  display: block;
  text-align: center;
  text-decoration: none;
}
.detail-aside button.secondary {
  width: 100%;
  margin-top: 9px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
}
.detail-aside button.secondary:disabled {
  cursor: wait;
  opacity: 0.65;
}
.save-profile-help {
  margin: 8px 2px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
.save-profile-help .error {
  color: #9a4c50;
}
.save-profile-help a {
  color: var(--purple);
  font-weight: 700;
}
.detail-aside dl {
  margin: 20px 0 0;
  display: grid;
  gap: 13px;
}
.detail-aside dl div {
  display: grid;
  gap: 2px;
}
.detail-aside dt {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.detail-aside dd {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}
.privacy-link,
.privacy-contact {
  display: block;
  margin-top: 14px;
  color: var(--purple);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}
.privacy-contact {
  margin-top: 7px;
  color: var(--muted);
  font-weight: 600;
}
.job-report-control {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.job-report-trigger {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.job-report-trigger:hover,
.job-report-trigger:focus-visible {
  color: #a74449;
}
.job-report-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(21, 17, 39, 0.64);
  backdrop-filter: blur(4px);
}
.job-report-dialog {
  width: min(100%, 520px);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(26, 20, 55, 0.24);
}
.job-report-dialog h2 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}
.job-report-intro {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.job-report-form {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}
.job-report-form label {
  margin-top: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}
.job-report-form select,
.job-report-form textarea {
  width: 100%;
  border: 1px solid #d9d6e4;
  border-radius: 11px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: 13px;
}
.job-report-form select {
  min-height: 44px;
  padding: 0 12px;
}
.job-report-form textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
}
.job-report-form select:focus,
.job-report-form textarea:focus {
  border-color: var(--purple);
  outline: 3px solid rgba(101, 78, 210, 0.14);
}
.job-report-notice,
.job-report-feedback,
.job-report-success p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.job-report-notice a {
  color: var(--purple);
  font-weight: 700;
}
.job-report-feedback.error {
  color: #a74449;
}
.job-report-actions {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 12px;
}
.job-report-actions button,
.job-report-success button {
  border: 0;
  border-radius: 11px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}
.job-report-actions .primary,
.job-report-success .primary {
  padding: 12px 16px;
}
.job-report-actions .secondary {
  padding: 11px 15px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
}
.job-report-actions button:disabled {
  cursor: wait;
  opacity: 0.65;
}
.job-report-success {
  display: grid;
  justify-items: start;
  gap: 8px;
  padding: 18px;
  border-radius: 13px;
  background: #effaf6;
  color: #276a53;
}
.job-report-success strong {
  font-size: 16px;
}
.aside-identity {
  display: none;
}
.stages {
  counter-reset: stage;
  display: grid;
  gap: 12px;
  padding: 0 !important;
  list-style: none;
}
.stages li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.stages li::before {
  counter-increment: stage;
  content: counter(stage);
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  background: #efedfb;
  color: var(--purple);
  font-size: 11px;
  font-weight: 700;
}
.ai-notice {
  padding: 15px;
  border-radius: 12px;
  background: #f4f3fd;
  color: #494176 !important;
}
.related-jobs {
  margin-top: 30px;
}
.related-jobs h2 {
  color: var(--navy);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.application {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.application h2 {
  margin: 0;
  color: var(--navy);
}
.application-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.application-progress::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16%;
  left: 16%;
  height: 2px;
  background: #e5e2f2;
}
.application-progress li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}
.application-progress li span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid #e5e2f2;
  border-radius: 50%;
  background: #fff;
  color: #756d82;
  font-weight: 800;
}
.application-progress li strong {
  font-size: inherit;
}
.application-progress li.current,
.application-progress li.complete {
  color: var(--navy);
}
.application-progress li.current span {
  border-color: var(--purple);
  background: var(--purple);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(101, 78, 210, 0.12);
}
.application-progress li.complete span {
  border-color: #42a98c;
  background: #eaf8f3;
  color: #23775f;
}
.application-step {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.application-step[hidden] {
  display: none;
}
.application-step-eyebrow {
  display: block;
  color: var(--purple);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.application-step h3 {
  margin: 7px 0 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}
.application-step-description {
  max-width: 660px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.application-step-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.application-step-actions.split {
  justify-content: space-between;
}
.application-step-actions button {
  min-height: 44px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}
.application-step-actions .outline {
  padding: 11px 18px;
  border-radius: 11px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}
.profile-reuse {
  margin-top: 18px;
  padding: 14px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #d8d4ef;
  border-radius: 12px;
  background: linear-gradient(135deg, #f7f5ff, #f2fbf8);
}
.profile-reuse > div {
  min-width: 0;
}
.profile-reuse strong,
.profile-reuse small,
.profile-reuse-eyebrow {
  display: block;
}
.profile-reuse strong {
  color: var(--navy);
  font-size: 13px;
}
.profile-reuse small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}
.profile-reuse-eyebrow {
  margin-bottom: 4px;
  color: var(--purple);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.profile-reuse.used {
  border-color: #84c8b4;
  background: #effaf6;
}
.profile-reuse .outline,
.profile-reuse .text-link {
  flex: none;
  white-space: nowrap;
}
.profile-reuse .text-link {
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
}
.draft-status {
  display: block;
  margin-top: 9px;
  color: #756d82;
  font-size: 11px;
}
.application-disclosure {
  margin-top: 18px;
  padding: 14px 15px;
  border-left: 3px solid #6d57d6;
  border-radius: 0 10px 10px 0;
  background: #f8f7fc;
}
.application-disclosure strong {
  color: var(--navy);
  font-size: 12px;
}
.application-disclosure p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.form-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}
.field.full {
  grid-column: 1/-1;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #dcdde8;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}
.field textarea {
  min-height: 105px;
  resize: vertical;
}
.checks {
  margin: 18px 0;
  display: grid;
  gap: 11px;
}
.checks label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #515875;
  font-size: 13px;
  line-height: 1.5;
}
.checks input {
  margin-top: 3px;
}
.form-error {
  padding: 12px;
  border-radius: 10px;
  background: #fff0f1;
  color: var(--danger);
  font-size: 13px;
}
.upload-status {
  margin-bottom: 12px;
  padding: 11px 12px;
  border: 1px solid #d8d4ef;
  border-radius: 10px;
  background: #f7f5ff;
  color: #51467f;
  font-size: 12px;
  line-height: 1.5;
}
.upload-status[hidden] {
  display: none;
}
.success {
  padding: 26px;
  border-radius: 14px;
  background: #edf9f5;
  color: #176b56;
}
.company-hero {
  padding: clamp(26px, 5vw, 56px);
  display: flex;
  align-items: center;
  gap: 24px;
}
.company-logo {
  width: 104px;
  height: 74px;
  object-fit: contain;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.company-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
}
.company-hero p {
  max-width: 700px;
  color: var(--muted);
  line-height: 1.65;
}
.company-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.company-link.secondary {
  color: var(--muted);
}
.company-facts {
  margin-top: 18px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: linear-gradient(135deg, #f2efff, #edf9f5);
  border: 1px solid #ddd8f6;
  border-radius: 18px;
}
.company-facts > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.company-facts strong {
  color: var(--navy);
  font-size: 27px;
}
.company-facts span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.company-verification-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 13px;
  border-top: 1px solid rgba(81, 73, 172, 0.14);
  color: #176b56;
  font-size: 12px;
  font-weight: 700;
}
.company-purpose-grid,
.company-opportunity-profile {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.company-purpose-grid .company-about,
.company-opportunity-profile > article {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.company-purpose-grid span,
.section-kicker {
  color: var(--purple);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.company-purpose-grid h2,
.company-opportunity-profile h2 {
  margin: 7px 0 10px;
  color: var(--navy);
  font-size: 21px;
}
.company-purpose-grid p,
.company-section-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.company-chip-list,
.company-location-list {
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.company-chip,
.company-location-list li {
  padding: 8px 11px;
  border-radius: 999px;
  background: #f1f2f8;
  color: #4f5671;
  font-size: 12px;
  font-weight: 700;
}
.company-culture-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.company-culture-card {
  padding: 18px;
  border: 1px solid #e5e2f3;
  border-radius: 14px;
  background: #faf9ff;
}
.company-culture-card h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 15px;
}
.company-culture-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.company-section-note {
  margin-top: 14px;
  font-size: 12px;
}
.company-jobs {
  margin-top: 24px;
}
.company-about {
  padding: 24px clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.company-more-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
.company-load-more {
  display: block;
  margin: 24px auto 0;
}
.site-footer {
  padding: 28px clamp(18px, 5vw, 78px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.site-footer span {
  display: flex;
  align-items: center;
  gap: 8px;
}
html[data-accessibility-text="large"] body {
  zoom: 1.12;
}
html[data-accessibility-text="extra_large"] body {
  zoom: 1.25;
}
html[data-accessibility-contrast="high"] {
  --navy: #071335;
  --ink: #101426;
  --muted: #34394d;
  --purple: #302bad;
  --purple2: #4933bd;
  --mint: #08745f;
  --bg: #fff;
  --line: #858ba1;
  --shadow: none;
}
html[data-accessibility-contrast="high"] .candidate-panel,
html[data-accessibility-contrast="high"] .candidate-welcome,
html[data-accessibility-contrast="high"] .access-card,
html[data-accessibility-contrast="high"] .job-card,
html[data-accessibility-contrast="high"] .job-detail,
html[data-accessibility-contrast="high"] .company-detail {
  border-width: 2px;
}
html[data-accessibility-motion="reduce"] *,
html[data-accessibility-motion="reduce"] *::before,
html[data-accessibility-motion="reduce"] *::after {
  scroll-behavior: auto !important;
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}
html[data-accessibility-focus="enhanced"] *:focus-visible {
  outline: 4px solid #161a34 !important;
  outline-offset: 4px !important;
  box-shadow: 0 0 0 7px #fff !important;
}
*:focus-visible {
  outline: 3px solid rgba(75, 78, 207, 0.35);
  outline-offset: 3px;
}
@media (max-width: 820px) {
  .site-header nav a:not(.outline) {
    display: none;
  }
  .jobs-hero {
    padding-top: 45px;
  }
  .hero-search {
    grid-template-columns: 1fr;
  }
  .hero-search label {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 8px 10px;
  }
  .jobs-shell {
    grid-template-columns: 1fr;
    padding: 24px 16px 55px;
  }
  .filters {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
  .filters-title {
    grid-column: 1/-1;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .detail-aside {
    position: static;
    grid-row: 1;
  }
  .aside-identity {
    display: block;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
  }
  .aside-identity small {
    color: var(--purple);
    font-weight: 700;
  }
  .aside-identity h2 {
    margin: 5px 0 0;
    color: var(--navy);
    font-size: 22px;
    line-height: 1.15;
  }
  .job-detail,
  .company-detail {
    padding: 26px 15px 55px;
  }
}
@media (max-width: 560px) {
  .site-header {
    padding: 0 14px;
  }
  .brand span {
    display: none;
  }
  .outline {
    padding: 9px 11px;
    font-size: 11px !important;
  }
  .jobs-hero {
    padding-left: 18px;
    padding-right: 18px;
  }
  .jobs-hero h1 {
    font-size: 38px;
  }
  .job-report-dialog {
    padding: 22px 18px;
  }
  .job-report-actions {
    flex-direction: column-reverse;
  }
  .job-report-actions button,
  .job-report-success button {
    width: 100%;
  }
  .filters {
    grid-template-columns: 1fr;
  }
  .filters-title {
    grid-column: auto;
  }
  .results-head {
    align-items: stretch;
    flex-direction: column;
  }
  .results-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }
  .results-head label {
    min-width: 0;
  }
  .job-card {
    padding: 17px;
  }
  .job-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .application-progress {
    gap: 4px;
    margin-top: 20px;
  }
  .application-progress::before {
    right: 15%;
    left: 15%;
  }
  .application-progress li strong {
    max-width: 9ch;
    line-height: 1.25;
  }
  .application-step {
    margin-top: 18px;
    padding: 19px 15px;
  }
  .application-step h3 {
    font-size: 20px;
  }
  .application-step-actions,
  .application-step-actions.split {
    align-items: stretch;
    flex-direction: column-reverse;
    gap: 9px;
  }
  .application-step-actions button {
    width: 100%;
  }
  .field.full {
    grid-column: auto;
  }
  .profile-reuse {
    align-items: stretch;
    flex-direction: column;
  }
  .profile-reuse .outline,
  .profile-reuse .text-link {
    width: 100%;
    text-align: center;
  }
  .company-hero {
    align-items: flex-start;
    flex-direction: column;
  }
  .company-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 17px;
  }
  .company-facts strong {
    font-size: 22px;
  }
  .company-purpose-grid,
  .company-opportunity-profile,
  .company-culture-grid {
    grid-template-columns: 1fr;
  }
  .company-links a {
    flex: 1 1 auto;
    text-align: center;
  }
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-footer nav {
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
@media (prefers-contrast: more) {
  :root {
    --navy: #071335;
    --ink: #101426;
    --muted: #34394d;
    --purple: #302bad;
    --purple2: #4933bd;
    --mint: #08745f;
    --line: #858ba1;
    --shadow: none;
  }
}
