:root {
  --navy: #031D2E;
  --navy-strong: #021725;
  --hero-bg: #f3f6f9;
  --surface-soft: #f7f8fb;
  --surface-cream: #f5f1e6;
  --surface-cream-2: #faf7ef;
  --gold-soft: rgba(232,192,41,0.22);
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
  --space-48: 48px;
  --space-64: 64px;
  --type-h1: clamp(38px, 4.1vw, 56px);
  --type-h2: 30px;
  --type-lede: 17px;
  --type-label: 12px;
  --type-small: 14px;
  --type-button: 15px;
  --blue: #0B74BA;
  --gold: #E8C029;
  --ink: #231F20;
  --bg: #f6f7f9;
  --card: #ffffff;
  --card-soft: #fbfcfe;
  --muted: #6b7280;
  --border: rgba(2, 6, 23, 0.08);
  --line: rgba(2, 6, 23, 0.08);
  --shadow-sm: 0 10px 24px rgba(2, 6, 23, 0.08);
  --shadow-md: 0 14px 36px rgba(2, 6, 23, 0.10);
  --blue-900: #05263D;
  --text: #231F20;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.10);
  --radius-sm: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  background: var(--blue); color: white;
  padding: 10px 12px; border-radius: var(--radius-sm);
  z-index: 9999;
}
.skip-link:focus {
  left: 10px;
  top: 10px;
}

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

.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
}
.topbar .container {
  display: flex; align-items: center; justify-content: flex-end;
  padding: 6px 0;
  gap: 18px;
}
.topbar .left, .topbar .right {
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
}
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 2px 0;
  border: 0;
  border-radius: 0;
  color: rgba(255,255,255,0.84);
}
.pill:hover { color: #fff; }
.pill strong { color: #fff; font-weight: 600; }

.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  gap: 14px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand img {
  height: 28px; width: auto;
}
.nav {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-left: auto;
  justify-content: flex-end;
}
.nav a {
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: #0b1220;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  line-height: 1.15;
  min-height: 44px;
}
.nav a:hover {
  background: rgba(11, 116, 186, 0.08);
  color: #0b1220;
}
.nav .dropdown {
  position: relative;
}
.nav .dropdown > button {
  border: 0; background: transparent;
  font: inherit; font-weight: 600;
  padding: 8px 26px 8px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  line-height: 1.15;
  min-height: 44px;
  position: relative;
}
.nav .dropdown > button > span[aria-hidden="true"] {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.nav .dropdown > button:hover {
  background: rgba(11, 116, 186, 0.08);
}
.nav .menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 360px;
  max-width: 500px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px;
  box-shadow: 0 16px 40px rgba(13, 37, 63, 0.12);
  display: none;
  z-index: 50;
}

.nav .menu a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.1;
}

.nav .menu a span {
  font-weight: 600;
  color: var(--muted);
  font-size: var(--type-small);
  line-height: 1.25;
}

.nav .menu a:hover {
  background: rgba(2, 6, 23, 0.04);
}
.nav .dropdown.open .menu {
  display: block;
}

.cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px;
  min-width: fit-content;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: var(--type-button);
  line-height: 1.15;
  white-space: nowrap;
  border: 1px solid rgba(11,116,186,0.24);
  box-shadow: 0 10px 24px rgba(11,116,186,0.20);
}
.cta:hover {
  transform: translateY(-1px);
}
.cta.secondary,
.cta.tertiary,
.cta.ghost {
  background: var(--blue);
  color: #fff;
  border: 1px solid rgba(11,116,186,0.24);
  box-shadow: 0 10px 24px rgba(11,116,186,0.20);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .mobile-toggle { display: inline-flex; align-items: center; gap: 10px; }
  .nav { display: none; }
  .nav.mobile-open {
    display: flex;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 14px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .nav .menu {
    position: static;
    box-shadow: none;
    border: 1px solid var(--border);
    width: 100%;
    margin-top: 6px;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--hero-bg);
  padding: var(--space-48) 0 var(--space-32);
  border-bottom: 1px solid rgba(2, 6, 23, 0.06);
}
.hero .grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 540px);
  gap: var(--space-48);
  align-items: start;
  min-height: 392px;
}
.hero .grid > div:first-child {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: flex-start;
  max-width: 44rem;
  padding-top: var(--space-8);
}
.hero + .section {
  padding-top: var(--space-64);
}
@media (max-width: 980px) {
  .hero { padding-top: var(--space-32); padding-bottom: var(--space-24); }
  .hero .grid { grid-template-columns: 1fr; gap: var(--space-24); min-height: auto; }
  .hero .grid > div:first-child { max-width: none; padding-top: 0; }
  .hero-media { margin-top: 0; }
  .hero .meta.meta-under-image { grid-column: auto; }
  .hero + .section { padding-top: var(--space-48); }
}

.kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: var(--space-8);
  color: rgba(3,29,46,0.82);
  padding: 0;
  font-weight: 700;
  font-size: var(--type-label);
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.kicker .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 9px;
}

h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
  font-size: var(--type-h1);
  margin: 0 0 var(--space-16);
  max-width: 16ch;
  text-wrap: balance;
}

h2, .section h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: var(--type-h2);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.hero p.lede {
  font-size: var(--type-lede);
  line-height: 1.7;
  color: rgba(35,31,32,0.82);
  margin: 0 0 34px;
  max-width: 34ch;
}
.hero h1,
.hero p.lede,
.hero .actions,
.hero .meta {
  width: 100%;
}
.hero .actions {
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap;
  margin: 0;
}
.hero .actions .cta.secondary {
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  border: 1px solid rgba(3,29,46,0.10);
  box-shadow: none;
}
.hero .actions .cta.secondary:hover {
  background: #ffffff;
}
.hero .meta {
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap;
  margin-top: var(--space-32);
  color: rgba(3,29,46,0.78);
  font-weight: 600;
  font-size: var(--type-small);
}
.hero .meta.proof-badges {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin-top: 0;
  min-height: 42px;
}
.hero .proof-group {
  margin-top: var(--space-32);
}
.hero .recommendation-group {
  margin-top: var(--space-32);
}

.hero .proof-label {
  display: none;
}
.hero .meta .badge {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(3,29,46,0.10);
  background: var(--surface-cream);
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .28s ease, transform .28s ease;
}
.hero .meta .badge.active {
  opacity: 1;
  transform: translateY(0);
}
.hero .meta .badge strong {
  font-weight: 750;
  color: var(--ink);
}
.hero .meta .badge-copy {
  display: inline-flex;
  align-items: baseline;
  gap: 0.24em;
  font-weight: 600;
}
.hero .meta .badge-copy strong {
  margin-right: 0.01em;
}
.hero .meta .badge-icon {
  width: 17px;
  height: 17px;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 17px 17px;
  opacity: 0.78;
  flex: 0 0 17px;
}
.hero .meta .badge-calendar .badge-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23364b5e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='3'/%3E%3Cpath d='M8 3v4M16 3v4M3 10h18'/%3E%3C/svg%3E");
}
.hero .meta .badge-document .badge-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23364b5e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 3H7a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 3v5h5M9 13h6M9 17h6'/%3E%3C/svg%3E");
}
.hero .meta .badge-timer .badge-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23364b5e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='13' r='8'/%3E%3Cpath d='M12 13V9M12 13l3 2M9 3h6'/%3E%3C/svg%3E");
}

.hero .meta .badge-globe .badge-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23364b5e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3a15 15 0 0 1 0 18M12 3a15 15 0 0 0 0 18'/%3E%3C/svg%3E");
}

.hero .meta.recommendation-badges {
  min-height: 56px;
  width: min(100%, 540px);
  margin-top: 0;
  color: rgba(3,29,46,0.70);
}
.hero .meta.recommendation-badges .badge {
  white-space: normal;
  width: 100%;
  max-width: 540px;
  align-items: flex-start;
  padding: 10px 14px;
  border-color: rgba(3,29,46,0.10);
  background: var(--surface-cream-2);
  border-radius: var(--radius-lg);
}
.hero .meta.recommendation-badges .badge-copy {
  display: block;
  line-height: 1.38;
  font-weight: 500;
  font-size: var(--type-label);
  letter-spacing: 0;
}
.hero .meta.recommendation-badges .badge-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background-size: 16px 16px;
  margin-top: 1px;
  opacity: 0.62;
}
.hero .meta .badge-quote .badge-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23364b5e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 11H6a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-3a5 5 0 0 0-5-5M19 11h-4a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-3a5 5 0 0 0-5-5'/%3E%3C/svg%3E");
}

.hero-media {
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: none;
  overflow: visible;
  min-height: 0;
  background: transparent;
  position: relative;
  margin-top: 0;
  width: 100%;
  max-width: 660px;
  aspect-ratio: 3 / 2;
  justify-self: end;
}

.hero-media .label {
  position: absolute;
  top: 16px; left: 16px;
  color: rgba(255,255,255,0.84);
  background: transparent;
  border: none;
  padding: 7px 9px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 11px;
  z-index: 2;
}
.hero-media .hero-static {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.hero-media .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.95);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 800ms ease, transform 1200ms ease, filter 800ms ease;
}
.hero-media .slide.active {
  opacity: 1;
  transform: scale(1.0);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.section {
  padding: var(--space-64) 0;
}
.section > .container > *:first-child {
  margin-top: 0;
}

.section.alt {
  background: var(--surface-soft);
  border-top: 1px solid rgba(2,6,23,0.05);
  border-bottom: 1px solid rgba(2,6,23,0.05);
}
.section.dark {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
}
.section.dark a { color: #fff; }
.section .head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-24);
  margin-bottom: var(--space-32);
}
.section h2 {
  margin: 0;
}
.section p.sub {
  margin: 6px 0 0;
  color: rgba(35,31,32,0.70);
  max-width: 58ch;
}
.section.dark p.sub { color: rgba(255,255,255,0.72); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-24);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-24);
}
@media (max-width: 980px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--card);
  border: 1px solid rgba(2, 6, 23, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.05);
  padding: var(--space-24);
}
.card.slim { padding: var(--space-16); border-radius: var(--radius-lg); }
.card h3 {
  margin: 0 0 var(--space-12);
  font-size: 18px;
  max-width: 22ch;
}
.card p {
  margin: 0;
  color: rgba(35,31,32,0.72);
  max-width: 48ch;
}
.card .link {
  display: inline-flex;
  align-items: start;
  gap: 10px;
  margin-top: var(--space-16);
  font-weight: 800;
  color: var(--blue);
}
.card .icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: rgba(11,116,186,0.08);
  border: 1px solid rgba(11,116,186,0.10);
  margin-bottom: 12px;
}
.icon svg { width: 22px; height: 22px; }

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 980px) {
  .proof { grid-template-columns: 1fr; }
}
.proof .stat {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 18px;
}
.proof .stat .num {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.2px;
}
.proof .stat .lbl {
  color: rgba(255,255,255,0.72);
  font-weight: 600;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: rgba(35,31,32,0.76);
}
.section.dark .list { color: rgba(255,255,255,0.78); }

.img-placeholder{
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.section.dark .img-placeholder{
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}
.img-placeholder img{
  display:block;
  width:100%;
  height:auto;
}
.img-placeholder.contain{
  aspect-ratio: 16 / 10;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 12px;
  background: #fbfcfe;
}
.img-placeholder.contain img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.headshot{
  aspect-ratio: 4 / 5;
}
.headshot img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}


.section.dark.cta-band {
  background: var(--navy);
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}
.cta-band .container {
  border: 1px solid rgba(232,192,41,0.74);
  border-radius: var(--radius-lg);
  padding: var(--space-32);
  background: transparent;
  box-shadow: none;
}
.cta-band .head {
  margin-bottom: 0;
}

.cta-band .eyebrow {
  display: inline-block;
  margin: 0 0 var(--space-12);
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(232,192,41,0.96);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
}
.cta-band h2 {
  margin-bottom: 4px;
}
.cta-band .cta {
  box-shadow: 0 14px 30px rgba(11,116,186,0.30);
}
@media (max-width: 980px) {
  .cta-band .container {
    padding: var(--space-24);
  }
  .cta-band .head {
    align-items: flex-start;
  }
}

.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 46px 0 30px;
}
.footer .cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}
@media (max-width: 980px) {
  .footer .cols { grid-template-columns: 1fr; }
}
.footer h4 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: none;
  color: rgba(255,255,255,0.85);
}
.footer a {
  display: inline-block;
  padding: 6px 0;
  color: rgba(255,255,255,0.75);
}
.footer a:hover { color: #fff; }
.footer .brandline {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.footer .brandline img { height: 26px; width: auto; filter: saturate(1.0); }
.small {
  color: rgba(255,255,255,0.62);
  font-size: var(--type-small);
  margin-top: var(--space-16);
}

.form {
  display: grid;
  gap: var(--space-12);
}
.field {
  display: grid;
  gap: 6px;
}
.field label {
  font-weight: 700;
  font-size: var(--type-small);
  color: rgba(3,29,46,0.86);
}
.field input, .field textarea {
  font: inherit;
  padding: 12px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  outline: none;
  background: #fff;
}
.field textarea { min-height: 120px; resize: vertical; }

/* Contact page: keep submit buttons aligned across the two forms */
.page-contact .grid-2 > .card{
  display:flex;
  flex-direction:column;
}
.page-contact .grid-2 > .card .form{
  display:flex;
  flex-direction:column;
  gap: var(--space-12);
  flex: 1 1 auto;
}
.page-contact .grid-2 > .card .form button.cta{
  margin-top: auto;
  width: 100%;
}
.note {
  font-size: var(--type-small);
  color: rgba(35,31,32,0.68);
}



/* Split CTA button alignment */
.split-cta .grid-2{
  align-items: stretch;
}
.split-cta .card{
  display:flex;
  flex-direction:column;
  min-height: 240px;
  padding: 26px 26px 26px;
}
.split-cta .card p{
  margin: 0;
  max-width: 42ch;
}
.split-cta .card .actions{
  margin-top:auto;
  padding-top: 18px;
  display:flex;
  gap: var(--space-12);
  flex-wrap: wrap;
}
.split-cta .card .actions .btn{
  white-space: nowrap;
}


/* Team headshots (linked) */
.headshot{
  display:block;
  border-radius: var(--radius-lg);
  overflow:hidden;
  border: 1px solid var(--line);
  background:#fff;
}

.figure-full.figure-map img.figure-art {
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}


/* Homepage How we work cards: micro polish + image sizing */
section[aria-label="How we work summary"] .grid-2 > .card {
  padding: 20px 22px 18px;
}

section[aria-label="How we work summary"] .grid-2 > .card h3 {
  margin-bottom: 8px;
}

section[aria-label="How we work summary"] .grid-2 > .card p {
  margin-bottom: 10px;
  line-height: 1.35;
  min-height: 2.8em;
}


.img-placeholder.how-work-graphic {
  height: 244px;
  padding: 4px;
  background: #fff;
  border: 1px solid rgba(2, 6, 23, 0.07);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  overflow: hidden;
}
@media (max-width: 740px) {
  .img-placeholder.how-work-graphic { height: 220px; }
}
.img-placeholder.how-work-graphic img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0;
  display: block;
}
.engagement-graphic {
  aspect-ratio: 16 / 7.2;
  padding: 4px;
  background: #fff;
  border: 1px solid rgba(2, 6, 23, 0.07);
  box-shadow: none;
}
.engagement-graphic img {
  object-fit: cover;
  object-position: center;
}
/* How we work integrated workflow graphic */
.workflow-tailor {
  display: flex;
  align-items: start;
  gap: 14px;
  padding: 12px 14px;
  margin: 16px 0 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(2, 6, 23, 0.06);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.workflow-tailor-badge {
  flex: 0 0 auto;
  font-size: var(--type-label);
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: none;
  color: var(--blue-900);
  background: rgba(11,116,186,0.08);
  border: 1px solid rgba(11,116,186,0.10);
  border-radius: var(--radius-pill);
  padding: 6px 10px;
}

.workflow-tailor p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
}

.workflow-viz {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.90), rgba(255,255,255,.78));
  box-shadow: var(--shadow-sm);
  padding: 14px;
  overflow: hidden;
}

.workflow-viz-track {
  position: absolute;
  left: 40px;
  right: 40px;
  top: 126px;
  height: 4px;
  background: linear-gradient(90deg, rgba(31,98,214,.18), rgba(31,98,214,.34));
  border-radius: var(--radius-pill);
  z-index: 0;
}

.workflow-steps-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1fr) 28px minmax(0,1fr) 28px minmax(0,1fr) 28px minmax(0,1fr);
  gap: 8px;
  align-items: stretch;
  z-index: 1;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-sm);
  padding: 10px;
}

