:root {
  --ivory: #FAF9F6;
  --ivory-s: #F2F0EA;
  --ivory-c: #E9E7E0;
  --ink: #1C1A14;
  --ink-2: #5A5850;
  --ink-3: #A6A29A;
  --ink-4: #D2CEC4;
  --yellow: #F2BC00;
  --yellow-dk: #C89A00;
  --yellow-lt: #FDD44A;
  --yellow-dim: rgba(242,188,0,.08);
  --yellow-bdr: rgba(242,188,0,.28);
  --agency-salmon: #F3CBBD;
  --agency-salmon-dk: #6F5C53;
  --agency-salmon-mid: #EAB9AA;
  --agency-salmon-lt: #FBE9E3;
  --agency-salmon-dim: rgba(243,203,189,.08);
  --agency-salmon-bdr: rgba(243,203,189,.28);
  --agency-ink: #1C1A14;
  --agency-ink-soft: rgba(28,26,20,.08);
  --agency-line: rgba(28,26,20,.12);
  --blue: var(--agency-salmon);
  --blue-dk: var(--agency-salmon-dk);
  --blue-lt: var(--agency-salmon-lt);
  --blue-dim: var(--agency-salmon-dim);
  --blue-bdr: var(--agency-salmon-bdr);
  --b: rgba(28,26,20,.09);
  --b-md: rgba(28,26,20,.15);
  --r: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --W: 1140px;
  --sp: 6rem;
  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'DM Sans', system-ui, sans-serif;
  --fm: 'DM Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--fd);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.02em;
}

.xl { font-size: clamp(3.6rem,8.5vw,7.2rem); font-weight: 300; letter-spacing: -.04em; line-height: 1; }
.lg { font-size: clamp(2.3rem,4.8vw,3.9rem); font-weight: 300; letter-spacing: -.026em; line-height: 1.06; }
.md { font-size: clamp(1.7rem,2.9vw,2.7rem); font-weight: 400; letter-spacing: -.018em; line-height: 1.1; }
.sm { font-size: clamp(1.2rem,2vw,1.75rem); font-weight: 400; letter-spacing: -.01em; line-height: 1.15; }
em { color: var(--yellow-dk); font-style: italic; }
.label {
  color: var(--ink-3);
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.w { max-width: var(--W); margin: 0 auto; padding: 0 2.5rem; }
.rule { border: none; border-top: 1px solid var(--b); margin: 0; }

@keyframes up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.a1 { animation: up .55s 0s both; }
.a2 { animation: up .55s .1s both; }
.a3 { animation: up .55s .2s both; }
.a4 { animation: up .55s .3s both; }
.a5 { animation: up .55s .4s both; }
.a6 { animation: up .55s .5s both; }

.nav {
  align-items: center;
  backdrop-filter: blur(24px);
  background: rgba(250,249,246,.96);
  border-bottom: 1px solid var(--b);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 1.15rem 2.5rem;
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow .3s;
  z-index: 500;
}
.nav.raised { box-shadow: 0 1px 0 var(--b), 0 8px 28px rgba(28,26,20,.06); }
.logo { align-items: center; color: var(--ink); display: flex; gap: 11px; text-decoration: none; }
.logo-word { font-family: var(--fd); font-size: 1.18rem; font-weight: 500; letter-spacing: .01em; line-height: 1; }
.logo-word span { color: var(--ink-3); font-weight: 300; }
.nav-links { align-items: center; display: flex; gap: clamp(.95rem, 1.7vw, 2rem); list-style: none; }
.nav-links a { color: var(--ink-2); font-size: 13.5px; text-decoration: none; transition: color .18s; white-space: nowrap; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--blue-dk); font-weight: 500; }
.nav-end { align-items: center; display: flex; gap: 10px; }
.nav-login { color: var(--ink-3); font-size: 13px; padding: .4rem .8rem; text-decoration: none; transition: color .18s; }
.nav-login:hover { color: var(--ink); }
.nav-button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--fb);
}
.nav-cta {
  align-items: center;
  background: var(--yellow);
  border-radius: var(--r);
  color: var(--ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 500;
  gap: 7px;
  padding: .5rem 1.3rem;
  text-decoration: none;
  transition: background .18s, transform .12s;
}
.nav-cta:hover { background: var(--yellow-lt); transform: translateY(-1px); }
.nav-cta svg { height: 12px; width: 12px; }

.btn {
  align-items: center;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  gap: 9px;
  line-height: 1.2;
  padding: .82rem 1.8rem;
  text-decoration: none;
  transition: all .2s;
}
.btn-yellow { background: var(--yellow); color: var(--ink); }
.btn-yellow:hover { background: var(--yellow-lt); transform: translateY(-1px); }
.btn-blue { background: var(--agency-salmon); border-color: var(--agency-salmon); color: var(--agency-ink); }
.btn-blue:hover { background: var(--agency-salmon-mid); border-color: var(--agency-salmon-mid); color: var(--agency-ink); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1px solid var(--b-md); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink-2); }
.btn-outline-blue { background: transparent; border: 1px solid var(--blue-bdr); color: var(--blue-dk); }
.btn-outline-blue:hover { background: var(--blue-dim); border-color: var(--blue); }
.btn-ghost { background: transparent; border: none; color: var(--ink-2); padding: .82rem 0; }
.btn-ghost:hover { color: var(--ink); }
.btn-lg { font-size: 15px; padding: 1rem 2.2rem; }
.btn svg { flex-shrink: 0; height: 14px; width: 14px; }

.tag {
  align-items: center;
  border: 1px solid;
  border-radius: 20px;
  display: inline-flex;
  font-family: var(--fm);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: .14em;
  padding: 4px 10px;
  text-transform: uppercase;
}
.tag-blue { background: var(--blue-dim); border-color: var(--blue-bdr); color: var(--blue-dk); }
.tag-ink { background: rgba(28,26,20,.05); border-color: var(--b-md); color: var(--ink-2); }
.aib {
  align-items: center;
  background: var(--blue-dim);
  border: 1px solid var(--blue-bdr);
  border-radius: 20px;
  color: var(--blue-dk);
  display: inline-flex;
  font-family: var(--fm);
  font-size: 9px;
  font-weight: 300;
  gap: 6px;
  letter-spacing: .14em;
  padding: 4px 10px;
  text-transform: uppercase;
}
.aib-dot { animation: blink 2.4s ease-in-out infinite; background: var(--blue); border-radius: 50%; height: 5px; width: 5px; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .2; } }

.trust { align-items: center; color: var(--ink-3); display: flex; flex-wrap: wrap; font-size: 11.5px; gap: 0; margin-top: 1rem; }
.trust-dash { display: none; }

.hero { overflow: hidden; padding: 11rem 0 0; position: relative; }
.hero-bg { opacity: .03; pointer-events: none; position: absolute; right: -5%; top: 5%; }
.hero-bg svg { height: 680px; width: 680px; }
.hero-eye { align-items: center; display: flex; gap: 16px; margin-bottom: 2.8rem; }
.hero-hl { margin-bottom: 1.8rem; max-width: 820px; }
.hero-sub { color: var(--ink-2); font-size: 1.05rem; line-height: 1.8; margin-bottom: 2.8rem; max-width: 520px; }
.hero-acts { align-items: center; display: flex; flex-wrap: wrap; gap: 1.6rem; margin-bottom: .8rem; }
.hero-stats { border-top: 1px solid var(--b); display: grid; grid-template-columns: repeat(4,1fr); margin-top: 4.5rem; }
.hstat { border-left: 3px solid transparent; border-right: 1px solid var(--b); padding: 2rem 2.5rem; transition: background .2s,border-left .2s; }
.hstat:first-child { border-left: none; padding-left: 0; }
.hstat:last-child { border-right: none; }
.hstat:hover { background: var(--ivory-s); border-left-color: var(--yellow); }
.hstat:first-child:hover { border-left: none; }
.hstat-n { color: var(--yellow-dk); font-family: var(--fd); font-size: 2.9rem; font-weight: 300; line-height: 1; margin-bottom: .4rem; }
.hstat-l { color: var(--ink-2); font-size: 12.5px; line-height: 1.55; max-width: 155px; }

.passive { background: var(--ivory-s); border-top: 1px solid var(--b); padding: var(--sp) 0; }
.passive-inner { align-items: center; display: grid; gap: 7rem; grid-template-columns: 1fr 1fr; }
.passive-left { padding-top: 2.5rem; position: relative; }
.passive-left::before {
  color: var(--yellow);
  content: '\201C';
  font-family: var(--fd);
  font-size: 10rem;
  font-weight: 300;
  left: -1rem;
  line-height: .8;
  opacity: .2;
  pointer-events: none;
  position: absolute;
  top: -.5rem;
  user-select: none;
}
.passive-quote { color: var(--ink); font-family: var(--fd); font-size: clamp(1.5rem,2.6vw,2.1rem); font-style: italic; font-weight: 300; line-height: 1.4; margin-bottom: 1.2rem; position: relative; }
.passive-attr { color: var(--ink-3); font-family: var(--fm); font-size: 9.5px; font-weight: 300; letter-spacing: .14em; margin-bottom: 2.5rem; text-transform: uppercase; }
.passive-hook { color: var(--ink); font-family: var(--fd); font-size: clamp(2rem,3.5vw,3rem); font-weight: 300; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 1.4rem; }
.passive-body { color: var(--ink-2); font-size: 15px; line-height: 1.8; margin-bottom: 2rem; max-width: 440px; }

.spec-section { padding: var(--sp) 0; }
.section-header { align-items: flex-end; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; margin-bottom: 3.5rem; }
.spec-featured, .spec-standard { display: grid; grid-template-columns: repeat(3,1fr); overflow: hidden; }
.spec-featured { border: 1px solid var(--b); border-bottom: none; border-radius: var(--r-lg) var(--r-lg) 0 0; }
.spec-standard { border: 1px solid var(--b); border-radius: 0 0 var(--r-lg) var(--r-lg); border-top: none; }
.spec-card { background: var(--ivory); border-right: 1px solid var(--b); color: inherit; display: flex; flex-direction: column; gap: .85rem; padding: 2.8rem; position: relative; text-decoration: none; transition: background .2s; }
.spec-card:last-child { border-right: none; }
.spec-card:hover { background: var(--ivory-s); }
.spec-featured .spec-card { border-bottom: 1px solid var(--b); padding: 3.2rem; }
.spec-featured .spec-card::after { background: var(--yellow); content: ''; height: 3px; left: 0; opacity: .22; position: absolute; right: 0; top: 0; transition: opacity .22s; }
.spec-featured .spec-card:hover::after { opacity: 1; }
.spec-card-n { color: var(--ink-4); font-family: var(--fm); font-size: 9px; font-weight: 300; letter-spacing: .18em; }
.spec-featured .spec-card-n { font-size: 10px; letter-spacing: .2em; }
.spec-card-title { color: var(--ink); font-family: var(--fd); font-size: 1.65rem; font-weight: 400; letter-spacing: -.012em; line-height: 1.1; }
.spec-featured .spec-card-title { font-size: 2.05rem; }
.spec-card-body { color: var(--ink-2); flex: 1; font-size: 13.5px; line-height: 1.72; }
.spec-featured .spec-demand { color: var(--yellow-dk); font-family: var(--fd); font-size: 2.7rem; font-weight: 300; line-height: 1; margin: .4rem 0 .3rem; }
.spec-featured .spec-demand-l { color: var(--ink-3); font-family: var(--fm); font-size: 9px; font-weight: 300; letter-spacing: .1em; text-transform: uppercase; }
.spec-standard .spec-card-demand { align-items: center; color: var(--yellow-dk); display: flex; font-family: var(--fm); font-size: 10px; font-weight: 300; gap: 6px; letter-spacing: .08em; margin-top: .2rem; }
.spec-standard .spec-card-demand::before { background: var(--yellow-dk); content: ''; flex-shrink: 0; height: 1px; width: 16px; }
.spec-card-foot { align-items: center; border-top: 1px solid var(--b); display: flex; justify-content: space-between; margin-top: .5rem; padding-top: 1.2rem; }
.spec-card-stat { color: var(--ink-3); font-family: var(--fm); font-size: 9px; font-weight: 300; letter-spacing: .1em; text-transform: uppercase; }
.spec-arrow { color: var(--ink-4); flex-shrink: 0; font-size: 16px; line-height: 1; transition: color .2s,transform .2s; }
.spec-card:hover .spec-arrow { color: var(--yellow-dk); transform: translate(3px,-3px); }
.tag-row { align-items: center; display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.2rem; }
.tag-row a { text-decoration: none; }

.cdi-band, .salary-section, .trust-section { background: var(--ivory-s); border-bottom: 1px solid var(--b); border-top: 1px solid var(--b); padding: var(--sp) 0; }
.cdi-inner, .salary-inner, .practices-inner, .trust-inner { align-items: start; display: grid; gap: 7rem; grid-template-columns: 1fr 1fr; }
.cdi-inner { align-items: center; }
.cdi-eyebrow, .practices-eyebrow { align-items: center; display: flex; gap: 12px; margin-bottom: 2rem; }
.cdi-left h2 em, .practices-left h2 em, .final-practice .final-title em { color: var(--blue-dk); }
.cdi-left p, .practices-left p { color: var(--ink-2); font-size: 15px; line-height: 1.8; margin: 1.3rem 0 2.2rem; max-width: 450px; }
.cdi-stats { display: flex; flex-direction: column; }
.cdi-stat { align-items: baseline; border-bottom: 1px solid var(--b); display: grid; gap: 1.5rem; grid-template-columns: 88px 1fr; padding: 1.5rem 0; }
.cdi-stat:first-child { padding-top: 0; }
.cdi-stat:last-child { border-bottom: none; padding-bottom: 0; }
.cdi-stat-n { color: var(--blue-dk); font-family: var(--fd); font-size: 2.4rem; font-weight: 300; line-height: 1; }
.cdi-stat-l { color: var(--ink-2); font-size: 13.5px; line-height: 1.55; }

.how-section, .practices-section, .blog-section { padding: var(--sp) 0; }
.how-header { align-items: end; display: grid; gap: 6rem; grid-template-columns: 1fr 1fr; margin-bottom: 4rem; }
.how-header-right p { color: var(--ink-2); font-size: 15px; line-height: 1.8; max-width: 440px; }
.how-items { border: 1px solid var(--b); border-radius: var(--r-lg); display: grid; grid-template-columns: repeat(3,1fr); overflow: hidden; }
.how-item { border-right: 1px solid var(--b); overflow: hidden; padding: 3rem 2.8rem; position: relative; transition: background .2s; }
.how-item:last-child { border-right: none; }
.how-item:hover { background: var(--ivory-s); }
.how-n { color: var(--ink); font-family: var(--fd); font-size: 7rem; font-weight: 300; letter-spacing: -.05em; line-height: 1; opacity: .13; pointer-events: none; position: absolute; right: 1.5rem; top: .8rem; transition: opacity .2s; user-select: none; }
.how-item:hover .how-n { opacity: .18; }
.how-step-n { color: var(--yellow-dk); font-family: var(--fm); font-size: 10px; font-weight: 300; letter-spacing: .18em; margin-bottom: 1.6rem; position: relative; }
.how-title, .step-title { align-items: center; color: var(--ink); display: flex; flex-wrap: wrap; font-size: 15px; font-weight: 500; gap: 10px; margin-bottom: .75rem; position: relative; }
.how-body, .step-body { color: var(--ink-2); font-size: 13.5px; line-height: 1.72; position: relative; }

.salary-rows { border: 1px solid var(--b); border-radius: var(--r-md); display: flex; flex-direction: column; margin-top: 1.5rem; overflow: hidden; }
.salary-row { border-bottom: 1px solid var(--b); cursor: default; display: grid; grid-template-columns: 1fr auto; padding: 1rem 1.2rem; transition: background .18s; }
.salary-row:last-child { border-bottom: none; }
.salary-row:hover { background: var(--ivory-c); }
.salary-spec { color: var(--ink-2); font-size: 14px; }
.salary-val { color: var(--ink); font-family: var(--fm); font-size: 11px; font-weight: 300; letter-spacing: .04em; }
.salary-note { color: var(--ink-3); font-size: 11.5px; font-style: italic; line-height: 1.6; margin-top: 1.1rem; }
.bench-capture { background: var(--ivory); border: 1px solid var(--b); border-radius: var(--r-md); margin-top: 2rem; padding: 1.8rem; }
.bench-row { display: flex; gap: 8px; margin-top: .9rem; }
.bench-row input { background: var(--ivory); border: 1px solid var(--b-md); border-radius: var(--r); color: var(--ink); flex: 1; font-family: var(--fb); font-size: 13px; outline: none; padding: .7rem 1rem; transition: border-color .18s; }
.bench-row input:focus { border-color: var(--yellow-dk); }
.bench-row input::placeholder { color: var(--ink-3); }
.bench-row button { background: var(--yellow); border: none; border-radius: var(--r); color: var(--ink); cursor: pointer; font-family: var(--fb); font-size: 13px; font-weight: 500; padding: .7rem 1.25rem; transition: background .18s; white-space: nowrap; }
.bench-row button:hover { background: var(--yellow-lt); }
.bench-fields { display: grid; gap: 8px; grid-template-columns: repeat(3,1fr); margin-top: 8px; }
.bench-fields input { background: var(--ivory); border: 1px solid var(--b); border-radius: var(--r); color: var(--ink); font-family: var(--fb); font-size: 12.5px; outline: none; padding: .68rem .85rem; transition: border-color .18s; width: 100%; }
.bench-fields input:focus { border-color: var(--yellow-dk); }
.bench-fields input::placeholder { color: var(--ink-3); }
.bench-status { color: var(--ink-3); font-size: 11.5px; line-height: 1.55; margin-top: .75rem; }

.steps { list-style: none; }
.step { border-bottom: 1px solid var(--b); display: grid; grid-template-columns: 52px 1fr; padding: 1.8rem 0; }
.step:first-child { padding-top: 0; }
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step-n { color: var(--blue-dk); font-family: var(--fm); font-size: 10px; font-weight: 300; letter-spacing: .16em; padding-top: 3px; }

.testi-block { border-left: 2px solid var(--yellow); padding-left: 2.2rem; }
.testi-quote { color: var(--ink); font-family: var(--fd); font-size: 1.5rem; font-style: italic; font-weight: 300; line-height: 1.5; margin-bottom: 1.2rem; }
.testi-attr { color: var(--ink-3); font-family: var(--fm); font-size: 9.5px; font-weight: 300; letter-spacing: .12em; text-transform: uppercase; }
.proof-grid { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; margin-top: 2.5rem; }
.proof-card { background: var(--ivory); border: 1px solid var(--b); border-radius: var(--r-md); padding: 1.6rem; }
.proof-n { font-family: var(--fd); font-size: 2.6rem; font-weight: 300; line-height: 1; margin-bottom: .4rem; }
.proof-n-y { color: var(--yellow-dk); }
.proof-n-m { color: var(--ink-4); font-size: 2rem; }
.proof-l { color: var(--ink-2); font-size: 12.5px; line-height: 1.55; }
.proof-l small { color: var(--ink-3); display: block; font-size: 11px; margin-top: 2px; }
.consent-list { display: flex; flex-direction: column; }
.consent-item { align-items: flex-start; border-bottom: 1px solid var(--b); display: flex; gap: 1.2rem; padding: 1.2rem 0; }
.consent-item:first-child { padding-top: 0; }
.consent-item:last-child { border-bottom: none; padding-bottom: 0; }
.consent-mark { align-items: center; border: 1.5px solid var(--yellow-bdr); border-radius: 50%; display: flex; flex-shrink: 0; height: 22px; justify-content: center; margin-top: 1px; width: 22px; }
.consent-mark svg { fill: none; height: 10px; stroke: var(--yellow-dk); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; width: 10px; }
.consent-title { color: var(--ink); font-size: 14px; font-weight: 500; margin-bottom: 3px; }
.consent-body { color: var(--ink-2); font-size: 13px; line-height: 1.6; }

.blog-header { align-items: flex-end; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; margin-bottom: 3.5rem; }
.blog-grid { border: 1px solid var(--b); border-radius: var(--r-lg); display: grid; grid-template-columns: repeat(3,1fr); overflow: hidden; }
.blog-card { background: var(--ivory); border-right: 1px solid var(--b); display: flex; flex-direction: column; padding: 2.8rem; transition: background .2s; }
.blog-card:last-child { border-right: none; }
.blog-card:hover { background: var(--ivory-s); }
.blog-cat { color: var(--ink-3); font-family: var(--fm); font-size: 9px; font-weight: 300; letter-spacing: .14em; margin-bottom: 1.2rem; text-transform: uppercase; }
.blog-title { color: var(--ink); flex: 1; font-family: var(--fd); font-size: 1.3rem; line-height: 1.3; margin-bottom: 1.8rem; }
.blog-link { align-items: center; color: var(--yellow-dk); display: flex; font-size: 13px; gap: 6px; text-decoration: none; transition: color .18s; }
.blog-link:hover { color: var(--ink); }
.blog-link svg { height: 12px; width: 12px; }
.insights-hero {
  background: var(--ivory);
  border-bottom: 1px solid var(--b);
  padding: 8rem 0 4rem;
}
.insights-hero-inner {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr) 360px;
}
.insights-hero h1 {
  font-size: clamp(3.1rem, 7vw, 6.2rem);
  font-weight: 300;
  letter-spacing: -.04em;
  max-width: 860px;
}
.insights-hero p {
  color: var(--ink-2);
  font-size: 1.08rem;
  line-height: 1.72;
  margin-top: 1.2rem;
  max-width: 760px;
}
.insights-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.5rem;
}
.insights-topic-card {
  background: #fff;
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  padding: 1.25rem;
}
.insights-topic-card h2 {
  font-family: var(--fb);
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: .9rem;
  text-transform: uppercase;
}
.insights-topic-group {
  border-top: 1px solid var(--b);
  padding: 1rem 0;
}
.insights-topic-group:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.insights-topic-group:last-child {
  padding-bottom: 0;
}
.insights-topic-group > span {
  color: var(--ink-3);
  display: block;
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .14em;
  margin-bottom: .65rem;
  text-transform: uppercase;
}
.insights-topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.insights-topic-list a,
.insight-tag {
  background: var(--ivory-s);
  border: 1px solid var(--b);
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 12px;
  padding: .35rem .7rem;
  text-decoration: none;
}
.insights-topic-list a:hover {
  border-color: var(--blue-bdr);
  color: var(--blue-dk);
}
.insights-listing {
  padding: 3rem 0 var(--sp);
}
.insights-featured-grid,
.insights-card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
.insight-card {
  background: #fff;
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.35rem;
  text-decoration: none;
  transition: border-color .18s, transform .18s;
}
.insight-card:hover {
  border-color: var(--blue-bdr);
  transform: translateY(-2px);
}
.insight-featured-guide {
  align-items: end;
  background: linear-gradient(135deg, #fff, var(--blue-dim));
  display: grid;
  gap: 1.4rem;
  grid-template-columns: minmax(0, 1fr) 320px;
  margin-bottom: 2rem;
  min-height: 0;
}
.insight-featured-guide h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  max-width: 820px;
}
.insight-featured-guide p {
  max-width: 760px;
}
.insights-register-panel {
  background: var(--ink);
  border-radius: var(--r-lg);
  color: var(--ivory);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  margin: 2rem 0 3rem;
  padding: 2rem;
}
.insights-register-panel .label {
  color: rgba(242,188,0,.72);
}
.insights-register-panel h2 {
  color: var(--ivory);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  letter-spacing: -.02em;
  margin-top: .5rem;
}
.insights-register-panel p {
  color: rgba(250,249,246,.68);
  line-height: 1.75;
  margin-top: 1rem;
}
.insights-register-grid {
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(2, 1fr);
}
.insights-register-grid div {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 1rem;
}
.insights-register-grid strong,
.insights-register-grid span {
  display: block;
}
.insights-register-grid strong {
  color: var(--ivory);
  margin-bottom: .45rem;
}
.insights-register-grid span {
  color: rgba(250,249,246,.62);
  font-size: 13px;
  line-height: 1.6;
}
.insights-register-actions,
.insights-final-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}
.insights-register-actions {
  grid-column: 1 / -1;
}
.insights-register-actions .btn-outline,
.insights-final-actions .btn-outline {
  background: #fff;
}
.insight-card .blog-cat {
  margin-bottom: .8rem;
}
.insight-card h2,
.insight-card h3 {
  color: var(--ink);
  font-size: 1.35rem;
  margin-bottom: .8rem;
}
.insight-card p {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.65;
}
.insight-card-footer {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: auto;
  padding-top: 1.4rem;
}
.insights-section-head {
  align-items: end;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 3rem 0 1rem;
}
.insights-section-head h2 {
  font-size: 1.9rem;
}
.insights-final-cta {
  align-items: center;
  background: var(--ivory-s);
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 3rem;
  padding: 2rem;
}
.insights-final-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: .45rem 0 .75rem;
}
.insights-final-cta p {
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 760px;
}
.insight-article-hero {
  background: #fff;
  border-bottom: 1px solid var(--b);
  padding: 8rem 0 3rem;
}
.insight-article-shell {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 760px) 300px;
}
.insight-breadcrumb {
  color: var(--ink-3);
  font-size: 12px;
  margin-bottom: 1.2rem;
}
.insight-breadcrumb a {
  color: var(--ink-2);
  text-decoration: none;
}
.insight-article-hero h1 {
  font-size: clamp(2.9rem, 6vw, 5.2rem);
  font-weight: 300;
  letter-spacing: -.04em;
}
.insight-deck {
  color: var(--ink-2);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-top: 1rem;
}
.insight-meta {
  color: var(--ink-3);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--fm);
  font-size: 11px;
  gap: .9rem;
  letter-spacing: .08em;
  margin-top: 1.4rem;
  text-transform: uppercase;
}
.insight-share {
  background: var(--ivory);
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  padding: 1rem;
  position: sticky;
  top: 100px;
}
.insight-share h2 {
  font-family: var(--fb);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: .8rem;
  text-transform: uppercase;
}
.insight-share a,
.insight-share button {
  background: #fff;
  border: 1px solid var(--b);
  border-radius: var(--r);
  color: var(--ink);
  display: block;
  font-family: var(--fb);
  font-size: 13px;
  margin-top: .5rem;
  padding: .65rem .75rem;
  text-align: left;
  text-decoration: none;
  width: 100%;
}
.insight-article-body {
  padding: 3rem 0 var(--sp);
}
.insight-content {
  max-width: 760px;
}
.answer-box {
  background: var(--blue-dim);
  border: 1px solid var(--blue-bdr);
  border-radius: var(--r-md);
  margin-bottom: 2rem;
  padding: 1.2rem;
}
.answer-box strong {
  display: block;
  margin-bottom: .45rem;
}
.insight-signal-grid {
  display: grid;
  gap: .85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.5rem 0 2rem;
}
.insight-signal-card {
  background: #fff;
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  padding: 1rem;
}
.insight-signal-card strong,
.insight-signal-card span {
  display: block;
}
.insight-signal-card strong {
  color: var(--ink);
  margin-bottom: .45rem;
}
.insight-signal-card span {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.6;
}
.insight-signal-good {
  border-color: rgba(31, 122, 87, .24);
}
.insight-signal-risk {
  border-color: rgba(192, 74, 42, .24);
}
.insight-mid-cta {
  background: var(--ivory-s);
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  margin: 2rem 0;
  padding: 1.25rem;
}
.insight-mid-cta h2 {
  font-size: 1.45rem;
  margin-bottom: .55rem;
}
.insight-mid-cta p {
  margin-bottom: 1rem;
}
.insight-content h2 {
  font-size: 2rem;
  margin: 2.4rem 0 .8rem;
}
.insight-content h3 {
  font-family: var(--fb);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 1.4rem 0 .4rem;
}
.insight-content p,
.insight-content li {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.8;
}
.insight-content ul {
  margin: .8rem 0 1.2rem 1.2rem;
}
.insight-cta-band {
  background: var(--ink);
  border-radius: var(--r-md);
  color: var(--ivory);
  margin: 2.6rem 0;
  padding: 1.6rem;
}
.insight-cta-band p {
  color: rgba(250,249,246,.72);
  margin: .5rem 0 1rem;
}
.related-insights {
  border-top: 1px solid var(--b);
  margin-top: 3rem;
  padding-top: 2rem;
}
.related-insights-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
.insight-faq {
  border-top: 1px solid var(--b);
  margin-top: 2.6rem;
  padding-top: 1.4rem;
}
.insight-faq details {
  border-bottom: 1px solid var(--b);
  padding: 1rem 0;
}
.insight-faq summary {
  cursor: pointer;
  font-weight: 700;
}

