:root {
  --ivory: #faf9f5;
  --ivory-2: #f1eee7;
  --ivory-3: #e7e2d8;
  --paper: #fffdf9;
  --ink: #14272b;
  --ink-2: #4d5f62;
  --ink-3: #8a9494;
  --teal: #01808d;
  --teal-2: #21909b;
  --teal-light: #98ccd0;
  --brand-dot: #01808d;
  --brand-dot-hover: #006f79;
  --teal-wash: #e2f1f2;
  --verovian-yellow: #f4cb00;
  --verovian-yellow-soft: #ffe56a;
  --deep: #06262c;
  --deep-2: #0b363d;
  --warm: #b9a77b;
  --line: rgba(20, 39, 43, .13);
  --line-strong: rgba(20, 39, 43, .22);
  --white-line: rgba(255, 255, 255, .15);
  --radius: 8px;
  --max: 1180px;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.72;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
body::before {
  background:
    linear-gradient(90deg, rgba(20,39,43,.035) 0 1px, transparent 1px 20%),
    linear-gradient(180deg, rgba(255,255,255,.62), transparent 340px);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: 0;
  line-height: .98;
  margin: 0;
}
p { color: var(--ink-2); margin: 0; }
.wrap { margin: 0 auto; max-width: var(--max); padding: 0 32px; }
.section { padding: 112px 0; }
.section.compact { padding: 82px 0; }
.section.dark {
  background: var(--deep);
  color: var(--ivory);
  position: relative;
}
.section.dark p { color: rgba(250,249,245,.64); }
.section.dark .feature-card,
.section.dark .step-card,
.section.dark .role-card,
.section.dark .stat-card {
  background: rgba(255,255,255,.035);
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
}
.section.dark .step-card strong,
.section.dark .feature-card strong,
.section.dark .role-card strong { color: var(--ivory); }

.section-head {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  margin-bottom: 38px;
  padding-bottom: 28px;
}
.section-head h2 {
  font-size: 4.45rem;
  max-width: 820px;
}
.section-head p { max-width: 430px; }
.eyebrow {
  color: var(--teal);
  display: inline-flex;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .18em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.section.dark .eyebrow,
.hero .eyebrow { color: var(--teal-light); }
.skip-link {
  background: var(--teal);
  color: #fff;
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -80px;
  z-index: 1000;
}
.skip-link:focus { top: 16px; }

.nav {
  align-items: center;
  backdrop-filter: blur(24px);
  background: rgba(250,249,245,.94);
  border-bottom: 1px solid rgba(20,39,43,.1);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  min-height: 76px;
  padding: 16px max(32px, calc((100vw - var(--max)) / 2 + 32px));
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 13px;
  min-width: 210px;
  text-decoration: none;
}
.brand-mark {
  display: inline-flex;
  height: 34px;
  width: 40px;
}
.brand-mark svg {
  height: 100%;
  overflow: visible;
  width: 100%;
}
.mark-primary { fill: var(--teal); }
.mark-secondary { fill: var(--teal-2); opacity: .74; }
.mark-dot { fill: var(--teal-light); }
.brand-logo-mark {
  flex: 0 0 auto;
  height: 38px;
  object-fit: contain;
  width: 52px;
}
.brand-logo-mark-us {
  height: 36px;
  width: 52px;
}
.brand-word strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
}
.brand-word span {
  color: var(--ink-3);
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
  margin-top: 5px;
  text-transform: uppercase;
}
.nav-links {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink-2);
  display: inline-flex;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-actions { align-items: center; display: flex; gap: 10px; }
.menu-toggle { display: none; }

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--brand-dot); color: #fff; }
.btn.primary:hover { background: var(--brand-dot-hover); color: #fff; }
.btn.vision { background: var(--brand-dot); color: #fff; }
.btn.vision:hover { background: var(--brand-dot-hover); color: #fff; }
.btn.ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn.ghost:hover { border-color: var(--line-strong); }
.btn.light { background: var(--ivory); color: var(--deep); }
.btn.full { width: 100%; }

.hero {
  background: var(--deep);
  color: var(--ivory);
  min-height: min(740px, calc(100svh - 78px));
  overflow: hidden;
  position: relative;
}
.hero::before {
  background:
    linear-gradient(90deg, rgba(6,38,44,.95) 0%, rgba(6,38,44,.82) 43%, rgba(6,38,44,.28) 74%, rgba(6,38,44,.14) 100%),
    linear-gradient(0deg, rgba(6,38,44,.68), transparent 36%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}
.hero::after {
  background: linear-gradient(90deg, rgba(255,255,255,.11) 0 1px, transparent 1px 20%);
  content: "";
  inset: 0;
  opacity: .42;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}
.hero-image {
  filter: saturate(.82) contrast(.96);
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transform: scale(1.01);
  width: 100%;
}
.hero-content {
  align-items: end;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) 350px;
  min-height: min(740px, calc(100svh - 78px));
  padding-bottom: 58px;
  padding-top: 92px;
  position: relative;
  z-index: 3;
}
.hero-copy { max-width: 780px; }
.hero h1 {
  font-size: 7rem;
  max-width: 780px;
}
.hero p {
  color: rgba(250,249,245,.72);
  font-size: 1.06rem;
  line-height: 1.78;
  margin-top: 22px;
  max-width: 620px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-proof {
  align-self: end;
  background: rgba(250,249,245,.08);
  border: 1px solid rgba(250,249,245,.16);
  border-radius: var(--radius);
  padding: 22px;
}
.hero-proof strong {
  color: var(--ivory);
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.05;
}
.hero-proof span {
  color: rgba(250,249,245,.66);
  display: block;
  font-size: 13px;
  line-height: 1.65;
  margin-top: 10px;
}
.hero-proof-branded {
  background:
    linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.055)),
    rgba(250,249,245,.08);
  border-color: rgba(255,255,255,.2);
}
.hero-division-logo {
  filter: drop-shadow(0 22px 34px rgba(0,0,0,.22));
  margin: 0 auto 20px;
  max-height: 190px;
  object-fit: contain;
  width: min(270px, 100%);
}
html[data-region="USA"] .hero::before {
  background:
    linear-gradient(90deg, rgba(6,38,44,.95) 0%, rgba(6,38,44,.82) 43%, rgba(6,38,44,.28) 74%, rgba(6,38,44,.14) 100%),
    radial-gradient(circle at 83% 17%, rgba(244,203,0,.22), transparent 30%),
    linear-gradient(0deg, rgba(6,38,44,.68), transparent 36%);
}
html[data-region="USA"] .hero .btn.vision {
  background: var(--verovian-yellow);
  color: #1a1608;
}
html[data-region="USA"] .hero .btn.vision:hover { background: var(--brand-dot-hover); color: #fff; }
html[data-region="USA"] .hero .proof-grid strong { color: var(--verovian-yellow-soft); }
.proof-grid {
  border: 1px solid rgba(250,249,245,.14);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  max-width: 760px;
}
.proof-grid article {
  border-right: 1px solid rgba(250,249,245,.14);
  padding: 17px;
}
.proof-grid article:last-child { border-right: 0; }
.proof-grid strong {
  color: var(--teal-light);
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}
.proof-grid span {
  color: rgba(250,249,245,.65);
  display: block;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 8px;
}

.region-grid {
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.region-grid.region-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.region-card {
  background: rgba(255,253,249,.76);
  cursor: pointer;
  display: grid;
  gap: 24px;
  min-height: 370px;
  padding: 38px;
  position: relative;
  overflow: hidden;
}
.region-card + .region-card { border-left: 1px solid var(--line); }
.region-card::after {
  background: var(--teal);
  content: "";
  height: 3px;
  left: 0;
  opacity: .32;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity .2s ease;
}
.region-card:hover { background: var(--paper); }
.region-card:hover::after { opacity: 1; }
.region-card h2 {
  font-size: 4.05rem;
  max-width: 560px;
}
.region-grid-three .region-card h2 { font-size: 3.2rem; }
.region-card p { max-width: 560px; }
.region-logo {
  height: 86px;
  object-fit: contain;
  object-position: left center;
  width: 116px;
}
.region-logo-uk {
  height: 100px;
  width: 112px;
}
.region-logo-us {
  height: 82px;
  width: 118px;
}
.region-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  background: rgba(1,128,141,.07);
  border: 1px solid rgba(1,128,141,.16);
  border-radius: 999px;
  color: var(--teal);
  display: inline-flex;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  padding: 7px 10px;
  text-transform: uppercase;
}
.region-card .btn { justify-self: start; margin-top: auto; }

.split {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
}
.split h2 {
  font-size: 4.35rem;
  max-width: 760px;
}
.split p + p { margin-top: 16px; }
.feature-grid,
.answer-grid {
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.answer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card,
.step-card,
.role-card,
.form-panel,
.stat-card {
  background: rgba(255,253,249,.74);
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  padding: 28px;
}
.feature-card:nth-child(even),
.answer-grid .feature-card:last-child,
.role-card:last-child,
.step-card:last-child,
.stat-card:last-child { border-right: 0; }
.feature-card:nth-last-child(-n+2),
.answer-grid .feature-card,
.role-card,
.step-card,
.stat-card { border-bottom: 0; }
.feature-card strong,
.role-card strong,
.step-card strong {
  color: var(--ink);
  display: block;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 9px;
}
.feature-card p,
.role-card p,
.step-card p { font-size: 14px; line-height: 1.68; }
.icon {
  align-items: center;
  color: var(--teal);
  display: inline-flex;
  font-family: var(--mono);
  font-size: 11px;
  height: 22px;
  justify-content: center;
  margin-bottom: 32px;
  width: 34px;
}
.icon::after {
  background: var(--teal);
  content: "";
  height: 1px;
  margin-left: 10px;
  opacity: .5;
  width: 18px;
}

.role-grid,
.steps,
.stats {
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.steps,
.stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.role-card { min-height: 210px; }
.role-card span {
  color: var(--teal);
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.step-card .number {
  color: var(--teal-light);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .18em;
  margin-bottom: 34px;
  text-transform: uppercase;
}
.section:not(.dark) .step-card .number { color: var(--teal); }

.conversion {
  background: var(--deep);
  color: var(--ivory);
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 1fr) 360px;
  padding: 46px;
}
.conversion h2 { font-size: 4rem; }
.conversion p { color: rgba(250,249,245,.66); max-width: 620px; }
.conversion-actions { align-items: start; display: grid; gap: 10px; }
.conversion .btn.ghost {
  border-color: rgba(250,249,245,.2);
  color: var(--ivory);
}

.form-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.form-panel label { display: grid; gap: 7px; margin-bottom: 13px; }
.form-panel span {
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 500;
}
.form-panel input,
.form-panel select,
.form-panel textarea {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}
.form-panel input:focus,
.form-panel select:focus,
.form-panel textarea:focus {
  border-color: var(--teal);
  outline: 0;
}
.form-panel textarea { min-height: 106px; resize: vertical; }
.form-panel h2 {
  color: var(--ink);
  font-size: 2.8rem;
  margin-bottom: 12px;
}
.form-panel p { font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
.form-panel button:disabled {
  cursor: wait;
  opacity: .64;
  transform: none;
}
.consent-line {
  align-items: start;
  display: grid !important;
  gap: 10px !important;
  grid-template-columns: 18px minmax(0, 1fr);
  margin-top: 6px;
}
.consent-line input {
  min-height: auto;
  margin-top: 4px;
  padding: 0;
  width: 16px;
}
.consent-line span {
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.55;
}
.form-status { color: var(--ink-3); font-size: 13px; min-height: 22px; }
.form-status.ok { color: var(--teal); }
.form-status.error { color: #9d123a; }

.stat-card strong {
  color: var(--teal);
  display: block;
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
}
.stat-card span {
  color: var(--ink-2);
  display: block;
  font-size: 13px;
  line-height: 1.55;
  margin-top: 10px;
}

.jobs-hero {
  background: var(--deep);
  color: var(--ivory);
  padding: 118px 0 70px;
  position: relative;
}
.jobs-hero-premium {
  background:
    linear-gradient(90deg, rgba(6,38,44,.96), rgba(6,38,44,.88) 42%, rgba(1,128,141,.24)),
    url("/assets/img/vision-hero.webp") center / cover;
}
.jobs-hero::after {
  background: linear-gradient(90deg, rgba(255,255,255,.11) 0 1px, transparent 1px 20%);
  content: "";
  inset: 0;
  opacity: .32;
  pointer-events: none;
  position: absolute;
}
.jobs-hero-grid {
  align-items: end;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) 290px;
  position: relative;
  z-index: 1;
}
.jobs-hero h1 {
  font-size: 6.4rem;
  max-width: 760px;
}
.jobs-hero p {
  color: rgba(250,249,245,.68);
  font-size: 1.03rem;
  margin-top: 22px;
  max-width: 650px;
}
.jobs-hero-panel {
  background: rgba(250,249,245,.08);
  border: 1px solid rgba(250,249,245,.16);
  border-radius: var(--radius);
  padding: 24px;
}
.jobs-hero-panel strong {
  color: var(--teal-light);
  display: block;
  font-family: var(--display);
  font-size: 4.6rem;
  font-weight: 300;
  line-height: 1;
}
.jobs-hero-panel span {
  color: rgba(250,249,245,.68);
  display: block;
  font-size: 13px;
  line-height: 1.65;
  margin-top: 12px;
}
.job-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.jobs-toolbar {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  margin-bottom: 0;
  padding-bottom: 30px;
}
.jobs-toolbar h2 {
  font-size: 4.2rem;
  max-width: 780px;
}
.jobs-toolbar p { max-width: 420px; }
.jobs-filter-panel {
  background: rgba(255,253,249,.72);
  border: 1px solid var(--line);
  border-top: 0;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(280px, 1.4fr) minmax(210px, .8fr) minmax(210px, .8fr);
  padding: 20px;
}
.jobs-filter-panel label {
  display: grid;
  gap: 7px;
}
.jobs-filter-panel span {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.jobs-filter-panel input,
.jobs-filter-panel select {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}
.jobs-filter-panel input:focus,
.jobs-filter-panel select:focus {
  border-color: var(--teal);
  outline: 0;
}
.jobs-list {
  border: 1px solid var(--line);
  border-top: 0;
}
.job-card {
  align-items: center;
  background: rgba(255,253,249,.78);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px) auto;
  padding: 27px;
}
.job-card:last-child { border-bottom: 0; }
.job-card h3 {
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 10px;
}
.job-card p {
  font-size: 14px;
  line-height: 1.62;
  max-width: 760px;
}
.job-kicker {
  color: var(--teal);
  display: inline-flex;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.job-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}
.job-card dl div {
  display: grid;
  gap: 4px;
  grid-template-columns: 82px minmax(0, 1fr);
}
.job-card dt {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.job-card dd {
  color: var(--ink-2);
  font-size: 13px;
  margin: 0;
}
.premium-job-card {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px) 180px;
}
.job-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.job-badges span {
  background: var(--teal-wash);
  border: 1px solid rgba(1,128,141,.2);
  border-radius: 999px;
  color: var(--deep-2);
  display: inline-flex;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  padding: 7px 9px;
}
.job-card-actions {
  display: grid;
  gap: 8px;
}
.job-card-actions .btn {
  min-height: 42px;
  padding: 10px 14px;
  width: 100%;
}
.job-empty {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 0;
  color: var(--ink-2);
  padding: 24px;
}

.job-detail-hero {
  background:
    linear-gradient(90deg, rgba(6,38,44,.96), rgba(6,38,44,.86) 48%, rgba(1,128,141,.26)),
    url("/assets/img/vision-hero.webp") center / cover;
  color: var(--ivory);
  padding: 96px 0 72px;
  position: relative;
}
.job-detail-hero::after {
  background: linear-gradient(90deg, rgba(255,255,255,.1) 0 1px, transparent 1px 20%);
  content: "";
  inset: 0;
  opacity: .28;
  pointer-events: none;
  position: absolute;
}
.job-detail-hero-grid {
  align-items: end;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) 340px;
  position: relative;
  z-index: 1;
}
.job-back-link {
  color: rgba(250,249,245,.72);
  display: inline-flex;
  font-size: 13px;
  margin-bottom: 28px;
  text-decoration: none;
}
.job-back-link:hover { color: var(--ivory); }
.job-detail-hero h1 {
  font-size: 5.8rem;
  max-width: 930px;
}
.job-detail-hero p {
  color: rgba(250,249,245,.72);
  font-size: 1.03rem;
  margin-top: 24px;
  max-width: 720px;
}
.job-meta-strip {
  border: 1px solid rgba(250,249,245,.16);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  max-width: 820px;
}
.job-meta-strip span {
  color: rgba(250,249,245,.72);
  font-size: 13px;
  line-height: 1.45;
  padding: 16px;
}
.job-meta-strip span + span { border-left: 1px solid rgba(250,249,245,.16); }
.job-meta-strip strong {
  color: var(--teal-light);
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .14em;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.job-privacy-panel {
  background: rgba(250,249,245,.08);
  border: 1px solid rgba(250,249,245,.16);
  border-radius: var(--radius);
  padding: 26px;
}
.job-privacy-panel strong {
  color: var(--ivory);
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.job-privacy-panel p {
  color: rgba(250,249,245,.68);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}
.job-detail-grid {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 390px;
}
.job-detail-main {
  background: var(--paper);
  border: 1px solid var(--line);
}
.job-detail-section {
  border-bottom: 1px solid var(--line);
  padding: 34px;
}
.job-detail-section:last-child { border-bottom: 0; }
.job-detail-section h2 {
  color: var(--ink);
  font-size: 3rem;
  margin-bottom: 16px;
}
.job-detail-section p { max-width: 760px; }
.job-detail-section p + p { margin-top: 14px; }
.job-detail-section ul {
  color: var(--ink-2);
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}
.job-detail-section li { padding-left: 6px; }
.pay-disclosure {
  background: linear-gradient(180deg, rgba(226,241,242,.65), rgba(255,253,249,.92));
}
.full-brief-section {
  background: rgba(250,249,245,.48);
}
.job-apply-panel {
  position: sticky;
  top: 96px;
}
.job-apply-panel .form-panel {
  padding: 28px;
}

.page-hero {
  background: var(--deep);
  color: var(--ivory);
  min-height: 560px;
  overflow: hidden;
  position: relative;
}
.page-hero::before {
  background:
    linear-gradient(90deg, rgba(6,38,44,.95) 0%, rgba(6,38,44,.82) 48%, rgba(6,38,44,.35) 100%),
    linear-gradient(0deg, rgba(6,38,44,.64), transparent 42%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}
.page-hero::after {
  background: linear-gradient(90deg, rgba(255,255,255,.1) 0 1px, transparent 1px 20%);
  content: "";
  inset: 0;
  opacity: .36;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}
.page-hero-image {
  filter: saturate(.84) contrast(.96);
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}
.page-hero-content {
  display: grid;
  min-height: 560px;
  padding-bottom: 72px;
  padding-top: 108px;
  place-content: end start;
  position: relative;
  z-index: 3;
}
.page-hero h1 {
  font-size: 6.2rem;
  max-width: 900px;
}
.page-hero p {
  color: rgba(250,249,245,.72);
  font-size: 1.05rem;
  line-height: 1.78;
  margin-top: 22px;
  max-width: 650px;
}

.signal-grid {
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.signal-grid article {
  background: rgba(255,253,249,.74);
  border-right: 1px solid var(--line);
  min-height: 250px;
  padding: 28px;
}
.signal-grid article:last-child { border-right: 0; }
.signal-grid span,
.process-list span,
.article-card span,
.contact-methods span {
  color: var(--teal);
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  margin-bottom: 26px;
  text-transform: uppercase;
}
.signal-grid strong,
.process-list strong,
.contact-methods strong {
  color: var(--ink);
  display: block;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 10px;
}
.signal-grid p,
.process-list p,
.contact-methods p { font-size: 14px; line-height: 1.68; }
.section.dark .signal-grid { border-color: rgba(255,255,255,.12); }
.section.dark .signal-grid article,
.signal-grid-dark article {
  background: rgba(255,255,255,.035);
  border-color: rgba(255,255,255,.12);
}
.section.dark .signal-grid strong,
.signal-grid-dark strong { color: var(--ivory); }
.section.dark .signal-grid p,
.signal-grid-dark p { color: rgba(250,249,245,.64); }
.section.dark .signal-grid span,
.signal-grid-dark span { color: var(--teal-light); }

.process-list {
  border: 1px solid var(--line);
  display: grid;
}
.process-list article {
  background: rgba(255,253,249,.74);
  border-bottom: 1px solid var(--line);
  padding: 28px;
}
.process-list article:last-child { border-bottom: 0; }

.article-grid {
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.article-card {
  background: rgba(255,253,249,.74);
  border-right: 1px solid var(--line);
  display: grid;
  min-height: 430px;
  padding: 30px;
}
.article-card:last-child { border-right: 0; }
.article-card h2 {
  color: var(--ink);
  font-size: 2.35rem;
  margin-bottom: 18px;
}
.article-card p {
  font-size: 14px;
  line-height: 1.68;
}
.article-card .btn {
  align-self: end;
  justify-self: start;
  margin-top: 28px;
}
.article-list {
  display: grid;
  gap: 1px;
}
.article-list article {
  background: rgba(255,253,249,.78);
  border: 1px solid var(--line);
  padding: 44px;
}
.article-list h2 {
  font-size: 4rem;
  margin-bottom: 22px;
  max-width: 900px;
}
.article-list p {
  max-width: 860px;
}
.article-list p + p { margin-top: 16px; }

.contact-methods {
  border: 1px solid var(--line);
  display: grid;
  margin-top: 30px;
}
.contact-methods article {
  background: rgba(255,253,249,.74);
  border-bottom: 1px solid var(--line);
  padding: 24px;
}
.contact-methods article:last-child { border-bottom: 0; }
.contact-methods strong a { text-decoration: none; }

.footer {
  background:
    radial-gradient(circle at 18% 0, color-mix(in srgb, var(--teal) 18%, transparent), transparent 34%),
    linear-gradient(180deg, var(--deep) 0%, color-mix(in srgb, var(--deep) 82%, #000 18%) 100%);
  color: var(--ivory);
  padding: 76px 0 34px;
}
.footer-panel {
  align-items: end;
  border-bottom: 1px solid rgba(255,255,255,.14);
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  padding-bottom: 34px;
}
.footer p,
.footer a,
.footer span,
.footer address,
.footer li { color: rgba(250,249,245,.68); }
.footer a { text-decoration: none; transition: color .18s ease, border-color .18s ease, background .18s ease; }
.footer a:hover { color: var(--teal-light); }
.footer-logo {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-logo .brand-mark { flex: 0 0 auto; }
.footer-logo .brand-logo-mark {
  flex: 0 0 auto;
  height: 42px;
  object-fit: contain;
  width: 56px;
}
.footer-logo strong {
  color: var(--ivory);
  display: block;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1;
}
.footer-logo span,
.footer h3,
.footer-social a,
.footer-legal a,
.footer-proof span {
  font-family: var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-logo span {
  display: block;
  font-size: 10px;
}
.footer-brand-block > p {
  max-width: 620px;
}
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.footer-cta-primary,
.footer-cta-secondary {
  align-items: center;
  border: 1px solid rgba(255,255,255,.18);
  display: inline-flex;
  font-weight: 500;
  min-height: 42px;
  padding: 10px 16px;
}
.footer-cta-primary {
  background: var(--brand-dot);
  border-color: var(--brand-dot);
  color: #fff !important;
}
.footer-cta-primary:hover { background: var(--brand-dot-hover); border-color: var(--brand-dot-hover); color: #fff !important; }
.footer-cta-secondary:hover { border-color: var(--teal-light); }
.footer-proof {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.footer-proof span {
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(250,249,245,.76);
  font-size: 10px;
  padding-top: 10px;
}
.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 34px;
}
.footer ul { display: grid; gap: 9px; list-style: none; margin: 0; padding: 0; }
.footer h3 {
  color: var(--ivory);
  font-size: 11px;
  font-weight: 500;
  margin: 0 0 14px;
}
.footer address {
  font-style: normal;
  line-height: 1.55;
  margin-top: 4px;
}
.footer li strong {
  color: var(--ivory);
  display: block;
  font-weight: 500;
  margin-bottom: 2px;
}
.footer-social,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.footer-social { margin-top: 18px; }
.footer-social a,
.footer-legal a,
.footer-bottom span {
  font-size: 10px;
}
.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 38px;
  padding-top: 22px;
}

[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .nav { flex-wrap: wrap; }
  .menu-toggle {
    background: var(--deep);
    border: 0;
    border-radius: 4px;
    color: var(--ivory);
    display: inline-flex;
    font: inherit;
    font-size: 13px;
    font-weight: 500;
    min-height: 42px;
    padding: 10px 14px;
  }
  .nav-links,
  .nav-actions { display: none; flex-basis: 100%; }
  .nav.open .nav-links,
  .nav.open .nav-actions { display: flex; }
  .nav.open .nav-links {
    align-items: stretch;
    border-top: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding-top: 12px;
    width: 100%;
  }
  .nav.open .nav-links a { padding: 11px 0; }
  .nav.open .nav-actions { justify-content: stretch; }
  .nav.open .nav-actions .btn { flex: 1 1 auto; }
  .hero h1 { font-size: 5.4rem; }
  .hero-content,
  .split,
  .conversion { grid-template-columns: 1fr; }
  .region-grid.region-grid-three { grid-template-columns: 1fr; }
  .region-grid-three .region-card + .region-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .hero-proof { align-self: auto; max-width: 480px; }
  .section-head { grid-template-columns: 1fr; }
  .jobs-hero-grid,
  .jobs-toolbar,
  .jobs-filter-panel,
  .job-detail-hero-grid,
  .job-detail-grid,
  .job-card,
  .premium-job-card { grid-template-columns: 1fr; }
  .job-card { align-items: start; }
  .job-apply-panel { position: static; }
  .job-meta-strip { grid-template-columns: 1fr; }
  .job-meta-strip span + span {
    border-left: 0;
    border-top: 1px solid rgba(250,249,245,.16);
  }
  .page-hero h1 { font-size: 5rem; }
  .signal-grid,
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .signal-grid article:nth-child(even),
  .article-card:nth-child(even) { border-right: 0; }
  .signal-grid article:nth-child(-n+2),
  .article-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .role-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .role-card:nth-child(even) { border-right: 0; }
  .role-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-panel { align-items: start; grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  body { font-size: 15px; }
  .wrap { padding: 0 20px; }
  .section { padding: 76px 0; }
  .section.compact { padding: 62px 0; }
  .nav { min-height: 70px; padding: 14px 20px; }
  .brand { min-width: 0; }
  .brand-word strong { font-size: 1.2rem; }
  .brand-word span { font-size: 8px; }
  .hero { min-height: auto; }
  .hero-content {
    min-height: min(660px, calc(100svh - 70px));
    padding-bottom: 34px;
    padding-top: 58px;
  }
  .hero h1 { font-size: 4rem; }
  .jobs-hero { padding: 82px 0 50px; }
  .jobs-hero h1,
  .job-detail-hero h1,
  .page-hero h1 { font-size: 4rem; }
  .job-detail-hero { padding: 72px 0 52px; }
  .job-detail-section,
  .job-apply-panel .form-panel { padding: 24px; }
  .job-detail-section h2,
  .form-panel h2 { font-size: 2.45rem; }
  .page-hero,
  .page-hero-content {
    min-height: 520px;
  }
  .page-hero-content {
    padding-bottom: 44px;
    padding-top: 70px;
  }
  .hero p { font-size: 1rem; }
  .hero-proof { display: none; }
  .proof-grid {
    grid-auto-columns: minmax(150px, 1fr);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
  }
  .proof-grid article { min-width: 150px; }
  .section-head h2,
  .jobs-toolbar h2,
  .split h2,
  .region-card h2,
  .conversion h2 { font-size: 3rem; }
  .region-grid,
  .feature-grid,
  .answer-grid,
  .steps,
  .stats,
  .signal-grid,
  .article-grid,
  .role-grid,
  .footer-grid,
  .footer-proof { grid-template-columns: 1fr; }
  .footer-actions a { justify-content: center; width: 100%; }
  .region-card + .region-card,
  .feature-card,
  .answer-grid .feature-card,
  .role-card,
  .signal-grid article,
  .article-card,
  .step-card,
  .stat-card { border-right: 0; }
  .feature-card:not(:last-child),
  .answer-grid .feature-card:not(:last-child),
  .role-card:not(:last-child),
  .signal-grid article:not(:last-child),
  .article-card:not(:last-child),
  .step-card:not(:last-child),
  .stat-card:not(:last-child) { border-bottom: 1px solid var(--line); }
  .section.dark .step-card:not(:last-child) { border-bottom-color: rgba(255,255,255,.12); }
  .region-card { min-height: 300px; padding: 26px; }
  .feature-card,
  .step-card,
  .role-card,
  .form-panel,
  .stat-card,
  .signal-grid article,
  .article-card,
  .article-list article,
  .contact-methods article,
  .job-card { padding: 24px; }
  .article-card { min-height: auto; }
  .article-list h2 { font-size: 3rem; }
  .job-card dl div { grid-template-columns: 1fr; }
  .conversion { padding: 28px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