.workflow-step-top {
  display: flex;
  align-items: start;
  gap: 8px;
  margin-bottom: 6px;
}

.workflow-step-num {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-pill);
  background: rgba(31,98,214,.12);
  border: 1px solid rgba(31,98,214,.13);
  color: var(--blue-900);
  font-weight: 800;
  font-size: var(--type-label);
  flex: 0 0 auto;
}

.workflow-step h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.15;
}

.workflow-step-copy {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: var(--type-small);
  line-height: 1.35;
  min-height: 86px;
}

.workflow-step-media {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(31,98,214,.03), rgba(31,98,214,.01));
  height: 108px;
  display: flex;
  align-items: start;
  justify-content: center;
  padding: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}

.workflow-step-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}


.workflow-bullets {
  margin: 0;
  padding-left: 16px;
  display: grid;
  gap: 4px;
  color: var(--text);
  font-size: var(--type-label);
  line-height: 1.3;
}

.workflow-arrow {
  align-self: center;
  justify-self: center;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-pill);
  background: rgba(31,98,214,.10);
  border: 1px solid rgba(31,98,214,.13);
  position: relative;
  margin-top: 102px;
}

.workflow-arrow::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 10px;
  width: 9px;
  height: 2px;
  background: var(--blue);
  border-radius: var(--radius-pill);
}

.workflow-arrow::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 7px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--blue);
}

.workflow-loop-strip {
  margin-top: 10px;
  border: 1px dashed rgba(31,98,214,.18);
  border-radius: var(--radius-sm);
  background: rgba(31,98,214,.03);
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: start;
}

.loop-chip {
  display: inline-flex;
  align-items: start;
  justify-content: center;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  background: rgba(31,98,214,.12);
  color: var(--blue-900);
  font-size: var(--type-label);
  font-weight: 700;
  border: 1px solid rgba(31,98,214,.14);
}

.workflow-loop-strip p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-small);
  line-height: 1.35;
}

@media (max-width: 1240px) {
  .workflow-viz-track { display: none; }
  .workflow-steps-row {
    grid-template-columns: 1fr 28px 1fr;
    grid-template-areas:
      'step1 a1 step2'
      'step3 a2 step4';
  }
  .workflow-step:nth-child(1) { grid-area: step1; }
  .workflow-arrow:nth-child(2) { grid-area: a1; }
  .workflow-step:nth-child(3) { grid-area: step2; }
  .workflow-arrow:nth-child(4) { grid-area: a2; }
  .workflow-step:nth-child(5) { grid-area: step3; }
  .workflow-arrow:nth-child(6) { display: none; }
  .workflow-step:nth-child(7) { grid-area: step4; }
}

@media (max-width: 820px) {
  .workflow-tailor { flex-direction: column; align-items: flex-start; }
  .workflow-viz { padding: 12px; }
  .workflow-steps-row {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: 10px;
  }
  .workflow-arrow { display: none; }
  .workflow-step-copy { min-height: 0; }
  .workflow-step-media { height: 124px; }
  .workflow-loop-strip { flex-direction: column; align-items: flex-start; }
}





/* Home: success stories alignment */

/* Home: success stories Need/Outcome alignment */
.need-outcome{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin-top: 10px;
}
.need-outcome p{
  margin: 0;
}
.need-outcome .need{
  min-height: 2.7em;
}

.card.slim h3 { min-height: 72px; }



/* Home: "What we support" cards align Learn more links */
section[aria-label="Solutions overview"] .grid-3 > .card{
  display:flex;
  flex-direction:column;
}
section[aria-label="Solutions overview"] .grid-3 > .card .link{
  margin-top:auto;
}

/* Home: support cards align CTAs */
.support-grid .card { display: flex; flex-direction: column; }
.support-grid .card .link { margin-top: auto; }


.split-cta-band {
  background: var(--navy);
  padding-top: 28px;
  padding-bottom: 28px;
}
.split-cta-band .grid-2 {
  gap: 28px;
}
.split-cta-band .lane-card {
  border: 1.5px solid rgba(232,192,41,0.78);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.025);
  box-shadow: none;
  padding: var(--space-32);
  min-height: 272px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.split-cta-band .lane-kicker,
.candidate-cta-band .lane-kicker,
.cta-band .eyebrow {
  display: inline-block;
  margin: 0 0 var(--space-12);
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(232,192,41,0.96);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
}
.split-cta-band h3 {
  color: #fff;
  font-size: clamp(1.9rem, 2.2vw, 2.35rem);
  line-height: 1.08;
  margin: 0 0 var(--space-12);
}
.split-cta-band .lane-copy > p:last-child {
  color: rgba(255,255,255,0.78);
  max-width: 36ch;
  margin-bottom: 0;
}
.split-cta-band .actions {
  gap: var(--space-12);
  margin-top: 22px;
}
.split-cta-band .cta.secondary {
  border-color: rgba(232,192,41,0.88);
  color: #fff;
  background: transparent;
}
.split-cta-band .cta.secondary:hover {
  background: rgba(255,255,255,0.05);
}
@media (max-width: 980px) {
  .split-cta-band .lane-card {
    min-height: unset;
    padding: var(--space-32);
  }
}


/* Shared bottom split CTA lanes on interior pages */
.split-cta-band .grid-2 {
  align-items: stretch;
}
.split-cta-band .lane-card {
  min-height: 0;
}
.split-cta-band .lane-copy {
  display: grid;
  gap: 10px;
}
.split-cta-band .lane-copy > * {
  margin: 0;
}
.split-cta-band .actions .cta {
  box-shadow: 0 14px 30px rgba(11,116,186,0.22);
}

/* Candidate bottom CTA band */
.candidate-cta-band .container {
  border: 1.5px solid rgba(232,192,41,0.78);
  border-radius: var(--radius-lg);
  padding: var(--space-32);
  background: transparent;
  box-shadow: none;
}
.candidate-cta-band .lane-card {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.candidate-cta-band h2 {
  margin: 0 0 10px;
}
.candidate-cta-band .sub {
  margin: 0;
  max-width: 36ch;
}
.candidate-cta-band .actions {
  margin-top: 22px;
  display: flex;
  gap: var(--space-12);
  flex-wrap: wrap;
}
@media (max-width: 980px) {
  .candidate-cta-band .container {
    padding: var(--space-24);
  }
}

@media (max-width: 640px) {
  .hero .meta.proof-badges { min-height: 40px; }
  .hero .meta .badge { max-width: min(100%, 100vw - 64px); }
}

.topbar .left .pill:hover { background: rgba(255,255,255,0.08); }

.topbar a { color: rgba(255,255,255,0.82); }
.topbar a:hover { color: #fff; }


.topbar .right .pill {
  margin-left: 2px;
}


/* Step 9: intentional button sizing */
.hero .actions {
  align-items: flex-start;
}
.hero .actions .cta {
  min-width: 176px;
  padding-inline: 18px;
}
.hero .actions .cta.secondary {
  min-width: 156px;
}
.split-cta-band .actions .cta,
.candidate-cta-band .actions .cta,
.cta-band .actions .cta,
.card .actions .cta {
  min-width: 164px;
  padding-inline: 18px;
}
@media (max-width: 640px) {
  .hero .actions .cta,
  .split-cta-band .actions .cta,
  .candidate-cta-band .actions .cta,
  .cta-band .actions .cta,
  .card .actions .cta {
    min-width: 0;
    width: 100%;
  }
}


/* Step 10: reduce competing special treatments */
.section .img-placeholder.contain:not(.hero-media):not(.how-work-graphic):not(.engagement-graphic) {
  background: transparent;
  box-shadow: none;
  padding: 8px;
}
.hero .recommendation-badges .badge {
  background: rgba(255,255,255,0.78);
  border-color: rgba(2, 6, 23, 0.08);
  box-shadow: none;
}
.workflow-tailor {
  background: #fff;
  box-shadow: none;
  border-color: rgba(2, 6, 23, 0.07);
}


/* Sitewide hero image seamless treatment */
.hero-visual,
.hero-media,
.hero-image-wrap,
.hero-illustration,
.hero-art {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.hero-visual,
.hero-media,
.hero-image-wrap {
  overflow: visible !important;
}

.hero-visual img,
.hero-media img,
.hero-image-wrap img,
.hero-illustration img,
.hero-art img,
.hero img.hero-image,
.hero .hero-image {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  width: 100% !important;
  max-width: none !important;
  transform: none;
  transform-origin: center center;
  }

/* Prefer the hero area itself to provide the backdrop */
.hero,
.hero-section,
.page-hero {
  overflow: hidden;
}

/* If there is a dedicated visual column, make it a little larger and cleaner */
.hero-visual,
.hero-media,
.hero-image-wrap {
  padding: 0 !important;
}


/* Our team clean lower section */
.team-page .team-showcase-clean {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 32px;
  align-items: start;
  margin-top: 24px;
}

.team-page .team-showcase-clean__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(10, 24, 41, 0.10);
}

.team-page .team-showcase-clean__intro {
  margin: 0 0 20px 0;
  max-width: 34ch;
  color: #5f6672;
}

.team-page .team-showcase-clean__list {
  display: grid;
  gap: 16px;
}

.team-page .team-person-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(18, 32, 51, 0.08);
}

.team-page .team-person-row:first-child {
  border-top: none;
  padding-top: 0;
}

.team-page .team-person-row__name {
  margin: 0 0 6px 0;
  font-size: 1.05rem;
}

.team-page .team-person-row__desc {
  margin: 0;
  color: #5f6672;
  max-width: 36ch;
}

.team-page .team-linkedin-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18, 32, 51, 0.10);
  background: #fff;
  color: #16314f;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.team-page .team-linkedin-row::before {
  content: "in";
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #0a66c2;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 980px) {
  .team-page .team-showcase-clean {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .team-page .team-person-row {
    grid-template-columns: 1fr;
    align-items: start;
  }
}


.team-page .team-section-subtitle {
  margin: 12px 0 24px 0;
  max-width: 42ch;
  color: #5f6672;
}


/* Team page balance refinement */
.team-page .team-showcase-clean__list {
  gap: 10px;
}

.team-page .team-person-row {
  gap: 12px;
  padding: 12px 0;
}

.team-page .team-person-row__name {
  margin: 0 0 4px 0;
}

.team-page .team-person-row__desc {
  line-height: 1.35;
}

.team-page .team-linkedin-row {
  padding: 9px 13px;
}


/* Interactive team page hotspots */
.team-page .team-section-subtitle {
  margin-bottom: 8px;
}

.team-page .team-hover-note {
  margin: 0 0 24px 0;
  font-size: var(--type-small);
  color: #6c7480;
}

.team-page .team-showcase-clean {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(340px, 1fr);
  gap: 32px;
  align-items: start;
}

.team-page .team-showcase-clean__media {
  max-width: 520px;
}

.team-page .team-hotspot-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
}

.team-page .team-showcase-clean__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(10, 24, 41, 0.10);
}