.final { background: var(--ink); overflow: hidden; padding: 7rem 0 0; position: relative; }
.final-v { bottom: -8%; opacity: .12; pointer-events: none; position: absolute; right: -6%; }
.final-v svg { height: 700px; width: 700px; }
.final-inner { display: grid; grid-template-columns: 1fr 1fr; position: relative; }
.final-physician { border-right: 1px solid rgba(255,255,255,.08); padding: 0 6rem 7rem 0; }
.final-practice { padding: 0 0 7rem 6rem; }
.final-label-y, .final-label-b { font-family: var(--fm); font-size: 10px; font-weight: 300; letter-spacing: .18em; margin-bottom: 1.4rem; text-transform: uppercase; }
.final-label-y { color: rgba(242,188,0,.55); }
.final-label-b { color: rgba(163,189,216,.55); }
.final-title { color: var(--ivory); font-family: var(--fd); font-size: clamp(2rem,3.8vw,3.1rem); font-weight: 300; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 1.2rem; }
.final-physician .final-title em { color: var(--yellow-lt); }
.final-practice .final-title em { color: var(--blue-lt); }
.final-body { color: rgba(250,249,246,.48); font-size: 14.5px; line-height: 1.78; margin-bottom: 2.5rem; max-width: 390px; }

footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,.08); padding: 0 0 2.5rem; }
.ft-wrap { padding-top: 4rem; }
.ft-top { display: grid; gap: 3rem; grid-template-columns: 2.4fr 1fr 1fr 1fr 1fr; margin-bottom: 4rem; }
.ft-logo { align-items: center; color: var(--ivory); display: flex; font-family: var(--fd); font-size: 1.15rem; font-weight: 500; gap: 11px; margin-bottom: 1.2rem; }
.ft-about { color: rgba(250,249,246,.42); font-size: 13.5px; line-height: 1.72; margin-bottom: 1.8rem; max-width: 280px; }
.ft-contact a { color: rgba(250,249,246,.42); display: block; font-size: 13px; margin-bottom: 5px; text-decoration: none; transition: color .18s; }
.ft-contact a:hover { color: var(--yellow-lt); }
.ft-social { display: flex; gap: 9px; margin-top: 1.5rem; }
.ft-social a { align-items: center; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: var(--r); color: rgba(250,249,246,.38); display: flex; height: 32px; justify-content: center; text-decoration: none; transition: all .18s; width: 32px; }
.ft-social a:hover { border-color: var(--yellow-bdr); color: var(--yellow-lt); }
.ft-col h4 { color: rgba(250,249,246,.28); font-family: var(--fm); font-size: 9.5px; font-weight: 300; letter-spacing: .16em; margin-bottom: 1.4rem; text-transform: uppercase; }
.ft-col ul { list-style: none; }
.ft-col li { margin-bottom: 10px; }
.ft-col a { color: rgba(250,249,246,.42); font-size: 13.5px; text-decoration: none; transition: color .18s; }
.ft-col a:hover { color: var(--ivory); }
.ft-bot { align-items: center; border-top: 1px solid rgba(255,255,255,.07); color: rgba(250,249,246,.26); display: flex; flex-wrap: wrap; font-size: 11.5px; gap: 1rem; justify-content: space-between; padding-top: 1.8rem; }
.ft-bot-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.ft-bot-links a { color: rgba(250,249,246,.26); text-decoration: none; transition: color .18s; }
.ft-bot-links a:hover { color: rgba(250,249,246,.6); }

.utility-main {
  min-height: 100vh;
  padding: 8.5rem 0 5rem;
}
.utility-shell {
  align-items: start;
  display: grid;
  gap: 5rem;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 520px);
}
.utility-kicker {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 2rem;
}
.utility-copy {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.8;
  margin: 1.5rem 0 2rem;
  max-width: 480px;
}
.utility-proof {
  border-top: 1px solid var(--b);
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  margin-top: 3rem;
  max-width: 520px;
}
.utility-proof-item {
  border-bottom: 1px solid var(--b);
  display: grid;
  gap: 1rem;
  grid-template-columns: 38px 1fr;
  padding: 1.2rem 0;
}
.utility-proof-n {
  color: var(--yellow-dk);
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .14em;
  padding-top: 4px;
}
.utility-proof-title {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}
.utility-proof-body {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.6;
}
.registration-reasons {
  background: #fff;
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  display: grid;
  gap: 0;
  margin-top: 2rem;
  max-width: 520px;
  overflow: hidden;
}
.registration-reasons div {
  border-bottom: 1px solid var(--b);
  display: grid;
  gap: .35rem;
  padding: 1.1rem 1.2rem;
}
.registration-reasons div:last-child {
  border-bottom: 0;
}
.registration-reasons strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}
.registration-reasons span {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.6;
}
.auth-panel {
  background: var(--ivory);
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 70px rgba(28,26,20,.08);
  overflow: hidden;
}
.auth-panel-head {
  border-bottom: 1px solid var(--b);
  padding: 2rem 2rem 1.6rem;
}
.auth-panel-title {
  font-family: var(--fd);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
}
.auth-panel-sub {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.65;
  margin-top: .7rem;
}
.auth-form {
  display: grid;
  gap: 1.1rem;
  padding: 2rem;
}
.intake-track {
  background: var(--ivory-s);
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(3, 1fr);
  padding: .55rem;
}
.intake-step {
  align-items: center;
  color: var(--ink-3);
  display: flex;
  font-family: var(--fm);
  font-size: 9px;
  gap: 7px;
  letter-spacing: .12em;
  min-height: 34px;
  text-transform: uppercase;
}
.intake-step::before {
  background: var(--ink-4);
  border-radius: 50%;
  content: "";
  height: 6px;
  width: 6px;
}
.intake-step:first-child {
  color: var(--yellow-dk);
}
.intake-step:first-child::before {
  background: var(--yellow);
}
.form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.field {
  display: grid;
  gap: .42rem;
}
.field label,
.choice-label {
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  background: #fff;
  border: 1px solid var(--b-md);
  border-radius: var(--r);
  color: var(--ink);
  font-family: var(--fb);
  font-size: 14px;
  min-height: 44px;
  outline: none;
  padding: .72rem .85rem;
  transition: border-color .18s, box-shadow .18s;
  width: 100%;
}
.field textarea {
  min-height: 96px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--yellow-dk);
  box-shadow: 0 0 0 3px var(--yellow-dim);
}
.field-hint {
  color: var(--ink-3);
  font-size: 11.5px;
  line-height: 1.5;
}
.choice-row {
  display: grid;
  gap: .7rem;
  grid-template-columns: 1fr 1fr;
}
.choice {
  align-items: start;
  background: var(--ivory-s);
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  cursor: pointer;
  display: grid;
  gap: .2rem;
  grid-template-columns: 18px 1fr;
  padding: .9rem;
}
.choice input {
  accent-color: var(--yellow);
  margin-top: 3px;
}
.choice span {
  color: var(--ink-2);
  font-size: 12.5px;
  line-height: 1.45;
}
.checkbox-grid {
  display: grid;
  gap: .65rem;
  grid-template-columns: repeat(2, 1fr);
}
.checkbox-chip {
  align-items: center;
  background: #fff;
  border: 1px solid var(--b);
  border-radius: var(--r);
  color: var(--ink-2);
  cursor: pointer;
  display: flex;
  font-size: 12.5px;
  gap: .55rem;
  min-height: 42px;
  padding: .7rem .8rem;
}
.checkbox-chip input {
  accent-color: var(--yellow);
  flex-shrink: 0;
}
.section-note {
  color: var(--ink-3);
  font-size: 11.5px;
  line-height: 1.5;
  margin-top: .35rem;
}
.form-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: .5rem;
}
.form-note {
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.55;
}
.auth-switch {
  background: var(--ivory-s);
  border-top: 1px solid var(--b);
  color: var(--ink-2);
  font-size: 13px;
  padding: 1rem 2rem;
}
.auth-switch a {
  color: var(--yellow-dk);
  text-decoration: none;
}
.auth-switch a:hover {
  color: var(--ink);
}

.buyer-hero {
  background: var(--ink);
  color: var(--ivory);
  overflow: hidden;
  padding: 10rem 0 5rem;
  position: relative;
}
.buyer-hero::after {
  background: linear-gradient(135deg, rgba(243,203,189,.24), rgba(242,188,0,.08));
  content: "";
  height: 520px;
  opacity: .55;
  position: absolute;
  right: -220px;
  top: -120px;
  transform: rotate(18deg);
  width: 520px;
}
.buyer-hero-inner {
  display: grid;
  gap: 5rem;
  grid-template-columns: minmax(0, 1fr) 420px;
  position: relative;
  z-index: 1;
}
.buyer-hero .label {
  color: rgba(250,249,246,.42);
}
.buyer-hero h1 {
  color: var(--ivory);
  max-width: 780px;
}
.buyer-hero h1 em {
  color: var(--blue-lt);
}
.buyer-copy {
  color: rgba(250,249,246,.58);
  font-size: 16px;
  line-height: 1.8;
  margin: 1.7rem 0 2.4rem;
  max-width: 620px;
}
.buyer-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.buyer-signal {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  background: rgba(250,249,246,.04);
  backdrop-filter: blur(18px);
  padding: 1.6rem;
}
.buyer-signal-row {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 1.1rem 0;
}
.buyer-signal-row:first-child {
  padding-top: 0;
}
.buyer-signal-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.buyer-signal-n {
  color: var(--blue-lt);
  font-family: var(--fd);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
}
.buyer-signal-l {
  color: rgba(250,249,246,.5);
  font-size: 12.5px;
  line-height: 1.55;
  margin-top: .45rem;
}
.background-check-hero {
  padding-bottom: 4rem;
}
.background-check-hero .buyer-hero-inner {
  align-items: center;
  gap: 3.25rem;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 390px);
}
.background-check-hero h1 {
  font-size: clamp(4rem, 7.2vw, 6.6rem);
  max-width: 900px;
}
.background-check-hero .buyer-copy {
  max-width: 540px;
}
.credential-hero-card {
  background: rgba(250,249,246,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  box-shadow: 0 32px 90px rgba(0,0,0,.16);
  overflow: hidden;
}
.credential-card-kicker {
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(250,249,246,.48);
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .14em;
  padding: 1.2rem 1.35rem 1rem;
  text-transform: uppercase;
}
.credential-hero-card h2 {
  color: var(--ivory);
  font-size: clamp(1.8rem, 2vw, 2.35rem);
  font-weight: 400;
  padding: 1.25rem 1.35rem 0;
}
.credential-checklist {
  display: grid;
  gap: 0;
  padding: 1.1rem 1.35rem 1.35rem;
}
.credential-checklist div {
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  gap: .25rem;
  grid-template-columns: 38px 1fr;
  padding: 1rem 0;
}
.credential-checklist div:first-child {
  border-top: none;
  padding-top: .3rem;
}
.credential-checklist span {
  color: var(--yellow);
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .14em;
  padding-top: .25rem;
}
.credential-checklist strong {
  color: var(--ivory);
  font-size: 14px;
  font-weight: 500;
}
.credential-checklist p {
  color: rgba(250,249,246,.5);
  font-size: 12.5px;
  grid-column: 2;
  line-height: 1.55;
}
.credential-card-note {
  background: rgba(250,249,246,.08);
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(250,249,246,.58);
  font-size: 12px;
  line-height: 1.55;
  padding: 1rem 1.35rem;
}
.referral-hero {
  padding-bottom: 4.25rem;
}
.referral-hero .buyer-hero-inner {
  align-items: center;
  gap: 3.5rem;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 410px);
}
.referral-hero h1 {
  font-size: clamp(4rem, 7.4vw, 6.8rem);
  max-width: 760px;
}
.referral-hero .buyer-copy {
  max-width: 550px;
}
.referral-hero-card {
  background: rgba(250,249,246,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  box-shadow: 0 32px 90px rgba(0,0,0,.16);
  overflow: hidden;
}
.referral-hero-kicker {
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(250,249,246,.48);
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .14em;
  padding: 1.2rem 1.35rem 1rem;
  text-transform: uppercase;
}
.referral-hero-card h2 {
  color: var(--ivory);
  font-size: clamp(1.9rem, 2.2vw, 2.55rem);
  font-weight: 400;
  padding: 1.35rem 1.35rem .25rem;
}
.referral-approach-list {
  display: grid;
  padding: .7rem 1.35rem 1.35rem;
}
.referral-approach-list div {
  align-items: baseline;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  gap: .9rem;
  grid-template-columns: 32px 1fr;
  padding: .9rem 0;
}
.referral-approach-list div:first-child {
  border-top: none;
}
.referral-approach-list span {
  color: var(--yellow);
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .14em;
}
.referral-approach-list p {
  color: rgba(250,249,246,.76);
  font-size: 14px;
  line-height: 1.45;
}
.referral-hero-note {
  background: rgba(250,249,246,.08);
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(250,249,246,.58);
  font-size: 12px;
  line-height: 1.55;
  padding: 1rem 1.35rem;
}
.policy-hero {
  padding-bottom: 4.5rem;
}
.policy-hero .buyer-hero-inner {
  align-items: center;
  gap: 3.75rem;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 430px);
}
.policy-hero h1 {
  font-size: clamp(3.85rem, 7.2vw, 6.65rem);
  max-width: 860px;
}
.policy-hero .buyer-copy {
  max-width: 620px;
}
.policy-signal .buyer-signal-n {
  color: var(--yellow);
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.policy-section {
  padding: var(--sp) 0;
}
.policy-layout {
  align-items: start;
  display: grid;
  gap: 4rem;
  grid-template-columns: 240px minmax(0, 1fr);
}
.policy-nav {
  background: var(--ivory-s);
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  display: grid;
  overflow: hidden;
  position: sticky;
  top: 96px;
}
.policy-nav a {
  border-bottom: 1px solid var(--b);
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.35;
  padding: .9rem 1rem;
  text-decoration: none;
  transition: background .18s, color .18s;
}
.policy-nav a:last-child {
  border-bottom: none;
}
.policy-nav a:hover {
  background: var(--ivory);
  color: var(--ink);
}
.policy-content {
  display: grid;
  gap: 2rem;
}
.policy-content section {
  background: var(--ivory);
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  scroll-margin-top: 104px;
}
.policy-content h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.45rem);
  margin: .45rem 0 1.05rem;
}
.policy-content h3 {
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  margin-bottom: .55rem;
}
.policy-content p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.85;
  margin-top: .9rem;
}
.policy-content a {
  color: var(--blue-dk);
  text-decoration: none;
}
.policy-content a:hover {
  color: var(--ink);
}
.policy-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.35rem;
}
.policy-grid div {
  background: var(--ivory-s);
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  padding: 1.2rem;
}
.policy-grid p {
  font-size: 13.5px;
  line-height: 1.72;
  margin-top: 0;
}
.policy-note {
  background: var(--blue-dim);
  border: 1px solid var(--blue-bdr);
  border-radius: var(--r-md);
  color: var(--blue-dk);
  font-size: 13px;
  line-height: 1.7;
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
}
.contact-hero {
  padding-bottom: 4.25rem;
}
.contact-hero-inner {
  align-items: center;
  display: grid;
  gap: 4.25rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 450px);
  position: relative;
  z-index: 1;
}
.contact-hero h1 {
  font-size: clamp(4rem, 7.4vw, 6.9rem);
  max-width: 880px;
}
.contact-hero .buyer-copy {
  max-width: 650px;
}
.contact-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.contact-hero-trust {
  color: rgba(250,249,246,.42);
  font-size: 12px;
  line-height: 1.55;
  margin-top: 1.35rem;
}
.contact-route-panel {
  background: rgba(250,249,246,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  box-shadow: 0 32px 90px rgba(0,0,0,.16);
  overflow: hidden;
}
.contact-route-head {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 1.35rem;
}
.contact-route-head span {
  color: rgba(250,249,246,.42);
  display: block;
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .16em;
  margin-bottom: .45rem;
  text-transform: uppercase;
}
.contact-route-head strong {
  color: var(--ivory);
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
}
.contact-route {
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: inherit;
  display: grid;
  gap: 1rem;
  grid-template-columns: 34px 1fr;
  padding: 1.25rem 1.35rem;
  text-decoration: none;
  transition: background .18s, border-color .18s;
}
.contact-route:last-child {
  border-bottom: none;
}
.contact-route:hover {
  background: rgba(250,249,246,.07);
  border-color: rgba(242,188,0,.24);
}
.contact-route > span {
  color: var(--yellow);
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .14em;
  padding-top: .2rem;
}
.contact-route strong {
  color: var(--ivory);
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: .35rem;
}
.contact-route p {
  color: rgba(250,249,246,.55);
  font-size: 12.5px;
  line-height: 1.55;
}
.contact-route-call {
  background: rgba(242,188,0,.08);
}
.buyer-band {
  background: var(--ivory-s);
  border-bottom: 1px solid var(--b);
  padding: 1.2rem 0;
}
.buyer-band-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: space-between;
}
.buyer-band-copy {
  color: var(--ink-2);
  font-size: 13px;
}
.buyer-section {
  padding: var(--sp) 0;
  scroll-margin-top: 92px;
}
.buyer-grid-3 {
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}
.buyer-card {
  background: var(--ivory);
  border-right: 1px solid var(--b);
  padding: 2.4rem;
  position: relative;
}
.buyer-card:last-child {
  border-right: none;
}
.buyer-card::before {
  background: var(--blue);
  content: "";
  height: 3px;
  left: 0;
  opacity: .35;
  position: absolute;
  right: 0;
  top: 0;
}
.buyer-card h3 {
  font-size: 1.55rem;
  margin-bottom: .85rem;
}
.buyer-card p {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.72;
}
.match-brief {
  background: var(--ivory-s);
  border-bottom: 1px solid var(--b);
  border-top: 1px solid var(--b);
  padding: var(--sp) 0;
}
.match-brief-inner {
  align-items: start;
  display: grid;
  gap: 5rem;
  grid-template-columns: .8fr 1.2fr;
}
.brief-preview {
  background: var(--ink);
  border-radius: var(--r-lg);
  color: var(--ivory);
  overflow: hidden;
}
.brief-preview-head {
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
}
.brief-preview-title {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.brief-score {
  background: rgba(243,203,189,.16);
  border: 1px solid rgba(243,203,189,.35);
  border-radius: 999px;
  color: var(--blue-lt);
  font-family: var(--fm);
  font-size: 10px;
  padding: .25rem .6rem;
}
.brief-preview-body {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
}
.brief-line {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  padding: 1rem;
}
.brief-line-label {
  color: rgba(250,249,246,.34);
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: .14em;
  margin-bottom: .45rem;
  text-transform: uppercase;
}
.brief-line-value {
  color: rgba(250,249,246,.76);
  font-size: 13px;
  line-height: 1.55;
}
.brief-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.brief-tags span {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  color: rgba(250,249,246,.62);
  font-size: 11px;
  padding: .25rem .55rem;
}
.intake-section {
  padding: var(--sp) 0;
}
.intake-section-prominent {
  background: linear-gradient(90deg, rgba(250,249,246,.97), rgba(242,240,234,.97)), var(--ivory-s);
  border-bottom: 1px solid var(--b);
  border-top: 1px solid var(--b);
}
.intake-shell {
  align-items: start;
  display: grid;
  gap: 5rem;
  grid-template-columns: .78fr 1.22fr;
}
.intake-copy-panel {
  position: sticky;
  top: 7rem;
}
.search-readiness {
  display: grid;
  gap: .85rem;
  margin: 2rem 0;
}
.readiness-item {
  background: rgba(250,249,246,.72);
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  display: grid;
  gap: .25rem;
  grid-template-columns: 42px 1fr;
  padding: 1rem;
}
.readiness-item span {
  color: var(--blue-dk);
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .12em;
  padding-top: 2px;
}
.readiness-item strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}
.readiness-item p {
  color: var(--ink-2);
  font-size: 12.5px;
  grid-column: 2;
  line-height: 1.6;
}
.buyer-intake-panel {
  background: var(--ivory);
  border: 1px solid rgba(243,203,189,.24);
  border-radius: var(--r-lg);
  box-shadow: 0 28px 90px rgba(28,26,20,.11);
  overflow: hidden;
}
.urgent-strip {
  align-items: center;
  background: var(--ink);
  color: rgba(250,249,246,.68);
  display: flex;
  font-size: 13px;
  gap: 1rem;
  justify-content: space-between;
  padding: .85rem 1.8rem;
}
.urgent-strip span {
  color: rgba(250,249,246,.54);
}
.urgent-strip a {
  color: var(--blue-lt);
  font-weight: 500;
  text-decoration: none;
}
.buyer-intake-head {
  border-bottom: 1px solid var(--b);
  padding: 2rem 2rem 1.8rem;
}
.buyer-intake-head h2 {
  font-size: clamp(2rem,3vw,2.55rem);
  margin-bottom: .65rem;
}
.buyer-intake-head p {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.65;
}
.mini-proof-list {
  display: grid;
  gap: .9rem;
  margin-top: 2rem;
}
.mini-proof {
  border-left: 2px solid var(--blue);
  padding-left: 1rem;
}
.mini-proof strong {
  color: var(--ink);
  display: block;
  font-size: 14px;
  margin-bottom: .2rem;
}
.mini-proof span {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.55;
}
.cost-card {
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  color: var(--ivory);
  overflow: hidden;
  padding: 2rem;
}
.cost-card-label {
  color: rgba(250,249,246,.42);
  font-family: var(--fm);
  font-size: 9.5px;
  letter-spacing: .16em;
  margin-bottom: .55rem;
  text-transform: uppercase;
}
.cost-card-number {
  color: var(--blue-lt);
  font-family: var(--fd);
  font-size: 3.6rem;
  font-weight: 300;
  line-height: 1;
}
.cost-card-copy {
  color: rgba(250,249,246,.54);
  font-size: 13px;
  line-height: 1.55;
  margin: .55rem 0 1.6rem;
}
.cost-list {
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
}
.cost-list-row {
  align-items: baseline;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: .8rem 0;
}
.cost-list-row span:first-child {
  color: rgba(250,249,246,.52);
  font-size: 13px;
}
.cost-list-row span:last-child {
  color: var(--blue-lt);
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: .04em;
  white-space: nowrap;
}
.source-note {
  color: rgba(250,249,246,.28);
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: .08em;
  line-height: 1.6;
  margin-top: 1rem;
}
.calc-section {
  background: var(--ink);
  color: var(--ivory);
  padding: var(--sp) 0;
}
.calc-header {
  margin: 0 auto 3rem;
  max-width: 720px;
  text-align: center;
}
.calc-header .label,
.calc-section .label {
  color: rgba(250,249,246,.42);
}
.calc-header h2 {
  color: var(--ivory);
  margin-top: .9rem;
}
.calc-header h2 em {
  color: var(--blue-lt);
}
.calc-header p {
  color: rgba(250,249,246,.54);
  font-size: 15px;
  line-height: 1.75;
  margin-top: 1rem;
}
.calc-controls {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 2rem;
}
.calc-field {
  display: grid;
  gap: .55rem;
}
.calc-field label {
  color: rgba(250,249,246,.5);
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.calc-field select,
.calc-field input {
  appearance: none;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  color: var(--ivory);
  font-family: var(--fb);
  font-size: 15px;
  min-height: 48px;
  outline: none;
  padding: .85rem 1rem;
}
.calc-field select:focus,
.calc-field input:focus {
  border-color: var(--blue);
}
.calc-field select option {
  background: var(--ink);
}
.calc-output {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}
.calc-col {
  background: rgba(255,255,255,.035);
  padding: 2rem;
  text-align: center;
}
.calc-col.highlight {
  background: rgba(243,203,189,.1);
}
.calc-col-label {
  color: rgba(250,249,246,.42);
  font-family: var(--fm);
  font-size: 9.5px;
  letter-spacing: .12em;
  margin-bottom: .75rem;
  text-transform: uppercase;
}
.calc-col-n {
  color: rgba(250,249,246,.62);
  font-family: var(--fd);
  font-size: 2.45rem;
  font-weight: 300;
  line-height: 1;
}
.calc-col-n.recovered {
  color: var(--blue-lt);
}
.calc-col-sub {
  color: rgba(250,249,246,.42);
  font-size: 12px;
  line-height: 1.5;
  margin-top: .45rem;
}
.timeline-wrap {
  display: grid;
  gap: 1.8rem;
  margin-top: 3rem;
}
.timeline-row-label {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: .75rem;
}
.timeline-row-title {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}
.timeline-row-days {
  color: var(--ink-3);
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: .08em;
}
.timeline-track {
  background: var(--ivory-s);
  border: 1px solid var(--b);
  border-radius: var(--r);
  height: 38px;
  overflow: hidden;
}
.timeline-bar {
  align-items: center;
  display: flex;
  height: 100%;
  padding: 0 1rem;
}
.timeline-market .timeline-bar {
  background: var(--ink-3);
  width: 100%;
}
.timeline-verovian .timeline-bar {
  background: var(--blue-dk);
  width: 12%;
}
.timeline-bar span {
  color: rgba(255,255,255,.82);
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.timeline-saving {
  background: var(--ivory-s);
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.2rem;
  overflow: hidden;
}
.timeline-saving > div {
  background: var(--ivory-s);
  padding: 1.7rem;
  text-align: center;
}
.ts-n {
  color: var(--blue-dk);
  font-family: var(--fd);
  font-size: 2.45rem;
  font-weight: 300;
  line-height: 1;
}
.ts-l {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.5;
  margin-top: .45rem;
}
.pool-grid {
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
  overflow: hidden;
}
.pool-section {
  background: var(--ivory-s);
  border-bottom: 1px solid var(--b);
  border-top: 1px solid var(--b);
  padding: var(--sp) 0;
}
.pool-card {
  background: var(--ivory);
  border-bottom: 1px solid var(--b);
  border-right: 1px solid var(--b);
  padding: 2rem;
}
.pool-card:nth-child(3n) {
  border-right: none;
}
.pool-card:nth-last-child(-n+3) {
  border-bottom: none;
}
.pool-card-head {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: .85rem;
}
.pool-card-spec {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}
.live-dot {
  align-items: center;
  color: var(--blue-dk);
  display: flex;
  font-family: var(--fm);
  font-size: 9px;
  gap: 6px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.live-pip {
  animation: blink 2.2s ease-in-out infinite;
  background: var(--blue);
  border-radius: 50%;
  height: 6px;
  width: 6px;
}
.pool-card-n {
  color: var(--blue-dk);
  font-family: var(--fd);
  font-size: 2.9rem;
  font-weight: 300;
  line-height: 1;
}
.pool-card-copy {
  color: var(--ink-2);
  font-size: 13.2px;
  line-height: 1.62;
  margin-top: .75rem;
}
.pool-card-states {
  color: var(--ink-3);
  font-family: var(--fm);
  font-size: 9.5px;
  letter-spacing: .08em;
  line-height: 1.6;
  margin-top: .4rem;
}
.pool-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.25rem;
}
.pool-card-actions .btn {
  font-size: 12.5px;
  padding: .68rem 1rem;
}
.pool-note {
  color: var(--ink-3);
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: .1em;
  line-height: 1.7;
  margin-top: 1.2rem;
  text-transform: uppercase;
}
.brief-direct {
  display: grid;
  gap: .8rem;
  margin-top: 2rem;
}
.brief-direct a {
  align-items: center;
  background: var(--ivory-s);
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  color: var(--ink-2);
  display: flex;
  gap: .9rem;
  padding: .9rem 1rem;
  text-decoration: none;
  transition: border-color .18s, color .18s;
}
.brief-direct a:hover {
  border-color: var(--b-md);
  color: var(--ink);
}
.brief-direct-icon {
  align-items: center;
  border-radius: var(--r);
  display: flex;
  flex-shrink: 0;
  font-size: 14px;
  height: 32px;
  justify-content: center;
  width: 32px;
}
.brief-direct-icon.blue {
  background: var(--blue-dim);
  color: var(--blue-dk);
}
.brief-direct-title {
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 2px;
}
.brief-direct-sub {
  color: var(--ink-3);
  font-size: 11.5px;
  line-height: 1.45;
}
.faq-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr 1fr;
  margin-top: 2.5rem;
}
.faq-item {
  background: var(--ivory-s);
  border: 1px solid var(--b);
  padding: 1.6rem;
}
.faq-item h3 {
  font-size: 1.35rem;
  margin-bottom: .65rem;
}
.faq-item p {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.7;
}
.brief-steps-wrap {
  padding: 2.3rem;
}
.brief-progress {
  background: var(--ivory-c);
  height: 4px;
}
.brief-progress-bar {
  background: var(--blue-dk);
  height: 100%;
  transition: width .25s ease;
}
.brief-step {
  display: none;
}
.brief-step.active {
  display: block;
}
.brief-step-label {
  color: var(--blue-dk);
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .16em;
  margin-bottom: .55rem;
  text-transform: uppercase;
}
.brief-step-q {
  color: var(--ink);
  font-family: var(--fd);
  font-size: 1.65rem;
  line-height: 1.18;
  margin-bottom: 1.25rem;
}
.brief-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.brief-choice {
  background: var(--ivory);
  border: 1px solid var(--b-md);
  border-radius: var(--r);
  color: var(--ink-2);
  cursor: pointer;
  font-family: var(--fb);
  font-size: 13.5px;
  padding: .6rem 1rem;
  transition: all .18s;
}
.brief-choice:hover,
.brief-choice.selected {
  background: var(--blue-dk);
  border-color: var(--blue-dk);
  color: #fff;
}
.brief-nav {
  align-items: center;
  border-top: 1px solid var(--b);
  display: flex;
  justify-content: space-between;
  margin-top: 1.4rem;
  padding-top: 1.4rem;
}
.brief-submit-btn {
  min-width: 210px;
}
.brief-step[data-step="5"] .brief-submit-btn {
  min-height: 48px;
  min-width: 260px;
}
.brief-back {
  background: transparent;
  border: none;
  color: var(--ink-3);
  cursor: pointer;
  font-family: var(--fb);
  font-size: 13px;
}
.brief-confirm {
  padding: 1rem 0;
  text-align: center;
}
.brief-confirm-title {
  font-family: var(--fd);
  font-size: 1.6rem;
  margin-bottom: .55rem;
}
.brief-confirm-body {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.7;
}
.brief-submit-status {
  color: var(--ink-3);
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: .1em;
  line-height: 1.6;
  margin-top: .85rem;
  text-transform: uppercase;
}
.proof-section {
  background: var(--ink);
  padding: var(--sp) 0;
}
.proof-shell {
  align-items: center;
  display: grid;
  gap: 6rem;
  grid-template-columns: 1fr 1fr;
}
.proof-shell h2 {
  color: var(--ivory);
}
.proof-shell .utility-copy {
  color: rgba(250,249,246,.52);
}
.proof-metrics {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr;
}
.proof-metrics div {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.4rem 1.6rem;
}
.proof-metrics strong {
  color: var(--blue-lt);
  display: block;
  font-family: var(--fd);
  font-size: 2.1rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: .4rem;
}
.proof-metrics span {
  color: rgba(250,249,246,.54);
  font-size: 13.5px;
  line-height: 1.55;
}
.next-section {
  background: var(--ivory);
  border-bottom: 1px solid var(--b);
  padding: var(--sp) 0;
}
.next-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(5, 1fr);
}
.next-item {
  background: var(--ivory-s);
  border: 1px solid var(--b);
  padding: 1.4rem;
}
.next-item span {
  color: var(--blue-dk);
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .14em;
}
.next-item strong {
  color: var(--ink);
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  margin: .8rem 0 .45rem;
}
.next-item p {
  color: var(--ink-2);
  font-size: 12.7px;
  line-height: 1.6;
}
.physician-hero {
  background: var(--ivory);
  border-bottom: 1px solid var(--b);
  overflow: hidden;
  padding: 10rem 0 5rem;
  position: relative;
}
.physician-hero::after {
  background: rgba(242,188,0,.08);
  content: "";
  height: 520px;
  opacity: .7;
  position: absolute;
  right: -220px;
  top: -150px;
  transform: rotate(18deg);
  width: 520px;
}
.physician-hero-inner {
  align-items: center;
  display: grid;
  gap: 5rem;
  grid-template-columns: minmax(0, 1fr) 420px;
  position: relative;
  z-index: 1;
}
.physician-hero h1 {
  max-width: 780px;
}
.physician-copy {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.8;
  margin: 1.7rem 0 2.4rem;
  max-width: 620px;
}
.match-card {
  background: var(--ink);
  border-radius: var(--r-lg);
  color: var(--ivory);
  overflow: hidden;
}
.match-card-head {
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  padding: 1.1rem 1.3rem;
}
.match-card-title {
  color: rgba(250,249,246,.58);
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.match-card-body {
  display: grid;
  gap: .9rem;
  padding: 1.3rem;
}
.match-row {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  padding: .9rem;
}
.match-row-label {
  color: rgba(250,249,246,.34);
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: .13em;
  margin-bottom: .35rem;
  text-transform: uppercase;
}
.match-row-value {
  color: rgba(250,249,246,.78);
  font-size: 13px;
  line-height: 1.55;
}
.physician-band {
  background: var(--ivory-s);
  border-bottom: 1px solid var(--b);
  padding: 1.2rem 0;
}
.physician-band-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: space-between;
}
.preference-grid {
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2.5rem;
  overflow: hidden;
}
.preference-card {
  background: var(--ivory);
  border-right: 1px solid var(--b);
  padding: 1.7rem;
}
.preference-card:last-child {
  border-right: none;
}
.preference-card h3 {
  font-size: 1.35rem;
  margin-bottom: .55rem;
}
.preference-card p {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.65;
}
.specialty-matrix {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
}
.specialty-tile {
  background: var(--ivory);
  border: 1px solid var(--b);
  color: inherit;
  padding: 1.8rem;
  text-decoration: none;
  transition: background .18s, border-color .18s;
}
.specialty-tile:hover {
  background: var(--ivory-s);
  border-color: var(--b-md);
}
.specialty-tile h3 {
  font-size: 1.45rem;
  margin-bottom: .65rem;
}
.specialty-tile p {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.68;
}
.salary-strip {
  background: var(--ink);
  color: var(--ivory);
  padding: var(--sp) 0;
}
.salary-strip h2 {
  color: var(--ivory);
}
.salary-strip h2 em {
  color: var(--yellow-lt);
}
.salary-strip-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2.5rem;
}
.salary-pill {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.45rem;
}
.salary-pill strong {
  color: var(--yellow-lt);
  display: block;
  font-family: var(--fd);
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: .45rem;
}
.salary-pill span {
  color: rgba(250,249,246,.58);
  font-size: 12.5px;
  line-height: 1.55;
}

