@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/instrument-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #071a24;
  --ink-soft: #0d2934;
  --ink-lift: #12343f;
  --teal: #246a6b;
  --aqua: #72c9c4;
  --copper: #c88e64;
  --copper-light: #efc09b;
  --paper: #f2f5f3;
  --warm: #ebe6de;
  --white: #fff;
  --text: #182b33;
  --muted: #56686d;
  --line: #d5dddb;
  --line-dark: #26404a;
  --success: #1b6a57;
  --error: #9b3e36;
  --display: "Instrument Sans", Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --container: 1240px;
  --shadow: 0 24px 70px rgba(7, 26, 36, 0.14);
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  overflow-x: clip;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3 {
  margin-bottom: 0.5em;
  color: var(--ink);
  font-weight: 560;
  line-height: 1.06;
  letter-spacing: -0.038em;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.65rem, 11vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 8vw, 3.8rem);
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

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

.external-window-indicator {
  display: inline-block;
  margin-left: 0.32em;
  font-size: 0.82em;
  font-weight: 760;
  line-height: 1;
  transform: translateY(-0.08em);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--teal);
}

.eyebrow,
.job-domain,
.job-status,
.track-tags,
.breadcrumbs,
dt {
  font-family: var(--mono);
  font-size: max(0.72rem, 12px);
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--teal);
}

.lead {
  color: var(--muted);
  font-size: clamp(1.02rem, 3.8vw, 1.25rem);
}

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

/* Keep backdrop-filter off this element: it would turn the sticky header into
   the containing block of the fixed mobile menu and clip that menu to 72px. */

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: auto;
  height: 28px;
}

.brand span {
  padding-left: 12px;
  color: #53666c;
  border-left: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 6px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
}

.nav-toggle span {
  width: 20px;
  height: 1px;
  background: var(--ink);
}

.site-nav {
  position: fixed;
  inset: 72px 0 0;
  display: none;
  align-content: start;
  padding: 30px 20px;
  background: var(--white);
}

.site-nav.is-open {
  display: grid;
}

.site-nav > a {
  display: flex;
  min-height: 55px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 600;
}

.site-nav > a[aria-current="page"] {
  color: var(--teal);
}

.site-nav > a[aria-current="page"]::before {
  width: 7px;
  height: 7px;
  margin-right: 10px;
  background: var(--copper);
  content: "";
}

.site-nav > .nav-cta[aria-current="page"] {
  color: var(--white);
  background: var(--ink-soft);
  box-shadow: inset 0 -3px var(--aqua);
}

.site-nav > .nav-cta[aria-current="page"]::before {
  display: none;
}

.site-nav svg,
.btn svg,
.text-link svg,
.stretched-link svg,
.corporate-link svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav .corporate-link {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 680;
  line-height: 1.2;
  text-align: center;
}

.btn-primary {
  color: var(--white);
  border-color: var(--teal);
  background: var(--teal);
}

.btn-primary:hover {
  border-color: #205e5f;
  background: #205e5f;
}

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

.btn-ghost,
.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(7, 26, 36, 0.18);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
}

.btn:disabled {
  color: #657478;
  border-color: #cbd2d3;
  background: #e5e9e9;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.text-link,
.stretched-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 680;
}

.career-hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - 72px);
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.career-hero > img,
.career-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.career-hero > img {
  object-fit: cover;
  object-position: 72% center;
}

.career-hero-shade {
  background: linear-gradient(180deg, rgba(5, 18, 26, 0.3), rgba(5, 18, 26, 0.94) 75%);
}

.career-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 22px 68px;
}

.career-hero .eyebrow,
.section-dark .eyebrow,
.final-cta .eyebrow,
.job-hero .eyebrow {
  color: var(--aqua);
}

.career-hero h1 {
  max-width: 930px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.35rem, 10.5vw, 5.7rem);
}

.career-hero-content > p:not(.eyebrow) {
  max-width: 700px;
  color: #c8d5d8;
  font-size: clamp(1rem, 4vw, 1.2rem);
  text-wrap: pretty;
}

.hero-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.hero-index {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 18, 26, 0.68);
  backdrop-filter: blur(9px);
}