.team-page .team-hotspot {
  position: absolute;
  border: none;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  outline: none;
  transition: box-shadow 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.team-page .team-hotspot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 0 rgba(232,192,41,0.0);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.team-page .team-hotspot:hover::after,
.team-page .team-hotspot:focus-visible::after,
.team-page .team-hotspot.active::after {
  box-shadow: inset 0 0 0 2px rgba(232,192,41,0.95), 0 0 0 5px rgba(11,116,186,0.16);
  background: rgba(11,116,186,0.06);
}

.team-page .team-hotspot:hover,
.team-page .team-hotspot:focus-visible,
.team-page .team-hotspot.active {
  transform: scale(1.02);
}

.team-page .team-hotspot--katherine { left: 4%; top: 10%; width: 24%; height: 78%; }
.team-page .team-hotspot--sandy { left: 20%; top: 16%; width: 28%; height: 80%; }
.team-page .team-hotspot--bryan { left: 41%; top: 7%; width: 22%; height: 73%; }
.team-page .team-hotspot--christine { left: 51%; top: 16%; width: 28%; height: 82%; }
.team-page .team-hotspot--will { left: 72%; top: 7%; width: 24%; height: 76%; }

.team-page .team-showcase-clean__list {
  gap: 8px;
}

.team-page .team-person-row {
  position: relative;
  gap: 12px;
  padding: 12px 14px;
  margin: 0 -14px;
  border-top: 1px solid rgba(18, 32, 51, 0.08);
  border-radius: 18px;
  transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.team-page .team-person-row.active,
.team-page .team-person-row:hover,
.team-page .team-person-row:focus-within {
  background: rgba(11, 116, 186, 0.05);
  box-shadow: inset 3px 0 0 rgba(232, 192, 41, 0.95);
  border-color: rgba(11, 116, 186, 0.10);
}

.team-page .team-person-row__name {
  margin: 0 0 4px 0;
}

.team-page .team-person-row__desc {
  line-height: 1.35;
}

@media (max-width: 980px) {
  .team-page .team-showcase-clean {
    grid-template-columns: 1fr;
  }
  .team-page .team-showcase-clean__media {
    max-width: 520px;
  }
}


/* Team hotspot refinements */
.team-page .team-hotspot--will { left: 72%; top: 3%; width: 24%; height: 76%; }

/* Match right column height to image and allow scroll */
.team-page .team-showcase-clean {
  align-items: start;
}

.team-page .team-showcase-clean__info {
  height: calc(520px * 10 / 16);
  max-height: calc(520px * 10 / 16);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.team-page .team-showcase-clean__list {
  overflow-y: auto;
  padding-right: 8px;
  min-height: 0;
}

/* subtle scrollbar */
.team-page .team-showcase-clean__list::-webkit-scrollbar {
  width: 8px;
}
.team-page .team-showcase-clean__list::-webkit-scrollbar-track {
  background: rgba(18, 32, 51, 0.05);
  border-radius: 999px;
}
.team-page .team-showcase-clean__list::-webkit-scrollbar-thumb {
  background: rgba(18, 32, 51, 0.18);
  border-radius: 999px;
}

@media (max-width: 980px) {
  .team-page .team-showcase-clean__info {
    height: auto;
    max-height: none;
    overflow: visible;
  }
  .team-page .team-showcase-clean__list {
    overflow: visible;
    padding-right: 0;
  }
}


/* Team interaction refinement */
.team-page .team-person-row.active,
.team-page .team-person-row:hover,
.team-page .team-person-row:focus-within {
  background: rgba(11, 116, 186, 0.09);
  box-shadow: inset 4px 0 0 rgba(232, 192, 41, 0.98), 0 0 0 1px rgba(11, 116, 186, 0.10);
  border-color: rgba(11, 116, 186, 0.16);
}

.team-page .team-person-row.active .team-person-row__name,
.team-page .team-person-row:hover .team-person-row__name,
.team-page .team-person-row:focus-within .team-person-row__name {
  color: #16314f;
}

.team-page .team-person-row.active .team-linkedin-row,
.team-page .team-person-row:hover .team-linkedin-row,
.team-page .team-person-row:focus-within .team-linkedin-row {
  border-color: rgba(11, 116, 186, 0.22);
  box-shadow: 0 0 0 3px rgba(232, 192, 41, 0.10);
}

.team-page .team-hotspot:hover::after,
.team-page .team-hotspot:focus-visible::after,
.team-page .team-hotspot.active::after {
  box-shadow: inset 0 0 0 3px rgba(232,192,41,0.98), 0 0 0 6px rgba(11,116,186,0.20);
  background: rgba(11,116,186,0.10);
}


/* Team hotspot refinement v4 */
.team-page .team-hotspot--bryan { left: 44%; top: 7%; width: 20%; height: 72%; }


/* Team hotspot refinement v5 */
.team-page .team-hotspot--bryan { left: 40.5%; top: 7%; width: 20%; height: 72%; }


/* Team description panel horizontal overflow fix */
.team-page .team-showcase-clean__info,
.team-page .team-showcase-clean__list,
.team-page .team-person-row,
.team-page .team-person-row__meta {
  min-width: 0;
}

.team-page .team-showcase-clean__info,
.team-page .team-showcase-clean__list {
  overflow-x: hidden;
}

.team-page .team-person-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.team-page .team-person-row__desc,
.team-page .team-person-row__name {
  overflow-wrap: anywhere;
  word-break: normal;
}

.team-page .team-linkedin-row {
  flex-shrink: 0;
}



/* Targeted desktop nav equal-spacing */
@media (min-width: 1101px) {
  .header .container {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 28px;
  }

  .brand {
    margin-right: 0;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(7, minmax(84px, 1fr)) auto;
    align-items: center;
    column-gap: 16px;
    width: 100%;
    margin-left: 0;
    justify-content: stretch;
  }

  .nav > .dropdown,
  .nav > a:not(.cta) {
    min-width: 0;
    width: 100%;
  }

  .nav > a:not(.cta),
  .nav > .dropdown > button {
    width: 100%;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding-left: 6px;
    padding-right: 6px;
    min-height: 44px;
  }

  .nav > .dropdown > button {
    padding-right: 22px;
  }

  .nav .dropdown > button > span[aria-hidden="true"] {
    right: 4px;
  }

  .nav > a.cta {
    justify-self: end;
    white-space: nowrap;
    min-width: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}


/* Team hover note under photo */
.team-page .team-hover-note--below-photo {
  margin: 12px 0 0 0;
  font-size: var(--type-small);
  line-height: 1.4;
  color: #6c7480;
}


/* Header CTA outlined style */
.header .nav > a.cta,
.nav > a.cta {
  background: #ffffff;
  color: #16314f;
  border: 1.5px solid rgba(11, 116, 186, 0.32);
  box-shadow: none;
}

.header .nav > a.cta:hover,
.nav > a.cta:hover {
  background: rgba(11, 116, 186, 0.06);
  color: #16314f;
  border-color: rgba(11, 116, 186, 0.46);
}

.team-page .team-hover-note--below-photo {
  display: block;
  margin: 12px 0 0 0;
  font-size: var(--type-small);
  line-height: 1.4;
  color: #6c7480;
}


/* Header CTA yellow review */
.header .nav > a.cta,
.nav > a.cta {
  background: #e8c029;
  color: #0b1220;
  border: 1px solid rgba(11, 18, 32, 0.08);
  box-shadow: none;
}

.header .nav > a.cta:hover,
.nav > a.cta:hover {
  background: #e2ba24;
  color: #0b1220;
  border-color: rgba(11, 18, 32, 0.14);
}


/* Topbar cleanup: keep only trust pills, aligned right */
.topbar .container {
  display: flex;
  justify-content: flex-end;
}

.topbar .right {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.topbar .pill {
  padding-left: 0;
  padding-right: 0;
}

/* Safety: hide any leftover topbar utility links to contact/jobs if present */
.topbar .right a[href="contact.html"],
.topbar .right a[href="jobs.html"] {
  display: none !important;
}


/* Homepage quote row under intact hero grid */
.hero .hero-quote-row {
  margin-top: 20px;
}

.hero .hero-quote-row__inner {
  display: flex;
  justify-content: flex-start;
}

.hero .quote-row-badges {
  position: relative;
  width: min(620px, 100%);
  min-height: 92px;
  height: 92px;
}

.hero .quote-row-badges .badge.badge-quote {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease;
}

.hero .quote-row-badges .badge.badge-quote.active {
  opacity: 1;
  visibility: visible;
}

.hero .quote-row-badges .badge-copy {
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 600;
  white-space: normal;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 46ch;
}

.hero .quote-row-badges .badge-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .hero .quote-row-badges {
    width: 100%;
    min-height: 100px;
    height: 100px;
  }
}


/* Homepage hero rebuilt as 2-row grid: text + quote on left, image spanning right */
body.home .hero .grid,
body[data-page="home"] .hero .grid,
.hero.home-hero-grid .grid,
.hero .grid.hero-home-grid {
  grid-template-columns: minmax(0, 1fr) minmax(560px, 680px);
  grid-template-rows: auto auto;
  align-items: center;
  min-height: 470px;
}

body.home .hero .grid > div:first-child,
body[data-page="home"] .hero .grid > div:first-child,
.hero .grid.hero-home-grid > div:first-child {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
}

body.home .hero .grid > .hero-media,
body[data-page="home"] .hero .grid > .hero-media,
.hero .grid.hero-home-grid > .hero-media {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  margin-top: 0 !important;
}

body.home .hero .grid > .hero-quote-inline,
body[data-page="home"] .hero .grid > .hero-quote-inline,
.hero .grid.hero-home-grid > .hero-quote-inline {
  grid-column: 1;
  grid-row: 2;
  margin-top: 24px;
  width: min(620px, 100%);
}

body.home .hero .grid > .hero-quote-inline .quote-row-badges,
body[data-page="home"] .hero .grid > .hero-quote-inline .quote-row-badges,
.hero .grid.hero-home-grid > .hero-quote-inline .quote-row-badges {
  position: relative;
  width: 100%;
  min-height: 92px;
  height: 92px;
}

body.home .hero .grid > .hero-quote-inline .badge.badge-quote,
body[data-page="home"] .hero .grid > .hero-quote-inline .badge.badge-quote,
.hero .grid.hero-home-grid > .hero-quote-inline .badge.badge-quote {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease;
}

body.home .hero .grid > .hero-quote-inline .badge.badge-quote.active,
body[data-page="home"] .hero .grid > .hero-quote-inline .badge.badge-quote.active,
.hero .grid.hero-home-grid > .hero-quote-inline .badge.badge-quote.active {
  opacity: 1;
  visibility: visible;
}

body.home .hero .grid > .hero-quote-inline .badge-copy,
body[data-page="home"] .hero .grid > .hero-quote-inline .badge-copy,
.hero .grid.hero-home-grid > .hero-quote-inline .badge-copy {
  font-size: 1.12rem;
  line-height: 1.42;
  font-weight: 600;
  white-space: normal;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 46ch;
}

body.home .hero .grid > .hero-quote-inline .badge-icon,
body[data-page="home"] .hero .grid > .hero-quote-inline .badge-icon,
.hero .grid.hero-home-grid > .hero-quote-inline .badge-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 2px;
}

/* Hide old separate-row quote container on homepage if present */
body.home .hero > .container + .container,
body[data-page="home"] .hero > .container + .container {
  display: none;
}

@media (max-width: 980px) {
  body.home .hero .grid,
  body[data-page="home"] .hero .grid,
  .hero .grid.hero-home-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  body.home .hero .grid > .hero-media,
  body[data-page="home"] .hero .grid > .hero-media,
  .hero .grid.hero-home-grid > .hero-media {
    grid-column: 1;
    grid-row: 2;
  }

  body.home .hero .grid > .hero-quote-inline,
  body[data-page="home"] .hero .grid > .hero-quote-inline,
  .hero .grid.hero-home-grid > .hero-quote-inline {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    margin-top: 20px;
  }

  body.home .hero .grid > .hero-quote-inline .quote-row-badges,
  body[data-page="home"] .hero .grid > .hero-quote-inline .quote-row-badges,
  .hero .grid.hero-home-grid > .hero-quote-inline .quote-row-badges {
    min-height: 104px;
    height: 104px;
  }

  body.home .hero .grid > .hero-quote-inline .badge-copy,
  body[data-page="home"] .hero .grid > .hero-quote-inline .badge-copy,
  .hero .grid.hero-home-grid > .hero-quote-inline .badge-copy {
    font-size: 1.02rem;
    max-width: 42ch;
  }
}


/* Homepage quote final sizing + cleanup */
.hero .grid > .hero-quote-inline .badge-copy,
body.home .hero .grid > .hero-quote-inline .badge-copy,
body[data-page="home"] .hero .grid > .hero-quote-inline .badge-copy {
  font-size: 1rem;
  line-height: 1.45;
}

/* Remove any stray old quote-row artifacts/lines in hero top-right */
.hero > .container + .container,





/* Homepage quotes: same visual family/placement as other rotating badges, but longer */
body.home .hero .grid.hero-home-grid > .hero-quote-inline,
body[data-page="home"] .hero .grid.hero-home-grid > .hero-quote-inline,
.hero .grid.hero-home-grid > .hero-quote-inline {
  grid-column: 1;
  grid-row: 2;
  margin-top: 24px;
  width: min(calc(100% - 96px), 620px);
  display: block;
}

body.home .hero .grid.hero-home-grid > .hero-quote-inline .quote-row-badges,
body[data-page="home"] .hero .grid.hero-home-grid > .hero-quote-inline .quote-row-badges,
.hero .grid.hero-home-grid > .hero-quote-inline .quote-row-badges {
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: 72px;
  height: 72px;
}

body.home .hero .grid.hero-home-grid > .hero-quote-inline .badge.badge-quote,
body[data-page="home"] .hero .grid.hero-home-grid > .hero-quote-inline .badge.badge-quote,
.hero .grid.hero-home-grid > .hero-quote-inline .badge.badge-quote {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 100%;
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(3,29,46,0.10);
  background: var(--surface-cream);
  border-radius: var(--radius-pill);
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .28s ease, transform .28s ease;
}

body.home .hero .grid.hero-home-grid > .hero-quote-inline .badge.badge-quote.active,
body[data-page="home"] .hero .grid.hero-home-grid > .hero-quote-inline .badge.badge-quote.active,
.hero .grid.hero-home-grid > .hero-quote-inline .badge.badge-quote.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body.home .hero .grid.hero-home-grid > .hero-quote-inline .badge-copy,
body[data-page="home"] .hero .grid.hero-home-grid > .hero-quote-inline .badge-copy,
.hero .grid.hero-home-grid > .hero-quote-inline .badge-copy {
  font-size: var(--type-small);
  line-height: 1.4;
  font-weight: 600;
  white-space: normal;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 48ch;
}

body.home .hero .grid.hero-home-grid > .hero-quote-inline .badge-icon,
body[data-page="home"] .hero .grid.hero-home-grid > .hero-quote-inline .badge-icon,
.hero .grid.hero-home-grid > .hero-quote-inline .badge-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 1px;
}

@media (max-width: 980px) {
  body.home .hero .grid.hero-home-grid > .hero-quote-inline,
  body[data-page="home"] .hero .grid.hero-home-grid > .hero-quote-inline,
  .hero .grid.hero-home-grid > .hero-quote-inline {
    width: 100%;
    margin-top: 20px;
  }

  body.home .hero .grid.hero-home-grid > .hero-quote-inline .quote-row-badges,
  body[data-page="home"] .hero .grid.hero-home-grid > .hero-quote-inline .quote-row-badges,
  .hero .grid.hero-home-grid > .hero-quote-inline .quote-row-badges {
    min-height: 84px;
    height: 84px;
  }
}


/* Homepage quote refined from previous good version:
   - keep left aligned
   - vertically center within oval
   - make oval tighter and closer to CTA row */
body.home .hero .grid.hero-home-grid > .hero-quote-inline,
body[data-page="home"] .hero .grid.hero-home-grid > .hero-quote-inline,
.hero .grid.hero-home-grid > .hero-quote-inline {
  margin-top: 20px;
  width: min(calc(100% - 128px), 560px);
}

body.home .hero .grid.hero-home-grid > .hero-quote-inline .quote-row-badges,
body[data-page="home"] .hero .grid.hero-home-grid > .hero-quote-inline .quote-row-badges,
.hero .grid.hero-home-grid > .hero-quote-inline .quote-row-badges {
  min-height: 64px;
  height: 64px;
}

body.home .hero .grid.hero-home-grid > .hero-quote-inline .badge.badge-quote,
body[data-page="home"] .hero .grid.hero-home-grid > .hero-quote-inline .badge.badge-quote,
.hero .grid.hero-home-grid > .hero-quote-inline .badge.badge-quote {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 14px;
}

body.home .hero .grid.hero-home-grid > .hero-quote-inline .badge-copy,
body[data-page="home"] .hero .grid.hero-home-grid > .hero-quote-inline .badge-copy,
.hero .grid.hero-home-grid > .hero-quote-inline .badge-copy {
  text-align: left;
  align-self: center;
  margin: 0;
  font-size: var(--type-small);
  line-height: 1.38;
  max-width: 46ch;
}

@media (max-width: 980px) {
  body.home .hero .grid.hero-home-grid > .hero-quote-inline,
  body[data-page="home"] .hero .grid.hero-home-grid > .hero-quote-inline,
  .hero .grid.hero-home-grid > .hero-quote-inline {
    width: 100%;
    margin-top: 18px;
  }

  body.home .hero .grid.hero-home-grid > .hero-quote-inline .quote-row-badges,
  body[data-page="home"] .hero .grid.hero-home-grid > .hero-quote-inline .quote-row-badges,
  .hero .grid.hero-home-grid > .hero-quote-inline .quote-row-badges {
    min-height: 76px;
    height: 76px;
  }
}


/* Home quote: use same badge slot position as other pages, keep hero tight */
body.home .hero .home-quote-slot {
  margin-top: var(--space-32); /* mirrors badge placement on other pages */
}

body.home .hero .home-quote-badges {
  min-height: 56px; /* supports up to 2 lines */
}

body.home .hero .home-quote-badges .badge {
  white-space: normal; /* allow wrap */
  align-items: center; /* vertical center in oval */
  padding: 10px 14px;
  max-width: min(560px, 100%);
}

body.home .hero .home-quote-badges .badge-copy {
  font-size: var(--type-small); /* same family as subtitles/support */
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 52ch; /* ~1 inch from image with existing column width */
}

@media (max-width: 980px) {
  body.home .hero .home-quote-badges .badge {
    max-width: 100%;
  }
  body.home .hero .home-quote-badges {
    min-height: 72px;
  }
}


/* Sitewide hero bottom trim */
.hero {
  padding-bottom: 16px;
}

.hero + .section {
  padding-top: 48px;
}

@media (max-width: 980px) {
  .hero {
    padding-bottom: 14px;
  }

  .hero + .section {
    padding-top: 40px;
  }
}


/* Sitewide hero bottom trim v2 */
.hero {
  padding-bottom: 10px;
}

.hero + .section {
  padding-top: 40px;
}

@media (max-width: 980px) {
  .hero {
    padding-bottom: 10px;
  }

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


/* Desktop-only hero bottom trim v3 */
@media (min-width: 981px) {
  .hero {
    padding-bottom: 6px;
  }

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


/* Desktop hero image balance: center vertically + slightly larger */
@media (min-width: 981px) {
  .hero-media {
    align-self: center;
    max-width: 560px;
  }

  /* Keep the hero art feeling more present without changing aspect ratio */
  .hero-media .hero-static {
    object-position: center;
  }
}


/* Desktop hero image balance v2: more exact vertical centering */
@media (min-width: 981px) {
  .hero .grid {
    align-items: start;
  }

  .hero-media {
    align-self: center !important;
    justify-self: end;
    max-width: 575px;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}


/* Desktop hero image balance v3: slight upward nudge */
@media (min-width: 981px) {
  .hero-media {
    transform: translateY(-10px);
  }
}


/* Desktop hero image balance v4: tiny extra upward nudge */
@media (min-width: 981px) {
  .hero-media {
    transform: translateY(-14px);
  }
}


/* Targeted wrap fixes based on actual width constraints */

/* Homepage: Two practices cards */
body.home .section .grid-3 .card h3 {
  max-width: none;
}

/* Homepage: Success stories preview cards
   Remove the narrow 22ch cap and normalize title height so Need/Outcome lines align */
body.home .card.slim {
  display: flex;
  flex-direction: column;
}

body.home .card.slim h3 {
  max-width: none;
  min-height: 4.5em;
  margin-bottom: 0;
}

body.home .card.slim .need-outcome {
  margin-top: 0;
  display: grid;
  gap: 24px;
}

/* Expertise page: allow the industry title to stay on one line */
.page-expertise .card h3 {
  max-width: none;
}

@media (min-width: 981px) {
  .page-expertise .card h3 {
    white-space: nowrap;
    font-size: 17px;
  }
}

/* Team page: subtitle should not be width-capped on desktop */
@media (min-width: 981px) {
  .team-page .team-section-subtitle {
    max-width: none;
    white-space: nowrap;
  }
}

/* Candidates page:
   The shared subtitle max-width is forcing the wrap.
   Loosen it here and remove the generic card-title width cap for the process cards. */
@media (min-width: 981px) {
  .candidates-page .section .head p.sub {
    max-width: none;
    white-space: nowrap;
  }

  .candidates-page .grid-2 .card h3 {
    max-width: none;
    white-space: nowrap;
    font-size: 17px;
  }
}


/* Homepage success story cards: remove extra space between title and body */
body.home .card.slim h3,
body[data-page="home"] .card.slim h3 {
  margin-bottom: 0 !important;
}

body.home .card.slim .need-outcome,
body[data-page="home"] .card.slim .need-outcome {
  margin-top: 0 !important;
}


/* Homepage success story cards: tighten Need/Outcome spacing while keeping rows aligned */
body.home .card.slim .need-outcome,
body[data-page="home"] .card.slim .need-outcome {
  gap: 12px !important;
}

body.home .card.slim .need-outcome p,
body[data-page="home"] .card.slim .need-outcome p {
  margin: 0 !important;
}


/* Home merged How we work section */
#how-we-work {
  scroll-margin-top: 100px;
}

@media (min-width: 981px) {
  #how-we-work .head,
  #how-we-work h2,
  #how-we-work p.sub {
    max-width: none;
  }
}


/* Nav cleanup after removing standalone How we work page */
@media (min-width: 981px) {
  .header .container {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 18px;
  }

  .nav {
    display: grid;
    grid-template-columns: minmax(86px, 1.18fr) minmax(84px, 0.98fr) minmax(84px, 0.98fr) minmax(96px, 1.1fr) minmax(60px, 0.72fr) minmax(78px, 0.9fr) auto;
    align-items: center;
    column-gap: 12px;
    width: 100%;
    margin-left: 0;
    justify-content: stretch;
  }

  .nav > .dropdown,
  .nav > a:not(.cta) {
    min-width: 0;
    width: 100%;
  }

  .nav > a:not(.cta),
  .nav > .dropdown > button {
    width: 100%;
    min-height: 44px;
    padding-left: 6px;
    padding-right: 6px;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.08;
  }

  .nav > .dropdown > button {
    padding-right: 20px;
  }

  .nav .dropdown > button > span[aria-hidden="true"] {
    right: 4px;
  }

  .header .nav > a.cta,
  .nav > a.cta {
    justify-self: end;
    white-space: nowrap;
    min-width: auto;
    padding: 11px 24px;
    line-height: 1.05;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}


/* How we work: center text beside image for key rows */
#how-we-work .step-card,
#how-we-work .workflow-step,
#how-we-work .process-step {
  align-items: center;
}

#how-we-work .step-copy,
#how-we-work .workflow-copy,
#how-we-work .process-copy,
#how-we-work .step-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Keep paragraph blocks visually centered in those rows */
#how-we-work p {
  margin-top: 0;
  margin-bottom: 0;
}


/* Engagement models: allow "What stays consistent across all models" to stay on one line */
@media (min-width: 981px) {
  .page-engagement-models .card h3,
  body.page-engagement-models .card h3,
  body[data-page="engagement-models"] .card h3 {
    max-width: none;
  }

  .page-engagement-models .section h2 + p.sub,
  .page-engagement-models .head p.sub,
  body.page-engagement-models .section h2 + p.sub,
  body.page-engagement-models .head p.sub,
  body[data-page="engagement-models"] .section h2 + p.sub,
  body[data-page="engagement-models"] .head p.sub {
    max-width: none;
  }

  .page-engagement-models h3,
  body.page-engagement-models h3,
  body[data-page="engagement-models"] h3 {
    overflow-wrap: normal;
    word-break: normal;
  }
}


/* Tailored intake note: vertically center sentence next to badge */
#how-we-work .workflow-tailor {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 14px;
}

#how-we-work .workflow-tailor p {
  margin: 0;
  align-self: center;
}