.specialty-breadcrumb {
  padding: 5.5rem 0 0;
}
.specialty-breadcrumb-inner {
  align-items: center;
  color: var(--ink-3);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--fm);
  font-size: 9.5px;
  font-weight: 300;
  gap: .5rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.specialty-breadcrumb a {
  color: var(--ink-3);
  text-decoration: none;
  transition: color .18s;
}
.specialty-breadcrumb a:hover {
  color: var(--yellow-dk);
}
.specialty-breadcrumb-sep {
  color: var(--ink-4);
}
.specialty-landing-hero {
  background:
    linear-gradient(90deg, rgba(250,249,246,.96) 0%, rgba(250,249,246,.9) 52%, rgba(242,240,234,.86) 100%),
    radial-gradient(circle at 82% 18%, rgba(242,188,0,.18), transparent 30%),
    var(--ivory);
  border-bottom: 1px solid var(--b);
  overflow: hidden;
  padding: 7.4rem 0 5rem;
  position: relative;
}
.specialty-landing-hero::after {
  background:
    linear-gradient(135deg, rgba(242,188,0,.18), rgba(243,203,189,.14)),
    repeating-linear-gradient(90deg, rgba(28,26,20,.05) 0 1px, transparent 1px 26px);
  content: "";
  height: 560px;
  opacity: .55;
  position: absolute;
  right: -240px;
  top: -190px;
  transform: rotate(14deg);
  width: 620px;
}
.specialty-landing-inner {
  align-items: start;
  display: grid;
  gap: clamp(3rem, 5vw, 5.25rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  position: relative;
  z-index: 1;
}
.specialty-hero-main {
  max-width: 720px;
}
.specialty-landing-hero h1 {
  font-size: clamp(4.35rem, 6vw, 7rem);
  letter-spacing: -.045em;
  line-height: .98;
  max-width: 760px;
}
.specialty-hero-copy {
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1.72;
  margin: 1.25rem 0 1.65rem;
  max-width: 610px;
}
.specialty-hero-eye {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 1.35rem;
}
.specialty-hero-badge {
  background: var(--blue-dim);
  border: 1px solid var(--blue-bdr);
  border-radius: 999px;
  color: var(--blue-dk);
  font-family: var(--fm);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: .13em;
  padding: 4px 10px;
  text-transform: uppercase;
}
.specialty-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 1.1rem;
}
.specialty-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 620px;
}
.specialty-hero-trust span {
  background: rgba(28,26,20,.04);
  border: 1px solid var(--b);
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 12px;
  line-height: 1.3;
  padding: 7px 11px;
}
.specialty-hero-panel {
  background: rgba(250,249,246,.9);
  border: 1px solid rgba(28,26,20,.11);
  border-radius: var(--r-xl);
  box-shadow: 0 24px 70px rgba(28,26,20,.12);
  color: var(--ink);
  margin-top: .25rem;
  overflow: hidden;
}
.hero-panel-top {
  align-items: flex-start;
  background: var(--ink);
  display: flex;
  gap: 1.2rem;
  justify-content: space-between;
  padding: 1.45rem 1.65rem 1.5rem;
}
.hero-panel-top h2 {
  color: var(--ivory);
  font-family: var(--fd);
  font-size: 1.42rem;
  font-weight: 400;
  line-height: 1.15;
  margin-top: .35rem;
  max-width: 280px;
}
.hero-panel-private {
  background: rgba(242,188,0,.13);
  border: 1px solid rgba(242,188,0,.3);
  border-radius: 999px;
  color: var(--yellow-lt);
  flex-shrink: 0;
  font-family: var(--fm);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: .12em;
  padding: 5px 10px;
  text-transform: uppercase;
}
.hero-case-tags {
  background: var(--ivory-s);
  border-bottom: 1px solid var(--b);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: .9rem 1.65rem;
}
.hero-case-tags span {
  background: var(--ivory);
  border: 1px solid var(--b);
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 12px;
  padding: 4px 9px;
}
.hero-role-list {
  display: grid;
}
.hero-role-list div {
  border-bottom: 1px solid var(--b);
  display: grid;
  gap: .9rem;
  grid-template-columns: 120px 1fr;
  padding: 1rem 1.65rem;
}
.hero-role-list div:last-child {
  border-bottom: none;
}
.hero-role-list strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
}
.hero-role-list span {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.5;
}
.hero-choice-grid {
  border-top: 1px solid var(--b);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-choice {
  background: var(--yellow-dim);
  padding: .95rem 1.65rem;
}
.hero-choice:first-child {
  border-right: 1px solid var(--yellow-bdr);
}
.hero-choice span {
  color: var(--yellow-dk);
  display: block;
  font-family: var(--fm);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: .12em;
  margin-bottom: .35rem;
  text-transform: uppercase;
}
.hero-choice strong {
  color: var(--ink);
  display: block;
  font-size: 14px;
  font-weight: 500;
}
.specialty-stat-card {
  background: var(--ivory-s);
  border: 1px solid var(--b);
  border-radius: var(--r-xl);
  color: var(--ink);
  overflow: hidden;
}
.specialty-stat-head {
  align-items: center;
  border-bottom: 1px solid var(--b);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.6rem 2rem;
}
.specialty-stat-title {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}
.specialty-stat-head .brief-score {
  background: var(--yellow-dim);
  border-color: var(--yellow-bdr);
  color: var(--yellow-dk);
}
.specialty-stat-body {
  display: grid;
  gap: 0;
}
.specialty-stat-row {
  align-items: baseline;
  border-bottom: 1px solid var(--b);
  display: grid;
  gap: 1.2rem;
  grid-template-columns: auto 1fr;
  padding: 1.4rem 2rem;
}
.specialty-stat-row:last-child {
  border-bottom: none;
}
.specialty-stat-accent {
  background: var(--yellow-dim);
}
.specialty-stat-row strong {
  color: var(--yellow-dk);
  display: block;
  font-family: var(--fd);
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1;
  min-width: 88px;
}
.specialty-stat-row span {
  color: var(--ink-2);
  display: block;
  font-size: 13px;
  line-height: 1.5;
}
.specialty-note {
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.6;
  margin-top: 1rem;
}
.open-roles-strip {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--ivory);
  padding: 1.65rem 0;
}
.open-roles-strip-inner {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
}
.open-roles-strip h2 {
  color: var(--ivory);
  font-family: var(--fd);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.1;
  margin-top: .35rem;
}
.open-roles-strip p {
  color: rgba(250,249,246,.5);
  font-size: 13.5px;
  line-height: 1.6;
  margin-top: .45rem;
  max-width: 680px;
}
.open-roles-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: flex-end;
}
.open-roles-strip .btn-outline {
  border-color: rgba(250,249,246,.22);
  color: rgba(250,249,246,.78);
}
.open-roles-strip .btn-outline:hover {
  border-color: rgba(250,249,246,.48);
  color: var(--ivory);
}
.specialty-signal-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
}
.specialty-signal {
  background: var(--ivory);
  border: 1px solid var(--b);
  padding: 2rem;
}
.specialty-signal strong {
  color: var(--yellow-dk);
  display: block;
  font-family: var(--fd);
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: .6rem;
}
.specialty-signal span {
  color: var(--ink-2);
  display: block;
  font-size: 13.2px;
  line-height: 1.6;
}
.specialty-section {
  padding: var(--sp) 0;
  scroll-margin-top: 92px;
}
.specialty-section-alt {
  background: var(--ivory-s);
  border-bottom: 1px solid var(--b);
  border-top: 1px solid var(--b);
  padding: var(--sp) 0;
  scroll-margin-top: 92px;
}
.specialty-detail-grid {
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.5rem;
  overflow: hidden;
}
.specialty-detail-card {
  background: var(--ivory);
  border-right: 1px solid var(--b);
  padding: 2rem;
}
.specialty-detail-card:last-child {
  border-right: none;
}
.specialty-detail-card h3 {
  font-size: 1.45rem;
  margin-bottom: .7rem;
}
.specialty-detail-card p,
.specialty-detail-card li {
  color: var(--ink-2);
  font-size: 13.3px;
  line-height: 1.68;
}
.specialty-detail-card ul {
  display: grid;
  gap: .55rem;
  list-style: none;
}
.specialty-detail-card li {
  border-top: 1px solid var(--b);
  padding-top: .55rem;
}
.specialty-detail-meta {
  border-top: 1px solid var(--b);
  color: var(--yellow-dk);
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .08em;
  line-height: 1.55;
  margin-top: 1.2rem;
  padding-top: .8rem;
  text-transform: uppercase;
}
.specialty-search-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2.5rem;
}
.specialty-search-grid.is-filtered {
  gap: 1.2rem;
  grid-template-columns: minmax(0, 760px);
}
.specialty-search-card {
  background: var(--ivory);
  border: 1px solid var(--b);
  padding: 1.6rem;
}
.specialty-search-card.is-featured {
  background: var(--yellow-dim);
  border-color: var(--yellow-bdr);
  box-shadow: 0 14px 40px rgba(28,26,20,.06);
  padding: 2rem;
}
.job-opportunity-card {
  background: var(--ivory);
}
.job-opportunity-card.is-featured {
  background: var(--ivory);
}
.job-card-eyebrow {
  color: var(--yellow-dk);
  font-family: var(--fm);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: .13em;
  margin-bottom: .75rem;
  text-transform: uppercase;
}
.specialty-search-card h3 {
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: .55rem;
}
.specialty-search-card p {
  color: var(--ink-2);
  font-size: 12.8px;
  line-height: 1.6;
}
.specialty-search-meta {
  color: var(--ink-3);
  font-family: var(--fm);
  font-size: 9.5px;
  letter-spacing: .1em;
  margin-top: 1rem;
  text-transform: uppercase;
}
.job-card-tags,
.jobs-keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1rem;
}
.job-card-tags span,
.jobs-keyword-row span {
  background: var(--ivory);
  border: 1px solid var(--b);
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 12px;
  line-height: 1.2;
  padding: 6px 10px;
}
.job-card-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.3rem;
}
.role-feed-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.role-feed-card .job-card-tags {
  margin-top: .9rem;
}
.role-feed-card .specialty-search-meta {
  margin-top: .9rem;
}
.role-feed-card .job-card-actions {
  margin-top: auto;
  padding-top: 1.25rem;
}
.role-feed-card .btn {
  font-size: 12.5px;
  justify-content: center;
  padding: .68rem 1rem;
}
.role-feed-card .btn-outline {
  background: rgba(250,249,246,.62);
}
.job-facts {
  border: 1px solid var(--b);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1.25rem;
}
.job-facts div {
  border-bottom: 1px solid var(--b);
  border-right: 1px solid var(--b);
  padding: .9rem 1rem;
}
.job-facts div:nth-child(even) {
  border-right: none;
}
.job-facts div:nth-last-child(-n+2) {
  border-bottom: none;
}
.job-facts span {
  color: var(--ink-3);
  display: block;
  font-family: var(--fm);
  font-size: 8.8px;
  font-weight: 300;
  letter-spacing: .11em;
  margin-bottom: .3rem;
  text-transform: uppercase;
}
.job-facts strong {
  color: var(--ink);
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

/* Specialty jobs landing pages */
.jobs-specialty-hero {
  background:
    linear-gradient(105deg, rgba(28,26,20,.92) 0%, rgba(28,26,20,.82) 48%, rgba(243,203,189,.74) 100%),
    linear-gradient(135deg, rgba(243,203,189,.95), rgba(250,249,246,.2));
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  padding: 8.4rem 0 5.4rem;
  position: relative;
}
.jobs-specialty-hero::after {
  background: repeating-linear-gradient(90deg, rgba(250,249,246,.08) 0 1px, transparent 1px 28px);
  content: "";
  height: 560px;
  opacity: .4;
  position: absolute;
  right: -140px;
  top: -170px;
  transform: rotate(13deg);
  width: 620px;
}
.jobs-specialty-hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 5vw, 5.8rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .85fr);
  position: relative;
  z-index: 1;
}
.jobs-specialty-copy {
  max-width: 760px;
}
.jobs-specialty-kicker {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1.25rem;
}
.jobs-specialty-kicker span {
  border: 1px solid rgba(163,189,216,.28);
  border-radius: 999px;
  color: rgba(250,249,246,.68);
  font-family: var(--fm);
  font-size: 9.5px;
  font-weight: 300;
  letter-spacing: .13em;
  padding: 5px 10px;
  text-transform: uppercase;
}
.jobs-specialty-copy h1 {
  color: var(--ivory);
  font-family: var(--fd);
  font-size: clamp(4rem, 6.7vw, 7.6rem);
  font-weight: 300;
  letter-spacing: -.045em;
  line-height: .96;
  max-width: 780px;
}
.jobs-specialty-copy p {
  color: rgba(250,249,246,.66);
  font-size: 1.05rem;
  line-height: 1.76;
  margin: 1.35rem 0 1.8rem;
  max-width: 620px;
}
.jobs-specialty-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 1.2rem;
}
.jobs-specialty-actions .btn-outline {
  border-color: rgba(250,249,246,.24);
  color: rgba(250,249,246,.8);
}
.jobs-specialty-actions .btn-outline:hover {
  border-color: rgba(250,249,246,.5);
  color: var(--ivory);
}
.jobs-specialty-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.jobs-specialty-trust span {
  background: rgba(250,249,246,.07);
  border: 1px solid rgba(250,249,246,.1);
  border-radius: 999px;
  color: rgba(250,249,246,.55);
  font-size: 12px;
  line-height: 1.3;
  padding: 7px 11px;
}
.jobs-brief-card {
  background: var(--ivory);
  border: 1px solid rgba(163,189,216,.52);
  border-radius: var(--r-md);
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
  overflow: hidden;
}
.jobs-brief-head {
  align-items: center;
  background: linear-gradient(135deg, rgba(243,203,189,.18), rgba(243,203,189,.08));
  border-bottom: 1px solid var(--blue-bdr);
  display: flex;
  justify-content: space-between;
  padding: 1.35rem 1.5rem;
}
.jobs-brief-head span {
  color: var(--blue-dk);
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.jobs-brief-head strong {
  background: var(--blue-dim);
  border: 1px solid var(--blue-bdr);
  border-radius: 999px;
  color: var(--blue-dk);
  font-family: var(--fm);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: .12em;
  padding: 5px 10px;
  text-transform: uppercase;
}
.jobs-brief-body div {
  background: var(--ivory);
  border-bottom: 1px solid var(--b);
  padding: 1.25rem 1.5rem;
}
.jobs-brief-body div:last-child {
  border-bottom: none;
}
.jobs-brief-body span {
  color: var(--ink);
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: .35rem;
}
.jobs-brief-body p {
  color: var(--ink-2) !important;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  max-width: none;
}
.jobs-specialty-filter {
  background: var(--blue-dk);
  color: var(--ivory);
  padding: 1.45rem 0;
}
.jobs-specialty-filter-inner {
  align-items: center;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
}
.jobs-specialty-filter h2 {
  color: var(--ivory);
  font-family: var(--fb);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  margin-top: .25rem;
}
.jobs-specialty-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.jobs-specialty-chips span {
  background: rgba(250,249,246,.12);
  border: 1px solid rgba(250,249,246,.2);
  border-radius: 999px;
  color: rgba(250,249,246,.84);
  font-size: 12px;
  padding: 6px 10px;
}
.jobs-specialty-section {
  padding: var(--sp) 0;
}
.jobs-specialty-section:nth-of-type(odd) {
  background: var(--ivory-s);
}
.jobs-specialty-header {
  align-items: flex-end;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.jobs-specialty-header h2,
.jobs-specialty-faq h2 {
  font-family: var(--fd);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.04;
  max-width: 760px;
}
.jobs-specialty-header p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.7;
  margin-top: .85rem;
  max-width: 580px;
}
.jobs-specialty-grid.specialty-search-grid.is-filtered {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.jobs-specialty-grid .job-opportunity-card {
  border-color: rgba(243,203,189,.22);
  border-radius: var(--r-md);
  box-shadow: 0 18px 50px rgba(28,26,20,.06);
}
.jobs-specialty-grid .job-opportunity-card.is-featured {
  background: var(--ivory);
}
.jobs-specialty-grid .job-card-eyebrow,
.jobs-specialty-grid .job-facts span {
  color: var(--blue-dk);
}
.jobs-specialty-grid .job-card-tags span {
  background: var(--blue-dim);
  border-color: var(--blue-bdr);
  color: var(--blue-dk);
}

/* Main jobs board */
.jobs-board-hero {
  background:
    linear-gradient(110deg, rgba(28,26,20,.9) 0%, rgba(28,26,20,.78) 44%, rgba(243,203,189,.78) 100%),
    var(--blue-dk);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  padding: 7.8rem 0 4.7rem;
  position: relative;
}
.jobs-board-hero::after {
  background: repeating-linear-gradient(90deg, rgba(250,249,246,.08) 0 1px, transparent 1px 28px);
  content: "";
  height: 560px;
  opacity: .38;
  position: absolute;
  right: -160px;
  top: -190px;
  transform: rotate(14deg);
  width: 640px;
}
.jobs-board-hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 5vw, 5.8rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .82fr);
  position: relative;
  z-index: 1;
}
.jobs-board-hero h1 {
  color: var(--ivory);
  font-family: var(--fd);
  font-size: clamp(4rem, 6.2vw, 7rem);
  font-weight: 300;
  letter-spacing: -.045em;
  line-height: .96;
  max-width: 820px;
}
.jobs-board-hero .jobs-board-hero-inner > div:first-child > p {
  color: rgba(250,249,246,.66);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 1.2rem 0 1.55rem;
  max-width: 620px;
}
.jobs-board-shell {
  background: var(--ivory-s);
  padding: 3.6rem 0 5.4rem;
}
.jobs-work-type-panel {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.45rem;
}
.jobs-work-type-copy {
  align-items: end;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .45fr);
}
.jobs-work-type-copy h2 {
  font-family: var(--fd);
  font-size: clamp(2.1rem, 3.2vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  margin-top: .45rem;
}
.jobs-work-type-copy p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
  max-width: 520px;
}
.jobs-work-type-grid {
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.jobs-work-type-card {
  background: rgba(250,249,246,.78);
  border: 1px solid rgba(28,26,20,.11);
  border-left: 4px solid rgba(242,188,0,.62);
  border-radius: var(--r-md);
  box-shadow: 0 14px 34px rgba(28,26,20,.035);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  font-family: var(--fb);
  gap: .45rem;
  min-height: 164px;
  padding: 1rem;
  text-align: left;
  transition: border-color .18s, box-shadow .18s, transform .18s, background .18s;
}
.jobs-work-type-card span {
  color: var(--ink-3);
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.jobs-work-type-card strong {
  font-size: 1.02rem;
  letter-spacing: 0;
  line-height: 1.18;
}
.jobs-work-type-card p {
  color: var(--ink-2);
  font-size: 12.5px;
  line-height: 1.45;
}
.jobs-work-type-card:hover,
.jobs-work-type-card.active {
  background: #fff;
  border-color: var(--agency-salmon-bdr);
  box-shadow: 0 18px 38px rgba(28,26,20,.065);
  transform: translateY(-1px);
}
.jobs-work-type-card.active {
  border-left-color: #F3CBBD;
}
.jobs-work-type-card[data-job-type-preset="Per diem"].active {
  border-left-color: var(--yellow);
}
.jobs-work-type-card[data-job-type-preset="Contract"].active {
  border-left-color: var(--agency-salmon-dk);
}
.jobs-work-type-card[data-job-type-preset="Travel"].active {
  border-left-color: var(--blue-dk);
}
.jobs-board-layout {
  align-items: start;
  display: grid;
  gap: 1.6rem;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
}
.jobs-filter-card {
  background: var(--ivory);
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  display: grid;
  gap: .9rem;
  padding: 1.1rem;
  position: sticky;
  top: 96px;
}
.jobs-filter-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.jobs-filter-head button {
  background: transparent;
  border: none;
  color: var(--blue-dk);
  cursor: pointer;
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.jobs-filter-card .field {
  gap: .38rem;
}
.jobs-filter-card .field label {
  font-size: 12px;
}
.jobs-filter-card .field input,
.jobs-filter-card .field select {
  border-color: rgba(28,26,20,.16);
  min-height: 48px;
  padding: .85rem .9rem;
}
.jobs-results-head {
  align-items: center;
  background: rgba(250,249,246,.72);
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 1.15rem 1.25rem;
}
.jobs-results-actions {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: flex-end;
}
.jobs-results-head h2 {
  font-family: var(--fd);
  font-size: 2.35rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  margin-top: .35rem;
}
.jobs-results-head p {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.55;
  margin-top: .5rem;
  max-width: 620px;
}
.jobs-visible-note {
  color: var(--ink-3) !important;
  font-size: 12.5px !important;
  line-height: 1.45 !important;
  margin-top: .55rem !important;
}
.jobs-card-grid {
  display: grid;
  gap: .9rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.jobs-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
}
.jobs-load-more-wrap .btn[hidden] {
  display: none;
}
.jobs-role-card {
  background: var(--ivory);
  border: 1px solid rgba(28,26,20,.12);
  border-top: 3px solid rgba(243,203,189,.56);
  border-radius: var(--r-md);
  box-shadow: 0 10px 26px rgba(28,26,20,.035);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.25rem;
}
.jobs-role-card[hidden] {
  display: none;
}
.jobs-role-card h3 {
  font-family: var(--fd);
  font-size: 1.42rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: .6rem;
}
.jobs-role-card h3 a,
.job-title-link {
  color: inherit;
  text-decoration: none;
}
.jobs-role-card h3 a:hover {
  color: var(--blue-dk);
}
.jobs-role-card p {
  color: var(--ink-2);
  display: -webkit-box;
  font-size: 13px;
  line-height: 1.55;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.jobs-role-card .job-card-tags { margin: .85rem 0 0; }
.jobs-role-card .job-card-tags span {
  background: var(--blue-dim);
  border-color: var(--blue-bdr);
  color: var(--blue-dk);
  font-size: 11.5px;
  padding: 6px 9px;
}
.jobs-role-card .job-card-tags .jobs-card-type {
  background: rgba(242,188,0,.11);
  border-color: rgba(242,188,0,.34);
  color: #7A5E00;
}
.job-card-ref {
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .02em;
  margin-top: .85rem;
  text-transform: uppercase;
}
.job-card-detail-link {
  align-items: center;
  background: linear-gradient(135deg, rgba(243,203,189,.12), rgba(250,249,246,.7));
  border: 1px solid rgba(243,203,189,.22);
  border-radius: var(--r-md);
  color: var(--blue-dk);
  display: flex;
  font-size: 13px;
  font-weight: 500;
  gap: 1rem;
  justify-content: space-between;
  line-height: 1.25;
  margin: .9rem 0 1rem;
  padding: .72rem .82rem;
  text-decoration: none;
  transition: border-color .18s, box-shadow .18s, transform .18s, background .18s;
}
.job-card-detail-link:hover {
  background: linear-gradient(135deg, rgba(243,203,189,.18), rgba(250,249,246,.92));
  border-color: rgba(243,203,189,.42);
  box-shadow: 0 12px 26px rgba(28,26,20,.06);
  transform: translateY(-1px);
}
.job-card-detail-link i {
  align-items: center;
  background: var(--blue-dk);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-style: normal;
  height: 24px;
  justify-content: center;
  line-height: 1;
  width: 24px;
}
.jobs-role-card .job-card-actions {
  display: grid;
  gap: .55rem;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  justify-content: center;
  margin-top: auto;
}
.jobs-role-card .btn {
  justify-content: center;
  width: 100%;
}
.jobs-role-card .btn-outline {
  background: var(--ivory);
  border-color: rgba(243,203,189,.28);
  color: var(--blue-dk);
}
.jobs-role-card .btn-outline:hover {
  background: var(--blue-dim);
  border-color: rgba(243,203,189,.44);
}

/* Job detail pages */
.job-detail-hero {
  background:
    linear-gradient(110deg, rgba(28,26,20,.92) 0%, rgba(28,26,20,.78) 48%, rgba(243,203,189,.78) 100%),
    var(--blue-dk);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  padding: 7.8rem 0 4.7rem;
  position: relative;
}
.job-detail-hero::after {
  background: repeating-linear-gradient(90deg, rgba(250,249,246,.08) 0 1px, transparent 1px 28px);
  content: "";
  height: 560px;
  opacity: .34;
  position: absolute;
  right: -160px;
  top: -190px;
  transform: rotate(14deg);
  width: 640px;
}
.job-detail-hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(3rem, 5vw, 5.8rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .82fr);
  position: relative;
  z-index: 1;
}
.job-detail-hero-inner > *,
.job-detail-layout > * {
  min-width: 0;
}
.job-detail-hero h1 {
  color: var(--ivory);
  font-family: var(--fd);
  font-size: clamp(3.7rem, 6vw, 6.8rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: .96;
  max-width: 840px;
  overflow-wrap: anywhere;
}
.job-title-separator {
  display: inline;
  font-family: var(--fb);
  font-size: .72em;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 .12em;
}
.job-detail-hero p {
  color: rgba(250,249,246,.68);
  font-size: 1.05rem;
  line-height: 1.72;
  margin: 1.2rem 0 1.55rem;
  max-width: 620px;
}
.job-detail-body {
  background: var(--ivory-s);
  padding: var(--sp) 0;
}
.job-detail-layout {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .45fr);
}
.job-detail-panel,
.job-detail-apply-card {
  background: var(--ivory);
  border: 1px solid rgba(243,203,189,.2);
  border-radius: var(--r-md);
  box-shadow: 0 18px 45px rgba(28,26,20,.045);
  padding: 1.6rem;
}
.job-detail-panel + .job-detail-panel {
  margin-top: 1rem;
}
.job-detail-apply-card {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 96px;
}
.job-detail-apply-head h2 {
  color: var(--ink);
  font-family: var(--fd);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  margin-top: .55rem;
}
.job-detail-apply-head p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.58;
  margin-top: .7rem;
}
.job-detail-apply-trust {
  display: grid;
  gap: .55rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.job-detail-apply-trust span {
  align-items: center;
  background: var(--blue-dim);
  border: 1px solid var(--blue-bdr);
  border-radius: var(--r);
  color: var(--blue-dk);
  display: flex;
  font-size: 12px;
  font-weight: 500;
  justify-content: center;
  line-height: 1.25;
  min-height: 36px;
  padding: .55rem .65rem;
  text-align: center;
}
.job-detail-apply-card .jobs-apply-selected {
  background: #fff;
  border-color: rgba(243,203,189,.55);
  margin-bottom: 0;
  padding: 1rem;
}
.job-detail-apply-card .jobs-apply-selected span {
  color: var(--agency-salmon-dk);
}
.job-detail-apply-card .jobs-apply-selected strong {
  color: #1C1A14;
  font-size: 13.5px;
  line-height: 1.35;
}
.job-detail-apply-card .specialty-intake-form {
  background: #fff;
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  gap: .9rem;
  padding: 1.15rem;
}
.job-detail-apply-card .specialty-form-grid {
  gap: .85rem;
  grid-template-columns: 1fr;
}
.job-detail-apply-card .btn {
  justify-content: center;
  width: 100%;
}
.job-detail-optional-context {
  background: var(--ivory-s);
  border: 1px solid var(--b);
  border-radius: var(--r);
  overflow: hidden;
}
.job-detail-optional-context summary {
  cursor: pointer;
  display: grid;
  gap: .2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  list-style: none;
  padding: .85rem 1rem;
}
.job-detail-optional-context summary::-webkit-details-marker {
  display: none;
}
.job-detail-optional-context summary::after {
  align-items: center;
  background: #fff;
  border: 1px solid var(--b);
  border-radius: 50%;
  color: var(--blue-dk);
  content: "+";
  display: flex;
  font-family: var(--fb);
  font-size: 15px;
  grid-column: 2;
  grid-row: 1 / 3;
  height: 24px;
  justify-content: center;
  line-height: 1;
  width: 24px;
}
.job-detail-optional-context[open] summary::after {
  content: "-";
}
.job-detail-optional-context summary span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
}
.job-detail-optional-context summary em {
  color: var(--ink-3);
  font-size: 12px;
  font-style: normal;
  grid-column: 1;
}
.job-detail-optional-context[open] summary {
  border-bottom: 1px solid var(--b);
}
.job-detail-optional-fields {
  background: #fff;
  display: grid;
  gap: .85rem;
  padding: 1rem;
}
.field-note-light {
  color: var(--ink-3);
}
.job-detail-apply-card .specialty-intake-status {
  background: var(--blue-dim);
  border: 1px solid var(--blue-bdr);
  border-radius: var(--r);
  color: var(--ink-2);
  font-size: 12.5px;
  line-height: 1.55;
  padding: .75rem .85rem;
}
.job-detail-apply-card .specialty-intake-status[role="alert"] {
  background: rgba(192,74,42,.08);
  border-color: rgba(192,74,42,.28);
  color: #71351F;
}
.job-detail-brief-panel h2 {
  font-family: var(--fd);
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.08;
  margin-top: .75rem;
  max-width: 740px;
}
.job-detail-brief-panel p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.78;
  margin-top: 1rem;
  max-width: 760px;
}
.job-detail-highlights {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.4rem;
  overflow: hidden;
  border: 1px solid var(--b);
  border-radius: var(--r-md);
}
.job-detail-highlights div {
  background: linear-gradient(180deg, var(--ivory-s), rgba(243,203,189,.07));
  min-height: 118px;
  padding: 1.1rem;
}
.job-detail-highlights span,
.job-detail-boundaries span,
.job-detail-share span {
  color: var(--ink-3);
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.job-detail-highlights strong {
  color: var(--ink);
  display: block;
  font-family: var(--fd);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.1;
  margin-top: .65rem;
}
.job-detail-highlights p {
  color: var(--ink-2);
  font-size: 12.5px;
  line-height: 1.55;
  margin-top: .55rem;
}
.job-detail-split-panel {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 1rem;
}
.job-detail-split-panel .job-detail-panel {
  margin-top: 0;
}
.job-detail-boundaries {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid var(--b);
  border-radius: var(--r-md);
}
.job-detail-boundaries div {
  background: var(--ivory-s);
  min-height: 122px;
  padding: 1rem;
}
.job-detail-boundaries strong {
  color: var(--ink);
  display: block;
  font-size: 14px;
  line-height: 1.45;
  margin-top: .65rem;
}
.job-detail-boundaries p {
  color: var(--ink-2);
  font-size: 12.5px;
  line-height: 1.55;
  margin-top: .5rem;
}
.job-detail-facts {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--b);
  border-radius: var(--r-md);
}
.job-detail-facts div {
  background: var(--ivory-s);
  display: grid;
  gap: .35rem;
  padding: 1rem;
}
.job-detail-facts span {
  color: var(--ink-3);
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.job-detail-facts strong {
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.45;
}
.job-detail-tags {
  margin-top: 1rem;
}
.job-detail-list {
  color: var(--ink-2);
  display: grid;
  gap: .65rem;
  line-height: 1.65;
  list-style: none;
  margin-top: 1rem;
}
.job-detail-list li {
  align-items: flex-start;
  display: flex;
  gap: .65rem;
}
.job-detail-list li::before {
  background: var(--blue);
  border-radius: 50%;
  content: "";
  flex: 0 0 6px;
  height: 6px;
  margin-top: .65rem;
  width: 6px;
}
.job-detail-process {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid var(--b);
  border-radius: var(--r-md);
}
.job-detail-process article {
  background: var(--ivory-s);
  padding: 1rem;
}
.job-detail-process strong {
  color: var(--blue-dk);
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .12em;
}
.job-detail-process span {
  color: var(--ink);
  display: block;
  font-weight: 500;
  margin-top: .7rem;
}
.job-detail-process p {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.6;
  margin-top: .45rem;
}
.job-detail-back,
.job-detail-full-profile {
  color: var(--blue-dk);
  font-size: 13px;
  text-decoration: none;
}
.job-detail-full-profile {
  display: inline-block;
  margin-top: 1rem;
}
.job-detail-apply-card .field input[readonly] {
  background: var(--ivory-s);
  color: var(--ink-2);
}
.job-detail-share {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: .15rem;
}
.job-detail-share span {
  color: var(--ink-3);
  flex-basis: 100%;
  font-size: 12px;
}
.job-detail-share a {
  background: var(--ivory-s);
  border: 1px solid var(--b);
  border-radius: var(--r);
  color: var(--ink-2);
  font-size: 12.5px;
  padding: .45rem .7rem;
  text-decoration: none;
  transition: border-color .18s, color .18s, background .18s;
}
.job-detail-share a:hover {
  background: var(--blue-dim);
  border-color: var(--blue-bdr);
  color: var(--blue-dk);
}
.job-detail-related-section {
  background: var(--ivory);
  border-top: 1px solid var(--b);
  padding: var(--sp) 0;
}
.job-detail-related {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.5rem;
}
.job-detail-related a {
  background: var(--ivory-s);
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  color: inherit;
  display: grid;
  gap: .45rem;
  padding: 1.2rem;
  text-decoration: none;
}
.job-detail-related a:hover {
  border-color: var(--blue-bdr);
}
.job-detail-related span {
  color: var(--blue-dk);
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.job-detail-related strong {
  font-family: var(--fd);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.1;
}
.job-detail-related em {
  color: var(--ink-3);
  font-size: 12px;
  font-style: normal;
}
.jobs-no-results {
  background: var(--blue-dim);
  border: 1px solid var(--blue-bdr);
  border-radius: var(--r-md);
  margin-top: 1rem;
  padding: 1.6rem;
}
.jobs-no-results h3 {
  font-family: var(--fd);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.1;
  margin-bottom: .55rem;
}
.jobs-no-results p {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 680px;
}
.jobs-no-match-form {
  display: grid;
  gap: .8rem;
}
.jobs-no-match-fields {
  align-items: end;
  display: grid;
  gap: .8rem;
  grid-template-columns: 1fr 1fr auto;
}
.jobs-no-match-form .field {
  gap: .35rem;
}
.jobs-no-match-form .specialty-intake-status {
  margin-top: 0;
  text-align: left;
}
.jobs-benchmark-section {
  background: var(--ivory);
  border-top: 1px solid var(--b);
  padding: var(--sp) 0;
}
.jobs-benchmark-inner {
  align-items: start;
  display: grid;
  gap: 5rem;
  grid-template-columns: .92fr 1.08fr;
}
.jobs-benchmark-inner h2 {
  font-family: var(--fd);
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  font-weight: 300;
  letter-spacing: -.028em;
  line-height: 1.04;
  margin-top: .7rem;
  max-width: 560px;
}
.jobs-benchmark-inner > div > p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.78;
  margin-top: 1.2rem;
  max-width: 520px;
}
.jobs-benchmark-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.6rem;
}
.jobs-benchmark-points span {
  background: var(--blue-dim);
  border: 1px solid var(--blue-bdr);
  border-radius: 999px;
  color: var(--blue-dk);
  font-size: 12px;
  line-height: 1.3;
  padding: 7px 11px;
}
.jobs-benchmark-form {
  background: var(--ivory-s);
  border: 1px solid rgba(243,203,189,.22);
  border-radius: var(--r-xl);
  box-shadow: 0 22px 60px rgba(28,26,20,.06);
  padding: 2rem;
}
.jobs-benchmark-form .jobs-apply-selected {
  background: var(--blue-dim);
  border-color: var(--blue-bdr);
}
.jobs-benchmark-form .jobs-apply-selected strong {
  color: var(--ink);
}
.jobs-benchmark-form .field,
.jobs-benchmark-form .field label {
  color: var(--ink-3);
}
.jobs-benchmark-form .field input,
.jobs-benchmark-form .field select,
.jobs-benchmark-form .field textarea {
  background: var(--ivory);
}
.field-note-inline {
  color: var(--ink-4);
  font-family: var(--fm);
  font-size: 8.5px;
  font-weight: 300;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.jobs-apply-section {
  background: var(--ink);
  padding: var(--sp) 0;
}
.jobs-apply-inner {
  align-items: start;
  display: grid;
  gap: 5rem;
  grid-template-columns: .85fr 1.15fr;
}
.jobs-apply-inner h2 {
  color: var(--ivory);
  font-family: var(--fd);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.05;
  margin-top: .6rem;
}
.jobs-apply-inner p {
  color: rgba(250,249,246,.54);
  font-size: 15px;
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 460px;
}
.jobs-apply-form {
  background: rgba(250,249,246,.06);
  border: 1px solid rgba(250,249,246,.1);
  border-radius: var(--r-xl);
  padding: 2rem;
}
.jobs-apply-selected {
  background: rgba(243,203,189,.14);
  border: 1px solid rgba(243,203,189,.28);
  border-radius: var(--r-md);
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
}
.jobs-apply-selected span {
  color: var(--blue-lt);
  display: block;
  font-family: var(--fm);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: .12em;
  margin-bottom: .35rem;
  text-transform: uppercase;
}
.jobs-apply-selected strong {
  color: var(--ivory);
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.jobs-apply-options {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 1.35rem;
}
.jobs-apply-options button {
  background: rgba(250,249,246,.07);
  border: 1px solid rgba(250,249,246,.12);
  border-radius: var(--r);
  color: rgba(250,249,246,.62);
  cursor: pointer;
  font-family: var(--fb);
  font-size: 13px;
  padding: .75rem .7rem;
  transition: background .18s, border-color .18s, color .18s;
}
.jobs-apply-options button.active,
.jobs-apply-options button:hover {
  background: rgba(243,203,189,.18);
  border-color: rgba(243,203,189,.46);
  color: var(--ivory);
}
.jobs-apply-step {
  align-items: start;
  border-top: 1px solid rgba(250,249,246,.1);
  display: grid;
  gap: .85rem;
  grid-template-columns: 28px 1fr;
  margin: 1.35rem 0 .9rem;
  padding-top: 1.15rem;
}
.jobs-apply-step span {
  align-items: center;
  background: var(--blue-dk);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-family: var(--fm);
  font-size: 10px;
  height: 28px;
  justify-content: center;
  width: 28px;
}
.jobs-apply-step h3 {
  color: var(--ivory);
  font-family: var(--fb);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: .25rem;
}
.jobs-apply-step p {
  color: rgba(250,249,246,.44);
  font-size: 12.5px;
  line-height: 1.55;
  margin: 0;
  max-width: none;
}
.jobs-apply-form .field label {
  color: rgba(250,249,246,.52);
}
.jobs-apply-form .field input,
.jobs-apply-form .field select,
.jobs-apply-form .field textarea {
  background: rgba(250,249,246,.08);
  border-color: rgba(250,249,246,.14);
  color: var(--ivory);
}
.jobs-apply-form .field select option {
  background: var(--ink);
}
.field-note {
  color: rgba(250,249,246,.38);
  display: block;
  font-size: 11px;
  line-height: 1.5;
  margin-top: .35rem;
}
.jobs-filter-panel {
  background: var(--ivory-s);
  border-bottom: 1px solid var(--b);
  padding: 1.8rem 0;
}
.jobs-filter-inner {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
}
.jobs-filter-inner h2 {
  font-family: var(--fd);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.1;
  margin-top: .35rem;
}
.jobs-filter-inner p {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.6;
  margin-top: .45rem;
  max-width: 680px;
}
.jobs-filter-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: flex-end;
}
.specialty-comp-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2.5rem;
}
.specialty-comp-card {
  background: var(--ivory);
  border: 1px solid var(--b);
  padding: 1.6rem;
}
.specialty-comp-card strong {
  color: var(--yellow-dk);
  display: block;
  font-family: var(--fd);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: .45rem;
}
.specialty-comp-card span {
  color: var(--ink-2);
  font-size: 12.8px;
  line-height: 1.55;
}
.specialty-salary-shell {
  align-items: start;
  display: grid;
  gap: 5rem;
  grid-template-columns: .88fr 1.12fr;
}
.salary-card-stack {
  display: grid;
  gap: 1rem;
}
.salary-factor-list {
  background: var(--ivory);
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.salary-factor-item {
  border-bottom: 1px solid var(--b);
  padding: 1.1rem 1.3rem;
}
.salary-factor-item:last-child {
  border-bottom: none;
}
.salary-factor-item strong {
  color: var(--ink);
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: .3rem;
}
.salary-factor-item span {
  color: var(--ink-2);
  display: block;
  font-size: 12.8px;
  line-height: 1.62;
}
.specialty-form-shell {
  align-items: start;
  display: grid;
  gap: 5rem;
  grid-template-columns: .86fr 1.14fr;
}
.specialty-form-card {
  background: var(--ivory);
  border: 1px solid rgba(242,188,0,.24);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 80px rgba(28,26,20,.1);
  overflow: hidden;
}
.specialty-form-head {
  border-bottom: 1px solid var(--b);
  padding: 2rem 2rem 1.7rem;
}
.specialty-form-head h2 {
  font-size: clamp(2rem,3vw,2.55rem);
  margin-bottom: .65rem;
}
.specialty-form-head p {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.65;
}
.specialty-intake-form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
}
.specialty-form-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.specialty-intake-form .field {
  display: grid;
  gap: .42rem;
}
.specialty-intake-form label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
}
.specialty-intake-form input,
.specialty-intake-form select,
.specialty-intake-form textarea {
  background: #fff;
  border: 1px solid var(--b-md);
  border-radius: var(--r);
  color: var(--ink);
  font-family: var(--fb);
  font-size: 14px;
  min-height: 46px;
  outline: none;
  padding: .72rem .9rem;
  width: 100%;
}
.specialty-intake-form textarea {
  line-height: 1.55;
  min-height: 110px;
  resize: vertical;
}
.specialty-intake-form input:focus,
.specialty-intake-form select:focus,
.specialty-intake-form textarea:focus {
  border-color: var(--yellow-dk);
}
.specialty-intake-form input.is-error,
.specialty-intake-form select.is-error,
.specialty-intake-form textarea.is-error {
  border-color: #C04A2A;
  box-shadow: 0 0 0 3px rgba(192,74,42,.12);
}
.specialty-intake-form .checkbox-chip {
  align-items: flex-start;
  line-height: 1.45;
  min-height: auto;
}
.specialty-intake-form .checkbox-chip input[type="checkbox"],
.specialty-intake-form .checkbox-chip input[type="radio"] {
  box-shadow: none;
  flex: 0 0 16px;
  height: 16px;
  margin-top: 2px;
  min-height: 0;
  padding: 0;
  width: 16px;
}
.specialty-intake-status {
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.55;
}
.reference-form-section,
.intake-form-section {
  align-items: center;
  border-top: 1px solid var(--b);
  color: var(--yellow-dk);
  display: flex;
  font-family: var(--fm);
  font-size: 10px;
  gap: .8rem;
  letter-spacing: .13em;
  margin-top: .35rem;
  padding-top: 1.05rem;
  text-transform: uppercase;
}
.reference-form-section:first-of-type,
.intake-form-section:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.reference-form-section::after,
.intake-form-section::after {
  background: var(--b);
  content: "";
  flex: 1;
  height: 1px;
}
.reference-rating-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
.specialty-pathway {
  display: grid;
  gap: .9rem;
  margin-top: 2rem;
}
.specialty-pathway-item {
  border-left: 2px solid var(--yellow);
  padding-left: 1rem;
}
.specialty-pathway-item strong {
  color: var(--ink);
  display: block;
  font-size: 14px;
  margin-bottom: .2rem;
}
.specialty-pathway-item span {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.55;
}
.specialty-passive {
  background: var(--ink);
  color: var(--ivory);
  padding: var(--sp) 0;
}
.specialty-passive-inner {
  align-items: center;
  display: grid;
  gap: 5rem;
  grid-template-columns: .95fr 1.05fr;
}
.specialty-quote {
  border-left: 2px solid var(--yellow);
  color: rgba(250,249,246,.82);
  font-family: var(--fd);
  font-size: clamp(1.5rem,2.5vw,2rem);
  font-style: italic;
  line-height: 1.45;
  padding-left: 1.6rem;
}
.specialty-quote-caption {
  color: rgba(250,249,246,.36);
  font-family: var(--fm);
  font-size: 9.5px;
  letter-spacing: .13em;
  margin-top: 1rem;
  text-transform: uppercase;
}
.specialty-passive h2 {
  color: var(--ivory);
}
.specialty-passive h2 em {
  color: var(--yellow-lt);
}
.specialty-passive p {
  color: rgba(250,249,246,.55);
  font-size: 15px;
  line-height: 1.8;
  margin: 1.2rem 0 2rem;
  max-width: 520px;
}
.bench-hero {
  background: var(--ivory);
  border-bottom: 1px solid var(--b);
  padding: 10rem 0 4rem;
}
.bench-hero-inner {
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 1fr) 380px;
}
.bench-summary {
  background: var(--ink);
  border-radius: var(--r-lg);
  color: var(--ivory);
  padding: 1.7rem;
}
.bench-summary h2 {
  color: var(--ivory);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.bench-summary-row {
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  padding: .8rem 0;
}
.bench-summary-row span:first-child {
  color: rgba(250,249,246,.52);
  font-size: 13px;
}
.bench-summary-row span:last-child {
  color: var(--yellow-lt);
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: .04em;
}
.bench-note {
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.65;
  margin-top: 1rem;
}
.source-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}
.source-card {
  background: var(--ivory-s);
  border: 1px solid var(--b);
  padding: 1.5rem;
}
.source-card h3 {
  font-size: 1.35rem;
  margin-bottom: .55rem;
}
.source-card p,
.source-card a {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.65;
}
.source-card a {
  color: var(--yellow-dk);
  text-decoration: none;
}
.referral-assurance-list {
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  margin-top: 2rem;
  overflow: hidden;
}
.referral-assurance-item {
  background: var(--ivory);
  border-top: 1px solid var(--b);
  display: grid;
  gap: 1rem;
  grid-template-columns: 42px 1fr;
  padding: 1.35rem 1.45rem;
}
.referral-assurance-item:first-child {
  border-top: none;
}
.referral-assurance-item span {
  color: var(--yellow-dk);
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .14em;
  padding-top: .25rem;
}
.referral-assurance-item h3 {
  font-size: 1.25rem;
  margin-bottom: .35rem;
}
.referral-assurance-item p {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.65;
}
.source-section {
  padding: var(--sp) 0 0;
}
.salary-intent-grid {
  margin-top: 0;
}
.salary-data-section {
  padding: var(--sp) 0;
}
.toggle-wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.toggle-group {
  background: var(--ivory-s);
  border: 1px solid var(--b);
  border-radius: var(--r);
  display: flex;
  overflow: hidden;
}
.toggle-btn {
  background: transparent;
  border: none;
  color: var(--ink-2);
  cursor: pointer;
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .14em;
  padding: .55rem 1.4rem;
  text-transform: uppercase;
  transition: all .2s;
}
.toggle-btn.active {
  background: var(--yellow);
  color: var(--ink);
}
.toggle-note {
  color: var(--ink-3);
  font-size: 13px;
  font-style: italic;
}
.data-panel {
  display: none;
}
.data-panel.active {
  display: block;
}
.range-table {
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.range-header,
.range-row,
.range-scale-row {
  align-items: center;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 220px 1fr 180px;
  padding: .9rem 1.8rem;
}
.range-header,
.range-scale-row {
  background: var(--ivory-s);
}
.range-header {
  border-bottom: 1px solid var(--b);
}
.range-row {
  background: var(--ivory);
  border-bottom: 1px solid var(--b);
  transition: background .18s;
}
.range-row:hover {
  background: var(--ivory-s);
}
.range-row:last-child {
  border-bottom: none;
}
.range-header-l {
  color: var(--ink-3);
  font-family: var(--fm);
  font-size: 9.5px;
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.range-scale {
  color: var(--ink-4);
  display: flex;
  font-family: var(--fm);
  font-size: 9px;
  font-weight: 300;
  justify-content: space-between;
  letter-spacing: .06em;
}
.range-row-spec {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}
.range-track {
  background: var(--ivory-c);
  border-radius: 999px;
  height: 12px;
  overflow: hidden;
  position: relative;
}
.range-bar {
  background: linear-gradient(90deg, var(--yellow-dk), var(--yellow-lt));
  border-radius: 999px;
  height: 100%;
  position: absolute;
  top: 0;
}
.range-row-vals {
  text-align: right;
}
.range-lo {
  color: var(--ink-3);
  font-family: var(--fm);
  font-size: 11px;
}
.range-hi {
  color: var(--ink);
  font-family: var(--fm);
  font-size: 13px;
  margin-left: 6px;
}
.range-dash {
  color: var(--ink-4);
  font-family: var(--fm);
  font-size: 10px;
  margin: 0 3px;
}
.mid-cta {
  align-items: center;
  background: var(--ivory-s);
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding: 1.4rem 1.6rem;
}
.mid-cta p {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.6;
  margin-top: .25rem;
}
.state-section {
  background: var(--ivory-s);
  border-bottom: 1px solid var(--b);
  border-top: 1px solid var(--b);
  padding: var(--sp) 0;
}
.state-tabs {
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  display: flex;
  margin-bottom: 2.5rem;
  overflow: hidden;
  width: fit-content;
}
.state-tab {
  background: var(--ivory);
  border: none;
  border-right: 1px solid var(--b);
  color: var(--ink-2);
  cursor: pointer;
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .14em;
  padding: .6rem 1.4rem;
  text-transform: uppercase;
}
.state-tab:last-child {
  border-right: none;
}
.state-tab.active {
  background: var(--ink);
  color: var(--ivory);
}
.state-panel {
  display: none;
}
.state-panel.active {
  display: block;
}
.state-table-wrap {
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.state-table {
  border-collapse: collapse;
  width: 100%;
}
.state-table th {
  background: var(--ivory);
  border-bottom: 1px solid var(--b);
  color: var(--ink-3);
  font-family: var(--fm);
  font-size: 9.5px;
  font-weight: 300;
  letter-spacing: .12em;
  padding: 1rem 1.5rem;
  text-align: left;
  text-transform: uppercase;
}
.state-table td {
  background: var(--ivory-s);
  border-bottom: 1px solid var(--b);
  color: var(--ink-2);
  font-size: 14px;
  padding: 1rem 1.5rem;
}
.state-table td:first-child {
  color: var(--ink);
  font-weight: 500;
}
.state-table td:last-child {
  color: var(--yellow-dk);
  font-family: var(--fm);
  font-size: 12px;
  text-align: right;
}
.state-table tr:last-child td {
  border-bottom: none;
}
.state-mini-track {
  background: var(--ivory-c);
  border-radius: 999px;
  height: 8px;
  min-width: 90px;
  overflow: hidden;
  position: relative;
}
.state-mini-bar {
  background: var(--yellow-dk);
  border-radius: 999px;
  height: 100%;
  opacity: .55;
  position: absolute;
  top: 0;
}
.factors-section {
  padding: var(--sp) 0;
}
.factors-intro {
  align-items: end;
  display: grid;
  gap: 5rem;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 3.5rem;
}
.factors-grid {
  background: var(--b);
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
}
.factor-card {
  background: var(--ivory);
  padding: 2.4rem;
}
.factor-title {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: .6rem;
}
.factor-body {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.7;
}
.factor-uplift {
  border-top: 1px solid var(--b);
  color: var(--yellow-dk);
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .12em;
  margin-top: 1rem;
  padding-top: 1rem;
  text-transform: uppercase;
}
.report-section {
  background: var(--ink);
  overflow: hidden;
  padding: var(--sp) 0;
  position: relative;
}
.report-inner {
  align-items: center;
  display: grid;
  gap: 7rem;
  grid-template-columns: 1fr 1fr;
}
.report-inner h2 {
  color: var(--ivory);
}
.report-inner h2 em {
  color: var(--yellow-lt);
}
.report-copy {
  color: rgba(250,249,246,.54);
  font-size: 15px;
  line-height: 1.8;
  margin-top: 1.2rem;
  max-width: 460px;
}
.report-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1.6rem;
}
.report-option {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  color: rgba(250,249,246,.68);
  cursor: pointer;
  font-family: var(--fm);
  font-size: 9.5px;
  font-weight: 300;
  letter-spacing: .11em;
  padding: .55rem .85rem;
  text-transform: uppercase;
  transition: background .18s, border-color .18s, color .18s;
}
.report-option:hover,
.report-option.active {
  background: rgba(242,188,0,.14);
  border-color: rgba(242,188,0,.34);
  color: var(--yellow-lt);
}
.report-form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 2.2rem;
}
.hp-field {
  height: 0;
  left: -9999px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
}
.report-form .field label {
  color: rgba(250,249,246,.52);
}
.report-form .field input,
.report-form .field select {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.12);
  color: var(--ivory);
}
.report-form .field select option {
  background: var(--ink);
}
.report-submit {
  align-items: center;
  background: var(--yellow);
  border: 1px solid var(--yellow);
  border-radius: var(--r);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
  line-height: 1.2;
  margin-top: 10px;
  min-height: 46px;
  padding: .85rem 1rem;
  text-align: center;
  transition: background .18s, border-color .18s, color .18s, transform .12s;
  width: 100%;
}
.report-submit:hover {
  background: var(--yellow-lt);
  border-color: var(--yellow-lt);
  transform: translateY(-1px);
}
.report-submit.is-complete,
.report-submit:disabled {
  background: rgba(29,158,132,.18);
  border-color: rgba(29,158,132,.48);
  color: #70D8BF;
  cursor: default;
  transform: none;
}
.report-trust {
  color: rgba(250,249,246,.34);
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: .1em;
  line-height: 1.6;
  margin-top: 1rem;
  text-align: center;
  text-transform: uppercase;
}
.practice-bench-section {
  padding: var(--sp) 0;
}
.practice-bench-inner {
  align-items: center;
  display: grid;
  gap: 7rem;
  grid-template-columns: 1fr 1fr;
}
.practice-bench-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.practice-bench-card {
  background: var(--ivory-s);
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  padding: 1.5rem;
}
.practice-bench-card p {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.65;
  margin-top: .4rem;
}
.pb-title {
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
}
.faq-section {
  background: var(--ivory-s);
  border-bottom: 1px solid var(--b);
  border-top: 1px solid var(--b);
  padding: var(--sp) 0;
}