.hero-index span {
  min-height: 50px;
  padding: 10px 5px;
  color: #b8c9cd;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--mono);
  font-size: 0.68rem;
  text-align: center;
}

.positioning {
  padding-block: 72px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.positioning-grid {
  display: grid;
  gap: 18px;
}

.positioning h2 {
  max-width: 860px;
}

.positioning .lead {
  max-width: 760px;
}

.section {
  padding-block: 82px;
}

.section-light {
  background: var(--white);
}

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

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 42px;
}

.section-head > p,
.section-head > .text-link {
  max-width: 580px;
  color: var(--muted);
}

.section-dark .section-head > p {
  color: #afc0c5;
}

.engagement-grid {
  display: grid;
  gap: 1px;
  padding: 1px;
  background: var(--line);
}

.engagement-grid article {
  min-height: 280px;
  padding: 30px;
  background: var(--paper);
}

.engagement-grid article > span,
.process-grid > li > span,
.principle-list article > span,
.selection-steps > li > span {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.74rem;
}

.process-grid > li > span {
  color: var(--aqua);
}

.engagement-grid h3 {
  margin-top: 60px;
  font-size: clamp(1.65rem, 6vw, 2.35rem);
}

.engagement-grid p {
  color: var(--muted);
}

.engagement-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
  padding-top: 18px;
  color: var(--teal);
  border-top: 1px solid var(--line);
  font-weight: 680;
}

.engagement-grid svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.job-grid {
  display: grid;
  gap: 16px;
}