@media (max-width: 980px) {
  #how-we-work .workflow-tailor {
    grid-template-columns: 1fr;
    row-gap: 10px;
    align-items: start;
  }
}


/* Calibration loop strip: vertically center sentence next to chip */
#how-we-work .workflow-loop-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 14px;
}

#how-we-work .workflow-loop-strip p {
  margin: 0;
  align-self: center;
}

@media (max-width: 980px) {
  #how-we-work .workflow-loop-strip {
    grid-template-columns: 1fr;
    row-gap: 10px;
    align-items: start;
  }
}


/* Engagement models graphic: remove oversized placeholder behavior */
.engagement-graphic.img-placeholder.contain,
.img-placeholder.contain.engagement-graphic,
.engagement-graphic {
  aspect-ratio: auto !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: block !important;
  overflow: visible !important;
}

.engagement-graphic img,
.img-placeholder.contain.engagement-graphic img {
  display: block;
  width: min(100%, 1120px);
  height: auto !important;
  max-width: 100%;
  object-fit: contain !important;
  margin: 0 auto;
}


/* Bottom split CTA: allow key headings to stay on one line */
@media (min-width: 981px) {
  .split-cta .lane-card .lane-copy h3,
  .split-cta-band .lane-card .lane-copy h3,
  .lane-card .lane-copy h3 {
    max-width: none;
    white-space: nowrap;
  }

  .split-cta .lane-card .lane-copy,
  .split-cta-band .lane-card .lane-copy,
  .lane-card .lane-copy {
    max-width: none;
  }
}