.ri-hero {
  background:
    linear-gradient(115deg, rgba(28,26,20,.94) 0%, rgba(30,43,51,.96) 48%, rgba(61,98,132,.92) 100%),
    var(--ink);
  color: var(--ivory);
  overflow: hidden;
  padding: 8.4rem 0 5.8rem;
  position: relative;
}
.ri-hero::before {
  background: repeating-linear-gradient(100deg, rgba(255,255,255,.08) 0, rgba(255,255,255,.08) 1px, transparent 1px, transparent 34px);
  content: "";
  inset: 0 -12% auto auto;
  height: 420px;
  opacity: .22;
  position: absolute;
  transform: rotate(8deg);
  width: 48%;
}
.ri-breadcrumb {
  align-items: center;
  color: rgba(250,249,246,.38);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--fm);
  font-size: 9.5px;
  gap: .55rem;
  letter-spacing: .12em;
  margin-bottom: 3.2rem;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}
.ri-breadcrumb a {
  color: rgba(250,249,246,.42);
  text-decoration: none;
}
.ri-breadcrumb a:hover {
  color: var(--blue-lt);
}
.ri-breadcrumb strong {
  color: var(--blue-lt);
  font-weight: 400;
}
.ri-hero-inner {
  align-items: center;
  display: grid;
  gap: 5.5rem;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  position: relative;
  z-index: 1;
}
.ri-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 1.8rem;
}
.ri-kicker span {
  border: 1px solid rgba(163,189,216,.28);
  border-radius: 999px;
  color: rgba(250,249,246,.58);
  font-family: var(--fm);
  font-size: 9.5px;
  letter-spacing: .14em;
  padding: .36rem .72rem;
  text-transform: uppercase;
}
.ri-hero h1 {
  color: var(--ivory);
  font-size: clamp(3.6rem, 7vw, 6.55rem);
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: .98;
  max-width: 800px;
}
.ri-hero-copy p {
  color: rgba(250,249,246,.66);
  font-size: 16px;
  line-height: 1.78;
  margin: 1.7rem 0 2.1rem;
  max-width: 650px;
}
.ri-outline {
  border-color: rgba(250,249,246,.2);
  color: var(--ivory);
}
.ri-outline:hover {
  border-color: rgba(250,249,246,.42);
}
.ri-trust {
  color: rgba(250,249,246,.42);
  font-size: 12.5px;
  line-height: 1.6;
  margin-top: 1.2rem;
  max-width: 620px;
}
.ri-brief-card {
  background: rgba(250,249,246,.95);
  border: 1px solid rgba(250,249,246,.32);
  box-shadow: 0 32px 100px rgba(0,0,0,.22);
  color: var(--ink);
  overflow: hidden;
}
.ri-brief-head {
  align-items: center;
  background: rgba(243,203,189,.12);
  border-bottom: 1px solid rgba(243,203,189,.18);
  display: flex;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
}
.ri-brief-head span {
  color: var(--blue-dk);
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.ri-brief-head strong {
  border: 1px solid rgba(243,203,189,.26);
  border-radius: 999px;
  color: var(--blue-dk);
  font-family: var(--fm);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .12em;
  padding: .28rem .65rem;
  text-transform: uppercase;
}
.ri-brief-row {
  border-bottom: 1px solid var(--b);
  display: grid;
  gap: 1rem;
  grid-template-columns: .82fr 1.18fr;
  padding: 1.25rem 1.5rem;
}
.ri-brief-row:last-child {
  border-bottom: none;
}
.ri-brief-row span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}
.ri-brief-row p {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.6;
}
.ri-signal-band {
  background: var(--blue-dk);
  color: #fff;
  padding: 1.05rem 0;
}
.ri-signal-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}
.ri-signal-inner span {
  color: rgba(255,255,255,.78);
  font-size: 13.5px;
}
.ri-signal-inner a {
  color: #fff;
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}
.ri-value-grid,
.ri-role-grid,
.ri-process-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
}
.ri-value-grid {
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  grid-template-columns: repeat(4, 1fr);
}
.ri-value-card {
  background: var(--ivory);
  padding: 2rem;
}
.ri-value-card span,
.ri-process-grid span {
  color: var(--blue-dk);
  display: block;
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .16em;
  margin-bottom: .95rem;
}
.ri-value-card h3,
.ri-role-card h3 {
  font-size: 1.35rem;
  margin-bottom: .7rem;
}
.ri-value-card p,
.ri-role-card p,
.ri-process-grid p {
  color: var(--ink-2);
  font-size: 13.2px;
  line-height: 1.68;
}
.ri-roles-section {
  background: var(--ivory-s);
  border-bottom: 1px solid var(--b);
  border-top: 1px solid var(--b);
  padding: var(--sp) 0;
}
.ri-section-title {
  margin-bottom: 3rem;
  max-width: 760px;
}
.ri-section-title h2 {
  margin-top: .9rem;
}
.ri-role-grid {
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  grid-template-columns: repeat(3, 1fr);
}
.ri-role-card {
  background: var(--ivory);
  min-height: 245px;
  padding: 2rem;
}
.ri-role-card .tag {
  margin-bottom: 1rem;
}
.ri-scope-shell,
.ri-form-shell {
  align-items: start;
  display: grid;
  gap: 5rem;
  grid-template-columns: .86fr 1.14fr;
}
.ri-scope-list {
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.ri-scope-list div {
  background: var(--ivory);
  border-bottom: 1px solid var(--b);
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 190px 1fr;
  padding: 1.35rem 1.5rem;
}
.ri-scope-list div:last-child {
  border-bottom: none;
}
.ri-scope-list span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}
.ri-scope-list p {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.65;
}
.ri-process {
  background: var(--ink);
  color: var(--ivory);
  padding: var(--sp) 0;
}
.ri-process .label {
  color: rgba(250,249,246,.38);
}
.ri-process h2 {
  color: var(--ivory);
}
.ri-process-grid {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  grid-template-columns: repeat(4, 1fr);
}
.ri-process-grid div {
  background: rgba(255,255,255,.035);
  padding: 2rem;
}
.ri-process-grid strong {
  color: var(--ivory);
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: .55rem;
}
.ri-process-grid p {
  color: rgba(250,249,246,.55);
}
.ri-business-section {
  background: var(--ivory-s);
  border-top: 1px solid var(--b);
  padding: var(--sp) 0;
}
.ri-business-shell {
  align-items: center;
  display: grid;
  gap: 5rem;
  grid-template-columns: .9fr 1.1fr;
}
.ri-case-card {
  background: var(--ink);
  border-radius: var(--r-lg);
  color: var(--ivory);
  padding: 2rem;
}
.ri-case-label {
  color: rgba(250,249,246,.42);
  font-family: var(--fm);
  font-size: 9.5px;
  letter-spacing: .16em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.ri-case-row {
  align-items: baseline;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem 0;
}
.ri-case-row span {
  color: rgba(250,249,246,.56);
  font-size: 13.5px;
}
.ri-case-row strong {
  color: var(--blue-lt);
  font-family: var(--fm);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .04em;
  text-align: right;
}
.ri-case-total {
  border-bottom: none;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: .45rem;
}
.ri-case-total strong {
  color: #4CC38A;
}
.ri-case-card p {
  color: rgba(250,249,246,.34);
  font-family: var(--fm);
  font-size: 9.5px;
  letter-spacing: .06em;
  line-height: 1.65;
  margin-top: 1.2rem;
}
.ri-form-section {
  background: linear-gradient(90deg, rgba(250,249,246,.97), rgba(242,240,234,.97)), var(--ivory-s);
  border-bottom: 1px solid var(--b);
  padding: var(--sp) 0;
  scroll-margin-top: 92px;
}
.ri-note-box {
  background: var(--blue-dim);
  border: 1px solid var(--blue-bdr);
  border-radius: var(--r-md);
  display: grid;
  gap: .4rem;
  margin-top: 2rem;
  padding: 1rem;
}
.ri-note-box strong {
  color: var(--blue-dk);
  font-size: 13.5px;
}
.ri-note-box span {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.6;
}
.ri-form-card {
  box-shadow: 0 26px 80px rgba(28,26,20,.09);
}
.practice-simple-brief-form .btn.is-complete {
  background: #1D9E84;
}
.practice-simple-brief-form input.is-error,
.practice-simple-brief-form select.is-error,
.practice-simple-brief-form textarea.is-error {
  border-color: #C04A2A;
  box-shadow: 0 0 0 3px rgba(192,74,42,.1);
}

/* Start page */
.start-hero {
  background:
    linear-gradient(115deg, rgba(250,249,246,.98) 0%, rgba(250,249,246,.94) 46%, rgba(243,203,189,.18) 100%),
    var(--ivory);
  border-bottom: 1px solid var(--b);
  overflow: hidden;
  padding: 9rem 0 4.5rem;
  position: relative;
  text-align: center;
}
.start-hero::after {
  background: repeating-linear-gradient(105deg, rgba(243,203,189,.16) 0 1px, transparent 1px 22px);
  content: "";
  height: 420px;
  opacity: .28;
  position: absolute;
  right: -5%;
  top: -8%;
  transform: rotate(11deg);
  width: 520px;
}
.start-hero-inner {
  position: relative;
  z-index: 1;
}
.start-kicker,
.start-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
}
.start-hero h1 {
  font-size: clamp(3.5rem, 8vw, 6.6rem);
  margin: 1.35rem auto 1.2rem;
  max-width: 920px;
}
.start-hero h1 em {
  color: var(--blue-dk);
}
.start-hero-copy {
  color: var(--ink-2);
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0 auto 2.2rem;
  max-width: 610px;
}
.start-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.start-path {
  border-bottom: 1px solid var(--b);
  min-width: 0;
  padding: 4rem clamp(1.6rem, 4vw, 4rem) 4.5rem;
  scroll-margin-top: 92px;
}
.start-path-physician {
  background: var(--ivory);
  border-right: 1px solid var(--b);
}
.start-path-practice {
  background: var(--ivory-s);
}
.start-path-content {
  margin: 0 auto;
  max-width: 620px;
}
.start-path-label {
  align-items: center;
  display: flex;
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 300;
  gap: 9px;
  letter-spacing: .18em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.start-path-label-y { color: var(--yellow-dk); }
.start-path-label-b { color: var(--blue-dk); }
.start-path h2 {
  font-size: clamp(2.05rem, 3.5vw, 3.25rem);
  font-weight: 300;
  margin-bottom: 1rem;
}
.start-path-practice h2 em {
  color: var(--blue-dk);
}
.start-path-copy {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.78;
  margin-bottom: 2rem;
  max-width: 520px;
}
.start-form-card {
  background: var(--ivory);
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 70px rgba(28,26,20,.08);
  overflow: hidden;
}
.start-form-card-y {
  border-color: rgba(242,188,0,.24);
}
.start-form-card-b {
  border-color: rgba(243,203,189,.28);
}
.start-form-head {
  border-bottom: 1px solid var(--b);
  padding: 1.8rem 2rem 1.55rem;
}
.start-form-head h3 {
  font-size: 2rem;
  line-height: 1.08;
  margin-bottom: .55rem;
}
.start-form-head p {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.65;
}
.start-form-card .btn {
  justify-content: center;
}
.start-form-card-b .field input:focus,
.start-form-card-b .field select:focus,
.start-form-card-b .field textarea:focus {
  border-color: var(--blue-dk);
  box-shadow: 0 0 0 3px var(--blue-dim);
}
.start-form-card-b .practice-simple-status {
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.55;
}
.start-direct {
  display: grid;
  gap: .75rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 1rem;
}
.start-direct-card {
  background: rgba(250,249,246,.76);
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  color: inherit;
  display: grid;
  gap: .25rem;
  padding: 1rem;
  text-decoration: none;
  transition: border-color .18s, transform .18s;
}
.start-direct-card:hover {
  border-color: var(--b-md);
  transform: translateY(-1px);
}
.start-direct-card span {
  color: var(--ink-3);
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.start-direct-card strong {
  color: var(--ink);
  font-size: 13.2px;
  font-weight: 500;
  line-height: 1.4;
}
.start-urgent-card {
  align-items: center;
  background: rgba(192,74,42,.06);
  border: 1px solid rgba(192,74,42,.18);
  border-radius: var(--r-md);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 1rem;
}
.start-urgent-card strong,
.start-urgent-card span {
  display: block;
}
.start-urgent-card strong {
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: .15rem;
}
.start-urgent-card span {
  color: var(--ink-2);
  font-size: 12.5px;
  line-height: 1.55;
}
.start-urgent-card a {
  border: 1px solid var(--b-md);
  border-radius: var(--r);
  color: var(--ink);
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  padding: .55rem .85rem;
  text-decoration: none;
}
.start-next-section {
  padding: var(--sp) 0;
}
.start-section-head {
  margin: 0 auto 2.6rem;
  max-width: 760px;
  text-align: center;
}
.start-section-head h2 {
  margin-top: .9rem;
}
.start-next-grid {
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}
.start-next-card {
  background: var(--ivory-s);
  border-right: 1px solid var(--b);
  padding: 2.3rem;
}
.start-next-card:last-child {
  border-right: none;
}
.start-next-card span {
  color: var(--blue-dk);
  display: block;
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .16em;
  margin-bottom: 1.1rem;
}
.start-next-card h3 {
  font-size: 1.35rem;
  margin-bottom: .65rem;
}
.start-next-card p {
  color: var(--ink-2);
  font-size: 13.2px;
  line-height: 1.68;
}
.start-reassurance {
  background: var(--ivory-s);
  border: 1px solid var(--b);
  border-radius: var(--r-lg);
  margin-top: 2rem;
  padding: 1.5rem;
  text-align: center;
}
.start-reassurance p {
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 760px;
}
.start-reassurance div {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  justify-content: center;
  margin-top: 1rem;
}
.start-reassurance a {
  color: var(--ink-3);
  font-size: 13px;
  text-decoration: none;
  transition: color .18s;
}
.start-reassurance a:hover {
  color: var(--ink-2);
}
.ri-final-cta {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: var(--sp) 0;
}
.ri-final-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ri-final-primary {
  border-right: 1px solid rgba(255,255,255,.08);
  padding-right: 5rem;
}
.ri-final-secondary {
  padding-left: 5rem;
}
.ri-final-cta .final-title {
  color: var(--ivory);
}
.ri-final-primary .final-title em {
  color: var(--blue-lt);
}
.ri-final-secondary .final-title em {
  color: var(--yellow-lt);
}
.ri-final-cta .final-body {
  color: rgba(250,249,246,.48);
}

.recruiter-body {
  background: #F6F7F8;
}
.recruiter-shell {
  padding-top: 5.1rem;
}
.recruiter-hero {
  background: #fff;
  border-bottom: 1px solid var(--b);
  padding: 3rem 0 2.5rem;
}
.recruiter-hero-inner {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) 420px;
}
.recruiter-hero p {
  color: var(--ink-2);
  margin-top: .8rem;
  max-width: 760px;
}
.recruiter-summary-grid {
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.recruiter-summary-grid div {
  background: var(--ivory);
  padding: 1rem;
}
.recruiter-summary-grid div + div {
  border-left: 1px solid var(--b);
}
.recruiter-summary-grid span {
  color: var(--blue-dk);
  display: block;
  font-family: var(--fd);
  font-size: 2rem;
  line-height: 1;
}
.recruiter-summary-grid strong {
  color: var(--ink-2);
  display: block;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
  margin-top: .4rem;
  text-transform: uppercase;
}
.recruiter-tabs-wrap {
  background: #fff;
  border-bottom: 1px solid var(--b);
  position: sticky;
  top: 74px;
  z-index: 120;
}
.recruiter-tabs {
  display: flex;
  gap: .35rem;
  overflow-x: auto;
  padding: .8rem 0;
}
.recruiter-tabs button {
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--r);
  color: var(--ink-2);
  cursor: pointer;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 500;
  padding: .6rem .95rem;
}
.recruiter-tabs button.active {
  background: var(--ink);
  color: var(--ivory);
}
.recruiter-panel {
  display: none;
  padding: 2rem 0 4rem;
}
.recruiter-panel.active {
  display: block;
}
.recruiter-grid {
  align-items: start;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 330px minmax(0, 1fr);
}
.recruiter-form-panel,
.recruiter-list-panel,
.recruiter-activity-shell {
  background: #fff;
  border: 1px solid var(--b);
  border-radius: var(--r-md);
}
.recruiter-form-panel {
  padding: 1.25rem;
  position: sticky;
  top: 146px;
}
.recruiter-form-panel h2 {
  margin: .45rem 0 1rem;
}
.recruiter-form {
  display: grid;
  gap: .9rem;
}
.recruiter-form-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.recruiter-form textarea {
  min-height: 96px;
}
.recruiter-form-note {
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.5;
}
.recruiter-form-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--b);
}
.recruiter-form-tabs button {
  appearance: none;
  background: none;
  border: none;
  color: var(--ink-2);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: color 0.2s;
}
.recruiter-form-tabs button:hover {
  color: var(--ink-1);
}
.recruiter-form-tabs button.active {
  border-bottom: 2px solid var(--brand);
  color: var(--brand);
  margin-bottom: -1px;
}
.recruiter-form-tab {
  display: none;
}
.recruiter-form-tab.active {
  display: block;
}
.recruiter-import-preview {
  background: #f9f6f0;
  border: 1px solid #e8dcc8;
  border-radius: 6px;
  margin: 0.75rem 0;
  padding: 0.75rem 1rem;
}
.recruiter-list-panel {
  min-width: 0;
  padding: 1.25rem;
}
.recruiter-section-head {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.recruiter-section-head h2 {
  font-size: 1.6rem;
}
.recruiter-section-head p {
  color: var(--ink-2);
  font-size: 13px;
  margin-top: .25rem;
}
.recruiter-filter-row {
  display: flex;
  gap: .6rem;
}
.recruiter-filter-row input,
.recruiter-filter-row select,
#recruiter-vacancy-filter {
  background: #fff;
  border: 1px solid var(--b-md);
  border-radius: var(--r);
  color: var(--ink);
  font-family: var(--fb);
  font-size: 13px;
  min-height: 40px;
  padding: .55rem .7rem;
}
.recruiter-candidate-list {
  display: grid;
  gap: .8rem;
}
.recruiter-candidate-card {
  border: 1px solid var(--b);
  border-left: 4px solid var(--ink-4);
  border-radius: var(--r-md);
  display: grid;
  gap: .9rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 1rem;
}
.recruiter-candidate-card.is-linkedin-pending {
  background: linear-gradient(90deg, rgba(243,203,189,.18), #fff 55%);
  border-left-color: var(--blue-dk);
}
.recruiter-candidate-card.is-converted {
  border-left-color: #3E8F64;
}
.recruiter-candidate-card h3 {
  font-family: var(--fb);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}
.recruiter-candidate-meta,
.recruiter-match-meta {
  color: var(--ink-2);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: .4rem .75rem;
  margin-top: .3rem;
}
.recruiter-candidate-notes {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.55;
  margin-top: .65rem;
}
.recruiter-chip {
  align-items: center;
  border: 1px solid var(--b);
  border-radius: 999px;
  display: inline-flex;
  font-family: var(--fm);
  font-size: 10px;
  gap: .35rem;
  letter-spacing: .08em;
  padding: .25rem .55rem;
  text-transform: uppercase;
}
.recruiter-chip-linkedin {
  background: rgba(243,203,189,.14);
  border-color: var(--blue-bdr);
  color: var(--blue-dk);
}
.recruiter-chip-converted {
  background: rgba(62,143,100,.12);
  border-color: rgba(62,143,100,.32);
  color: #2E744F;
}
.recruiter-card-actions {
  align-items: end;
  display: grid;
  gap: .45rem;
  min-width: 190px;
}
.recruiter-card-actions select,
.recruiter-stage-select {
  background: #fff;
  border: 1px solid var(--b-md);
  border-radius: var(--r);
  color: var(--ink);
  font-family: var(--fb);
  font-size: 12px;
  min-height: 36px;
  padding: .45rem .55rem;
}
.recruiter-convert-btn {
  justify-content: center;
  padding: .62rem .8rem;
}
.recruiter-pipeline {
  display: grid;
  gap: .85rem;
  grid-template-columns: repeat(6, minmax(220px, 1fr));
  overflow-x: auto;
  padding-bottom: 1rem;
}
.recruiter-stage-column {
  background: #fff;
  border: 1px solid var(--b);
  border-radius: var(--r-md);
  min-height: 420px;
  min-width: 220px;
}
.recruiter-stage-head {
  align-items: center;
  border-bottom: 1px solid var(--b);
  display: flex;
  justify-content: space-between;
  padding: .85rem;
}
.recruiter-stage-head h3 {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.recruiter-stage-head span {
  color: var(--blue-dk);
  font-family: var(--fm);
  font-size: 13px;
}
.recruiter-stage-list {
  display: grid;
  gap: .65rem;
  padding: .85rem;
}
.recruiter-match-card {
  border: 1px solid var(--b);
  border-radius: var(--r);
  padding: .75rem;
}
.recruiter-match-card h4 {
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}
.recruiter-match-card.is-linkedin-origin {
  border-left: 4px solid var(--blue-dk);
}
.recruiter-stage-select {
  margin-top: .65rem;
  width: 100%;
}
.recruiter-empty {
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.5;
  padding: .4rem;
}
.recruiter-activity-shell {
  padding: 1.25rem;
}
.recruiter-activity-list {
  border-top: 1px solid var(--b);
}
.recruiter-activity-item {
  display: grid;
  gap: .8rem;
  grid-template-columns: 160px minmax(0, 1fr);
  padding: .9rem 0;
}
.recruiter-activity-item + .recruiter-activity-item {
  border-top: 1px solid var(--b);
}
.recruiter-activity-item time {
  color: var(--ink-3);
  font-family: var(--fm);
  font-size: 11px;
}
.recruiter-activity-item strong {
  display: block;
  font-size: 13px;
  line-height: 1.4;
}
.recruiter-activity-item span {
  color: var(--ink-2);
  display: block;
  font-size: 12px;
  line-height: 1.55;
  margin-top: .25rem;
}

.email-template-shell {
  padding-top: 5.1rem;
}
.email-template-hero {
  background: #fff;
  border-bottom: 1px solid var(--b);
  padding: 3rem 0 2.5rem;
}
.email-template-hero-inner {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) 420px;
}
.email-template-hero p {
  color: var(--ink-2);
  margin-top: .8rem;
  max-width: 680px;
}
.email-template-variable-panel,
.email-template-editor,
.email-template-preview,
.email-template-card {
  background: #fff;
  border: 1px solid var(--b);
  border-radius: var(--r-md);
}
.email-template-variable-panel {
  padding: 1rem;
}
.email-template-panel-head,
.email-template-card-head {
  margin-bottom: 1rem;
}
.email-template-panel-head strong,
.email-template-card-head h2 {
  display: block;
  font-family: var(--fb);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-top: .25rem;
}
.email-template-variable-sections {
  display: grid;
  gap: 1rem;
}
.email-template-variable-section {
  display: grid;
  gap: .45rem;
}
.email-template-variable-section span {
  color: var(--ink-3);
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.email-template-variable-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.email-template-variable-grid button {
  background: var(--blue-dim);
  border: 1px solid var(--blue-bdr);
  border-radius: var(--r);
  color: var(--blue-dk);
  cursor: pointer;
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .05em;
  padding: .45rem .55rem;
}
.email-template-variable-grid button:hover {
  background: #fff;
}
.email-template-main {
  padding: 2rem 0 4rem;
}
.email-template-grid {
  align-items: start;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: minmax(0, 1fr) 390px;
}
.email-template-editor {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}
.email-template-card {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
}
.email-template-flow-card {
  background: linear-gradient(135deg, #fff 0%, #F6F3EB 100%);
}
.email-template-flow-grid {
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.email-template-flow-grid > div {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--b);
  border-radius: var(--r);
  display: grid;
  gap: .35rem;
  padding: .9rem;
}
.email-template-flow-grid strong {
  color: var(--ink);
  font-size: .96rem;
}
.email-template-flow-grid span {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.5;
}
.email-template-step-number {
  color: var(--gold-dk);
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: .12em;
}
.email-template-fields {
  display: grid;
  gap: .9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.email-template-template-row {
  display: grid;
  gap: .9rem;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .55fr);
}
.email-template-card textarea {
  min-height: 320px;
}
.email-template-card textarea.email-template-compact-textarea {
  min-height: 98px;
}
.email-template-template-row.email-template-template-row-wide {
  grid-template-columns: minmax(0, 1fr) minmax(200px, .7fr) minmax(200px, .7fr);
}
.email-template-check {
  align-items: center;
  color: var(--ink-2);
  display: inline-flex;
  font-size: 14px;
  gap: .55rem;
}
.email-template-check input {
  height: 18px;
  width: 18px;
}
.email-template-recipient-review {
  display: grid;
  gap: .8rem;
}
.email-template-recipient-empty,
.email-template-recipient-summary {
  background: #F8F7F2;
  border: 1px solid var(--b);
  border-radius: var(--r);
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.5;
  padding: .8rem .9rem;
}
.email-template-recipient-summary {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem;
}
.email-template-recipient-summary strong {
  color: var(--ink);
}
.email-template-recipient-group {
  border: 1px solid var(--b);
  border-radius: var(--r);
  overflow: hidden;
}
.email-template-recipient-group-head {
  align-items: center;
  background: #FAFAF7;
  border-bottom: 1px solid var(--b);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem .9rem;
}
.email-template-recipient-group-head strong {
  color: var(--ink);
  font-size: 13px;
}
.email-template-recipient-group-head span {
  color: var(--blue);
  font-family: var(--fm);
  font-size: 12px;
}
.email-template-recipient-row {
  align-items: center;
  background: rgba(255,255,255,.78);
  border-bottom: 1px solid var(--b);
  color: var(--ink);
  display: grid;
  gap: .7rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: .75rem .9rem;
}
.email-template-recipient-row:last-child {
  border-bottom: 0;
}
.email-template-recipient-row input {
  height: 18px;
  width: 18px;
}
.email-template-recipient-row.is-risk {
  background: #FFF7F3;
}
.email-template-recipient-row.is-disabled {
  color: var(--ink-3);
}
.email-template-recipient-main {
  display: grid;
  gap: .2rem;
  min-width: 0;
}
.email-template-recipient-main strong,
.email-template-recipient-main span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.email-template-recipient-main strong {
  font-size: 14px;
}
.email-template-recipient-main span {
  color: var(--ink-2);
  font-size: 12px;
}
.email-template-recipient-pill {
  background: #F1EEE5;
  border: 1px solid var(--b);
  border-radius: 999px;
  color: var(--ink-2);
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: .08em;
  padding: .35rem .55rem;
  text-transform: uppercase;
  white-space: nowrap;
}
.email-template-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.email-template-status {
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.5;
}
.email-template-preview {
  padding: 1.25rem;
  position: sticky;
  top: 96px;
}
.email-template-warning-list {
  display: grid;
  gap: .55rem;
  margin-bottom: 1rem;
}
.email-template-warning-list:empty {
  display: none;
}
.email-template-warning {
  background: #FFF6DF;
  border: 1px solid #F1D68A;
  border-radius: var(--r);
  color: #7B5700;
  font-size: 12px;
  line-height: 1.45;
  padding: .65rem .75rem;
}
.email-template-warning.is-risk {
  background: #FFF1EC;
  border-color: #F1B9A4;
  color: #98361A;
}
.email-template-warning.is-ok {
  background: #EAF7F2;
  border-color: #A5D9C6;
  color: #0F6B52;
}
.email-template-preview-meta {
  border-bottom: 1px solid var(--b);
  display: grid;
  gap: .55rem;
  padding-bottom: 1rem;
}
.email-template-preview-meta span {
  color: var(--ink-3);
  font-family: var(--fm);
  font-size: 11px;
}
.email-template-preview-meta strong {
  color: var(--ink);
  font-family: var(--fb);
  font-size: 1rem;
  line-height: 1.35;
}
.email-template-preview pre {
  background: var(--ivory);
  border: 1px solid var(--b);
  border-radius: var(--r);
  color: var(--ink-2);
  font-family: var(--fb);
  font-size: 13px;
  line-height: 1.65;
  margin-top: 1rem;
  min-height: 420px;
  overflow: auto;
  padding: 1rem;
  white-space: pre-wrap;
}

@media (max-width: 1024px) {
  .ft-top { grid-template-columns: 1fr 1fr 1fr; }
  .recruiter-hero-inner, .recruiter-grid, .email-template-hero-inner, .email-template-grid { grid-template-columns: 1fr; }
  .email-template-flow-grid, .email-template-template-row.email-template-template-row-wide { grid-template-columns: 1fr; }
  .recruiter-form-panel { position: static; }
  .email-template-preview { position: static; }
  .how-header, .passive-inner, .cdi-inner, .salary-inner, .practices-inner, .trust-inner { gap: 3.5rem; grid-template-columns: 1fr; }
  .utility-shell { gap: 3rem; grid-template-columns: 1fr; }
  .buyer-hero-inner, .match-brief-inner, .intake-shell, .physician-hero-inner, .bench-hero-inner, .specialty-landing-inner, .specialty-form-shell, .specialty-salary-shell, .specialty-passive-inner, .ri-hero-inner, .ri-scope-shell, .ri-form-shell, .ri-business-shell, .ri-final-inner { gap: 3rem; grid-template-columns: 1fr; }
  .background-check-hero .buyer-hero-inner { grid-template-columns: 1fr; }
  .referral-hero .buyer-hero-inner { grid-template-columns: 1fr; }
  .policy-hero .buyer-hero-inner, .policy-layout { grid-template-columns: 1fr; }
  .contact-hero-inner { gap: 3rem; grid-template-columns: 1fr; }
  .policy-nav { position: static; }
  .jobs-specialty-hero-inner { gap: 3rem; grid-template-columns: 1fr; }
  .jobs-board-hero-inner, .jobs-benchmark-inner, .jobs-apply-inner, .job-detail-hero-inner, .job-detail-layout { gap: 3rem; grid-template-columns: 1fr; }
  .jobs-work-type-copy { align-items: start; grid-template-columns: 1fr; }
  .jobs-work-type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .insights-hero-inner, .insight-article-shell, .insights-register-panel, .insights-final-cta { grid-template-columns: 1fr; }
  .insights-final-actions { justify-content: flex-start; }
  .insight-share { position: static; }
  .jobs-board-layout { grid-template-columns: 1fr; }
  .jobs-filter-card { position: static; }
  .job-detail-apply-card { position: static; }
  .jobs-specialty-grid.specialty-search-grid.is-filtered { grid-template-columns: 1fr 1fr; }
  .specialty-hero-main { max-width: 760px; }
  .specialty-hero-panel { max-width: 760px; }
  .specialty-landing-hero h1 { font-size: clamp(3.7rem, 9vw, 6.2rem); max-width: 740px; }
  .proof-shell { gap: 3rem; grid-template-columns: 1fr; }
  .next-grid { grid-template-columns: 1fr 1fr; }
  .intake-copy-panel { position: static; }
  .calc-output, .timeline-saving { grid-template-columns: 1fr; }
  .preference-grid, .salary-strip-grid { grid-template-columns: 1fr 1fr; }
  .final-inner { grid-template-columns: 1fr; }
  .final-physician { border-bottom: 1px solid rgba(255,255,255,.08); border-right: none; padding: 0 0 4rem; }
  .final-practice { padding: 4rem 0 7rem; }
  .ri-final-primary { border-bottom: 1px solid rgba(255,255,255,.08); border-right: none; padding: 0 0 3.5rem; }
  .ri-final-secondary { padding: 3.5rem 0 0; }
  .start-paths { grid-template-columns: 1fr; }
  .start-path-physician { border-right: none; }
}

@media (max-width: 860px) {
  nav .nav-links { display: none; }
  body.agency-home .nav-toggle { display: inline-flex; }
  body.agency-home .nav-end { display: none; }
  nav.nav-open .nav-end { display: flex; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hstat { padding: 1.5rem; }
  .hstat:nth-child(even) { border-right: none; }
  .hstat:nth-child(n+3) { border-top: 1px solid var(--b); }
  .spec-featured, .spec-standard, .how-items, .blog-grid { grid-template-columns: 1fr; }
  .buyer-grid-3 { grid-template-columns: 1fr; }
  .specialty-detail-grid, .specialty-comp-grid, .specialty-signal-grid, .specialty-search-grid { grid-template-columns: 1fr; }
  .specialty-detail-card { border-bottom: 1px solid var(--b); border-right: none; }
  .specialty-detail-card:last-child { border-bottom: none; }
  .specialty-matrix { grid-template-columns: 1fr; }
  .preference-grid, .salary-strip-grid { grid-template-columns: 1fr; }
  .preference-card { border-bottom: 1px solid var(--b); border-right: none; }
  .preference-card:last-child { border-bottom: none; }
  .pool-grid, .faq-grid, .ri-value-grid, .ri-role-grid, .ri-process-grid { grid-template-columns: 1fr; }
  .next-grid { grid-template-columns: 1fr; }
  .pool-card, .pool-card:nth-child(3n), .pool-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--b); border-right: none; }
  .pool-card:last-child { border-bottom: none; }
  .calc-controls { grid-template-columns: 1fr; }
  .benchmark-tools-inner, .source-grid { grid-template-columns: 1fr; }
  .range-header, .range-row, .range-scale-row { gap: 1rem; grid-template-columns: 170px 1fr 140px; padding: .85rem 1.1rem; }
  .mid-cta { align-items: flex-start; flex-direction: column; }
  .factors-intro, .report-inner, .practice-bench-inner { gap: 3rem; grid-template-columns: 1fr; }
  .urgent-strip { align-items: flex-start; flex-direction: column; }
  .factors-grid { grid-template-columns: 1fr; }
  .buyer-card { border-bottom: 1px solid var(--b); border-right: none; }
  .buyer-card:last-child { border-bottom: none; }
  .ri-brief-row, .ri-scope-list div { gap: .55rem; grid-template-columns: 1fr; }
  .start-next-grid { grid-template-columns: 1fr; }
  .start-next-card { border-bottom: 1px solid var(--b); border-right: none; }
  .start-next-card:last-child { border-bottom: none; }
  .start-direct { grid-template-columns: 1fr; }
  .spec-card, .how-item, .blog-card { border-bottom: 1px solid var(--b); border-right: none !important; }
  .spec-card:last-child, .how-item:last-child, .blog-card:last-child { border-bottom: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .open-roles-strip-inner { align-items: flex-start; grid-template-columns: 1fr; }
  .open-roles-actions { justify-content: flex-start; }
  .jobs-filter-inner { align-items: flex-start; grid-template-columns: 1fr; }
  .jobs-filter-actions { justify-content: flex-start; }
  .jobs-specialty-filter-inner { align-items: flex-start; grid-template-columns: 1fr; }
  .jobs-specialty-chips { justify-content: flex-start; }
  .jobs-specialty-header { align-items: flex-start; flex-direction: column; }
  .jobs-specialty-grid.specialty-search-grid.is-filtered { grid-template-columns: 1fr; }
  .jobs-results-head { align-items: flex-start; grid-template-columns: 1fr; }
  .recruiter-section-head { align-items: flex-start; flex-direction: column; }
  .recruiter-filter-row { width: 100%; }
  .recruiter-filter-row input, .recruiter-filter-row select { flex: 1; min-width: 0; }
  .recruiter-candidate-card { grid-template-columns: 1fr; }
  .recruiter-card-actions { min-width: 0; }
  .recruiter-activity-item { grid-template-columns: 1fr; }
  .jobs-results-actions { justify-content: flex-start; width: 100%; }
  .jobs-card-grid { grid-template-columns: 1fr; }
  .jobs-work-type-grid { grid-template-columns: 1fr; }
  .insights-featured-grid, .insights-card-grid, .related-insights-grid { grid-template-columns: 1fr; }
  .insight-signal-grid { grid-template-columns: 1fr; }
  .insight-featured-guide { grid-template-columns: 1fr; }
  .insights-register-grid { grid-template-columns: 1fr; }
  .job-detail-related, .job-detail-process, .job-detail-highlights, .job-detail-boundaries, .job-detail-split-panel { grid-template-columns: 1fr; }
  .jobs-no-match-fields { grid-template-columns: 1fr; }
  .reference-rating-grid { grid-template-columns: 1fr 1fr; }
  .policy-grid { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  :root { --sp: 4rem; }
  body { overflow-x: hidden; }
  .w { padding: 0 1.4rem; }
  .nav { gap: .75rem; padding: .9rem 1.1rem; }
  .logo { min-width: 0; }
  .logo-word { font-size: 1rem; white-space: nowrap; }
  .nav-login { display: none; }
  .nav-cta { flex: 0 0 auto; font-size: 12.5px; padding: .52rem .72rem; white-space: nowrap; }
  .nav-cta svg { display: none; }
  .hero { padding: 8.5rem 0 0; }
  .start-hero { padding: 7.4rem 0 3.25rem; }
  .start-hero::after { display: none; }
  .start-hero h1 { font-size: clamp(3rem, 13vw, 4.6rem); }
  .start-hero-actions .btn { justify-content: center; width: 100%; }
  .start-path { padding: 3rem 1.4rem; }
  .start-form-head { padding: 1.5rem 1.25rem 1.25rem; }
  .start-urgent-card { align-items: flex-start; flex-direction: column; }
  .start-urgent-card a { text-align: center; width: 100%; }
  .hero-hl { font-size: clamp(3rem,11vw,4.5rem); }
  .jobs-specialty-hero { padding: 7.2rem 0 4rem; }
  .jobs-specialty-copy h1 { font-size: clamp(3.1rem, 14vw, 4.6rem); letter-spacing: -.04em; }
  .jobs-specialty-copy p { font-size: 1rem; line-height: 1.65; }
  .jobs-specialty-actions .btn { justify-content: center; width: 100%; }
  .insights-hero-actions .btn, .insights-register-actions .btn, .insights-final-actions .btn { justify-content: center; width: 100%; }
  .jobs-specialty-trust span { width: 100%; }
  .jobs-board-hero { padding: 7.2rem 0 4rem; }
  .jobs-board-hero h1 { font-size: clamp(3.1rem, 14vw, 4.6rem); letter-spacing: -.04em; }
  .jobs-board-hero p { font-size: 1rem; line-height: 1.65; }
  .jobs-board-shell { padding: 2.2rem 0 4rem; }
  .jobs-results-head { padding: 1rem; }
  .jobs-results-head h2 { font-size: 1.9rem; }
  .recruiter-shell { padding-top: 4.8rem; }
  .email-template-shell { padding-top: 4.8rem; }
  .recruiter-hero { padding: 2.2rem 0 1.6rem; }
  .email-template-hero { padding: 2.2rem 0 1.6rem; }
  .recruiter-tabs-wrap { top: 67px; }
  .recruiter-summary-grid { grid-template-columns: 1fr; }
  .recruiter-summary-grid div + div { border-left: none; border-top: 1px solid var(--b); }
  .recruiter-filter-row { flex-direction: column; }
  .recruiter-form-panel, .recruiter-list-panel, .recruiter-activity-shell { padding: 1rem; }
  .email-template-editor, .email-template-card, .email-template-preview, .email-template-variable-panel { padding: 1rem; }
  .email-template-fields, .email-template-template-row { grid-template-columns: 1fr; }
  .email-template-recipient-row { align-items: flex-start; grid-template-columns: auto minmax(0, 1fr); }
  .email-template-recipient-pill { grid-column: 2; justify-self: flex-start; }
  .email-template-card textarea { min-height: 280px; }
  .job-detail-hero { padding: 7.2rem 0 4rem; }
  .job-detail-hero,
  .job-detail-body,
  .job-detail-related-section,
  .job-detail-hero-inner,
  .job-detail-layout,
  .jobs-brief-card,
  .job-detail-panel,
  .job-detail-apply-card {
    max-width: 100%;
    min-width: 0;
  }
  .jobs-brief-card { width: 100%; }
  .jobs-specialty-kicker span { max-width: 100%; overflow-wrap: anywhere; }
  .job-detail-hero h1 { font-size: clamp(2.45rem, 10.2vw, 3.45rem); letter-spacing: 0; line-height: 1.04; max-width: 100%; word-break: normal; }
  .job-detail-hero p { max-width: 100%; }
  .job-title-separator { font-size: .58em; }
  .job-detail-apply-card { padding: 1.2rem; }
  .job-detail-apply-trust { grid-template-columns: 1fr 1fr; }
  .job-detail-facts { grid-template-columns: 1fr; }
  .jobs-results-actions .btn, .jobs-role-card .job-card-actions { width: 100%; }
  .jobs-role-card .job-card-actions { grid-template-columns: 1fr; }
  .jobs-benchmark-form { padding: 1.25rem; }
  .jobs-apply-form { padding: 1.25rem; }
  .jobs-apply-options { grid-template-columns: 1fr; }
  .buyer-hero { padding-top: 8rem; }
  .background-check-hero h1 { font-size: clamp(3rem, 13vw, 4.7rem); }
  .referral-hero h1 { font-size: clamp(3.25rem, 13vw, 4.8rem); }
  .policy-hero h1 { font-size: clamp(3rem, 13vw, 4.75rem); }
  .contact-hero h1 { font-size: clamp(3.1rem, 13vw, 4.85rem); }
  .contact-hero-actions .btn { justify-content: center; width: 100%; }
  .policy-content section { padding: 1.4rem; }
  .credential-checklist div { grid-template-columns: 32px 1fr; }
  .ri-hero { padding: 7.2rem 0 4rem; }
  .ri-hero h1 { font-size: clamp(3.1rem, 14vw, 4.55rem); }
  .ri-kicker span { font-size: 8.5px; }
  .ri-brief-head { align-items: flex-start; flex-direction: column; gap: .7rem; }
  .physician-hero { padding-top: 8rem; }
  .utility-main { padding-top: 7.5rem; }
  .auth-panel-head, .auth-form, .auth-switch { padding-left: 1.25rem; padding-right: 1.25rem; }
  .form-grid, .choice-row, .checkbox-grid, .intake-track, .specialty-form-grid, .reference-rating-grid { grid-template-columns: 1fr; }
  .specialty-breadcrumb { padding-top: 4.9rem; }
  .specialty-landing-hero { padding: 7.2rem 0 4rem; }
  .specialty-landing-hero h1 { font-size: clamp(3.15rem, 14vw, 4.4rem); letter-spacing: -.04em; }
  .specialty-hero-copy { font-size: 1rem; line-height: 1.65; margin-bottom: 1.35rem; }
  .specialty-hero-trust span { width: 100%; }
  .specialty-hero-actions .btn { justify-content: center; width: 100%; }
  .open-roles-actions .btn { justify-content: center; width: 100%; }
  .job-card-actions .btn, .jobs-filter-actions .btn { justify-content: center; width: 100%; }
  .job-facts { grid-template-columns: 1fr; }
  .job-facts div, .job-facts div:nth-child(even), .job-facts div:nth-last-child(-n+2) { border-bottom: 1px solid var(--b); border-right: none; }
  .job-facts div:last-child { border-bottom: none; }
  .hero-panel-top { flex-direction: column; padding: 1.4rem; }
  .hero-case-tags { padding: 1rem 1.4rem; }
  .hero-role-list div { gap: .35rem; grid-template-columns: 1fr; padding: 1rem 1.4rem; }
  .hero-choice-grid { grid-template-columns: 1fr; }
  .hero-choice:first-child { border-bottom: 1px solid var(--yellow-bdr); border-right: none; }
  .hero-choice { padding: 1rem 1.4rem; }
  .specialty-form-head, .specialty-intake-form { padding-left: 1.25rem; padding-right: 1.25rem; }
  .salary-row { gap: .8rem; grid-template-columns: 1fr; }
  .bench-row { flex-direction: column; }
  .bench-fields { grid-template-columns: 1fr; }
  .how-n { font-size: 5rem; }
  .final { padding: 4.5rem 0 0; }
  .final-physician { padding: 0 0 3rem; }
  .final-practice { padding: 3rem 0 4.5rem; }
  .ft-top { grid-template-columns: 1fr; }
}

/* Verovian Agency US homepage */
.agency-home {
  --agency-ink: #1C1A14;
  --agency-ink-soft: rgba(28,26,20,.08);
  --agency-line: rgba(28,26,20,.12);
  background:
    linear-gradient(180deg, #FFF9F5 0%, #FAF9F6 46%, #F5F1EA 100%);
}
.agency-home h1,
.agency-home h2,
.agency-home h3 {
  font-family: var(--fb);
  letter-spacing: 0;
}
.agency-nav {
  background: rgba(255,249,245,.94);
  border-bottom-color: rgba(28,26,20,.1);
}
.agency-nav .logo-word {
  color: var(--agency-ink);
  font-family: var(--fb);
  font-weight: 500;
}
.agency-nav .logo-word span { color: var(--agency-salmon-dk); }
.agency-nav .nav-links a.active,
.agency-nav .nav-links a:hover { color: var(--agency-ink); }
.agency-nav .nav-cta {
  background: var(--agency-ink);
  color: #fff;
}
.agency-nav .nav-cta:hover { background: #2B261F; }
.agency-kicker {
  color: var(--agency-salmon-dk);
  display: inline-flex;
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.agency-hero {
  overflow: hidden;
  padding: 9.5rem 0 5rem;
  position: relative;
}
.agency-hero::before {
  background:
    linear-gradient(135deg, rgba(243,203,189,.68), rgba(242,188,0,.24)),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.96), transparent 52%);
  border-radius: 999px;
  content: "";
  height: 520px;
  opacity: .78;
  position: absolute;
  right: -160px;
  top: 96px;
  width: 520px;
}
.agency-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  position: relative;
  z-index: 1;
}
.agency-hero-copy h1 {
  color: var(--agency-ink);
  font-size: clamp(3.4rem, 7.2vw, 6.7rem);
  font-weight: 500;
  line-height: .95;
  margin: 1rem 0 1.2rem;
  max-width: 760px;
}
.agency-hero-copy p {
  color: var(--ink-2);
  font-size: 1.06rem;
  line-height: 1.7;
  max-width: 650px;
}
.agency-hero-actions,
.agency-final-actions,
.agency-job-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.8rem;
}
.agency-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.45rem;
}
.agency-trust-row span,
.agency-checklist span,
.agency-facility-list span {
  background: rgba(255,255,255,.7);
  border: 1px solid var(--agency-line);
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 12px;
  padding: .42rem .7rem;
}
.agency-command {
  background:
    linear-gradient(180deg, rgba(28,26,20,.96), rgba(18,17,13,.98)),
    var(--agency-ink);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  box-shadow: 0 34px 90px rgba(28,26,20,.24);
  color: #fff;
  overflow: hidden;
}
.agency-command-top,
.agency-command-head {
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.1rem;
}
.agency-command-top span,
.agency-command-head span,
.agency-route-tabs span,
.agency-feed-row span {
  color: rgba(255,255,255,.58);
  font-size: 12px;
}
.agency-route-tabs {
  display: grid;
  gap: .55rem;
  grid-template-columns: repeat(3, 1fr);
  padding: 1rem 1.1rem .4rem;
}
.agency-route-tabs span {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: .45rem .55rem;
  text-align: center;
}
.agency-route-tabs span.active {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}
.agency-feed {
  display: grid;
  gap: .7rem;
  padding: .9rem 1.1rem 1.1rem;
}
.agency-feed-row {
  align-items: center;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  padding: .9rem;
}
.agency-feed-row div {
  display: grid;
  gap: .12rem;
}
.agency-feed-row b {
  background: rgba(243,203,189,.15);
  border: 1px solid rgba(243,203,189,.34);
  border-radius: 999px;
  color: var(--agency-salmon-lt);
  font-size: 11px;
  padding: .28rem .48rem;
}
.agency-feed-row.is-hot b {
  background: rgba(242,188,0,.18);
  border-color: rgba(242,188,0,.36);
  color: var(--yellow-lt);
}
.agency-checklist {
  background: rgba(255,255,255,.06);
  border-top: 1px solid rgba(255,255,255,.1);
  display: grid;
  gap: .65rem;
  grid-template-columns: repeat(2, 1fr);
  padding: 1.1rem;
}
.agency-checklist span {
  background: rgba(250,249,246,.08);
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.72);
}
.agency-profile-panel {
  background: rgba(251,250,247,.82);
  border: 1px solid rgba(28,26,20,.13);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(28,26,20,.1);
  color: var(--ink);
  justify-self: center;
  max-width: 420px;
  width: 100%;
}
.agency-profile-panel .agency-command-top {
  border-bottom-color: rgba(28,26,20,.1);
  padding: 1.25rem 1.35rem;
}
.agency-profile-panel .agency-command-top span {
  color: rgba(28,26,20,.52);
  font-family: var(--fm);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.agency-profile-panel .agency-command-top strong {
  color: #171510;
  font-family: var(--fb);
  font-size: 1.05rem;
  font-weight: 500;
}
.agency-profile-list {
  display: grid;
}
.agency-profile-list div {
  border-bottom: 1px solid rgba(28,26,20,.09);
  display: grid;
  gap: .32rem;
  padding: 1rem 1.35rem;
}
.agency-profile-list div:last-child {
  border-bottom: 0;
}
.agency-profile-list span {
  color: rgba(28,26,20,.5);
  font-family: var(--fm);
  font-size: .65rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.agency-profile-list strong {
  color: #171510;
  font-family: var(--fb);
  font-size: .98rem;
  font-weight: 500;
}
.agency-route-section,
.agency-professions,
.agency-split,
.agency-jobs-band,
.agency-insights,
.agency-final { padding: 5rem 0; }
.agency-section-head {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}
.agency-section-head h2,
.agency-professions h2,
.agency-panel h2,
.agency-jobs-grid h2,
.agency-final h2 {
  color: var(--agency-ink);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1;
}
.agency-route-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.agency-route-card,
.agency-insight-card {
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88));
  border: 1px solid var(--agency-line);
  border-radius: 22px;
  color: inherit;
  display: grid;
  gap: .9rem;
  min-height: 250px;
  padding: 1.6rem;
  text-decoration: none;
  transition: border-color .22s, box-shadow .22s, transform .22s;
  position: relative;
}
.agency-route-card:hover,
.agency-insight-card:hover,
.agency-profession-pill:hover {
  border-color: rgba(243,203,189,.5);
  box-shadow: 0 22px 52px rgba(28,26,20,.08);
  transform: translateY(-3px);
}
.agency-route-card span,
.agency-insight-card span {
  color: var(--agency-salmon-dk);
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.agency-route-card h3,
.agency-insight-card h3 {
  color: var(--agency-ink);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.12;
}
.agency-route-card p,
.agency-insight-card p,
.agency-professions p,
.agency-panel p,
.agency-jobs-grid p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.75;
}
.agency-professions {
  background: #fff;
  border-bottom: 1px solid rgba(28,26,20,.08);
  border-top: 1px solid rgba(28,26,20,.08);
}
.agency-professions-grid {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
}
.agency-professions p {
  margin: 1.2rem 0 1.75rem;
  max-width: 620px;
}
.agency-profession-list {
  display: grid;
  gap: .95rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.agency-profession-pill {
  align-items: center;
  background: rgba(250,249,246,.95);
  border: 1px solid rgba(28,26,20,.08);
  border-radius: 16px;
  color: var(--agency-ink);
  display: flex;
  font-weight: 500;
  justify-content: space-between;
  min-height: 72px;
  padding: 1rem 1.1rem;
  text-decoration: none;
}
.agency-profession-pill::after {
  color: var(--agency-ink);
  content: "+";
}
.agency-split-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
}
.agency-panel {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(28,26,20,.09);
  border-radius: 24px;
  padding: 1.8rem;
}
.agency-panel-dark {
  background: linear-gradient(145deg, rgba(28,26,20,.98), rgba(28,26,20,.92));
  border-color: rgba(243,203,189,.22);
}
.agency-panel-list {
  display: grid;
  gap: .8rem;
  margin: 1.35rem 0 1.75rem;
}
.agency-panel-list span {
  align-items: center;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(28,26,20,.08);
  border-radius: 999px;
  color: var(--ink-2);
  display: inline-flex;
  font-size: .95rem;
  gap: .65rem;
  padding: .75rem 1rem;
}
.agency-panel-list span::before {
  content: '•';
  color: var(--yellow);
  font-size: 1.1rem;
  line-height: 1;
}
.agency-jobs-band {
  background: linear-gradient(120deg, rgba(243,203,189,.98), rgba(28,26,20,.96));
  color: #fff;
}
.agency-job-actions .btn-yellow,
.agency-final-actions .btn-yellow {
  box-shadow: 0 14px 40px rgba(242,188,0,.22);
}
.agency-insight-card {
  position: relative;
  overflow: hidden;
}
.agency-insight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(243,203,189,.12), transparent 48%);
  pointer-events: none;
}
.ft-wrap {
  padding: 4rem 0 2rem;
}
.ft-top {
  gap: 2.5rem;
}
.ft-logo {
  align-items: center;
  display: flex;
  gap: .85rem;
  font-family: var(--fd);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.ft-contact a {
  color: var(--ink-2);
  display: inline-block;
  margin-bottom: .6rem;
}
.agency-panel-dark .agency-kicker,
.agency-panel-dark h2 { color: #fff; }
.agency-panel-dark p { color: rgba(255,255,255,.68); }
.agency-mini-form {
  display: grid;
  gap: .75rem;
  margin-top: 1.4rem;
}
.agency-mini-form input,
.agency-mini-form select {
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 10px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: .8rem .9rem;
}
.agency-mini-form .specialty-intake-status {
  color: rgba(255,255,255,.62);
  font-size: 12px;
  line-height: 1.5;
}
.agency-facility-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 1.4rem 0;
}
.agency-jobs-band {
  background: var(--agency-ink);
  color: #fff;
}
.agency-jobs-grid,
.agency-final-grid {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
}
.agency-jobs-grid h2,
.agency-final h2 { color: #fff; }
.agency-jobs-grid p {
  color: rgba(255,255,255,.68);
  max-width: 620px;
}
.agency-jobs-band .agency-kicker,
.agency-final .agency-kicker { color: var(--agency-salmon-lt); }
.agency-jobs-band .btn-outline,
.agency-final .btn-outline {
  border-color: rgba(255,255,255,.24);
  color: #fff;
}
.agency-insight-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.agency-final {
  background:
    linear-gradient(135deg, rgba(28,26,20,.94), rgba(243,203,189,.88)),
    var(--agency-ink);
  color: #fff;
}

@media (max-width: 980px) {
  .agency-hero-grid,
  .agency-professions-grid,
  .agency-split-grid,
  .agency-jobs-grid,
  .agency-final-grid {
    grid-template-columns: 1fr;
  }
  .agency-route-grid,
  .agency-insight-grid {
    grid-template-columns: 1fr;
  }
  .agency-command { max-width: 620px; }
  .agency-job-actions,
  .agency-final-actions { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .agency-hero { padding: 8rem 0 3.5rem; }
  .agency-hero-copy h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .agency-hero-actions .btn,
  .agency-job-actions .btn,
  .agency-final-actions .btn {
    justify-content: center;
    width: 100%;
  }
  .agency-profession-list,
  .agency-checklist { grid-template-columns: 1fr; }
  .agency-section-head {
    align-items: start;
    flex-direction: column;
  }
}

/* Agency treatment for key public route pages */
.jobs-board-hero,
.insights-hero {
  background:
    linear-gradient(135deg, #FFF9F5 0%, #FAF9F6 48%, rgba(243,203,189,.34) 100%),
    var(--ivory);
  border-bottom: 1px solid var(--agency-line);
  color: var(--ink);
}
.jobs-board-hero::after {
  background: repeating-linear-gradient(90deg, rgba(28,26,20,.08) 0 1px, transparent 1px 28px);
}
.jobs-board-hero h1,
.insights-hero h1 {
  color: var(--agency-ink);
  font-family: var(--fb);
  font-weight: 500;
  letter-spacing: 0;
}
.jobs-board-hero .jobs-board-hero-inner > div:first-child > p,
.insights-hero p {
  color: var(--ink-2);
}
.jobs-specialty-kicker span,
.insights-topic-card,
.jobs-work-type-card,
.jobs-filter-card,
.jobs-results-head,
.jobs-role-card {
  border-color: var(--agency-line);
}
.jobs-specialty-kicker span,
.insights-topic-card h2 {
  color: var(--agency-ink);
}
.jobs-board-shell {
  background:
    linear-gradient(180deg, rgba(243,203,189,.12), rgba(250,249,246,0) 34%),
    var(--ivory-s);
}


/* ============================================================
   AGENCY HOME — PREMIUM DIRECTION
   Single source of truth. Use body.agency-home prefix only.
   ============================================================ */

body.agency-home {
  background: #F7F4EE;
}

/* Salmon accent bar fixed at top */
body.agency-home::before {
  background: #F3CBBD;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 650;
}

/* Wide container */
body.agency-home .w {
  max-width: 1240px;
}

/* ---- NAV ---- */
body.agency-home .agency-nav {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(28,26,20,.08);
}
body.agency-home .agency-nav.raised {
  box-shadow: 0 1px 0 rgba(28,26,20,.06), 0 8px 30px rgba(28,26,20,.05);
}
body.agency-home .agency-nav .logo-word {
  color: #1C1A14;
  font-family: var(--fb);
  font-size: .93rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
body.agency-home .agency-nav .logo-word span {
  color: #6F5C53;
  font-weight: 400;
}
body.agency-home .agency-nav .nav-links a {
  color: rgba(28,26,20,.58);
  font-size: 12.5px;
}
body.agency-home .agency-nav .nav-links a:hover,
body.agency-home .agency-nav .nav-links a.active {
  color: #1C1A14;
}
body.agency-home .agency-nav .nav-login {
  color: rgba(28,26,20,.48);
  font-size: 12.5px;
}
body.agency-home .agency-nav .nav-cta {
  background: #1C1A14;
  border: 1px solid #1C1A14;
  border-radius: 999px;
  color: #FAF9F6;
  font-size: 12.5px;
  padding: .55rem 1.15rem;
  transition: background .18s;
}
body.agency-home .agency-nav .nav-cta:hover {
  background: #2a261f;
  transform: none;
}
body.agency-home .nav-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(28,26,20,.12);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0 1rem;
  transition: background .18s;
}
body.agency-home .nav-toggle:hover {
  background: rgba(28,26,20,.04);
}

/* ---- HERO ---- */
body.agency-home .agency-hero {
  background:
    url("../img/agency-us-hero-premium.png") center right / cover no-repeat;
  border: none;
  min-height: 820px;
  overflow: hidden;
  padding: 10.5rem 0 6rem;
  position: relative;
}
body.agency-home .agency-hero::before {
  background: linear-gradient(
    100deg,
    rgba(247,244,238,1) 0%,
    rgba(247,244,238,.98) 30%,
    rgba(247,244,238,.86) 48%,
    rgba(247,244,238,.44) 62%,
    rgba(247,244,238,0) 76%
  );
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
}
body.agency-home .agency-hero::after {
  display: none;
}
body.agency-home .agency-hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 4vw, 5rem);
  grid-template-columns: minmax(0, 1fr) 440px;
  position: relative;
  z-index: 1;
}
body.agency-home .agency-hero-copy {
  max-width: 660px;
}
body.agency-home .agency-hero .agency-kicker {
  align-items: center;
  border-left: none;
  color: #6F5C53;
  display: inline-flex;
  font-family: var(--fm);
  font-size: .68rem;
  gap: .6rem;
  letter-spacing: .22em;
  padding-left: 0;
  text-transform: uppercase;
}
body.agency-home .agency-hero .agency-kicker::before {
  background: #F3CBBD;
  border-radius: 50%;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 7px;
  width: 7px;
}
body.agency-home .agency-hero-copy h1 {
  color: #1C1A14;
  font-family: var(--fd);
  font-size: clamp(3.4rem, 5.6vw, 6rem);
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: .9;
  margin: .9rem 0 1.4rem;
  max-width: 760px;
}
body.agency-home .agency-hero-subtitle {
  color: rgba(28,26,20,.72);
  font-size: 1.06rem;
  line-height: 1.78;
  margin-bottom: .9rem;
  max-width: 580px;
}
body.agency-home .agency-hero-copy > p:not(.agency-hero-subtitle) {
  color: rgba(28,26,20,.56);
  font-size: .97rem;
  line-height: 1.72;
  max-width: 540px;
}
body.agency-home .agency-hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}
body.agency-home .agency-hero-actions .btn-primary {
  background: #1C1A14;
  border: 1px solid #1C1A14;
  border-radius: 999px;
  color: #FAF9F6;
  font-size: 14px;
  padding: .9rem 1.9rem;
  transition: background .2s, transform .18s;
}
body.agency-home .agency-hero-actions .btn-primary:hover {
  background: #2a261f;
  transform: translateY(-1px);
}
body.agency-home .agency-hero-actions .btn-secondary {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(28,26,20,.14);
  border-radius: 999px;
  color: #1C1A14;
  font-size: 14px;
  padding: .9rem 1.9rem;
  transition: background .2s, border-color .18s;
}
body.agency-home .agency-hero-actions .btn-secondary:hover {
  background: rgba(255,255,255,.96);
  border-color: rgba(28,26,20,.22);
}
body.agency-home .agency-trust-row {
  border-top: 1px solid rgba(28,26,20,.1);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.2rem;
  max-width: 560px;
}
body.agency-home .agency-trust-row span {
  background: transparent;
  border: none;
  border-right: 1px solid rgba(28,26,20,.1);
  border-radius: 0;
  color: rgba(28,26,20,.52);
  font-size: .82rem;
  letter-spacing: .01em;
  padding: .9rem 1rem .25rem 0;
}
body.agency-home .agency-trust-row span:last-child {
  border-right: none;
  padding-right: 0;
}

/* Hero Feature Card */
body.agency-home .agency-hero-feature {
  background: #fff;
  border: 1px solid rgba(28,26,20,.09);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(28,26,20,.1);
  overflow: hidden;
}
body.agency-home .agency-hero-feature-head {
  border-bottom: 1px solid rgba(28,26,20,.07);
  padding: 1.5rem 1.75rem 1.35rem;
}
body.agency-home .agency-hero-feature-head span {
  color: #6F5C53;
  display: block;
  font-family: var(--fm);
  font-size: .66rem;
  letter-spacing: .22em;
  margin-bottom: .65rem;
  text-transform: uppercase;
}
body.agency-home .agency-hero-feature-head strong {
  color: #1C1A14;
  display: block;
  font-family: var(--fb);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.3;
}
body.agency-home .agency-hero-feature-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: .5rem 1.75rem .75rem;
}
body.agency-home .agency-hero-feature-list li {
  border-bottom: 1px solid rgba(28,26,20,.07);
  color: rgba(28,26,20,.7);
  font-size: .97rem;
  line-height: 1.5;
  padding: .82rem 0 .82rem 1.4rem;
  position: relative;
}
body.agency-home .agency-hero-feature-list li:last-child {
  border-bottom: none;
}
body.agency-home .agency-hero-feature-list li::before {
  background: #F3CBBD;
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 1.15rem;
  width: 6px;
}
body.agency-home .agency-hero-feature-footer {
  background: linear-gradient(180deg, rgba(243,203,189,.1), rgba(243,203,189,.18));
  border-top: 1px solid rgba(243,203,189,.28);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  padding: .9rem 1.75rem;
}
body.agency-home .agency-chip {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(28,26,20,.09);
  border-radius: 999px;
  color: rgba(28,26,20,.68);
  font-family: var(--fm);
  font-size: .65rem;
  letter-spacing: .14em;
  padding: .4rem .8rem;
  text-transform: uppercase;
}