.job-card {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.job-card:hover {
  z-index: 2;
  border-color: #9ab8b5;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.job-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 26px;
}

.track-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.track-tags span {
  padding: 5px 8px;
  color: #285f60;
  border: 1px solid #a5cbc7;
  background: #edf7f5;
}

.work-mode {
  padding: 5px 8px;
  color: #72513c;
  border: 1px solid #d9bba5;
  background: #fbf2ec;
  font-family: var(--mono);
  font-size: max(0.72rem, 12px);
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.job-domain {
  margin-bottom: 9px;
  color: var(--teal);
}

.job-card h2 {
  font-size: clamp(1.55rem, 6vw, 2.15rem);
}

.job-card > p:not(.job-domain) {
  color: var(--muted);
  font-size: 0.96rem;
}

.job-card dl {
  display: grid;
  gap: 10px;
  margin-block: auto 24px;
  padding-top: 25px;
}

.job-card dl div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  padding-top: 9px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 620;
  overflow-wrap: anywhere;
}

.stretched-link {
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.stretched-link::after {
  position: absolute;
  inset: 0;
  content: "";
}

.process-grid {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: var(--line-dark);
  list-style: none;
}

.process-grid li {
  min-height: 210px;
  padding: 25px;
  background: var(--ink-soft);
}

.process-grid h3 {
  margin-top: 50px;
}

.process-grid p {
  color: #aebfc4;
  font-size: 0.9rem;
}

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

.principles-grid {
  display: grid;
  gap: 45px;
}

.principle-list {
  border-top: 1px solid #bfc5c1;
}

.principle-list article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 8px 16px;
  padding-block: 23px;
  border-bottom: 1px solid #bfc5c1;
}

.principle-list h3,
.principle-list p {
  margin-bottom: 0;
}

.principle-list p {
  grid-column: 2;
  color: var(--muted);
}

.final-cta {
  padding-block: 78px;
  color: var(--white);
  background: linear-gradient(120deg, #0e3842, var(--ink));
}

.final-cta h2 {
  max-width: 900px;
  color: var(--white);
}

.final-cta > .container > p:not(.eyebrow) {
  max-width: 650px;
  color: #bed0d3;
}

.final-cta > .container > div {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.site-footer {
  color: #9cafb5;
  background: #04151d;
}

.footer-grid {
  display: grid;
  gap: 35px;
  padding-block: 55px 40px;
}

.footer-intro img {
  width: auto;
  height: 30px;
  margin-bottom: 18px;
  filter: grayscale(1) brightness(4);
}

.footer-intro p {
  max-width: 360px;
  font-size: 0.88rem;
}

.footer-grid h2 {
  margin-bottom: 16px;
  color: var(--aqua);
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-intro) {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-grid a {
  font-size: 0.85rem;
}

.footer-grid a:hover,
.legal-row a:hover {
  color: var(--white);
}

.legal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding-block: 20px;
  border-top: 1px solid #203943;
  font-size: 0.74rem;
}

.legal-row span {
  flex-basis: 100%;
}

.page-hero,
.job-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero {
  display: flex;
  min-height: min(500px, calc(100svh - 72px));
  align-items: center;
  padding-block: 55px;
}

.page-hero::after,
.job-hero::after {
  position: absolute;
  right: -180px;
  bottom: -270px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(114, 201, 196, 0.19);
  box-shadow: 0 0 0 70px rgba(114, 201, 196, 0.025), 0 0 0 140px rgba(114, 201, 196, 0.018);
  content: "";
  transform: rotate(30deg);
}

.page-hero > .container,
.job-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: var(--aqua);
}

.page-hero h1 {
  max-width: 960px;
  color: var(--white);
}

.application-hero h1 {
  max-width: 820px;
}

.application-hero > .container > p:last-of-type {
  max-width: 760px;
}

.page-hero > .container > p:last-child {
  max-width: 740px;
  color: #becdd1;
  font-size: 1.05rem;
}

.jobs-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  margin-bottom: 28px;
  padding: 15px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(10, 35, 44, 0.05);
}

.jobs-filter-toggle {
  position: relative;
  display: flex;
  min-height: 42px;
  align-self: end;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 34px 8px 12px;
  color: var(--teal);
  border: 1px solid #a9bcba;
  background: #f6f9f8;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 680;
  cursor: pointer;
}

.jobs-filter-toggle::after {
  position: absolute;
  width: 8px;
  height: 8px;
  right: 15px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.filters-open .jobs-filter-toggle::after {
  transform: translateY(2px) rotate(225deg);
}

.jobs-filter-count {
  display: inline-grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  padding-inline: 5px;
  color: var(--white);
  border-radius: 999px;
  background: var(--teal);
  font-size: 0.7rem;
}

.jobs-filter-options {
  display: none;
  grid-column: 1 / -1;
  gap: 10px;
  padding-top: 4px;
}

.filters-open .jobs-filter-options {
  display: grid;
}

.section.jobs-section {
  padding-top: 48px;
  background: #f2f5f4;
}

.jobs-toolbar label,
.field label {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 680;
}

.jobs-toolbar input,
.jobs-toolbar select,
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 9px 12px;
  color: var(--ink);
  border: 1px solid #b9c5c4;
  border-radius: 2px;
  background: var(--white);
}

.jobs-toolbar input:focus,
.jobs-toolbar select:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  outline: 3px solid var(--white);
  outline-offset: 1px;
  box-shadow: 0 0 0 4px var(--teal);
}

.jobs-toolbar-status {
  display: flex;
  grid-column: 1 / -1;
  min-height: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.jobs-toolbar-status p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.jobs-toolbar-status strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.jobs-toolbar-status button {
  padding: 0;
  color: var(--teal);
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
}

.empty-state {
  padding: 50px 25px;
  border: 1px solid var(--line);
  text-align: center;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 55px;
  color: #91a8af;
}

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

.job-hero {
  padding-block: 35px 65px;
}

.job-hero-grid {
  display: grid;
  gap: 40px;
}

.job-hero h1 {
  max-width: 850px;
  color: var(--white);
  font-size: clamp(2.55rem, 10vw, 5rem);
}

.job-hero .lead {
  max-width: 720px;
  color: #c3d1d5;
}

.job-hero .track-tags {
  margin-bottom: 20px;
}

.job-hero aside {
  padding: 23px;
  border: 1px solid var(--line-dark);
  background: rgba(15, 45, 57, 0.75);
}

.job-mobile-facts {
  padding-block: 20px;
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink-soft);
}

.job-mobile-facts dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line-dark);
}

.job-mobile-facts dl div {
  min-height: 95px;
  padding: 12px;
  background: var(--ink-soft);
}