/* Single-lane CTA restyle to match duo CTA system */
@media (min-width: 981px) {
  .section.dark .lane-card:not(.split-cta .lane-card):not(.split-cta-band .lane-card),
  .single-cta .lane-card,
  .contact-page .lane-card,
  .candidates-page .lane-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .single-cta .lane-card .lane-copy,
  .contact-page .lane-card .lane-copy,
  .candidates-page .lane-card .lane-copy {
    max-width: 44rem;
    margin-bottom: 0;
  }

  .single-cta .lane-card .lane-copy h3,
  .contact-page .lane-card .lane-copy h3,
  .candidates-page .lane-card .lane-copy h3 {
    max-width: none;
    white-space: nowrap;
  }

  .single-cta .lane-card .actions,
  .contact-page .lane-card .actions,
  .candidates-page .lane-card .actions {
    margin-top: 28px;
    width: auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .single-cta .lane-card .actions .cta,
  .contact-page .lane-card .actions .cta,
  .candidates-page .lane-card .actions .cta {
    min-width: 320px;
    justify-content: center;
  }

  /* Prevent stretched far-right floating button layout on single CTA rows */
  .single-cta .grid-2,
  .contact-page .single-cta .grid-2,
  .candidates-page .single-cta .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .single-cta .lane-card .actions .cta,
  .contact-page .lane-card .actions .cta,
  .candidates-page .lane-card .actions .cta {
    min-width: 0;
    width: 100%;
  }
}


/* Match single Candidates CTA to the stronger Employers single-CTA visual pattern */
@media (min-width: 981px) {
  .candidates-page .lane-card,
  body.candidates-page .lane-card,
  body[data-page="candidates"] .lane-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .candidates-page .lane-card .lane-copy,
  body.candidates-page .lane-card .lane-copy,
  body[data-page="candidates"] .lane-card .lane-copy {
    max-width: 44rem;
  }

  .candidates-page .lane-card .lane-copy h3,
  body.candidates-page .lane-card .lane-copy h3,
  body[data-page="candidates"] .lane-card .lane-copy h3 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(2.8rem, 4vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
  }

  .candidates-page .lane-card .lane-copy p,
  body.candidates-page .lane-card .lane-copy p,
  body[data-page="candidates"] .lane-card .lane-copy p {
    font-size: var(--type-lede);
    line-height: 1.45;
    max-width: 36ch;
  }

  .candidates-page .lane-card .actions,
  body.candidates-page .lane-card .actions,
  body[data-page="candidates"] .lane-card .actions {
    margin-top: 28px;
    width: auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .candidates-page .lane-card .actions .cta,
  body.candidates-page .lane-card .actions .cta,
  body[data-page="candidates"] .lane-card .actions .cta {
    min-width: 320px;
    justify-content: center;
  }
}

/* Success stories page: make dual CTA heading size consistent with site */
@media (min-width: 981px) {
  .page-expertise .split-cta .lane-card .lane-copy h3,
  body.page-expertise .split-cta .lane-card .lane-copy h3,
  body[data-page="expertise"] .split-cta .lane-card .lane-copy h3,
  .page-expertise .split-cta-band .lane-card .lane-copy h3,
  body.page-expertise .split-cta-band .lane-card .lane-copy h3,
  body[data-page="expertise"] .split-cta-band .lane-card .lane-copy h3 {
    font-size: clamp(2.8rem, 4vw, 4rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    max-width: none;
  }

  .page-expertise .split-cta .lane-card .lane-copy p,
  body.page-expertise .split-cta .lane-card .lane-copy p,
  body[data-page="expertise"] .split-cta .lane-card .lane-copy p,
  .page-expertise .split-cta-band .lane-card .lane-copy p,
  body.page-expertise .split-cta-band .lane-card .lane-copy p,
  body[data-page="expertise"] .split-cta-band .lane-card .lane-copy p {
    font-size: var(--type-lede);
    line-height: 1.45;
  }
}


.candidates-page .lane-card .actions,
  body.candidates-page .lane-card .actions,
  body[data-page="candidates"] .lane-card .actions {
    margin-top: 24px !important;
    width: 100% !important;
  }

  .candidates-page .lane-card .actions .cta,
  body.candidates-page .lane-card .actions .cta,
  body[data-page="candidates"] .lane-card .actions .cta {
    width: 100% !important;
    min-width: 0 !important;
  }
}


/* Match single For employers CTAs to the approved candidate CTA visual */
@media (min-width: 981px) {
  .page-employers .lane-card,
  body.page-employers .lane-card,
  body[data-page="employers"] .lane-card,
  body[data-page="engagement-models"] .lane-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    column-gap: 32px !important;
  }

  .page-employers .lane-card .lane-copy,
  body.page-employers .lane-card .lane-copy,
  body[data-page="employers"] .lane-card .lane-copy,
  body[data-page="engagement-models"] .lane-card .lane-copy {
    max-width: 44rem !important;
    margin-bottom: 0 !important;
  }

  .page-employers .lane-card .lane-copy h3,
  body.page-employers .lane-card .lane-copy h3,
  body[data-page="employers"] .lane-card .lane-copy h3,
  body[data-page="engagement-models"] .lane-card .lane-copy h3 {
    font-size: clamp(2.6rem, 3.6vw, 4rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.03em !important;
    max-width: 16ch !important;
    white-space: normal !important;
    margin-bottom: 18px !important;
  }

  .page-employers .lane-card .lane-copy p,
  body.page-employers .lane-card .lane-copy p,
  body[data-page="employers"] .lane-card .lane-copy p,
  body[data-page="engagement-models"] .lane-card .lane-copy p {
    font-size: var(--type-lede) !important;
    line-height: 1.45 !important;
    max-width: 36ch !important;
  }

  .page-employers .lane-card .actions,
  body.page-employers .lane-card .actions,
  body[data-page="employers"] .lane-card .actions,
  body[data-page="engagement-models"] .lane-card .actions {
    margin-top: 0 !important;
    width: auto !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-self: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
  }

  .page-employers .lane-card .actions .cta,
  body.page-employers .lane-card .actions .cta,
  body[data-page="employers"] .lane-card .actions .cta,
  body[data-page="engagement-models"] .lane-card .actions .cta {
    min-width: 300px !important;
    justify-content: center !important;
  }
}

/* Success stories CTA: match homepage scale, not oversized */
@media (min-width: 981px) {
  .page-expertise .lane-card .lane-copy h3,
  body.page-expertise .lane-card .lane-copy h3,
  body[data-page="expertise"] .lane-card .lane-copy h3 {
    font-size: clamp(2.6rem, 3.6vw, 4rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.03em !important;
    max-width: 16ch !important;
    white-space: normal !important;
    margin-bottom: 18px !important;
  }

  .page-expertise .lane-card .lane-copy p,
  body.page-expertise .lane-card .lane-copy p,
  body[data-page="expertise"] .lane-card .lane-copy p {
    font-size: var(--type-lede) !important;
    line-height: 1.45 !important;
    max-width: 36ch !important;
  }
}

@media (max-width: 980px) {
  .page-employers .lane-card,
  body.page-employers .lane-card,
  body[data-page="employers"] .lane-card,
  body[data-page="engagement-models"] .lane-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .page-employers .lane-card .actions,
  body.page-employers .lane-card .actions,
  body[data-page="employers"] .lane-card .actions,
  body[data-page="engagement-models"] .lane-card .actions {
    margin-top: 24px !important;
    width: 100% !important;
  }

  .page-employers .lane-card .actions .cta,
  body.page-employers .lane-card .actions .cta,
  body[data-page="employers"] .lane-card .actions .cta,
  body[data-page="engagement-models"] .lane-card .actions .cta {
    width: 100% !important;
    min-width: 0 !important;
  }
}


/* Unified single-lane CTA system for employer/candidate pages */
@media (min-width: 981px) {
  .page-employers .cta-band .lane-card,
  .candidates-page .candidate-cta-band .lane-card,
  body.page-employers .cta-band .lane-card,
  body.candidates-page .candidate-cta-band .lane-card,
  body[data-page="engagement-models"] .cta-band .lane-card,
  body[data-page="candidates"] .candidate-cta-band .lane-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    column-gap: 32px !important;
    min-height: 240px;
    padding: 26px 26px 26px !important;
  }

  .page-employers .cta-band .lane-copy,
  .candidates-page .candidate-cta-band .lane-copy,
  body.page-employers .cta-band .lane-copy,
  body.candidates-page .candidate-cta-band .lane-copy,
  body[data-page="engagement-models"] .cta-band .lane-copy,
  body[data-page="candidates"] .candidate-cta-band .lane-copy {
    max-width: 44rem !important;
    margin-bottom: 0 !important;
  }

  .page-employers .cta-band .lane-copy h2,
  .candidates-page .candidate-cta-band .lane-copy h2,
  body.page-employers .cta-band .lane-copy h2,
  body.candidates-page .candidate-cta-band .lane-copy h2,
  body[data-page="engagement-models"] .cta-band .lane-copy h2,
  body[data-page="candidates"] .candidate-cta-band .lane-copy h2 {
    font-size: clamp(2.6rem, 3.6vw, 4rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.03em !important;
    max-width: 16ch !important;
    white-space: normal !important;
    margin: 0 0 18px !important;
  }

  .page-employers .cta-band .lane-copy p.sub,
  .candidates-page .candidate-cta-band .lane-copy p.sub,
  body.page-employers .cta-band .lane-copy p.sub,
  body.candidates-page .candidate-cta-band .lane-copy p.sub,
  body[data-page="engagement-models"] .cta-band .lane-copy p.sub,
  body[data-page="candidates"] .candidate-cta-band .lane-copy p.sub {
    font-size: var(--type-lede) !important;
    line-height: 1.45 !important;
    max-width: 36ch !important;
    margin: 0 !important;
  }

  .page-employers .cta-band .actions,
  .candidates-page .candidate-cta-band .actions,
  body.page-employers .cta-band .actions,
  body.candidates-page .candidate-cta-band .actions,
  body[data-page="engagement-models"] .cta-band .actions,
  body[data-page="candidates"] .candidate-cta-band .actions {
    margin-top: 0 !important;
    width: auto !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-self: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
  }

  .page-employers .cta-band .actions .cta,
  .candidates-page .candidate-cta-band .actions .cta,
  body.page-employers .cta-band .actions .cta,
  body.candidates-page .candidate-cta-band .actions .cta,
  body[data-page="engagement-models"] .cta-band .actions .cta,
  body[data-page="candidates"] .candidate-cta-band .actions .cta {
    min-width: 300px !important;
    justify-content: center !important;
  }

  /* Success stories duo CTA should just inherit homepage duo CTA sizing */
  .page-expertise .split-cta .lane-card .lane-copy h3,
  body.page-expertise .split-cta .lane-card .lane-copy h3,
  body[data-page="expertise"] .split-cta .lane-card .lane-copy h3,
  .page-expertise .split-cta-band .lane-card .lane-copy h3,
  body.page-expertise .split-cta-band .lane-card .lane-copy h3,
  body[data-page="expertise"] .split-cta-band .lane-card .lane-copy h3,
  .page-expertise .split-cta .lane-card .lane-copy p,
  body.page-expertise .split-cta .lane-card .lane-copy p,
  body[data-page="expertise"] .split-cta .lane-card .lane-copy p,
  .page-expertise .split-cta-band .lane-card .lane-copy p,
  body.page-expertise .split-cta-band .lane-card .lane-copy p,
  body[data-page="expertise"] .split-cta-band .lane-card .lane-copy p {
    font-size: inherit !important;
    line-height: inherit !important;
    max-width: inherit !important;
    white-space: inherit !important;
    letter-spacing: inherit !important;
  }
}

@media (max-width: 980px) {
  .page-employers .cta-band .lane-card,
  .candidates-page .candidate-cta-band .lane-card,
  body.page-employers .cta-band .lane-card,
  body.candidates-page .candidate-cta-band .lane-card,
  body[data-page="engagement-models"] .cta-band .lane-card,
  body[data-page="candidates"] .candidate-cta-band .lane-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .page-employers .cta-band .actions,
  .candidates-page .candidate-cta-band .actions,
  body.page-employers .cta-band .actions,
  body.candidates-page .candidate-cta-band .actions,
  body[data-page="engagement-models"] .cta-band .actions,
  body[data-page="candidates"] .candidate-cta-band .actions {
    margin-top: 24px !important;
    width: 100% !important;
  }

  .page-employers .cta-band .actions .cta,
  .candidates-page .candidate-cta-band .actions .cta,
  body.page-employers .cta-band .actions .cta,
  body.candidates-page .candidate-cta-band .actions .cta,
  body[data-page="engagement-models"] .cta-band .actions .cta,
  body[data-page="candidates"] .candidate-cta-band .actions .cta {
    width: 100% !important;
    min-width: 0 !important;
  }
}


/* ===== Clean unified CTA system ===== */

/* Single-lane CTA cards (Employers pages + Candidates page) */
@media (min-width: 981px) {
  .section.dark.cta-band:not(.split-cta):not(.split-cta-band) .container,
  .section.dark.candidate-cta-band .container {
    border: 1.5px solid rgba(232,192,41,0.78);
    border-radius: var(--radius-lg);
    padding: var(--space-32);
    background: transparent;
    box-shadow: none;
  }

  .section.dark.cta-band:not(.split-cta):not(.split-cta-band) .lane-card,
  .section.dark.candidate-cta-band .lane-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    column-gap: 32px !important;
    min-height: 240px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .section.dark.cta-band:not(.split-cta):not(.split-cta-band) .lane-copy,
  .section.dark.candidate-cta-band .lane-copy {
    max-width: 44rem !important;
    display: block !important;
  }

  .section.dark.cta-band:not(.split-cta):not(.split-cta-band) .lane-kicker,
  .section.dark.candidate-cta-band .lane-kicker {
    display: inline-block;
    margin: 0 0 var(--space-12);
    color: rgba(232,192,41,0.96);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .section.dark.cta-band:not(.split-cta):not(.split-cta-band) .lane-copy h2,
  .section.dark.candidate-cta-band .lane-copy h2 {
    font-size: clamp(2.8rem, 4vw, 4rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.03em !important;
    max-width: 16ch !important;
    white-space: normal !important;
    margin: 0 0 18px !important;
    color: #fff !important;
  }

  .section.dark.cta-band:not(.split-cta):not(.split-cta-band) .lane-copy p.sub,
  .section.dark.candidate-cta-band .lane-copy p.sub {
    font-size: var(--type-lede) !important;
    line-height: 1.45 !important;
    max-width: 36ch !important;
    margin: 0 !important;
    color: rgba(255,255,255,0.78) !important;
  }

  .section.dark.cta-band:not(.split-cta):not(.split-cta-band) .actions,
  .section.dark.candidate-cta-band .actions {
    margin-top: 0 !important;
    width: auto !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-self: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
  }

  .section.dark.cta-band:not(.split-cta):not(.split-cta-band) .actions .cta,
  .section.dark.candidate-cta-band .actions .cta {
    min-width: 300px !important;
    justify-content: center !important;
  }
}

/* Mobile: single-lane CTA stacks cleanly */
@media (max-width: 980px) {
  .section.dark.cta-band:not(.split-cta):not(.split-cta-band) .lane-card,
  .section.dark.candidate-cta-band .lane-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .section.dark.cta-band:not(.split-cta):not(.split-cta-band) .actions,
  .section.dark.candidate-cta-band .actions {
    margin-top: 24px !important;
    width: 100% !important;
  }

  .section.dark.cta-band:not(.split-cta):not(.split-cta-band) .actions .cta,
  .section.dark.candidate-cta-band .actions .cta {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* Duo CTA cards (Homepage + Success stories): match the homepage visual exactly */
@media (min-width: 981px) {
  .split-cta.split-cta-band .lane-card,
  .split-cta-band .grid-2 .lane-card {
    border: 1.5px solid rgba(232,192,41,0.78);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.025);
    box-shadow: none;
    padding: var(--space-32);
    min-height: 272px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .split-cta-band .lane-kicker {
    color: rgba(232,192,41,0.96);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin: 0 0 var(--space-12);
  }

  .split-cta-band .lane-copy h3 {
    color: #fff !important;
    font-size: clamp(1.9rem, 2.2vw, 2.35rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
    margin: 0 0 var(--space-12) !important;
    max-width: none !important;
    white-space: normal !important;
  }

  .split-cta-band .lane-copy > p:last-child {
    color: rgba(255,255,255,0.78) !important;
    max-width: 36ch !important;
    margin-bottom: 0 !important;
    font-size: inherit !important;
    line-height: inherit !important;
  }

  .split-cta-band .actions {
    margin-top: 22px !important;
    gap: var(--space-12) !important;
    display: flex;
    flex-wrap: wrap;
  }
}


/* CTA reset after copying exact homepage/team section into target pages */
.section.dark.split-cta.split-cta-band .lane-card,
.split-cta-band .lane-card {
  border: 1.5px solid rgba(232,192,41,0.78) !important;
  border-radius: var(--radius-lg) !important;
  background: rgba(255,255,255,0.025) !important;
  box-shadow: none !important;
  padding: var(--space-32) !important;
  min-height: 272px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.split-cta-band .lane-kicker {
  color: rgba(232,192,41,0.96) !important;
}

.split-cta-band .lane-copy h3 {
  color: #fff !important;
  font-size: clamp(1.9rem, 2.2vw, 2.35rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 var(--space-12) !important;
  max-width: none !important;
  white-space: normal !important;
}

.split-cta-band .lane-copy > p:last-child {
  color: rgba(255,255,255,0.78) !important;
  max-width: 36ch !important;
  margin-bottom: 0 !important;
}

.split-cta-band .actions {
  margin-top: 22px !important;
  gap: var(--space-12) !important;
  display: flex !important;
  flex-wrap: wrap !important;
}


/* Candidates + Success stories: force homepage split CTA appearance exactly */
@media (min-width: 981px) {
  body.candidates-page .split-cta.split-cta-band .grid-2,
  body[data-page="candidates"] .split-cta.split-cta-band .grid-2,
  body.page-expertise .split-cta.split-cta-band .grid-2,
  body[data-page="expertise"] .split-cta.split-cta-band .grid-2 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: var(--space-24) !important;
    align-items: stretch !important;
  }

  body.candidates-page .split-cta-band .lane-card,
  body[data-page="candidates"] .split-cta-band .lane-card,
  body.page-expertise .split-cta-band .lane-card,
  body[data-page="expertise"] .split-cta-band .lane-card {
    display: flex !important;
    flex-direction: column !important;
    min-height: 240px !important;
    padding: 26px 26px 26px !important;
    justify-content: space-between !important;
    border: 1.5px solid rgba(232,192,41,0.78) !important;
    border-radius: var(--radius-lg) !important;
    background: rgba(255,255,255,0.025) !important;
    box-shadow: none !important;
  }

  body.candidates-page .split-cta-band .lane-kicker,
  body[data-page="candidates"] .split-cta-band .lane-kicker,
  body.page-expertise .split-cta-band .lane-kicker,
  body[data-page="expertise"] .split-cta-band .lane-kicker {
    color: rgba(232,192,41,0.96) !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em !important;
    margin: 0 0 var(--space-12) !important;
  }

  body.candidates-page .split-cta-band .lane-copy h3,
  body[data-page="candidates"] .split-cta-band .lane-copy h3,
  body.page-expertise .split-cta-band .lane-copy h3,
  body[data-page="expertise"] .split-cta-band .lane-copy h3 {
    color: #fff !important;
    font-size: clamp(1.9rem, 2.2vw, 2.35rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
    margin: 0 0 var(--space-12) !important;
    max-width: none !important;
    white-space: normal !important;
  }

  body.candidates-page .split-cta-band .lane-copy > p:last-child,
  body[data-page="candidates"] .split-cta-band .lane-copy > p:last-child,
  body.page-expertise .split-cta-band .lane-copy > p:last-child,
  body[data-page="expertise"] .split-cta-band .lane-copy > p:last-child {
    color: rgba(255,255,255,0.78) !important;
    max-width: 36ch !important;
    margin-bottom: 0 !important;
  }

  body.candidates-page .split-cta-band .actions,
  body[data-page="candidates"] .split-cta-band .actions,
  body.page-expertise .split-cta-band .actions,
  body[data-page="expertise"] .split-cta-band .actions {
    margin-top: auto !important;
    padding-top: 18px !important;
    display: flex !important;
    gap: var(--space-12) !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    width: auto !important;
  }
}

@media (max-width: 980px) {
  body.candidates-page .split-cta-band .grid-2,
  body[data-page="candidates"] .split-cta-band .grid-2,
  body.page-expertise .split-cta-band .grid-2,
  body[data-page="expertise"] .split-cta-band .grid-2 {
    grid-template-columns: 1fr !important;
  }
}




/* 2) Candidates page bottom CTA: keep buttons horizontal */
@media (min-width: 981px) {
  body.candidates-page .split-cta-band .actions,
  body[data-page="candidates"] .split-cta-band .actions,
  .candidates-page .split-cta-band .actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: var(--space-12) !important;
    width: auto !important;
  }

  body.candidates-page .split-cta-band .actions .cta,
  body[data-page="candidates"] .split-cta-band .actions .cta,
  .candidates-page .split-cta-band .actions .cta {
    width: auto !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
    white-space: nowrap !important;
  }
}


/* Restore larger homepage/team-style duo CTA globally */
@media (min-width: 981px) {
  .split-cta.split-cta-band .lane-card,
  .split-cta-band .lane-card {
    min-height: 272px !important;
    padding: var(--space-32) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    border: 1.5px solid rgba(232,192,41,0.78) !important;
    border-radius: var(--radius-lg) !important;
    background: rgba(255,255,255,0.025) !important;
    box-shadow: none !important;
  }

  .split-cta-band .lane-kicker {
    color: rgba(232,192,41,0.96) !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em !important;
    margin: 0 0 var(--space-12) !important;
  }

  .split-cta-band .lane-copy h3 {
    color: #fff !important;
    font-size: clamp(2.8rem, 4vw, 4rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.03em !important;
    margin: 0 0 18px !important;
    max-width: 16ch !important;
    white-space: normal !important;
    font-weight: 800 !important;
  }

  .split-cta-band .lane-copy > p:last-child {
    color: rgba(255,255,255,0.78) !important;
    font-size: var(--type-lede) !important;
    line-height: 1.45 !important;
    max-width: 36ch !important;
    margin-bottom: 0 !important;
  }

  .split-cta-band .actions {
    margin-top: 28px !important;
    padding-top: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    justify-content: flex-start !important;
    width: auto !important;
  }

  .split-cta-band .actions .cta {
    width: auto !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
    white-space: nowrap !important;
  }
}


/* Restore homepage/team dual CTA back to the smaller approved size */
@media (min-width: 981px) {
  body.home .split-cta-band .lane-copy h3,
  body.team-page .split-cta-band .lane-copy h3 {
    font-size: clamp(1.9rem, 2.2vw, 2.35rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
    max-width: none !important;
    margin: 0 0 var(--space-12) !important;
  }

  body.home .split-cta-band .lane-copy > p:last-child,
  body.team-page .split-cta-band .lane-copy > p:last-child {
    font-size: inherit !important;
    line-height: inherit !important;
    max-width: 36ch !important;
  }
}




/* Page-specific CTA headline/body sizing fix:
   only SaaS / Semi / Engagement models / Success stories */
@media (min-width: 981px) {
  body.page-employers section.split-cta.split-cta-band .lane-copy h3,
  body.page-expertise section.split-cta.split-cta-band .lane-copy h3,
  body.page-engagement-models section.split-cta.split-cta-band .lane-copy h3,
  body.page-employers section.split-cta-band .lane-copy h3,
  body.page-expertise section.split-cta-band .lane-copy h3,
  body.page-engagement-models section.split-cta-band .lane-copy h3 {
    font-size: clamp(2.15rem, 2.45vw, 2.6rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.022em !important;
    max-width: 14.5ch !important;
    margin: 0 0 14px !important;
  }

  body.page-employers section.split-cta.split-cta-band .lane-copy > p:last-child,
  body.page-expertise section.split-cta.split-cta-band .lane-copy > p:last-child,
  body.page-engagement-models section.split-cta.split-cta-band .lane-copy > p:last-child,
  body.page-employers section.split-cta-band .lane-copy > p:last-child,
  body.page-expertise section.split-cta-band .lane-copy > p:last-child,
  body.page-engagement-models section.split-cta-band .lane-copy > p:last-child {
    font-size: 1rem !important;
    line-height: 1.42 !important;
    max-width: 34ch !important;
  }

  body.page-employers section.split-cta-band .actions,
  body.page-expertise section.split-cta-band .actions,
  body.page-engagement-models section.split-cta-band .actions {
    margin-top: 22px !important;
    gap: 14px !important;
  }
}


/* FINAL split CTA fixes by page type */

/* 1) Employer pages: remove width cap so headline stays on one line like homepage/team */
@media (min-width: 981px) {
  body.page-employers section.split-cta.split-cta-band .lane-copy h3,
  body.page-employers section.split-cta-band .lane-copy h3,
  body[data-page="engagement-models"] section.split-cta.split-cta-band .lane-copy h3,
  body[data-page="engagement-models"] section.split-cta-band .lane-copy h3 {
    font-size: clamp(1.9rem, 2.2vw, 2.35rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
    max-width: none !important;
    white-space: nowrap !important;
    margin: 0 0 var(--space-12) !important;
  }

  body.page-employers section.split-cta.split-cta-band .lane-copy > p:last-child,
  body.page-employers section.split-cta-band .lane-copy > p:last-child,
  body[data-page="engagement-models"] section.split-cta.split-cta-band .lane-copy > p:last-child,
  body[data-page="engagement-models"] section.split-cta-band .lane-copy > p:last-child {
    font-size: inherit !important;
    line-height: inherit !important;
    max-width: 36ch !important;
  }
}







/* Success stories CTA: section-local clean sizing fix */
@media (min-width: 981px) {
  section.success-cta-exact .lane-card {
    min-height: 240px !important;
    padding: 26px 26px 26px !important;
  }

  section.success-cta-exact .lane-copy h3 {
    font-size: 2.12rem !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    font-weight: 800 !important;
    max-width: none !important;
    white-space: nowrap !important;
    margin: 0 0 12px !important;
  }

  section.success-cta-exact .lane-copy > p:last-child {
    font-size: 1rem !important;
    line-height: 1.42 !important;
    max-width: 36ch !important;
    margin-bottom: 0 !important;
  }

  section.success-cta-exact .actions {
    margin-top: 22px !important;
    gap: 12px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
  }
}


@media (min-width: 981px) {
  section.success-cta-exact .success-cta-title {
    font-size: clamp(1.9rem, 2.2vw, 2.35rem) !important;
    line-height: 1.08 !important;
    white-space: nowrap !important;
  }

  section.success-cta-exact .success-cta-sub {
    font-size: 1rem !important;
    line-height: 1.42 !important;
  }
}


/* Success stories CTA: fix remaining width restriction without changing size */
@media (min-width: 981px) {
  section.success-cta-exact .grid-2 {
    gap: 18px !important;
  }

  section.success-cta-exact .lane-card {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  section.success-cta-exact .lane-copy h3,
  section.success-cta-exact .success-cta-title {
    max-width: none !important;
    width: 100% !important;
    white-space: nowrap !important;
  }

  section.success-cta-exact .lane-copy {
    max-width: none !important;
  }
}


/* How we work cards: unify image size/shape and make them blend into the card */
#how-we-work .workflow-step {
  display: flex;
  flex-direction: column;
}

#how-we-work .workflow-step-media {
  height: 156px !important;
  min-height: 156px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(2, 6, 23, 0.05) !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.68), rgba(255,255,255,0.38)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 14px !important;
  margin-bottom: 10px !important;
  overflow: hidden !important;
}

#how-we-work .workflow-step-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  filter: saturate(0.97) contrast(1.01);
}

/* Make all 4 image areas visually consistent */
#how-we-work .workflow-step.intake .workflow-step-media,
#how-we-work .workflow-step.screening .workflow-step-media,
#how-we-work .workflow-step.step-3 .workflow-step-media,
#how-we-work .workflow-step.step-4 .workflow-step-media,
#how-we-work .workflow-step-media.intake,
#how-we-work .workflow-step-media.screening,
#how-we-work .workflow-step-media.close {
  height: 156px !important;
  min-height: 156px !important;
}

/* Slightly soften the frame so it feels more seamless with the card */
#how-we-work .workflow-step {
  border-color: rgba(2, 6, 23, 0.045) !important;
}

@media (max-width: 980px) {
  #how-we-work .workflow-step-media {
    height: 148px !important;
    min-height: 148px !important;
    border-radius: 20px !important;
  }
}


/* How we work: align steps 2 and 3 image boxes upward to match 1 and 4 */
@media (min-width: 981px) {
  #how-we-work .workflow-step:nth-of-type(2) .workflow-step-media,
  #how-we-work .workflow-step:nth-of-type(3) .workflow-step-media {
    margin-top: -14px !important;
  }
}


/* Representative outcomes: let these outcome card titles stay on one line */
@media (min-width: 981px) {
  .page-employers-saas .grid-2 .card h3,
  .page-employers-semi .grid-2 .card h3 {
    max-width: none !important;
    white-space: nowrap !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .page-employers-saas .grid-2 .card,
  .page-employers-semi .grid-2 .card {
    overflow: visible;
  }
}


/* Align cards that only have Need + Outcome rows */
@media (min-width: 981px) {
  /* Homepage representative outcomes preview cards */
  body.home .card.slim .need-outcome {
    display: grid !important;
    grid-template-rows: minmax(74px, auto) minmax(74px, auto) !important;
    align-content: start !important;
    gap: 14px !important;
  }

  body.home .card.slim .need-outcome .need,
  body.home .card.slim .need-outcome .outcome {
    margin: 0 !important;
  }

  /* Semiconductor representative outcomes cards */
  body.page-employers-semi .grid-2 .card {
    display: flex;
    flex-direction: column;
  }

  body.page-employers-semi .grid-2 .card h3 {
    margin-bottom: 18px !important;
  }

  body.page-employers-semi .grid-2 .card p {
    margin: 0 !important;
  }

  body.page-employers-semi .grid-2 .card p + p {
    margin-top: 12px !important;
  }

  body.page-employers-semi .grid-2 .card p:first-of-type {
    min-height: 2.9em;
  }
}


/* How we work graphics: clean, consistent rectangular frames without cutting off icons */
#how-we-work .workflow-step-media {
  height: 166px !important;
  min-height: 166px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(2, 6, 23, 0.06) !important;
  background: rgba(255,255,255,0.22) !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px !important;
  margin-bottom: 10px !important;
  overflow: hidden !important;
}

#how-we-work .workflow-step-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  background: transparent !important;
}

@media (max-width: 980px) {
  #how-we-work .workflow-step-media {
    height: 154px !important;
    min-height: 154px !important;
    border-radius: 16px !important;
  }
}


/* How we work graphics v2: consistent frame for all 4 */
#how-we-work .workflow-step-media {
  height: 166px !important;
  min-height: 166px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(2, 6, 23, 0.06) !important;
  background: rgba(255,255,255,0.22) !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px !important;
  margin-bottom: 10px !important;
  overflow: hidden !important;
}

#how-we-work .workflow-step-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  background: transparent !important;
}


/* How we work graphics v4: normalize inner frame sizing across all 4 */
#how-we-work .workflow-step-media {
  height: 166px !important;
  min-height: 166px !important;
  padding: 14px !important;
}

#how-we-work .workflow-step-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  max-width: 92% !important;
  max-height: 92% !important;
}