/* ---- STATS BAND ---- */
body.agency-home .agency-stats-band {
  background: #1C1A14;
  border-top: 1px solid rgba(255,255,255,.06);
}
body.agency-home .agency-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
body.agency-home .agency-stat-item {
  border-right: 1px solid rgba(255,255,255,.07);
  padding: 2.2rem 2.4rem;
}
body.agency-home .agency-stat-item:last-child {
  border-right: none;
}
body.agency-home .agency-stat-item strong {
  color: #FAF9F6;
  display: block;
  font-family: var(--fd);
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: -.01em;
  line-height: 1;
  margin-bottom: .45rem;
}
body.agency-home .agency-stat-item span {
  color: rgba(250,249,246,.44);
  font-family: var(--fm);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ---- SHARED KICKER ---- */
body.agency-home .agency-kicker {
  color: #6F5C53;
  display: inline-flex;
  font-family: var(--fm);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
}

/* ---- SECTION HEADS ---- */
body.agency-home .agency-section-head {
  align-items: end;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, .32fr) minmax(0, .68fr);
  margin-bottom: 2.5rem;
}
body.agency-home .agency-section-head .agency-kicker {
  align-self: start;
  padding-top: .3rem;
}
body.agency-home .agency-section-head h2,
body.agency-home .agency-professions h2,
body.agency-home .agency-panel h2,
body.agency-home .agency-jobs-grid h2,
body.agency-home .agency-final h2 {
  color: #1C1A14;
  font-family: var(--fd);
  font-size: clamp(2.4rem, 4.5vw, 4.8rem);
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: .9;
  max-width: 720px;
}