.job-mobile-facts dt {
  color: #8fa4ab;
}

.job-mobile-facts dd {
  margin-top: 4px;
  color: var(--white);
  font-size: 0.76rem;
}

.job-hero aside dl {
  margin: 0;
}

.job-hero aside dl div {
  padding-block: 13px;
  border-top: 1px solid var(--line-dark);
}

.job-hero aside dt {
  color: #8fa4ab;
}

.job-hero aside dd {
  margin-top: 3px;
  color: var(--white);
  font-size: 0.9rem;
}

.role-purpose {
  padding-block: 72px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.role-purpose h2 {
  max-width: 980px;
  font-size: clamp(1.9rem, 7vw, 3.25rem);
}

.role-path {
  display: grid;
  gap: 1px;
  margin: 45px 0 0;
  padding: 1px;
  background: var(--line);
  list-style: none;
}

.role-path li {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--paper);
  font-weight: 680;
}

.role-path span {
  color: var(--teal);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.role-layout {
  display: grid;
  gap: 50px;
}

.responsibility-list,
.criteria-grid ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.responsibility-list li,
.criteria-grid li {
  position: relative;
  padding: 17px 0 17px 27px;
  border-top: 1px solid var(--line);
}

.responsibility-list li::before,
.criteria-grid li::before {
  position: absolute;
  top: 25px;
  left: 2px;
  width: 7px;
  height: 7px;
  background: var(--copper);
  content: "";
}

.output-panel {
  align-self: start;
  padding: 28px;
  color: var(--white);
  background: var(--ink);
}

.output-panel > .eyebrow {
  color: var(--aqua);
}

.output-panel ol {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.output-panel li {
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr);
  gap: 12px;
  padding-block: 17px;
  border-top: 1px solid var(--line-dark);
}

.output-panel li span {
  color: var(--aqua);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.criteria-grid {
  display: grid;
  gap: 15px;
}

.criteria-grid article {
  padding: 27px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.criteria-grid h3 {
  font-size: 1.4rem;
}

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

.selection-section > .container {
  display: grid;
  gap: 45px;
}

.selection-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid #bfc5c1;
  list-style: none;
}

.selection-steps li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 15px;
  padding-block: 22px;
  border-bottom: 1px solid #bfc5c1;
}

.selection-steps h3 {
  margin-bottom: 5px;
}

.selection-steps p {
  margin: 0;
  color: var(--muted);
}

.form-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 30px;
}

.form-facts span {
  padding: 7px 9px;
  color: #c4d4d7;
  border: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.application-section {
  padding-block: 55px 85px;
}

.application-shell {
  display: grid;
  gap: 24px;
}

.application-unavailable {
  max-width: 820px;
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid var(--line);
  background: var(--white);
}

.application-unavailable h2 {
  max-width: 650px;
  margin-bottom: 16px;
}

.application-unavailable > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--muted);
}

.application-steps {
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.progress-rail {
  height: 4px;
  margin-bottom: 20px;
  overflow: hidden;
  background: #dfe6e4;
}

.progress-rail span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--teal);
  transition: width 180ms ease;
}

.progress-rail span[data-step="2"] {
  width: 50%;
}

.progress-rail span[data-step="3"] {
  width: 75%;
}

.progress-rail span[data-step="4"] {
  width: 100%;
}

.application-steps ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.application-steps li {
  color: #5f7277;
  font-family: var(--mono);
  font-size: 0.68rem;
}

.application-steps li div {
  display: none;
}

.application-steps li.is-active,
.application-steps li.is-complete {
  color: var(--teal);
}

.application-form {
  padding: 25px;
  border: 1px solid var(--line);
  background: var(--white);
}

.form-step {
  display: none;
}

.form-step.is-active {
  display: block;
}

.form-step h2 {
  max-width: 720px;
  font-size: clamp(1.75rem, 7vw, 2.8rem);
}

.step-intro {
  max-width: 680px;
  color: var(--muted);
}

.track-choice {
  display: grid;
  gap: 12px;
  min-width: 0;
  padding: 0;
  margin-top: 30px;
  border: 0;
}

.track-choice label {
  cursor: pointer;
}