/* Give sourcing a touch more usable space so the full magnifying glass reads cleanly */
#how-we-work .workflow-step:nth-of-type(2) .workflow-step-media img,
#how-we-work .workflow-step.screening .workflow-step-media img {
  max-width: 95% !important;
  max-height: 95% !important;
}


/* How we work: normalize visible image-frame size across all 4 cards */
@media (min-width: 981px) {
  #how-we-work .workflow-step-media {
    width: 100% !important;
    max-width: 318px !important;
    height: 172px !important;
    min-height: 172px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 14px !important;
    border-radius: 18px !important;
    box-sizing: border-box !important;
  }

  /* Remove per-image size drift so all 4 sit in the same frame size */
  #how-we-work .workflow-step-media img,
  #how-we-work .workflow-step:nth-of-type(2) .workflow-step-media img,
  #how-we-work .workflow-step.screening .workflow-step-media img {
    max-width: 92% !important;
    max-height: 92% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
  }
}

@media (max-width: 980px) {
  #how-we-work .workflow-step-media {
    width: 100% !important;
    max-width: 300px !important;
    height: 164px !important;
    min-height: 164px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 12px !important;
    box-sizing: border-box !important;
  }

  #how-we-work .workflow-step-media img {
    max-width: 92% !important;
    max-height: 92% !important;
  }
}


/* How we work: normalize image presentation across 1-4 */
#how-we-work .workflow-step-media {
  width: 100% !important;
  max-width: 318px !important;
  height: 172px !important;
  min-height: 172px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 14px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(2, 6, 23, 0.06) !important;
  background: rgba(255,255,255,0.18) !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

#how-we-work .workflow-step-media img {
  width: 100% !important;
  height: 100% !important;
  max-width: 94% !important;
  max-height: 94% !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  background: transparent !important;
}

@media (max-width: 980px) {
  #how-we-work .workflow-step-media {
    max-width: 300px !important;
    height: 164px !important;
    min-height: 164px !important;
    padding: 12px !important;
  }

  #how-we-work .workflow-step-media img {
    max-width: 94% !important;
    max-height: 94% !important;
  }
}


/* Enlarge workflow images 1 and 2 to match visual scale of 3 and 4 */
@media (min-width: 981px) {
  #how-we-work .workflow-step:nth-of-type(1) .workflow-step-media img,
  #how-we-work .workflow-step:nth-of-type(2) .workflow-step-media img {
    max-width: 110% !important;
    max-height: 110% !important;
    transform: scale(1.18) !important;
    transform-origin: center center !important;
  }
}

@media (max-width: 980px) {
  #how-we-work .workflow-step:nth-of-type(1) .workflow-step-media img,
  #how-we-work .workflow-step:nth-of-type(2) .workflow-step-media img {
    max-width: 108% !important;
    max-height: 108% !important;
    transform: scale(1.12) !important;
    transform-origin: center center !important;
  }
}


/* Final workflow image balancing */
@media (min-width: 981px) {
  /* image 1: a touch larger */
  #how-we-work .workflow-step:nth-of-type(1) .workflow-step-media img {
    transform: scale(1.24) !important;
    transform-origin: center center !important;
  }

  /* image 2: slightly lower and just a hair less oversized */
  #how-we-work .workflow-step:nth-of-type(2) .workflow-step-media img {
    transform: translateY(8px) scale(1.14) !important;
    transform-origin: center center !important;
  }
}

@media (max-width: 980px) {
  #how-we-work .workflow-step:nth-of-type(1) .workflow-step-media img {
    transform: scale(1.16) !important;
  }

  #how-we-work .workflow-step:nth-of-type(2) .workflow-step-media img {
    transform: translateY(6px) scale(1.08) !important;
  }
}


/* Homepage success-story preview cards: tighten Need/Outcome gap while keeping alignment */
@media (min-width: 981px) {
  body.home .card.slim .need-outcome {
    gap: 8px !important;
    grid-template-rows: minmax(64px, auto) minmax(64px, auto) !important;
  }

  body.home .card.slim .need-outcome .need,
  body.home .card.slim .need-outcome .outcome {
    margin: 0 !important;
  }

  body.home .card.slim .need-outcome .need + .outcome {
    margin-top: 0 !important;
  }
}


/* Homepage success-story preview cards: tighten Need/Outcome a bit more */
@media (min-width: 981px) {
  body.home .card.slim .need-outcome {
    gap: 4px !important;
    grid-template-rows: minmax(58px, auto) minmax(58px, auto) !important;
  }

  body.home .card.slim .need-outcome .need,
  body.home .card.slim .need-outcome .outcome {
    margin: 0 !important;
    padding: 0 !important;
  }
}


/* How we work: normalize bullet list spacing/indent/line-height across all 4 cards */
#how-we-work .workflow-step ul {
  margin: 14px 0 0 !important;
  padding-left: 24px !important;
  list-style-position: outside !important;
}

#how-we-work .workflow-step li {
  margin: 0 0 8px 0 !important;
  line-height: 1.35 !important;
}

#how-we-work .workflow-step li:last-child {
  margin-bottom: 0 !important;
}


/* How we work: left-align bullet lists under the images */
#how-we-work .workflow-step ul {
  margin: 14px 0 0 0 !important;
  padding-left: 24px !important;
  width: 100% !important;
  text-align: left !important;
  align-self: stretch !important;
}

#how-we-work .workflow-step li {
  text-align: left !important;
}

#how-we-work .workflow-step {
  align-items: stretch !important;
}


/* How we work: make steps 2 and 3 image boxes match the others vertically */
@media (min-width: 981px) {
  #how-we-work .workflow-step:nth-of-type(2) .workflow-step-media,
  #how-we-work .workflow-step:nth-of-type(3) .workflow-step-media {
    margin-top: -10px !important;
    margin-bottom: 6px !important;
  }
}


/* How we work: lock card internals so all image boxes align perfectly */
@media (min-width: 981px) {
  #how-we-work .workflow-step {
    display: grid !important;
    grid-template-rows: auto 112px 172px auto !important;
    align-items: start !important;
  }

  #how-we-work .workflow-step > * {
    align-self: start !important;
  }

  /* normalize the intro text block above each image */
  #how-we-work .workflow-step p.sub,
  #how-we-work .workflow-step .sub,
  #how-we-work .workflow-step-copy,
  #how-we-work .workflow-step-copy p {
    margin-bottom: 0 !important;
  }

  #how-we-work .workflow-step-media {
    margin-top: 14px !important;
    margin-bottom: 14px !important;
    width: 100% !important;
    max-width: 318px !important;
    height: 172px !important;
    min-height: 172px !important;
    align-self: start !important;
    justify-self: center !important;
    box-sizing: border-box !important;
  }

  /* remove prior per-step nudges so all four share one position */
  #how-we-work .workflow-step:nth-of-type(1) .workflow-step-media,
  #how-we-work .workflow-step:nth-of-type(2) .workflow-step-media,
  #how-we-work .workflow-step:nth-of-type(3) .workflow-step-media,
  #how-we-work .workflow-step:nth-of-type(4) .workflow-step-media {
    margin-top: 14px !important;
    margin-bottom: 14px !important;
  }
}

@media (max-width: 980px) {
  #how-we-work .workflow-step-media {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }
}


/* How we work: tighten text-to-image gap while keeping bottom spacing consistent */
@media (min-width: 981px) {
  #how-we-work .workflow-step {
    grid-template-rows: auto 88px 172px auto !important;
  }

  #how-we-work .workflow-step-media,
  #how-we-work .workflow-step:nth-of-type(1) .workflow-step-media,
  #how-we-work .workflow-step:nth-of-type(2) .workflow-step-media,
  #how-we-work .workflow-step:nth-of-type(3) .workflow-step-media,
  #how-we-work .workflow-step:nth-of-type(4) .workflow-step-media {
    margin-top: 6px !important;
    margin-bottom: 14px !important;
  }
}

@media (max-width: 980px) {
  #how-we-work .workflow-step-media {
    margin-top: 6px !important;
    margin-bottom: 12px !important;
  }
}


/* How we work: safe, consistent layout without breaking card widths */
@media (min-width: 981px) {
  #how-we-work .workflow-step {
    display: grid !important;
    grid-template-rows: auto 78px 176px auto !important;
    align-items: start !important;
    min-width: 0 !important;
  }

  #how-we-work .workflow-step > * {
    min-width: 0 !important;
  }

  #how-we-work .workflow-step-media {
    width: 100% !important;
    max-width: 320px !important;
    min-width: 0 !important;
    height: 176px !important;
    min-height: 176px !important;
    max-height: 176px !important;
    margin-top: 4px !important;
    margin-bottom: 14px !important;
    padding: 14px !important;
    align-self: start !important;
    justify-self: center !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* keep the visual scaling of the approved artwork, but no vertical drift */
  #how-we-work .workflow-step:nth-of-type(1) .workflow-step-media img {
    transform: scale(1.24) !important;
    transform-origin: center center !important;
  }

  #how-we-work .workflow-step:nth-of-type(2) .workflow-step-media img {
    transform: scale(1.14) !important;
    transform-origin: center center !important;
  }

  #how-we-work .workflow-step:nth-of-type(3) .workflow-step-media img,
  #how-we-work .workflow-step:nth-of-type(4) .workflow-step-media img {
    transform: none !important;
  }

  /* make sure headings and body copy wrap inside cards */
  #how-we-work .workflow-step h3,
  #how-we-work .workflow-step p,
  #how-we-work .workflow-step li {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }
}

@media (max-width: 980px) {
  #how-we-work .workflow-step-media {
    width: 100% !important;
    max-width: 300px !important;
    min-width: 0 !important;
    height: 166px !important;
    min-height: 166px !important;
    max-height: 166px !important;
    margin-top: 4px !important;
    margin-bottom: 12px !important;
    justify-self: center !important;
    box-sizing: border-box !important;
  }
}


/* How we work: align image-box tops and sizes without forcing card overflow */
@media (min-width: 981px) {
  #how-we-work .workflow-step {
    display: grid !important;
    grid-template-rows: auto 84px 172px auto !important;
    align-items: start !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  #how-we-work .workflow-step > * {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  #how-we-work .workflow-step-media,
  #how-we-work .workflow-step:nth-of-type(1) .workflow-step-media,
  #how-we-work .workflow-step:nth-of-type(2) .workflow-step-media,
  #how-we-work .workflow-step:nth-of-type(3) .workflow-step-media,
  #how-we-work .workflow-step:nth-of-type(4) .workflow-step-media {
    width: calc(100% - 40px) !important;
    max-width: 320px !important;
    min-width: 0 !important;
    height: 172px !important;
    min-height: 172px !important;
    max-height: 172px !important;
    margin-top: 6px !important;
    margin-bottom: 14px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: start !important;
    justify-self: center !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  #how-we-work .workflow-step:nth-of-type(1) .workflow-step-media img {
    transform: scale(1.24) translateY(0) !important;
    transform-origin: center center !important;
  }

  #how-we-work .workflow-step:nth-of-type(2) .workflow-step-media img {
    transform: scale(1.14) translateY(0) !important;
    transform-origin: center center !important;
  }

  #how-we-work .workflow-step:nth-of-type(3) .workflow-step-media img,
  #how-we-work .workflow-step:nth-of-type(4) .workflow-step-media img {
    transform: translateY(0) !important;
    transform-origin: center center !important;
  }

  #how-we-work .workflow-step h3,
  #how-we-work .workflow-step p,
  #how-we-work .workflow-step li {
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }
}

@media (max-width: 980px) {
  #how-we-work .workflow-step {
    overflow: hidden !important;
  }

  #how-we-work .workflow-step-media {
    width: calc(100% - 28px) !important;
    max-width: 300px !important;
    min-width: 0 !important;
    height: 164px !important;
    min-height: 164px !important;
    max-height: 164px !important;
    margin-top: 6px !important;
    margin-bottom: 12px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  #how-we-work .workflow-step:nth-of-type(2) .workflow-step-media img {
    transform: scale(1.08) translateY(0) !important;
  }
}


/* Added capability cards: let expanded employer capability grids breathe on desktop */
@media (min-width: 981px) {
  .page-employers-saas .grid-3,
  .page-employers-semi .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* Micro icons matched to existing card icon treatment */
.icon .micro-icon {
  width: 22px !important;
  height: 22px !important;
  object-fit: contain !important;
  display: block !important;
}


/* Simplified micro icons matched to existing capability badges */
.icon .micro-icon {
  width: 24px !important;
  height: 24px !important;
  object-fit: contain !important;
  display: block !important;
}


/* Refined micro icons: slightly larger and bolder inside standard badges */
.icon .micro-icon {
  width: 24px !important;
  height: 24px !important;
  object-fit: contain !important;
  display: block !important;
}


/* SVG micro icons stay crisp in the existing badge treatment */
.icon .micro-icon {
  width: 24px !important;
  height: 24px !important;
  object-fit: contain !important;
  display: block !important;
}


/* Factory systems icon: slightly larger after true swap */
.card h3 + p { max-width: 48ch; }

.card .icon svg {
  width: 22px;
  height: 22px;
}

.factory-systems-card .icon svg {
  width: 24px;
  height: 24px;
}


/* Success page CTA mobile: match the normal mobile CTA behavior from other pages */
@media (max-width: 980px) {
  section.success-cta-exact .lane-copy h3,
  section.success-cta-exact .success-cta-title {
    white-space: normal !important;
    max-width: none !important;
    width: auto !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }
}

/* Home mobile: stack How we work cards vertically without affecting desktop */
@media (max-width: 980px) {
  #how-we-work .workflow-steps-row {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    grid-template-areas: none !important;
    gap: 12px !important;
  }

  #how-we-work .workflow-arrow {
    display: none !important;
  }

  #how-we-work .workflow-step {
    width: 100% !important;
  }
}


@media (max-width: 640px) {
  body:not(.home) .hero .meta.proof-badges {
    display: block;
    width: auto !important;
    max-width: 100% !important;
    min-height: 0 !important;
  }

  body:not(.home) .hero .meta.proof-badges .badge {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    max-width: 100%;
    white-space: normal;
  }

  body:not(.home) .hero .meta.proof-badges .badge:not(.active) {
    display: none;
  }
}