/* ---- ROUTE SECTION ---- */
body.agency-home .agency-route-section {
  background: #F7F4EE;
  padding: 7rem 0;
}
body.agency-home .agency-route-grid {
  background: rgba(28,26,20,.08);
  border: 1px solid rgba(28,26,20,.08);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
body.agency-home .agency-route-card {
  background: #FAF9F6;
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  min-height: 310px;
  padding: 2.4rem 2.2rem;
  position: relative;
  text-decoration: none;
  transition: background .22s;
}
body.agency-home .agency-route-card::before {
  background: #F3CBBD;
  content: "";
  height: 3px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity .25s;
}
body.agency-home .agency-route-card:hover {
  background: #fff;
  box-shadow: none;
  transform: none;
}
body.agency-home .agency-route-card:hover::before {
  opacity: 1;
}
body.agency-home .agency-route-card span {
  color: rgba(28,26,20,.36);
  font-family: var(--fm);
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}
body.agency-home .agency-route-card h3 {
  color: #1C1A14;
  font-family: var(--fd);
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: .9;
  margin-top: auto;
}
body.agency-home .agency-route-card p {
  color: rgba(28,26,20,.6);
  font-size: .97rem;
  line-height: 1.72;
  max-width: 290px;
}

/* ---- PROFESSIONS ---- */
body.agency-home .agency-professions {
  background: #fff;
  border-bottom: 1px solid rgba(28,26,20,.07);
  border-top: 1px solid rgba(28,26,20,.07);
  padding: 7rem 0;
}
body.agency-home .agency-professions-grid {
  align-items: center;
  display: grid;
  gap: 5.5rem;
  grid-template-columns: minmax(0, .78fr) minmax(360px, 1.22fr);
}
body.agency-home .agency-professions h2 {
  font-family: var(--fd);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: .92;
  margin: .75rem 0 1.25rem;
}
body.agency-home .agency-professions p {
  color: rgba(28,26,20,.62);
  font-size: .97rem;
  line-height: 1.78;
  margin-bottom: 2rem;
  max-width: 440px;
}
body.agency-home .agency-profession-list {
  background: rgba(28,26,20,.07);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
body.agency-home .agency-profession-pill {
  background: #fff;
  border: none;
  border-radius: 0;
  color: #1C1A14;
  display: flex;
  font-size: .97rem;
  font-weight: 500;
  justify-content: space-between;
  min-height: 80px;
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  transition: background .2s;
}
body.agency-home .agency-profession-pill:hover {
  background: #F7F4EE;
  box-shadow: none;
  transform: none;
}
body.agency-home .agency-profession-pill::after {
  color: #F3CBBD;
  content: "→";
  font-size: 1.1rem;
  font-weight: 300;
}

/* ---- SPLIT (Clinicians / Facilities) ---- */
body.agency-home .agency-split {
  background: #F7F4EE;
  padding: 7rem 0;
}
body.agency-home .agency-split-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
}
body.agency-home .agency-panel {
  background: #fff;
  border: 1px solid rgba(28,26,20,.08);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(28,26,20,.05);
  padding: 2.4rem;
}
body.agency-home .agency-panel h2 {
  font-family: var(--fd);
  font-size: clamp(1.85rem, 3vw, 3rem);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: .95;
  margin: .7rem 0 1rem;
}
body.agency-home .agency-panel p {
  color: rgba(28,26,20,.64);
  font-size: .97rem;
  line-height: 1.78;
  max-width: 480px;
}
body.agency-home .agency-panel-dark {
  background: linear-gradient(148deg, #161411, #1C1A14 50%, #242119);
  border-color: rgba(243,203,189,.22);
  box-shadow: 0 28px 80px rgba(0,0,0,.2);
}
body.agency-home .agency-panel-dark .agency-kicker {
  color: rgba(243,203,189,.72);
}
body.agency-home .agency-panel-dark h2 {
  color: #FAF9F6;
}
body.agency-home .agency-panel-dark p {
  color: rgba(250,249,246,.66);
}
body.agency-home .agency-panel-list {
  display: grid;
  gap: .6rem;
  margin: 1.35rem 0 1.75rem;
}
body.agency-home .agency-panel-list span {
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  color: rgba(250,249,246,.8);
  display: inline-flex;
  font-size: .95rem;
  gap: .65rem;
  padding: .7rem 1rem;
}
body.agency-home .agency-panel-list span::before {
  background: rgba(243,203,189,.9);
  border-radius: 50%;
  content: "";
  flex-shrink: 0;
  height: 6px;
  width: 6px;
}
body.agency-home .agency-facility-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.35rem 0 2rem;
}
body.agency-home .agency-facility-list span {
  background: #F7F4EE;
  border: 1px solid rgba(28,26,20,.1);
  border-radius: 999px;
  color: rgba(28,26,20,.68);
  font-size: .9rem;
  padding: .52rem .9rem;
}

/* Intake form in dark panel */
body.agency-home .agency-mini-form {
  border: none;
  display: grid;
  gap: .9rem;
  margin-top: 1.5rem;
  padding-top: 0;
}
body.agency-home .agency-form-grid {
  display: grid;
  gap: .85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
body.agency-home .agency-field {
  display: grid;
  gap: .4rem;
}
body.agency-home .agency-field span {
  color: rgba(250,249,246,.5);
  font-family: var(--fm);
  font-size: .64rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
body.agency-home .agency-field input,
body.agency-home .agency-field select {
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  color: #FAF9F6;
  font: inherit;
  font-size: .97rem;
  min-height: 52px;
  outline: none;
  padding: .9rem 1rem;
  transition: border-color .18s, background .18s;
  width: 100%;
}
body.agency-home .agency-field input::placeholder {
  color: rgba(250,249,246,.28);
}
body.agency-home .agency-field input:focus,
body.agency-home .agency-field select:focus {
  background: rgba(255,255,255,.14);
  border-color: rgba(243,203,189,.5);
}
body.agency-home .agency-field select option {
  background: #1C1A14;
  color: #FAF9F6;
}
body.agency-home .agency-mini-form .btn-primary {
  background: #F3CBBD;
  border: none;
  border-radius: 12px;
  color: #1C1A14;
  font-size: .97rem;
  font-weight: 500;
  padding: 1rem 1.8rem;
  transition: background .18s;
  width: 100%;
}
body.agency-home .agency-mini-form .btn-primary:hover {
  background: #EAB9AA;
  transform: none;
}
body.agency-home .agency-mini-form .specialty-intake-status {
  color: rgba(250,249,246,.4);
  font-size: .82rem;
  line-height: 1.55;
}
body.agency-home .hp-field {
  display: none;
}
body.agency-home .btn-blue {
  background: #1C1A14;
  border: 1px solid #1C1A14;
  border-radius: 999px;
  color: #FAF9F6;
  padding: .9rem 1.9rem;
  transition: background .18s, transform .18s;
}
body.agency-home .btn-blue:hover {
  background: #2a261f;
  border-color: #2a261f;
  transform: translateY(-1px);
}

/* ---- TRUST / TESTIMONIALS ---- */
body.agency-home .agency-trust {
  background: #fff;
  border-bottom: 1px solid rgba(28,26,20,.07);
  border-top: 1px solid rgba(28,26,20,.07);
  padding: 7rem 0;
}
body.agency-home .agency-trust-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.5rem;
}
body.agency-home .agency-trust-card {
  background: #FAFAF8;
  border: 1px solid rgba(28,26,20,.08);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  position: relative;
}
body.agency-home .agency-trust-card::before {
  color: #F3CBBD;
  content: "\201C";
  font-family: var(--fd);
  font-size: 4.5rem;
  font-weight: 300;
  left: 1.7rem;
  line-height: 1;
  opacity: .85;
  position: absolute;
  top: .6rem;
}
body.agency-home .agency-trust-card p {
  color: rgba(28,26,20,.78);
  font-family: var(--fd);
  font-size: 1.18rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.58;
  margin-bottom: auto;
  margin-top: 2.8rem;
  padding-bottom: 1.5rem;
}
body.agency-home .agency-trust-card strong {
  border-top: 1px solid rgba(28,26,20,.08);
  color: rgba(28,26,20,.48);
  display: block;
  font-family: var(--fm);
  font-size: .66rem;
  font-weight: 400;
  letter-spacing: .14em;
  padding-top: 1.1rem;
  text-transform: uppercase;
}

/* ---- JOBS BAND ---- */
body.agency-home .agency-jobs-band {
  background: #1C1A14;
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: #FAF9F6;
  padding: 7rem 0;
}
body.agency-home .agency-jobs-band .agency-kicker {
  color: rgba(243,203,189,.68);
}
body.agency-home .agency-jobs-grid {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 1fr) auto;
}
body.agency-home .agency-jobs-grid h2 {
  color: #FAF9F6;
  font-family: var(--fd);
  margin: .7rem 0 1rem;
}
body.agency-home .agency-jobs-grid p {
  color: rgba(250,249,246,.58);
  font-size: 1rem;
  line-height: 1.72;
  max-width: 560px;
}
body.agency-home .agency-job-actions {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  min-width: 200px;
}
body.agency-home .agency-job-actions .btn-yellow {
  background: var(--yellow);
  border-radius: 999px;
  color: #1C1A14;
  font-weight: 500;
  justify-content: center;
  padding: 1rem 1.8rem;
  transition: background .18s, transform .18s;
  white-space: nowrap;
}
body.agency-home .agency-job-actions .btn-yellow:hover {
  background: var(--yellow-lt);
  transform: translateY(-1px);
}
body.agency-home .agency-job-actions .btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.68);
  justify-content: center;
  padding: 1rem 1.8rem;
  transition: border-color .18s, color .18s;
  white-space: nowrap;
}
body.agency-home .agency-job-actions .btn-outline:hover {
  border-color: rgba(255,255,255,.36);
  color: #fff;
}