.track-choice input {
  position: absolute;
  opacity: 0;
}

.track-choice label > span {
  display: grid;
  gap: 8px;
  min-height: 140px;
  align-content: center;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.track-choice input:checked + span {
  border-color: var(--teal);
  box-shadow: inset 5px 0 0 var(--teal);
  background: #edf6f4;
}

.track-choice input:focus-visible + span {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--teal);
}

.track-choice strong {
  color: var(--ink);
  font-size: 1.15rem;
}

.track-choice small {
  color: var(--muted);
  font-size: 0.85rem;
}

.field-grid {
  display: grid;
  gap: 19px;
  margin-top: 30px;
}

.field label > span,
.check strong {
  color: var(--error);
}

.field textarea {
  min-height: 155px;
  resize: vertical;
}

.field > small,
.file-field p {
  display: block;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.required-fields-note {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.required-fields-note span {
  color: var(--error);
  font-weight: 700;
}

.file-field input {
  padding: 9px;
}

.check {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  font-weight: 400 !important;
}

.check input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.check a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.independence-note,
.human-review {
  margin-top: 24px;
  padding: 17px;
  border-left: 4px solid var(--copper);
  background: var(--warm);
}

.independence-note p,
.human-review p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.form-actions {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.form-actions [data-next],
.form-actions [data-submit] {
  margin-left: auto;
}

.form-error {
  margin-top: 20px;
  padding: 13px;
  color: #742e29;
  border: 1px solid #d7aaa5;
  background: #faecea;
}

.field [aria-invalid="true"] {
  border-color: var(--error);
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
}

.application-success {
  padding: 45px 25px;
  border: 1px solid #a9ccc1;
  background: #edf7f3;
}

.application-success > span {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--success);
}

.privacy-content {
  background: var(--white);
}

.article-body p a:not(.btn):not(.text-link),
.article-body li a:not(.btn):not(.text-link) {
  color: var(--teal);
  font-weight: 620;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-grid {
  display: grid;
  gap: 45px;
}

.article-grid aside {
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.article-grid aside ul {
  margin: 0;
  padding-left: 20px;
}

.article-body {
  max-width: 780px;
}

.article-body section {
  padding-block: 10px 34px;
  border-bottom: 1px solid var(--line);
}

.article-body section + section {
  padding-top: 34px;
}

.article-body h2 {
  font-size: clamp(1.55rem, 5vw, 2.1rem);
}

.article-body p {
  color: var(--muted);
}

@media (max-width: 480px) and (max-height: 680px) {
  .page-hero {
    min-height: 0;
    padding-block: 24px;
  }

  .page-hero h1 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .page-hero > .container > p:last-of-type {
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .form-facts {
    gap: 5px;
    margin-top: 14px;
  }

  .form-facts span {
    padding: 5px 7px;
  }

}

@media (max-width: 639px) {
  .career-hero-content {
    padding-bottom: 38px;
  }

  .hero-index {
    display: none;
  }

  .section {
    padding-block: 68px;
  }

  .job-card {
    padding: 22px;
  }

  .job-card dl div {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .final-cta {
    padding-block: 68px;
  }
}

@media (max-width: 359px) {
  .brand {
    gap: 8px;
  }

  .brand img {
    height: 25px;
  }

  .brand span {
    padding-left: 8px;
    font-size: 0.65rem;
  }

  .job-mobile-facts dl {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 640px) {
  .container {
    width: min(100% - 64px, var(--container));
  }

  .hero-actions,
  .final-cta > .container > div {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-index {
    grid-template-columns: repeat(5, 1fr);
  }

  .hero-index span {
    min-height: 50px;
    padding: 15px 22px;
    border-bottom: 0;
  }


  .engagement-grid,
  .job-grid,
  .criteria-grid,
  .track-choice,
  .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .footer-intro {
    grid-column: 1 / -1;
  }

  .legal-row span {
    flex: 1 1 auto;
  }

  .jobs-toolbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
  }

  .job-search-field,
  .jobs-toolbar-status {
    grid-column: 1 / -1;
  }

  .jobs-filter-toggle {
    display: none;
  }

  .jobs-filter-options,
  .filters-open .jobs-filter-options {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
  }

  .job-hero .hero-actions {
    display: flex;
  }

  .application-form {
    padding: 38px;
  }
}

@media (min-width: 720px) {
  .jobs-toolbar {
    grid-template-columns: minmax(210px, 0.75fr) minmax(0, 1.55fr);
  }

  .job-search-field,
  .jobs-filter-options,
  .filters-open .jobs-filter-options {
    grid-column: auto;
  }
}

@media (max-width: 959px) {
  .job-hero {
    min-height: calc(100svh - 72px);
    padding-block: 24px;
  }

  .job-hero .breadcrumbs {
    margin-bottom: 26px;
  }

  .job-hero-grid {
    gap: 18px;
  }

  .job-hero-grid > div > .track-tags {
    margin-bottom: 13px;
  }

  .job-hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.15rem);
  }

  .job-hero .lead {
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .job-hero aside {
    display: none;
  }
}

@media (max-width: 480px) and (max-height: 680px) {
  .job-hero {
    min-height: 0;
    padding-block: 14px 18px;
  }

  .job-hero .breadcrumbs {
    margin-bottom: 11px;
  }

  .job-hero h1 {
    margin-bottom: 10px;
    font-size: clamp(1.9rem, 8.7vw, 2.4rem);
  }

  .job-hero .lead {
    margin-bottom: 8px;
    font-size: 0.86rem;
  }
}

@media (min-width: 960px) {
  .site-header {
    height: 78px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    height: 100%;
    align-items: center;
    padding: 0;
    background: none;
  }

  .site-nav > a {
    min-height: 100%;
    padding-inline: 13px;
    border: 0;
    font-size: 0.82rem;
  }

  .site-nav > a[aria-current="page"] {
    box-shadow: inset 0 -3px 0 var(--teal);
  }

  .site-nav > a[aria-current="page"]::before {
    display: none;
  }

  .site-nav .nav-cta {
    min-height: 43px;
    margin-left: 9px;
    padding-inline: 17px;
    color: var(--white);
    background: var(--teal);
  }

  .site-nav .corporate-link {
    min-height: 43px;
    margin-left: 8px;
    padding-inline: 13px;
    border-left: 1px solid var(--line);
  }

  .career-hero {
    min-height: calc(100svh - 78px);
  }

  .career-hero > img {
    object-position: center;
  }

  .career-hero-shade {
    background: linear-gradient(90deg, rgba(4, 17, 24, 0.95) 0, rgba(4, 17, 24, 0.72) 46%, rgba(4, 17, 24, 0.05) 76%);
  }

  .career-hero-content {
    padding-block: 75px 105px;
  }

  .positioning,
  .role-purpose {
    padding-block: 105px;
  }

  .positioning-grid {
    grid-template-columns: 210px minmax(0, 1.3fr) minmax(320px, 0.7fr);
    gap: 45px;
    align-items: start;
  }

  .section {
    padding-block: 112px;
  }

  .section.jobs-section {
    padding-top: 64px;
  }

  .section-head {
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
    gap: 80px;
    align-items: end;
    margin-bottom: 55px;
  }

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

  .engagement-grid article {
    min-height: 360px;
    padding: 42px;
  }

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

  .job-card {
    min-height: 455px;
    padding: 30px;
  }

  .jobs-toolbar {
    position: sticky;
    z-index: 30;
    top: 94px;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.7fr);
    padding: 20px 22px;
  }

  .job-search-field {
    grid-column: auto;
  }

  .jobs-filter-options,
  .filters-open .jobs-filter-options {
    grid-column: auto;
  }

  .jobs-toolbar-status {
    grid-column: 1 / -1;
    min-width: 0;
  }

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

  .principles-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
    gap: 100px;
  }

  .final-cta {
    padding-block: 105px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
    gap: 70px;
  }

  .footer-intro {
    grid-column: auto;
  }

  .page-hero {
    min-height: min(520px, calc(100svh - 78px));
  }

  .job-hero {
    min-height: min(650px, calc(100svh - 78px));
    display: flex;
    align-items: center;
  }

  .job-hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
    gap: 75px;
    align-items: end;
  }

  .job-hero aside {
    padding: 30px;
  }

  .job-mobile-facts {
    display: none;
  }

  .role-path {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .role-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(350px, 0.8fr);
    gap: 90px;
  }

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

  .selection-section > .container {
    grid-template-columns: minmax(0, 0.75fr) minmax(500px, 1.25fr);
    gap: 90px;
  }

  .application-shell {
    grid-template-columns: 270px minmax(0, 1fr);
    align-items: start;
    gap: 28px;
  }

  .application-steps {
    position: sticky;
    top: 105px;
    padding: 28px;
  }

  .progress-rail {
    display: none;
  }

  .application-steps ol {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .application-steps li {
    display: grid;
    grid-template-columns: 33px minmax(0, 1fr);
    gap: 12px;
    padding-block: 17px;
    border-bottom: 1px solid var(--line);
  }

  .application-steps li div {
    display: grid;
    gap: 2px;
  }

  .application-steps li strong {
    color: var(--ink);
    font-family: var(--display);
    font-size: 0.88rem;
    letter-spacing: 0;
  }

  .application-steps li small {
    color: var(--muted);
    font-family: var(--display);
    font-size: 0.72rem;
    letter-spacing: 0;
  }

  .article-grid {
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 80px;
  }

  .article-grid aside {
    position: sticky;
    top: 110px;
  }
}

@media (min-width: 1180px) {
  .site-nav > a {
    padding-inline: 17px;
    font-size: 0.86rem;
  }

  .jobs-toolbar {
    grid-template-columns: minmax(250px, 0.9fr) minmax(540px, 1.9fr) auto;
  }

  .jobs-toolbar-status {
    grid-column: auto;
    min-width: 170px;
  }
}

@media (min-width: 960px) and (max-height: 820px) {
  .career-hero-content {
    padding-block: 38px 75px;
  }

  .career-hero h1 {
    margin-bottom: 13px;
    font-size: clamp(3.2rem, 5.8vw, 4.6rem);
  }

  .career-hero-content > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 10px;
  }

  .page-hero {
    min-height: min(460px, calc(100svh - 78px));
    padding-block: 28px;
  }

  .job-hero {
    min-height: min(600px, calc(100svh - 78px));
    padding-block: 28px;
  }

  .breadcrumbs {
    margin-bottom: 25px;
  }

  .job-hero h1,
  .page-hero h1 {
    font-size: clamp(2.8rem, 5vw, 4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

.footer-link-button{padding:0;border:0;color:inherit;background:transparent;font:inherit;text-align:left;cursor:pointer}.footer-link-button:hover{color:#fff}.analytics-consent{position:relative;z-index:80;display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:20px;padding:15px max(20px,calc((100% - 1180px)/2));border-bottom:1px solid #ccd7d9;background:#f3f7f7;color:#182b33;box-shadow:0 10px 28px rgba(5,23,32,.08)}.analytics-consent[hidden]{display:none}.analytics-consent-copy strong{display:block;margin-bottom:3px}.analytics-consent-copy p{max-width:720px;margin:0;color:#566970;font-size:.82rem}.analytics-consent-copy a{color:#0d6257;font-weight:700}.analytics-consent-actions{display:flex;gap:8px}.analytics-consent-actions .btn{min-height:44px;padding:9px 14px;font-size:.8rem}@media(max-width:760px){.analytics-consent{grid-template-columns:1fr;padding:14px 16px}.analytics-consent-actions{display:grid;grid-template-columns:1fr 1fr}.analytics-consent-actions .btn{white-space:normal}}

@media print {
  .site-header,
  .site-footer,
  .final-cta,
  .hero-actions,
  .application-steps,
  .form-actions {
    display: none !important;
  }

  body,
  .page-hero,
  .job-hero,
  .section,
  .role-purpose {
    color: #182b33 !important;
    background: #fff !important;
  }

  .page-hero,
  .job-hero {
    min-height: 0;
  }

  .page-hero h1,
  .job-hero h1,
  .page-hero p,
  .job-hero p {
    color: #182b33 !important;
  }
}
