/* OPEN ROLES
   The hiring poster, as a page. A poster is a picture of text: it cannot be
   searched, read aloud, or copied into an email, and it is unreadable on a
   phone without pinching. This is all of the same words, laid out to be read. */

.careers-page { background: #fff; color: #0d1b2a; }
.jobs__wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ---- the top ---- */
.jobs__hero {
  padding: calc(var(--nav-h, 3.9rem) + clamp(48px, 8vw, 96px)) 0 clamp(40px, 6vw, 76px);
  background: radial-gradient(120% 90% at 50% 0%, #0f2d55 0%, #071426 60%, #050d1a 100%);
  color: #eaf6ff;
  text-align: center;
}
.jobs__hero .kicker { color: #3fe0ff; letter-spacing: .18em; }
.jobs__h {
  margin: 10px 0 14px;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.03; letter-spacing: -.025em;
}
.jobs__h em { font-style: normal; color: #3fe0ff; }
.jobs__lead {
  max-width: 60ch; margin: 0 auto clamp(24px, 3.5vw, 34px);
  color: rgba(234, 246, 255, .72); line-height: 1.65;
}
.jobs__lead strong { color: #fff; }
.jobs__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 0; }
.jobs__actions .btn { text-decoration: none; }

/* ---- the list ---- */
.jobs__list { padding: clamp(40px, 6vw, 80px) 0; background: #f6f9fd; }
.jobs__none { text-align: center; color: rgba(13,27,42,.7); font-size: 17px; }

.job {
  background: #fff;
  border: 1px solid rgba(13, 27, 42, .1);
  border-radius: 20px;
  padding: clamp(20px, 3vw, 34px);
  margin-bottom: clamp(16px, 2.2vw, 24px);
  box-shadow: 0 22px 54px -42px rgba(9, 20, 34, .6);
}
.job__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(12px, 2vw, 22px);
  align-items: center;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(13, 27, 42, .09);
}
.job__num {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--blue, #0078FF); color: #fff;
  font-size: 21px; font-weight: 800;
}
.job__head h2 { margin: 0; font-size: clamp(20px, 2.6vw, 29px); line-height: 1.15; }
.job__unit { margin: 3px 0 0; font-size: 14px; color: var(--blue, #0078FF); font-weight: 700; }

/* The pay is on the poster and it belongs here. Leaving it off is how you get
   fifty applications from people who were never going to take the job. */
.job__pay { display: grid; gap: 6px; text-align: right; }
.job__pay span {
  display: grid;
  font-size: 16px; font-weight: 700; color: #0d1b2a;
  white-space: nowrap;
}
.job__pay b {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(13, 27, 42, .5);
}

.job__cols {
  display: grid; gap: clamp(18px, 3vw, 40px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.job__cols h3 {
  margin: 0 0 10px;
  font-size: 12px; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(13, 27, 42, .5);
}
.job__cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.job__cols li {
  position: relative; padding-left: 20px;
  font-size: 15px; line-height: 1.55; color: rgba(13, 27, 42, .82);
}
.job__cols li::before {
  content: ''; position: absolute; left: 3px; top: .62em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue, #0078FF);
}
.job__apply { margin: 22px 0 0; }
.btn--blue {
  display: inline-block;
  background: var(--blue, #0078FF); color: #fff;
  padding: 13px 22px; border-radius: 999px;
  font-weight: 700; text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease;
}
.btn--blue:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(0,120,255,.8); }

/* ---- how to apply ---- */
.jobs__apply {
  padding: clamp(44px, 7vw, 88px) 0 clamp(56px, 8vw, 100px);
  background: #0b1728; color: #eaf6ff;
}
.jobs__h2 {
  margin: 0 0 clamp(20px, 3vw, 32px);
  font-size: clamp(24px, 3.6vw, 40px); letter-spacing: -.02em;
}
.jobs__applygrid {
  display: grid; gap: clamp(14px, 2vw, 22px);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.applybox {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: clamp(18px, 2.4vw, 28px);
}
.applybox h3 {
  margin: 0 0 12px;
  font-size: 12px; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(234, 246, 255, .5);
}
.applybox__big { margin: 0 0 14px; font-size: clamp(18px, 2.4vw, 26px); font-weight: 700; word-break: break-all; }
.applybox__big a { color: #3fe0ff; text-decoration: none; }
.applybox__big a:hover { text-decoration: underline; }
.applybox__notes { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.applybox__notes li {
  position: relative; padding-left: 20px;
  font-size: 14.5px; line-height: 1.5; color: rgba(234, 246, 255, .78);
}
.applybox__notes li::before {
  content: ''; position: absolute; left: 2px; top: .6em;
  width: 7px; height: 7px; border-radius: 50%; background: #ffc23c;
}
.applybox address { font-style: normal; line-height: 1.7; color: rgba(234, 246, 255, .8); font-size: 15px; }
.applybox__contact { margin: 12px 0 0; font-size: 15px; }
.applybox__contact a { color: #3fe0ff; text-decoration: none; }

@media (max-width: 640px) {
  .job__head { grid-template-columns: auto 1fr; }
  .job__pay { grid-column: 1 / -1; text-align: left; }
  .job__pay span { white-space: normal; }
}
@media (prefers-reduced-motion: reduce) { .btn--blue { transition: none; } }

/* ---- the way in from NEUTalents ---- */
.jobsband {
  padding: clamp(40px, 6vw, 78px) 20px;
  background: linear-gradient(115deg, #0b1728 0%, #123055 55%, #0b1728 100%);
  color: #eaf6ff; text-align: center;
}
.jobsband__wrap { max-width: 760px; margin: 0 auto; }
.jobsband .kicker { color: #3fe0ff; letter-spacing: .18em; }
.jobsband h2 { margin: 8px 0 10px; font-size: clamp(24px, 3.6vw, 40px); letter-spacing: -.02em; }
.jobsband p { margin: 0 auto 22px; max-width: 54ch; line-height: 1.6; color: rgba(234,246,255,.72); }
.jobsband p strong { color: #fff; }
.jobsband .btn { text-decoration: none; }