/* ---- INSIGHTS ---- */
body.agency-home .agency-insights {
  background: #F7F4EE;
  padding: 7rem 0;
}
body.agency-home .agency-insight-grid {
  background: rgba(28,26,20,.07);
  border: 1px solid rgba(28,26,20,.07);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
body.agency-home .agency-insight-card {
  background: #FAFAF8;
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  min-height: 280px;
  overflow: visible;
  padding: 2rem;
  position: relative;
  text-decoration: none;
  transition: background .22s;
}
body.agency-home .agency-insight-card::after {
  display: none;
}
body.agency-home .agency-insight-card:hover {
  background: #fff;
  box-shadow: none;
  transform: none;
}
body.agency-home .agency-insight-card span {
  color: rgba(28,26,20,.36);
  font-family: var(--fm);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
body.agency-home .agency-insight-card h3 {
  color: #1C1A14;
  font-family: var(--fd);
  font-size: 1.9rem;
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.02;
  margin-top: auto;
}
body.agency-home .agency-insight-card p {
  color: rgba(28,26,20,.58);
  font-size: .95rem;
  line-height: 1.65;
}

/* ---- CTA BANNER ---- */
body.agency-home .agency-cta-banner {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  padding: 5rem 0 7rem;
}
body.agency-home .agency-cta-banner-grid {
  align-items: center;
  background: linear-gradient(138deg, #F2EDE3, #FAF9F4);
  border: 1px solid rgba(28,26,20,.09);
  border-radius: 32px;
  box-shadow: 0 28px 90px rgba(28,26,20,.07);
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 4rem;
}
body.agency-home .agency-cta-banner .agency-kicker {
  color: #6F5C53;
}
body.agency-home .agency-cta-banner h2 {
  color: #1C1A14;
  font-family: var(--fd);
  font-size: clamp(2rem, 3.8vw, 4rem);
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: .92;
  margin: .7rem 0 1.2rem;
}
body.agency-home .agency-cta-banner p {
  color: rgba(28,26,20,.62);
  font-size: .97rem;
  line-height: 1.78;
  max-width: 560px;
}
body.agency-home .agency-cta-banner-actions {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: .75rem;
  min-width: 200px;
}
body.agency-home .agency-cta-banner-actions .btn-primary {
  background: #1C1A14;
  border: 1px solid #1C1A14;
  border-radius: 999px;
  color: #FAF9F6;
  justify-content: center;
  padding: 1rem 1.8rem;
  transition: background .18s, transform .18s;
  white-space: nowrap;
}
body.agency-home .agency-cta-banner-actions .btn-primary:hover {
  background: #2a261f;
  transform: translateY(-1px);
}
body.agency-home .agency-cta-banner-actions .btn-secondary {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(28,26,20,.12);
  border-radius: 999px;
  color: #1C1A14;
  justify-content: center;
  padding: 1rem 1.8rem;
  transition: background .18s;
  white-space: nowrap;
}
body.agency-home .agency-cta-banner-actions .btn-secondary:hover {
  background: #fff;
}

/* ---- FINAL ---- */
body.agency-home .agency-final {
  background: #1C1A14;
  color: #FAF9F6;
  padding: 7rem 0;
}
body.agency-home .agency-final-grid {
  align-items: center;
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 1fr) auto;
}
body.agency-home .agency-final .agency-kicker {
  color: rgba(243,203,189,.68);
}
body.agency-home .agency-final h2 {
  color: #FAF9F6;
  font-family: var(--fd);
  margin: .7rem 0 0;
}
body.agency-home .agency-final-actions {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: .75rem;
  min-width: 200px;
}
body.agency-home .agency-final-actions .btn-yellow {
  background: var(--yellow);
  border-radius: 999px;
  color: #1C1A14;
  font-weight: 500;
  justify-content: center;
  padding: 1rem 1.8rem;
  transition: background .18s, transform .18s;
  white-space: nowrap;
}
body.agency-home .agency-final-actions .btn-yellow:hover {
  background: var(--yellow-lt);
  transform: translateY(-1px);
}
body.agency-home .agency-final-actions .btn-blue {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  justify-content: center;
  padding: 1rem 1.8rem;
  transition: background .18s, border-color .18s, transform .18s;
  white-space: nowrap;
}
body.agency-home .agency-final-actions .btn-blue:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-1px);
}