/* Final success stories CTA fix: match other pages exactly on desktop, keep two-line mobile */
@media (min-width: 981px) {
  body.page-expertise section.success-cta-exact.split-cta.split-cta-band .grid-2,
  body[data-page="expertise"] section.success-cta-exact.split-cta.split-cta-band .grid-2 {
    gap: var(--space-24) !important;
  }

  body.page-expertise section.success-cta-exact.split-cta.split-cta-band .lane-card,
  body[data-page="expertise"] section.success-cta-exact.split-cta.split-cta-band .lane-card {
    min-height: 272px !important;
    padding: var(--space-32) !important;
  }

  body.page-expertise section.success-cta-exact.split-cta.split-cta-band .lane-copy h3,
  body[data-page="expertise"] section.success-cta-exact.split-cta.split-cta-band .lane-copy h3 {
    font-size: clamp(1.9rem, 2.2vw, 2.35rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
    max-width: none !important;
    width: max-content !important;
    white-space: nowrap !important;
    margin: 0 0 var(--space-12) !important;
  }

  body.page-expertise section.success-cta-exact.split-cta.split-cta-band .lane-copy > p:last-child,
  body[data-page="expertise"] section.success-cta-exact.split-cta.split-cta-band .lane-copy > p:last-child {
    font-size: inherit !important;
    line-height: inherit !important;
    max-width: 36ch !important;
  }
}

@media (max-width: 980px) {
  body.page-expertise section.success-cta-exact.split-cta.split-cta-band .lane-copy h3,
  body[data-page="expertise"] section.success-cta-exact.split-cta.split-cta-band .lane-copy h3 {
    white-space: normal !important;
    width: auto !important;
    max-width: 11ch !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }
}


/* Success stories CTA: force exact desktop/mobile title breaks */
.mobile-success-break {
  display: none;
}

@media (max-width: 980px) {
  body.page-expertise section.success-cta-exact .lane-copy h3,
  body[data-page="expertise"] section.success-cta-exact .lane-copy h3 {
    white-space: normal !important;
    max-width: none !important;
    width: auto !important;
  }

  body.page-expertise section.success-cta-exact .mobile-success-break,
  body[data-page="expertise"] section.success-cta-exact .mobile-success-break {
    display: inline !important;
  }
}

@media (min-width: 981px) {
  body.page-expertise section.success-cta-exact .mobile-success-break,
  body[data-page="expertise"] section.success-cta-exact .mobile-success-break {
    display: none !important;
  }
}


/* Success stories CTA mobile: allow the forced 2-line break to work like other pages */
@media (max-width: 980px) {
  body.page-expertise section.success-cta-exact.split-cta.split-cta-band .lane-copy h3,
  body[data-page="expertise"] section.success-cta-exact.split-cta.split-cta-band .lane-copy h3 {
    max-width: none !important;
    width: auto !important;
    white-space: normal !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  body.page-expertise section.success-cta-exact.split-cta.split-cta-band .mobile-success-break,
  body[data-page="expertise"] section.success-cta-exact.split-cta.split-cta-band .mobile-success-break {
    display: inline !important;
  }
}


/* Success stories CTA final normalization: match the standard CTA behavior on other pages */
section.success-cta-exact .mobile-success-break {
  display: none !important;
}

@media (min-width: 981px) {
  body.page-expertise section.success-cta-exact .lane-copy h3,
  body[data-page="expertise"] section.success-cta-exact .lane-copy h3,
  section.success-cta-exact .lane-copy h3 {
    font-size: clamp(1.9rem, 2.2vw, 2.35rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
    white-space: nowrap !important;
    max-width: none !important;
    width: auto !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    margin: 0 0 var(--space-12) !important;
  }
}

@media (max-width: 980px) {
  body.page-expertise section.success-cta-exact .lane-copy h3,
  body[data-page="expertise"] section.success-cta-exact .lane-copy h3,
  section.success-cta-exact .lane-copy h3 {
    font-size: clamp(1.9rem, 2.2vw, 2.35rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.02em !important;
    white-space: normal !important;
    max-width: none !important;
    width: auto !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    text-wrap: balance;
    margin: 0 0 var(--space-12) !important;
  }
}



/* Home page rotating quotes: match lighter badge text style and remove quote icon */
body.home .hero .home-quote-badges .badge,
body[data-page="home"] .hero .home-quote-badges .badge {
  gap: 0;
}

body.home .hero .home-quote-badges .badge-copy,
body[data-page="home"] .hero .home-quote-badges .badge-copy {
  font-weight: 600;
}

body.home .hero .home-quote-badges .badge-icon,
body[data-page="home"] .hero .home-quote-badges .badge-icon {
  display: none;
}




/* === 2026-03-26 hero + sticky message rail rebuild === */
:root {
  --topbar-height: 60px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(3, 29, 46, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar .container {
  padding: 12px 0;
}

.topbar-rail {
  display: block;
}

.topbar-rotator {
  position: relative;
  min-height: 28px;
}

.topbar-rotating-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .28s ease, transform .28s ease;
  color: rgba(255,255,255,0.96);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-rotating-item.active {
  opacity: 1;
  transform: translateY(0);
}

.topbar-rotating-item--quote {
  font-weight: 600;
}

.header {
  top: var(--topbar-height);
  z-index: 1050;
}

@media (max-width: 980px) {
  .nav.mobile-open {
    top: calc(100% + 1px);
    max-height: calc(100vh - var(--topbar-height) - 64px);
    overflow: auto;
    z-index: 1060;
  }
}

.hero {
  padding: 44px 0 24px;
}

body.home .hero .grid > div:first-child,
body[data-page="home"] .hero .grid > div:first-child,
.hero .grid.hero-home-grid > div:first-child {
  padding-bottom: 10px;
}


.hero .grid,
body.home .hero .grid,
body[data-page="home"] .hero .grid,
.hero .grid.hero-home-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 640px);
  gap: 40px;
  align-items: center;
  min-height: 0;
}

.hero .grid > div:first-child,
body.home .hero .grid > div:first-child,
body[data-page="home"] .hero .grid > div:first-child,
.hero .grid.hero-home-grid > div:first-child {
  max-width: 38rem;
  min-height: 100%;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  align-self: center;
}

.hero h1 {
  margin: 0;
  line-height: 1.02;
}

.hero p.lede {
  max-width: 34ch;
  margin: 0;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.5;
}

.hero .actions {
  margin: 12px 0 0;
}

.hero .actions .cta + .cta {
  margin-left: 12px;
}

.hero-media,
body.home .hero .grid > .hero-media,
body[data-page="home"] .hero .grid > .hero-media,
.hero .grid.hero-home-grid > .hero-media {
  width: 100%;
  max-width: 620px;
  aspect-ratio: 16 / 10;
  min-height: clamp(320px, 38vw, 450px);
  justify-self: end;
  align-self: center;
  border-radius: 28px;
  overflow: visible;
}

.hero-media .hero-static {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transform: none;
}

.hero .meta,
.hero .proof-group,
.hero .recommendation-group,
.hero .home-quote-slot,
.hero .hero-quote-inline {
  display: none !important;
}

.hero + .section {
  padding-top: 56px;
}

@media (max-width: 980px) {
  .topbar .container {
    padding: 12px 0 14px;
  }

  .topbar-rotator {
    min-height: 44px;
  }

  .topbar-rotating-item {
    position: absolute;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    font-size: 15px;
    line-height: 1.35;
  }

  .hero {
    padding: 28px 0 20px;
  }

  .hero .grid,
  body.home .hero .grid,
  body[data-page="home"] .hero .grid,
  .hero .grid.hero-home-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero .grid > div:first-child,
  body.home .hero .grid > div:first-child,
  body[data-page="home"] .hero .grid > div:first-child,
  .hero .grid.hero-home-grid > div:first-child {
    gap: 18px;
  }

  .hero-media,
  body.home .hero .grid > .hero-media,
  body[data-page="home"] .hero .grid > .hero-media,
  .hero .grid.hero-home-grid > .hero-media {
    min-height: 0;
    max-width: none;
    aspect-ratio: 16 / 10;
  }

  .hero-media .hero-static {
    object-fit: contain;
    object-position: center center;
  }
}


body.home .hero h1,
body[data-page="home"] .hero h1 {
  margin-bottom: 26px;
}

body.home .hero p.lede,
body[data-page="home"] .hero p.lede {
  margin-bottom: 38px;
}

body.home .hero .grid > div:first-child > * + * ,
body[data-page="home"] .hero .grid > div:first-child > * + * {
  margin-top: 0;
}

@media (max-width: 980px) {
  body.home .hero .grid,
  body[data-page="home"] .hero .grid,
  .hero .grid.hero-home-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    max-width: 100%;
  }
}


/* Final homepage hero override: center text to image and enlarge art without cropping */
@media (min-width: 981px) {
  body.home .hero .grid.hero-home-grid,
  body[data-page="home"] .hero .grid.hero-home-grid {
    grid-template-columns: minmax(0, 1fr) minmax(650px, 760px);
    gap: 56px;
    min-height: 560px;
    align-items: center;
  }

  body.home .hero .grid.hero-home-grid > div:first-child,
  body[data-page="home"] .hero .grid.hero-home-grid > div:first-child {
    align-self: center;
    justify-content: center;
    max-width: 32rem;
    padding-top: 52px;
    padding-bottom: 0;
    margin-top: 18px;
  }

  body.home .hero h1,
  body[data-page="home"] .hero h1 {
    margin-bottom: 44px;
  }

  body.home .hero p.lede,
  body[data-page="home"] .hero p.lede {
    margin-bottom: 46px;
    line-height: 1.42;
  }

  body.home .hero .actions,
  body[data-page="home"] .hero .actions {
    gap: 24px;
  }

  body.home .hero .grid.hero-home-grid > .hero-media,
  body[data-page="home"] .hero .grid.hero-home-grid > .hero-media {
    width: 100%;
    max-width: 730px !important;
    aspect-ratio: auto;
    transform: none !important;
    align-self: center !important;
    justify-self: end;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  body.home .hero .grid.hero-home-grid > .hero-media .hero-static,
  body[data-page="home"] .hero .grid.hero-home-grid > .hero-media .hero-static {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
  }
}


/* === 2026-03-26 homepage hero corrective pass === */
@media (min-width: 981px) {
  body.home .hero,
  body[data-page="home"] .hero {
    padding-top: 78px;
    padding-bottom: 34px;
  }

  body.home .hero .grid.hero-home-grid,
  body[data-page="home"] .hero .grid.hero-home-grid {
    grid-template-columns: minmax(0, 1fr) minmax(720px, 840px);
    gap: 54px;
    min-height: 620px;
    align-items: center;
  }

  body.home .hero .grid.hero-home-grid > div:first-child,
  body[data-page="home"] .hero .grid.hero-home-grid > div:first-child {
    max-width: 34rem;
    align-self: center;
    justify-content: center;
    gap: 34px;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 34px;
  }

  body.home .hero h1,
  body[data-page="home"] .hero h1 {
    max-width: 9.5ch;
    margin-bottom: 0;
  }

  body.home .hero p.lede,
  body[data-page="home"] .hero p.lede {
    max-width: 24ch;
    margin-bottom: 0;
    line-height: 1.6;
  }

  body.home .hero .actions,
  body[data-page="home"] .hero .actions {
    margin-top: 6px;
    gap: 16px;
    flex-wrap: nowrap;
    align-items: center;
  }

  body.home .hero .grid.hero-home-grid > .hero-media,
  body[data-page="home"] .hero .grid.hero-home-grid > .hero-media {
    max-width: 800px !important;
    width: 100%;
    min-height: 0;
    aspect-ratio: auto;
    justify-self: end;
    align-self: center;
  }

  body.home .hero .grid.hero-home-grid > .hero-media .hero-static,
  body[data-page="home"] .hero .grid.hero-home-grid > .hero-media .hero-static {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: left center;
  }
}

/* === 2026-03-26 hero spacing and stacked button pass === */
@media (min-width: 981px) {
  .hero {
    padding-top: 40px;
    padding-bottom: 22px;
  }

  .hero .grid {
    grid-template-columns: minmax(0, 1fr) minmax(560px, 760px);
    gap: 40px;
    align-items: center;
    min-height: 500px;
  }

  .hero .grid > div:first-child {
    align-self: center;
    justify-content: center;
    max-width: 33rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero h1 {
    margin-bottom: 30px;
  }

  .hero p.lede {
    margin-bottom: 36px;
    line-height: 1.55;
  }

  .hero .grid > div:first-child > .actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 0;
  }

  .hero-media,
  body.home .hero .grid > .hero-media,
  body[data-page="home"] .hero .grid > .hero-media,
  .hero .grid.hero-home-grid > .hero-media {
    width: 100%;
    max-width: 780px;
    min-height: 0;
    aspect-ratio: auto;
    align-self: center;
    justify-self: end;
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-media .hero-static {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  body.home .hero,
  body[data-page="home"] .hero {
    padding-top: 34px;
    padding-bottom: 16px;
  }

  body.home .hero .grid.hero-home-grid,
  body[data-page="home"] .hero .grid.hero-home-grid {
    grid-template-columns: minmax(0, 1fr) minmax(700px, 900px);
    gap: 36px;
    min-height: 540px;
    align-items: center;
  }

  body.home .hero .grid.hero-home-grid > div:first-child,
  body[data-page="home"] .hero .grid.hero-home-grid > div:first-child {
    max-width: 28rem;
    align-self: center;
    justify-content: center;
    gap: 0;
    margin-top: 0;
    padding-top: 0;
  }

  body.home .hero h1,
  body[data-page="home"] .hero h1 {
    max-width: 8.8ch;
    margin-bottom: 34px;
  }

  body.home .hero p.lede,
  body[data-page="home"] .hero p.lede {
    max-width: 18ch;
    margin-bottom: 42px;
    line-height: 1.58;
  }

  body.home .hero .grid.hero-home-grid > div:first-child > .actions,
  body[data-page="home"] .hero .grid.hero-home-grid > div:first-child > .actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 0;
  }

  body.home .hero .grid.hero-home-grid > .hero-media,
  body[data-page="home"] .hero .grid.hero-home-grid > .hero-media {
    max-width: 860px !important;
  }

  body.home .hero .grid.hero-home-grid > .hero-media .hero-static,
  body[data-page="home"] .hero .grid.hero-home-grid > .hero-media .hero-static {
    object-position: left center;
  }
}


/* === 2026-03-26 final hero button alignment + homepage text alignment === */
@media (min-width: 981px) {
  .hero .actions,
  .hero .grid > div:first-child > .actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    width: 100%;
    margin-top: 0;
  }

  .hero .actions .cta + .cta {
    margin-left: 0;
  }

  body.home .hero,
  body[data-page="home"] .hero {
    padding-top: 28px;
    padding-bottom: 14px;
  }

  body.home .hero .grid.hero-home-grid,
  body[data-page="home"] .hero .grid.hero-home-grid {
    grid-template-columns: minmax(0, 1fr) minmax(760px, 980px);
    gap: 28px;
    min-height: 0;
    align-items: start;
  }

  body.home .hero .grid.hero-home-grid > div:first-child,
  body[data-page="home"] .hero .grid.hero-home-grid > div:first-child {
    max-width: 26rem;
    align-self: start;
    justify-content: flex-start;
    gap: 0;
    margin-top: 28px;
    padding-top: 12px;
  }

  body.home .hero h1,
  body[data-page="home"] .hero h1 {
    max-width: 8.8ch;
    margin-bottom: 30px;
  }

  body.home .hero p.lede,
  body[data-page="home"] .hero p.lede {
    max-width: 18ch;
    margin-bottom: 30px;
    line-height: 1.55;
  }

  body.home .hero .grid.hero-home-grid > .hero-media,
  body[data-page="home"] .hero .grid.hero-home-grid > .hero-media {
    max-width: 920px !important;
    width: 100%;
    align-self: start;
    justify-self: end;
    margin-top: 0;
  }

  body.home .hero .grid.hero-home-grid > .hero-media .hero-static,
  body[data-page="home"] .hero .grid.hero-home-grid > .hero-media .hero-static {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: left top;
    display: block;
  }
}


/* === 2026-03-26 final topbar + hero normalization pass === */
.topbar .container {
  width: 100%;
  max-width: none;
  padding: 10px 24px;
}

.topbar-rail {
  width: 100%;
}

.topbar-rotator {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 2px 0;
  min-height: 30px;
}

.topbar-rotating-item {
  position: absolute;
  inset: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .28s ease, transform .28s ease;
  color: rgba(255,255,255,0.96);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  pointer-events: none;
  padding: 0 24px;
}

@media (min-width: 981px) {
  .hero {
    padding-top: 32px;
    padding-bottom: 16px;
  }

  .hero .grid,
  body.home .hero .grid,
  body[data-page="home"] .hero .grid,
  .hero .grid.hero-home-grid,
  body.home .hero .grid.hero-home-grid,
  body[data-page="home"] .hero .grid.hero-home-grid {
    grid-template-columns: minmax(0, 1fr) minmax(680px, 800px) !important;
    gap: 30px !important;
    min-height: 0 !important;
    align-items: start !important;
  }

  .hero .grid > div:first-child,
  body.home .hero .grid > div:first-child,
  body[data-page="home"] .hero .grid > div:first-child,
  .hero .grid.hero-home-grid > div:first-child,
  body.home .hero .grid.hero-home-grid > div:first-child,
  body[data-page="home"] .hero .grid.hero-home-grid > div:first-child {
    max-width: 25rem !important;
    align-self: start !important;
    justify-content: flex-start !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    gap: 0 !important;
  }

  body.home .hero .grid.hero-home-grid > div:first-child,
  body[data-page="home"] .hero .grid.hero-home-grid > div:first-child {
    padding-top: 18px !important;
  }

  .hero h1,
  body.home .hero h1,
  body[data-page="home"] .hero h1 {
    margin-bottom: 28px !important;
  }

  .hero p.lede,
  body.home .hero p.lede,
  body[data-page="home"] .hero p.lede {
    margin-bottom: 34px !important;
    line-height: 1.55 !important;
  }

  .hero .actions,
  .hero .grid > div:first-child > .actions,
  body.home .hero .actions,
  body[data-page="home"] .hero .actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 14px !important;
    width: 100% !important;
    margin-top: 0 !important;
  }

  .hero .actions .cta + .cta {
    margin-left: 0 !important;
  }

  .hero-media,
  body.home .hero .grid > .hero-media,
  body[data-page="home"] .hero .grid > .hero-media,
  .hero .grid.hero-home-grid > .hero-media,
  body.home .hero .grid.hero-home-grid > .hero-media,
  body[data-page="home"] .hero .grid.hero-home-grid > .hero-media {
    width: 100% !important;
    max-width: 800px !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    align-self: start !important;
    justify-self: end !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    transform: none !important;
  }

  .hero-media .hero-static,
  body.home .hero .grid.hero-home-grid > .hero-media .hero-static,
  body[data-page="home"] .hero .grid.hero-home-grid > .hero-media .hero-static {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: left top !important;
    display: block !important;
  }
}

@media (max-width: 980px) {
  .topbar .container {
    padding: 10px 12px 12px;
  }

  .topbar-rotator {
    width: 100%;
    min-height: 42px;
  }

  .topbar-rotating-item {
    font-size: 15px;
    line-height: 1.4;
    padding: 0 8px;
  }
}


/* === 2026-03-26 non-home hero title top alignment pass === */
@media (min-width: 981px) {
  body:not(.home) .hero .grid > div:first-child,
  body:not([data-page="home"]) .hero .grid > div:first-child {
    padding-top: 18px !important;
  }
}


/* === 2026-03-26 centered hero copy + full-width topbar pass === */
.topbar {
  overflow: visible;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.topbar-rotator {
  width: 100%;
  min-height: 34px;
}

.topbar-rotating-item {
  top: 50%;
  left: 50%;
  inset: auto;
  width: min(100%, 1200px);
  max-width: calc(100% - 48px);
  transform: translate(-50%, calc(-50% + 4px));
  padding: 0;
}

.topbar-rotating-item.active {
  transform: translate(-50%, -50%);
}

@media (min-width: 981px) {
  .hero {
    padding-top: 24px;
    padding-bottom: 12px;
  }

  .hero .grid,
  body.home .hero .grid,
  body[data-page="home"] .hero .grid,
  .hero .grid.hero-home-grid,
  body.home .hero .grid.hero-home-grid,
  body[data-page="home"] .hero .grid.hero-home-grid {
    align-items: center !important;
  }

  .hero .grid > div:first-child,
  body.home .hero .grid > div:first-child,
  body[data-page="home"] .hero .grid > div:first-child,
  .hero .grid.hero-home-grid > div:first-child,
  body.home .hero .grid.hero-home-grid > div:first-child,
  body[data-page="home"] .hero .grid.hero-home-grid > div:first-child {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-self: center !important;
    min-height: 100% !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .hero-media,
  body.home .hero .grid > .hero-media,
  body[data-page="home"] .hero .grid > .hero-media,
  .hero .grid.hero-home-grid > .hero-media,
  body.home .hero .grid.hero-home-grid > .hero-media,
  body[data-page="home"] .hero .grid.hero-home-grid > .hero-media {
    align-self: center !important;
  }
}

@media (max-width: 980px) {
  .topbar .container {
    min-height: 46px;
    padding: 10px 16px 12px;
  }

  .topbar-rotator {
    min-height: 42px;
  }

  .topbar-rotating-item {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    font-size: 15px;
    line-height: 1.38;
  }
}


/* === 2026-03-26 final nav + hero + topbar alignment tweaks === */
.nav {
  flex-wrap: nowrap;
}

.nav > a,
.nav .dropdown > button {
  white-space: nowrap;
}

/* Keep the primary nav on one line on desktop, especially Success Stories */
@media (min-width: 981px) {
  .nav a,
  .nav .dropdown > button {
    align-items: center;
    min-height: 0;
    line-height: 1.1;
    white-space: nowrap;
  }

  .topbar .container {
    max-width: none;
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .topbar-rail,
  .topbar-rotator {
    width: 100%;
  }

  .topbar-rotating-item {
    width: 100%;
    padding: 0 8px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    text-align: center;
    justify-content: center;
  }

  /* Home hero needs a small visual downward offset because the extra headline line height
     makes mathematically centered content read too high next to the image. */
  body.home .hero .grid > div:first-child,
  body[data-page="home"] .hero .grid > div:first-child,
  .hero .grid.hero-home-grid > div:first-child {
    padding-top: 22px;
  }
}

@media (max-width: 980px) {
  .topbar .container {
    max-width: none;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .topbar-rail,
  .topbar-rotator {
    width: 100%;
  }

  .topbar-rotating-item {
    width: 100%;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    padding: 0 4px;
  }
}

/* === 2026-03-26 final topbar vertical centering + nav arrow spacing pass === */
@media (min-width: 981px) {
  .topbar {
    min-height: 56px;
    display: flex;
    align-items: center;
  }

  .topbar .container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    min-height: 56px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .topbar-rail {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
  }

  .topbar-rotator {
    position: relative;
    width: 100% !important;
    min-height: 56px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto;
    padding: 0 !important;
  }

  .topbar-rotating-item {
    position: absolute !important;
    inset: 0 !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0 24px !important;
    transform: translateY(4px) !important;
  }

  .topbar-rotating-item.active {
    transform: translateY(0) !important;
  }

  .header .container {
    column-gap: 26px;
  }

  .nav {
    column-gap: 18px !important;
  }

  .nav > a:not(.cta),
  .nav > .dropdown > button {
    min-height: 44px;
    padding-left: 8px !important;
    padding-right: 8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .nav > .dropdown > button {
    position: static !important;
    gap: 8px;
  }

  .nav .dropdown > button > span[aria-hidden="true"] {
    position: static !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    order: -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    margin: 0;
    font-size: 0.85em;
    line-height: 1;
  }

  .nav > a.cta,
  .header .nav > a.cta {
    margin-left: 8px;
  }
}

/* === 2026-03-26 final topbar height + nav spacing rollback pass === */
@media (min-width: 981px) {
  .topbar {
    min-height: 42px !important;
    display: flex;
    align-items: center;
  }

  .topbar .container,
  .topbar-rail,
  .topbar-rotator {
    min-height: 42px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .topbar-rotating-item,
  .topbar-rotating-item.active {
    inset: 0 !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0 18px !important;
    transform: none !important;
    line-height: 1.15 !important;
  }

  .header {
    top: 42px !important;
  }

  .header .container {
    justify-content: flex-start !important;
    column-gap: 10px !important;
  }

  .brand {
    margin-right: 2px !important;
  }

  .nav {
    margin-left: 0 !important;
    flex: 1 1 auto;
    justify-content: space-between !important;
    column-gap: 16px !important;
  }

  .nav > .dropdown > button {
    gap: 6px !important;
    padding-left: 4px !important;
    padding-right: 8px !important;
  }

  .nav .dropdown > button > span[aria-hidden="true"] {
    width: 10px;
    margin-right: -1px;
  }

  .nav > a.cta {
    margin-left: 12px !important;
  }
}

/* === 2026-03-26 home hero re-centering after nav/topbar rollback === */
@media (min-width: 981px) {
  /* Keep the shorter blue bar, but ensure the rotating copy sits optically centered. */
  .topbar-rotator,
  .topbar-rotating-item,
  .topbar-rotating-item.active {
    line-height: 1 !important;
  }

  /* The shorter top bar/header rollback pulled the homepage copy up visually.
     Nudge only the home hero copy block down without changing the other pages. */
  body.home .hero .grid.hero-home-grid > div:first-child,
  body[data-page="home"] .hero .grid.hero-home-grid > div:first-child,
  body.home .hero .grid > div:first-child,
  body[data-page="home"] .hero .grid > div:first-child {
    justify-content: center !important;
    padding-top: 20px !important;
    padding-bottom: 0 !important;
    align-self: center !important;
  }
}

/* === 2026-03-26 mobile topbar centering fix === */
@media (max-width: 980px) {
  .topbar,
  .topbar .container,
  .topbar-rail,
  .topbar-rotator {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .topbar-rotator {
    position: relative !important;
    min-height: 38px !important;
  }

  .topbar-rotating-item,
  .topbar-rotating-item.active {
    position: absolute !important;
    inset: 0 !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    transform: none !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }
}

/* === 2026-03-26 final menu spacing + button text alignment pass === */
@media (min-width: 981px) {
  /* Best fix for menu rhythm: use a consistent flex gap for nav items,
     keep the CTA pushed right, and avoid space-between stretching. */
  .header .container {
    justify-content: flex-start !important;
    column-gap: 10px !important;
  }

  .nav {
    margin-left: 0 !important;
    flex: 1 1 auto;
    justify-content: flex-start !important;
    column-gap: 26px !important;
  }

  .nav > a.cta,
  .header .nav > a.cta {
    margin-left: auto !important;
  }
}

/* Left-align button text sitewide while keeping iconless pill buttons tidy. */
.cta,
button.cta,
.hero .actions .cta,
.split-cta-band .actions .cta,
.candidate-cta-band .actions .cta,
.cta-band .actions .cta,
.card .actions .cta,
.header .nav > a.cta,
.nav > a.cta {
  justify-content: flex-start !important;
  text-align: left !important;
}

/* === 2026-03-26 final desktop nav rhythm pass === */
@media (min-width: 981px) {
  /* Use one consistent horizontal rhythm between menu items.
     Let only the CTA break the rhythm by pushing to the far right. */
  .header .container {
    display: flex !important;
    align-items: center !important;
    gap: 22px !important;
  }

  .nav {
    display: flex !important;
    align-items: center !important;
    gap: 34px !important;
    flex: 1 1 auto !important;
    width: 100% !important;
    margin-left: 0 !important;
  }

  .nav > .dropdown,
  .nav > a:not(.cta) {
    width: auto !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
  }

  .nav > a:not(.cta),
  .nav > .dropdown > button {
    width: auto !important;
    min-height: 44px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    white-space: nowrap !important;
    line-height: 1.1 !important;
  }

  .nav > .dropdown {
    display: inline-flex !important;
    align-items: center !important;
  }

  .nav > .dropdown > button {
    gap: 8px !important;
    padding-right: 0 !important;
  }

  .nav .dropdown > button > span[aria-hidden="true"] {
    position: static !important;
    right: auto !important;
    order: -1 !important;
    transform: none !important;
    margin: 0 !important;
  }

  .nav > a.cta,
  .header .nav > a.cta {
    margin-left: auto !important;
    justify-content: flex-start !important;
  }
}

/* === 2026-03-26 desktop header CTA alignment with hero image === */
@media (min-width: 981px) {
  .nav > a.cta,
  .header .nav > a.cta {
    margin-left: auto !important;
    margin-right: 32px !important;
  }
}



/* Team page: larger photo, sharper edges, narrower info rail */
.team-page .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.team-page .team-showcase-clean {
  grid-template-columns: minmax(0, 1.34fr) minmax(220px, 0.66fr);
  gap: 24px;
  align-items: start;
}

.team-page .team-showcase-clean__media {
  max-width: none;
  width: 100%;
}

.team-page .team-hotspot-photo {
  aspect-ratio: 5 / 3;
}

.team-page .team-showcase-clean__image {
  border-radius: 0;
}

.team-page .team-showcase-clean__info {
  height: auto;
  max-height: none;
}

/* Use a fixed visual height on desktop that tracks the larger photo treatment */
@media (min-width: 981px) {
  .team-page .team-showcase-clean {
    grid-template-columns: minmax(0, 1.38fr) minmax(210px, 0.62fr);
    gap: 22px;
  }

  .team-page .team-showcase-clean__info {
    height: clamp(360px, 31vw, 470px);
    max-height: clamp(360px, 31vw, 470px);
  }
}

.team-page .team-person-row {
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 10px;
  padding-right: 6px;
}

.team-page .team-linkedin-row {
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  justify-content: center;
  border-radius: 10px;
  font-size: 0;
  line-height: 0;
}

.team-page .team-linkedin-row::before {
  content: "in";
  width: 20px;
  height: 20px;
  border-radius: 5px;
  font-size: 12px;
}

@media (max-width: 980px) {
  .team-page .team-showcase-clean {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-page .team-showcase-clean__image {
    border-radius: 0;
  }
}


/* Home: split practices from engagement models */
body.home .practice-grid {
  display: grid;
  gap: var(--space-24);
}

body.home .practice-grid-top {
  align-items: stretch;
}

body.home .practice-grid-top > .card,
body.home .practice-grid-bottom {
  display: flex;
  flex-direction: column;
}

body.home .practice-grid-top > .card .link,
body.home .practice-grid-bottom .link {
  margin-top: auto;
}

body.home .card-alt {
  background: #fff;
  border-color: rgba(2, 6, 23, 0.06);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.05);
}

@media (min-width: 981px) {
  body.home .practice-grid-bottom {
    width: 100%;
  }
}


/* Home: engagement card eyebrow */
body.home .card-alt .card-eyebrow {
  margin: 6px 0 8px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 700;
}


/* Home: engagement card kicker row */
body.home .card-alt .card-kicker-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

body.home .card-alt .card-kicker-row .icon {
  margin-bottom: 0;
  flex: 0 0 auto;
}

body.home .card-alt .card-eyebrow {
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink-muted);
  font-weight: 700;
}





body.home section[aria-label="Solutions overview"] .grid-3 > .card:not(.card-alt) {
  position: relative;
  overflow: hidden;
  padding-left: calc(var(--space-24) + 12px);
}

body.home section[aria-label="Solutions overview"] .grid-3 > .card:not(.card-alt)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 6px;
  border-radius: 0 999px 999px 0;
  background: var(--blue);
}

body.home section[aria-label="Solutions overview"] .grid-3 > .card.card-alt {
  position: relative;
  overflow: hidden;
  padding-left: calc(var(--space-24) + 12px);
}

body.home section[aria-label="Solutions overview"] .grid-3 > .card.card-alt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 6px;
  border-radius: 0 999px 999px 0;
  background: #d9b221;
}



.card.accent-blue,
.card.accent-gold {
  position: relative;
  overflow: hidden;
  padding-left: calc(var(--space-24) + 12px);
}

.card.accent-blue::before,
.card.accent-gold::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 6px;
  border-radius: 0 999px 999px 0;
}

.card.accent-blue::before {
  background: var(--blue);
}

.card.accent-gold::before {
  background: #d9b221;
}



.jobs-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 28px auto 0;
  padding: 12px 0 36px;
  text-align: center;
}

.jobs-fallback-copy {
  margin: 0;
  color: rgba(35,31,32,0.72);
  max-width: 48ch;
}

.jobs-fallback .cta {
  min-width: 200px;
  justify-content: flex-start;
  margin-bottom: 10px;
}

@media (max-width: 740px) {
  .jobs-fallback {
    margin-top: 18px;
    padding-bottom: 28px;
  }
}


.jobs-fallback .jobs-fallback-btn {
  justify-content: center;
  text-align: center;
}