/* ---- FOOTER ---- */
body.agency-home footer {
  background: #0F0E0B;
  border-top: 1px solid rgba(255,255,255,.06);
}
body.agency-home .ft-top {
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
}
body.agency-home .ft-contact a {
  color: rgba(250,249,246,.36);
  display: block;
  margin-bottom: .55rem;
  transition: color .18s;
}
body.agency-home .ft-contact a:hover {
  color: rgba(250,249,246,.7);
}

/* ---- SCROLL REVEAL ---- */
body.agency-home .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
body.agency-home .reveal.is-visible {
  opacity: 1;
  transform: none;
}
body.agency-home .reveal-d1 { transition-delay: .08s; }
body.agency-home .reveal-d2 { transition-delay: .16s; }
body.agency-home .reveal-d3 { transition-delay: .24s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 980px) {
  body.agency-home .agency-hero {
    min-height: 640px;
    padding: 9rem 0 5rem;
  }
  body.agency-home .agency-hero::before {
    background: linear-gradient(
      180deg,
      rgba(247,244,238,1) 0%,
      rgba(247,244,238,.96) 50%,
      rgba(247,244,238,.82) 100%
    );
  }
  body.agency-home .agency-hero-grid,
  body.agency-home .agency-professions-grid,
  body.agency-home .agency-split-grid,
  body.agency-home .agency-jobs-grid,
  body.agency-home .agency-final-grid,
  body.agency-home .agency-cta-banner-grid {
    grid-template-columns: 1fr;
  }
  body.agency-home .agency-section-head {
    gap: 1.25rem;
    grid-template-columns: 1fr;
  }
  body.agency-home .agency-route-grid,
  body.agency-home .agency-insight-grid {
    grid-template-columns: 1fr;
  }
  body.agency-home .agency-profession-list {
    grid-template-columns: 1fr 1fr;
  }
  body.agency-home .agency-trust-grid {
    grid-template-columns: 1fr;
  }
  body.agency-home .agency-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.agency-home .agency-stat-item:nth-child(2) {
    border-right: none;
  }
  body.agency-home .agency-stat-item:nth-child(n+3) {
    border-top: 1px solid rgba(255,255,255,.07);
  }
  body.agency-home .agency-stat-item:nth-child(4) {
    border-right: none;
  }
  body.agency-home .agency-job-actions,
  body.agency-home .agency-final-actions,
  body.agency-home .agency-cta-banner-actions {
    flex-direction: row;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  body.agency-home .agency-hero {
    min-height: auto;
    padding: 7.8rem 0 4.5rem;
  }
  body.agency-home .agency-hero::before {
    background: rgba(247,244,238,.97);
  }
  body.agency-home .agency-hero-copy h1 {
    font-size: 3.3rem;
  }
  body.agency-home .agency-trust-row {
    grid-template-columns: 1fr;
  }
  body.agency-home .agency-trust-row span {
    border-right: none;
    padding: .65rem 0;
  }
  body.agency-home .nav-toggle {
    display: inline-flex;
  }
  body.agency-home .nav-links {
    display: none;
  }
  body.agency-home .nav-end .nav-login {
    display: none;
  }
  body.agency-home nav.nav-open .nav-links {
    background: rgba(255,255,255,.98);
    border-top: 1px solid rgba(28,26,20,.07);
    box-shadow: 0 20px 50px rgba(28,26,20,.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    left: 0;
    padding: 1.5rem 2rem;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 40;
  }
  body.agency-home .agency-cta-banner-grid {
    padding: 2.5rem 2rem;
  }
  body.agency-home .agency-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  body.agency-home .agency-section-head h2,
  body.agency-home .agency-professions h2,
  body.agency-home .agency-panel h2,
  body.agency-home .agency-jobs-grid h2,
  body.agency-home .agency-final h2 {
    font-size: 2.4rem;
  }
  body.agency-home .agency-profession-list {
    grid-template-columns: 1fr;
  }
  body.agency-home .agency-route-card h3 {
    font-size: 2.2rem;
  }
  body.agency-home .agency-job-actions,
  body.agency-home .agency-final-actions,
  body.agency-home .agency-cta-banner-actions {
    flex-direction: column;
    width: 100%;
  }
  body.agency-home .agency-job-actions .btn,
  body.agency-home .agency-final-actions .btn,
  body.agency-home .agency-cta-banner-actions .btn {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
}

/* ---- FINAL HOMEPAGE OVERRIDE: LOGO-LED PREMIUM ---- */
body.agency-home .brand-mark,
body.agency-home .ft-brand-mark {
  display: block;
  flex: 0 0 auto;
  height: auto;
  object-fit: contain;
}

body.agency-home .agency-nav .brand-mark {
  width: 34px;
}

body.agency-home .agency-nav .logo {
  gap: .85rem;
}

body.agency-home .agency-nav .logo-word {
  color: #191713;
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0;
}

body.agency-home .agency-nav .logo-word span {
  color: #786A5D;
  font-weight: 300;
}

body.agency-home .agency-hero {
  align-items: center;
  background: #FBFAF7;
  display: flex;
  min-height: 720px;
  padding: 8.9rem 0 5rem;
}

body.agency-home .agency-hero::before {
  background: linear-gradient(112deg, #FBFAF7 0%, #F7F3EA 58%, #F0E7D2 100%);
}

body.agency-home .agency-hero::after {
  background: rgba(28,26,20,.08);
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: auto;
}

body.agency-home .agency-hero-grid {
  align-items: center;
  gap: 5.1rem;
  grid-template-columns: minmax(0, 620px) minmax(300px, .84fr);
}

body.agency-home .agency-hero-copy {
  max-width: 620px;
}

body.agency-home .agency-hero .agency-kicker {
  color: #6A5F55;
  font-size: .7rem;
  letter-spacing: .18em;
}

body.agency-home .agency-hero .agency-kicker::before {
  background: #F2BC00;
}

body.agency-home .agency-hero-copy h1 {
  color: #171510;
  font-size: 5.35rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: .98;
  margin: 1rem 0 1.15rem;
  max-width: 620px;
}

body.agency-home .agency-hero-subtitle {
  color: rgba(23,21,16,.68);
  font-size: 1.12rem;
  line-height: 1.66;
  max-width: 540px;
}

body.agency-home .agency-hero-actions {
  gap: .85rem;
  margin-top: 2.15rem;
}

body.agency-home .agency-hero-actions .btn-primary,
body.agency-home .agency-hero-actions .btn-secondary {
  border-radius: 8px;
  font-size: 14px;
  min-height: 48px;
  padding: .92rem 1.65rem;
}

body.agency-home .agency-hero-actions .btn-primary {
  background: #171510;
  border-color: #171510;
  color: #FAF9F6;
}

body.agency-home .agency-hero-actions .btn-secondary {
  background: rgba(250,249,246,.38);
  border-color: rgba(28,26,20,.18);
  color: #171510;
}

body.agency-home .agency-trust-row {
  border-top: 1px solid rgba(28,26,20,.13);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.35rem;
  max-width: 560px;
}

body.agency-home .agency-trust-row span {
  color: rgba(23,21,16,.56);
  font-size: .78rem;
  line-height: 1.35;
  padding: .85rem .85rem 0 0;
}

body.agency-home .agency-hero-brand {
  align-items: center;
  border-left: 1px solid rgba(28,26,20,.12);
  display: grid;
  justify-items: center;
  min-height: 480px;
  padding-left: 4rem;
  position: relative;
}

body.agency-home .agency-hero-brand::before {
  color: rgba(23,21,16,.42);
  content: "Confidential candidate desk";
  font-family: var(--fm);
  font-size: .68rem;
  letter-spacing: .16em;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  top: 1.2rem;
}

body.agency-home .agency-hero-logo {
  display: block;
  filter: drop-shadow(0 18px 26px rgba(28,26,20,.05));
  height: auto;
  max-width: 390px;
  width: 100%;
}

body.agency-home .agency-hero-brand p {
  color: rgba(23,21,16,.58);
  font-family: var(--fb);
  font-size: .96rem;
  letter-spacing: 0;
  line-height: 1.62;
  margin-top: -1rem;
  max-width: 330px;
  text-align: center;
  text-transform: none;
}

body.agency-home .agency-stats-band {
  background: #FBFAF7;
  border-bottom: 1px solid rgba(28,26,20,.1);
  border-top: 1px solid rgba(28,26,20,.1);
}

body.agency-home .agency-stats-grid {
  border-left: 1px solid rgba(28,26,20,.09);
}

body.agency-home .agency-stat-item {
  border-right: 1px solid rgba(28,26,20,.09);
  padding: 2rem 2.1rem;
}

body.agency-home .agency-stat-item strong {
  color: #171510;
  font-family: var(--fd);
  font-size: 1.42rem;
  letter-spacing: 0;
  line-height: 1.15;
}

body.agency-home .agency-stat-item span {
  color: rgba(23,21,16,.54);
}

body.agency-home .agency-route-card,
body.agency-home .agency-panel,
body.agency-home .agency-trust-card,
body.agency-home .agency-insight-card,
body.agency-home .agency-cta-banner-grid {
  border-radius: 8px;
}

body.agency-home .agency-route-card {
  background: #FBFAF7;
  border-color: rgba(28,26,20,.1);
  min-height: 280px;
}

body.agency-home .agency-route-card h3 {
  font-size: 2.35rem;
  letter-spacing: 0;
}

body.agency-home .agency-route-card p {
  color: rgba(23,21,16,.6);
}

body.agency-home .agency-trust-card::before {
  display: none;
}

body.agency-home .agency-trust-card {
  background: #FBFAF7;
  min-height: 240px;
}

body.agency-home .agency-trust-card p {
  font-family: var(--fb);
  font-size: 1.02rem;
  font-style: normal;
  line-height: 1.72;
  margin-top: 0;
}

body.agency-home .agency-trust-card strong {
  color: #171510;
}

body.agency-home .ft-brand-mark {
  margin-right: .1rem;
  width: 28px;
}

@media (max-width: 980px) {
  body.agency-home .agency-hero {
    min-height: auto;
    padding: 8rem 0 4.2rem;
  }

  body.agency-home .agency-hero-grid {
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  body.agency-home .agency-hero-copy h1 {
    font-size: 4.35rem;
    max-width: 640px;
  }

  body.agency-home .agency-hero-brand {
    border-left: none;
    justify-items: start;
    min-height: 260px;
    padding-left: 0;
  }

  body.agency-home .agency-hero-brand::before {
    display: none;
  }

  body.agency-home .agency-hero-logo {
    max-width: 360px;
  }

  body.agency-home .agency-hero-brand p {
    margin-top: -.5rem;
    max-width: 340px;
    text-align: left;
  }
}

@media (max-width: 640px) {
  body.agency-home {
    overflow-x: hidden;
  }

  body.agency-home .w {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  body.agency-home .agency-nav .brand-mark {
    width: 29px;
  }

  body.agency-home .agency-nav .logo-word {
    font-size: 1rem;
  }

  body.agency-home .agency-hero {
    padding: 7.2rem 0 3.4rem;
  }

  body.agency-home .agency-hero-grid {
    justify-items: start;
  }

  body.agency-home .agency-hero-copy {
    justify-self: start;
    margin-left: 0;
    margin-right: 0;
    max-width: 15.7rem;
  }

  body.agency-home .agency-hero-copy h1 {
    font-size: 2.58rem;
    line-height: 1.04;
    max-width: 15.7rem;
  }

  body.agency-home .agency-hero-subtitle {
    font-size: 1rem;
    max-width: 15.7rem;
  }

  body.agency-home .agency-hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 15.7rem;
    width: 100%;
  }

  body.agency-home .agency-hero-actions .btn-primary,
  body.agency-home .agency-hero-actions .btn-secondary {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  body.agency-home .agency-trust-row {
    grid-template-columns: 1fr;
  }

  body.agency-home .agency-trust-row span {
    border-right: none;
    padding: .62rem 0;
  }

  body.agency-home .agency-profile-panel {
    max-width: 15.7rem;
  }

  body.agency-home .agency-profile-panel .agency-command-top {
    display: grid;
    gap: .35rem;
    padding: 1rem 1.1rem;
  }

  body.agency-home .agency-profile-list div {
    padding: .9rem 1.1rem;
  }

  body.agency-home .agency-hero-brand {
    justify-self: center;
    justify-items: center;
    min-height: 180px;
  }

  body.agency-home .agency-hero-logo {
    max-width: 220px;
  }

  body.agency-home .agency-hero-brand p {
    display: none;
  }

  body.agency-home .agency-stats-grid {
    border-left: none;
    grid-template-columns: 1fr;
  }

  body.agency-home .agency-stat-item {
    border-bottom: 1px solid rgba(28,26,20,.09);
    border-right: none;
    padding: 1.6rem 1.4rem;
  }

  body.agency-home .agency-stat-item:last-child {
    border-bottom: none;
  }
}

/* Jobs page premium treatment */
body.jobs-page {
  background: #F7F4EE;
  overflow-x: hidden;
}

body.jobs-page .jobs-board-hero {
  align-items: center;
  background: #FBFAF7;
  border-bottom: 1px solid rgba(28,26,20,.08);
  color: #171510;
  display: flex;
  min-height: 690px;
  padding: 8.4rem 0 4rem;
}

body.jobs-page .jobs-board-hero::after {
  background: linear-gradient(180deg, rgba(243,203,189,.16), rgba(243,203,189,0));
  bottom: 0;
  height: auto;
  left: 55%;
  opacity: 1;
  right: 0;
  top: 0;
  transform: none;
  width: auto;
}

body.jobs-page .jobs-board-hero-inner {
  align-items: center;
  gap: 5rem;
  grid-template-columns: minmax(0, 620px) minmax(320px, 420px);
}

body.jobs-page .jobs-board-hero h1 {
  color: #171510;
  font-family: var(--fd);
  font-size: 5.15rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: .95;
  max-width: 620px;
}

body.jobs-page .jobs-board-hero .jobs-board-hero-inner > div:first-child > p {
  color: rgba(23,21,16,.64);
  font-size: 1.02rem;
  line-height: 1.72;
  margin: 1.35rem 0 1.55rem;
  max-width: 560px;
}

body.jobs-page .jobs-specialty-kicker {
  gap: .55rem;
  margin-bottom: 1.05rem;
}

body.jobs-page .jobs-specialty-kicker span {
  background: rgba(255,255,255,.58);
  border-color: rgba(28,26,20,.13);
  color: rgba(23,21,16,.56);
  letter-spacing: .14em;
}

body.jobs-page .jobs-specialty-actions {
  margin-bottom: 0;
  margin-top: 1.65rem;
}

body.jobs-page .jobs-specialty-actions .btn-blue {
  background: #171510;
  border-color: #171510;
  color: #FAF9F6;
}

body.jobs-page .jobs-specialty-actions .btn-outline {
  background: rgba(250,249,246,.42);
  border-color: rgba(28,26,20,.16);
  color: #171510;
}

body.jobs-page .jobs-specialty-actions .btn-outline:hover {
  background: #fff;
  border-color: rgba(28,26,20,.28);
  color: #171510;
}

body.jobs-page .jobs-specialty-trust {
  border-top: 1px solid rgba(28,26,20,.12);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.15rem;
  max-width: 560px;
}

body.jobs-page .jobs-specialty-trust span {
  background: transparent;
  border: none;
  border-right: 1px solid rgba(28,26,20,.1);
  border-radius: 0;
  color: rgba(23,21,16,.54);
  font-size: .78rem;
  line-height: 1.35;
  padding: .85rem .85rem 0 0;
}

body.jobs-page .jobs-specialty-trust span:last-child {
  border-right: none;
}

body.jobs-page .jobs-concierge-card {
  background: rgba(251,250,247,.86);
  border: 1px solid rgba(28,26,20,.13);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(28,26,20,.1);
  justify-self: center;
  max-width: 420px;
  width: 100%;
}

body.jobs-page .jobs-concierge-card .jobs-brief-head {
  background: transparent;
  border-bottom-color: rgba(28,26,20,.1);
  padding: 1.2rem 1.35rem;
}

body.jobs-page .jobs-concierge-card .jobs-brief-head span {
  color: rgba(23,21,16,.5);
}

body.jobs-page .jobs-concierge-card .jobs-brief-head strong {
  background: transparent;
  border: none;
  color: #171510;
  font-family: var(--fb);
  font-size: .96rem;
  letter-spacing: 0;
  padding: 0;
  text-transform: none;
}

body.jobs-page .jobs-concierge-card .jobs-brief-body div {
  background: transparent;
  border-bottom-color: rgba(28,26,20,.09);
  padding: 1rem 1.35rem;
}

body.jobs-page .jobs-concierge-card .jobs-brief-body span {
  color: rgba(23,21,16,.5);
  font-family: var(--fm);
  font-size: .65rem;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
}

body.jobs-page .jobs-concierge-card .jobs-brief-body p {
  color: #171510 !important;
  font-family: var(--fb);
  font-size: .98rem;
  font-weight: 500;
  line-height: 1.45;
}

body.jobs-page .jobs-board-shell {
  background: #F7F4EE;
  padding: 5.2rem 0 5.8rem;
}

body.jobs-page .jobs-work-type-panel {
  gap: 1.5rem;
  margin-bottom: 2rem;
}

body.jobs-page .jobs-work-type-copy {
  align-items: start;
  border-top: 1px solid rgba(28,26,20,.1);
  grid-template-columns: minmax(0, .32fr) minmax(0, .68fr);
  padding-top: 2rem;
}

body.jobs-page .jobs-work-type-copy h2 {
  color: #171510;
  font-family: var(--fd);
  font-size: 3.25rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: .98;
  margin-top: 0;
  max-width: 560px;
}

body.jobs-page .jobs-work-type-copy p {
  align-self: end;
  color: rgba(23,21,16,.6);
  font-size: .95rem;
  line-height: 1.7;
  max-width: 420px;
}

body.jobs-page .jobs-work-type-grid {
  background: rgba(28,26,20,.08);
  border: 1px solid rgba(28,26,20,.08);
  gap: 1px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

body.jobs-page .jobs-work-type-card {
  background: #FBFAF7;
  border: none;
  border-radius: 0;
  box-shadow: none;
  min-height: 174px;
  padding: 1.15rem;
  transform: none;
}

body.jobs-page .jobs-work-type-card:hover {
  background: #fff;
  box-shadow: none;
  transform: none;
}

body.jobs-page .jobs-work-type-card.active {
  background: #171510;
  color: #FAF9F6;
  box-shadow: none;
  transform: none;
}

body.jobs-page .jobs-work-type-card.active span,
body.jobs-page .jobs-work-type-card.active p {
  color: rgba(250,249,246,.62);
}

body.jobs-page .jobs-work-type-card strong {
  font-size: 1rem;
  line-height: 1.22;
}

body.jobs-page .jobs-work-type-card p {
  font-size: .79rem;
  line-height: 1.52;
}

body.jobs-page .jobs-board-layout {
  gap: 1rem;
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
}

body.jobs-page .jobs-filter-card,
body.jobs-page .jobs-results-head,
body.jobs-page .jobs-role-card,
body.jobs-page .jobs-no-results,
body.jobs-page .jobs-benchmark-form,
body.jobs-page .jobs-apply-form {
  border-radius: 8px;
  box-shadow: none;
}

body.jobs-page .jobs-filter-card {
  background: #FBFAF7;
  border-color: rgba(28,26,20,.11);
  top: 90px;
}

body.jobs-page .jobs-filter-head button {
  color: rgba(23,21,16,.58);
}

body.jobs-page .jobs-filter-card .field input,
body.jobs-page .jobs-filter-card .field select {
  background: #fff;
}

body.jobs-page .jobs-results-head {
  background: #FBFAF7;
  border-color: rgba(28,26,20,.11);
  padding: 1.2rem 1.25rem;
}

body.jobs-page .jobs-results-head h2 {
  color: #171510;
  font-family: var(--fd);
  font-size: 2.35rem;
  font-weight: 300;
  letter-spacing: 0;
}

body.jobs-page .jobs-results-head p {
  color: rgba(23,21,16,.62);
}

body.jobs-page .jobs-card-grid {
  gap: .75rem;
}

body.jobs-page .jobs-card-grid .section-note {
  background: #FBFAF7;
  border: 1px solid rgba(28,26,20,.11);
  border-radius: 8px;
  color: rgba(23,21,16,.62);
  grid-column: 1 / -1;
  line-height: 1.65;
  margin: 0;
  padding: 1.35rem 1.45rem;
}

body.jobs-page .jobs-role-card {
  background: #FBFAF7;
  border-color: rgba(28,26,20,.1);
  border-top: 1px solid rgba(28,26,20,.1);
  padding: 1.2rem;
}

body.jobs-page .jobs-role-card h3 {
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0;
}

body.jobs-page .job-card-detail-link {
  background: #fff;
  border-color: rgba(28,26,20,.1);
  border-radius: 8px;
}

body.jobs-page .jobs-benchmark-section {
  background: #FBFAF7;
  border-top-color: rgba(28,26,20,.08);
  padding: 5.8rem 0;
}

body.jobs-page .jobs-benchmark-inner,
body.jobs-page .jobs-apply-inner {
  gap: 4.5rem;
}

body.jobs-page .jobs-benchmark-inner h2,
body.jobs-page .jobs-apply-inner h2,
body.jobs-page #jobs-faq h2 {
  font-family: var(--fd);
  font-size: 3.35rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
}

body.jobs-page .jobs-benchmark-points span {
  background: rgba(243,203,189,.16);
  border-color: rgba(243,203,189,.34);
  color: rgba(23,21,16,.66);
}

body.jobs-page .jobs-benchmark-form {
  background: #F7F4EE;
  border-color: rgba(28,26,20,.11);
}

body.jobs-page .jobs-benchmark-form .jobs-apply-selected {
  background: #FBFAF7;
  border-color: rgba(28,26,20,.11);
}

body.jobs-page .jobs-apply-section {
  background: #171510;
  padding: 5.8rem 0;
}

body.jobs-page .jobs-apply-form {
  background: rgba(250,249,246,.055);
  border-color: rgba(250,249,246,.11);
}

body.jobs-page .jobs-apply-step span {
  background: #F3CBBD;
  color: #171510;
}

body.jobs-page #jobs-faq {
  background: #F7F4EE;
}

@media (max-width: 980px) {
  body.jobs-page .jobs-board-hero {
    min-height: auto;
    padding: 8rem 0 4.4rem;
  }

  body.jobs-page .jobs-board-hero::after {
    left: 0;
    opacity: .55;
  }

  body.jobs-page .jobs-board-hero-inner,
  body.jobs-page .jobs-board-layout,
  body.jobs-page .jobs-benchmark-inner,
  body.jobs-page .jobs-apply-inner {
    gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  body.jobs-page .jobs-board-hero h1 {
    font-size: 4.15rem;
    max-width: 620px;
  }

  body.jobs-page .jobs-concierge-card {
    justify-self: start;
    max-width: 520px;
  }

  body.jobs-page .jobs-work-type-copy {
    grid-template-columns: 1fr;
  }

  body.jobs-page .jobs-work-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.jobs-page .jobs-filter-card {
    position: static;
  }
}

@media (max-width: 640px) {
  body.jobs-page .jobs-board-hero {
    padding: 7.1rem 0 3.5rem;
  }

  body.jobs-page .jobs-board-hero-inner {
    display: block;
    max-width: none;
    min-width: 0;
    width: 100%;
  }

  body.jobs-page .jobs-board-hero-inner > div:first-child,
  body.jobs-page .jobs-specialty-actions,
  body.jobs-page .jobs-specialty-trust {
    max-width: 21rem;
    min-width: 0;
    width: 100%;
  }

  body.jobs-page .jobs-board-hero h1 {
    font-size: 3.05rem;
    line-height: 1.02;
    max-width: 100%;
  }

  body.jobs-page .jobs-board-hero .jobs-board-hero-inner > div:first-child > p {
    font-size: 1rem;
    max-width: 100%;
  }

  body.jobs-page .jobs-specialty-kicker {
    display: grid;
    justify-items: start;
  }

  body.jobs-page .jobs-specialty-actions {
    align-items: stretch;
    flex-direction: column;
  }

  body.jobs-page .jobs-specialty-actions .btn,
  body.jobs-page .jobs-results-actions .btn,
  body.jobs-page .jobs-role-card .job-card-actions .btn {
    justify-content: center;
    width: 100%;
  }

  body.jobs-page .jobs-specialty-trust {
    grid-template-columns: 1fr;
  }

  body.jobs-page .jobs-specialty-trust span {
    border-right: none;
    padding: .62rem 0;
  }

  body.jobs-page .jobs-concierge-card {
    max-width: 21rem;
    min-width: 0;
    margin-top: 2.2rem;
    width: 100%;
  }

  body.jobs-page .jobs-concierge-card .jobs-brief-head {
    align-items: start;
    display: grid;
    gap: .35rem;
    padding: 1rem 1.1rem;
  }

  body.jobs-page .jobs-concierge-card .jobs-brief-body div {
    padding: .9rem 1.1rem;
  }

  body.jobs-page .jobs-work-type-copy h2,
  body.jobs-page .jobs-benchmark-inner h2,
  body.jobs-page .jobs-apply-inner h2,
  body.jobs-page #jobs-faq h2 {
    font-size: 2.45rem;
    line-height: 1.03;
  }

  body.jobs-page .jobs-work-type-grid,
  body.jobs-page .jobs-card-grid,
  body.jobs-page .jobs-results-head,
  body.jobs-page .jobs-no-match-fields {
    grid-template-columns: 1fr;
  }

  body.jobs-page .jobs-work-type-card {
    min-height: 0;
  }

  body.jobs-page .jobs-results-actions,
  body.jobs-page .jobs-benchmark-points {
    align-items: stretch;
    display: flex;
    flex-direction: column;
  }
}
