:root {
  --ink: #11212b;
  --ink-soft: #34444f;
  --muted: #64727d;
  --surface: #ffffff;
  --surface-alt: #eef5ff;
  --surface-strong: #dfeaff;
  --line: #d4dff2;
  --brand: #1057ff;
  --brand-deep: #082864;
  --brand-bright: #2876ff;
  --accent: #d4a300;
  --gold: #f2c400;
  --nav-height: 78px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(17, 33, 43, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
}

body.menu-open {
  overflow: hidden;
}

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

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

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

p {
  color: var(--ink-soft);
  line-height: 1.65;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 14px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(212, 225, 223, 0.84);
  backdrop-filter: blur(18px);
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
  min-height: 36px;
  padding: 7px 20px;
  color: #fff;
  background: linear-gradient(90deg, var(--brand-deep), #143b8c 58%, var(--gold));
  font-size: 0.84rem;
}

.top-strip p {
  margin: 0;
  color: #fff;
}

.top-strip a {
  font-weight: 700;
  white-space: nowrap;
}

.top-strip span {
  font-weight: 800;
  white-space: nowrap;
}

.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: var(--nav-height);
  width: min(1220px, calc(100% - 40px));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-image img {
  width: clamp(154px, 18vw, 236px);
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-bright));
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 109, 119, 0.22);
}

.brand-text {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.05rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-weight: 750;
  font-size: 0.94rem;
}

.nav-links a {
  color: var(--ink-soft);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--brand);
}

.nav-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 14px 28px rgba(16, 87, 255, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand-deep);
}

.btn-secondary {
  color: var(--brand-deep);
  background: #fff;
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--brand-bright);
  box-shadow: 0 14px 28px rgba(17, 33, 43, 0.1);
}

.btn-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.btn-full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(700px, calc(100svh - 114px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 17, 48, 0.94) 0%, rgba(6, 17, 48, 0.75) 42%, rgba(6, 17, 48, 0.16) 72%),
    linear-gradient(0deg, rgba(6, 17, 48, 0.42), rgba(6, 17, 48, 0.02));
}

.hero-content {
  padding-block: 68px;
}

.hero-content > * {
  width: min(680px, 100%);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.04;
  font-weight: 900;
}

h1 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(2.45rem, 6.5vw, 5.2rem);
  max-width: 760px;
}

.hero-copy {
  margin-bottom: 28px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.metric-band {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.metric-grid > div {
  display: grid;
  gap: 6px;
  min-height: 126px;
  padding: 24px;
  background: var(--surface);
}

.metric-grid strong {
  color: var(--brand-deep);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1;
}

.metric-grid span {
  color: var(--muted);
  font-weight: 750;
}

.section {
  padding-block: clamp(64px, 9vw, 112px);
}

.section-muted {
  background: var(--surface-alt);
}

.section-heading {
  width: min(780px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.section-copy h2,
.cta-section h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-heading p,
.section-copy p {
  font-size: 1.04rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(36px, 6vw, 70px);
  align-items: center;
}

.split-wide {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.solution-list {
  display: grid;
  gap: 14px;
}

.solution-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.solution-item span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--brand);
  border-radius: 8px;
  font-weight: 900;
}

.solution-item h3,
.service-card h3,
.path-card h3,
.insight-card h3,
.benefit-item h3,
.job-card h3,
.process-step h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.22rem;
}

.solution-item p,
.service-card p,
.path-card p,
.insight-card p,
.benefit-item p,
.job-card p,
.process-step p {
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-grid-expanded {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.insight-card,
.benefit-item,
.process-step {
  min-height: 240px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--brand-deep);
  background: #dce8ff;
  border-radius: 8px;
  font-size: 1.35rem;
  font-weight: 900;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.icon-clinical::before {
  width: 24px;
  height: 8px;
  border-radius: 999px;
}

.icon-clinical::after {
  width: 8px;
  height: 24px;
  border-radius: 999px;
}

.icon-workforce::before {
  width: 22px;
  height: 22px;
  border: 3px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  background: transparent;
}

.icon-workforce::after {
  width: 18px;
  height: 3px;
  right: 10px;
  bottom: 12px;
  transform: rotate(42deg);
  border-radius: 999px;
}

.icon-support::before {
  width: 24px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 6px;
  background: transparent;
}

.icon-support::after {
  width: 12px;
  height: 3px;
  top: 13px;
  border-radius: 999px;
}

.icon-recruiting::before {
  width: 17px;
  height: 17px;
  top: 10px;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: transparent;
}

.icon-recruiting::after {
  width: 26px;
  height: 13px;
  bottom: 9px;
  border: 3px solid currentColor;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom: 0;
  background: transparent;
}

.icon-project::before {
  width: 23px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 5px;
  background: transparent;
}

.icon-project::after {
  width: 17px;
  height: 3px;
  transform: translateY(-1px);
  box-shadow: 0 7px 0 currentColor;
  border-radius: 999px;
}

.icon-admin::before {
  width: 22px;
  height: 26px;
  border: 3px solid currentColor;
  border-radius: 5px;
  background: transparent;
}

.icon-admin::after {
  width: 12px;
  height: 3px;
  top: 14px;
  box-shadow: 0 7px 0 currentColor;
  border-radius: 999px;
}

.image-panel {
  position: relative;
}

.image-panel img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 34%;
  height: 34%;
  background: var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  font-weight: 760;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.36em;
  width: 16px;
  height: 16px;
  background:
    linear-gradient(135deg, transparent 48%, #fff 48% 58%, transparent 58%),
    var(--brand);
  border-radius: 50%;
}

.paths-section {
  background: linear-gradient(180deg, #fff 0%, #f8fbfa 100%);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.path-card {
  position: relative;
  min-height: 330px;
  padding: clamp(28px, 4vw, 42px);
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.path-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 190px;
  height: 190px;
  background: linear-gradient(135deg, rgba(0, 167, 165, 0), rgba(0, 167, 165, 0.18));
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.path-card-employer {
  background: #f2fbfa;
}

.path-card-talent {
  background: #fff7ed;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--brand-deep);
  font-weight: 900;
  border-bottom: 2px solid var(--accent);
}

.insight-grid,
.benefit-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.insight-card span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-section {
  padding-block: clamp(56px, 8vw, 90px);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(8, 40, 100, 0.98), rgba(16, 87, 255, 0.88)),
    radial-gradient(circle at top right, rgba(242, 196, 0, 0.34), transparent 30%);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.cta-section h2 {
  color: #fff;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
}

.contact-link {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: #fff;
  font-weight: 800;
}

.contact-link span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  padding-block: 48px 24px;
  background: #0d1b22;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(180px, 0.5fr));
  gap: 32px;
}

.footer-grid p,
.footer-grid a,
.footer-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.footer-grid div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-brand {
  margin-bottom: 8px;
}

.footer-brand img {
  padding: 8px 12px;
  background: #fff;
  border-radius: var(--radius);
}

.footer-brand .brand-text strong,
.footer-brand .brand-text small {
  color: #fff;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}

.hero-careers .hero-media img {
  object-position: 52% center;
}

.role-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.role-summary span {
  padding: 10px 12px;
  color: var(--brand-deep);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 850;
}

.career-ad-panel {
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.career-ad-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.careers-metrics .metric-grid strong {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

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

.benefit-item {
  min-height: 190px;
}

.role-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.filter-button {
  min-height: 42px;
  padding: 0 16px;
  color: var(--brand-deep);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover,
.filter-button:focus-visible {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.job-list {
  display: grid;
  gap: 14px;
}

.job-detail-card {
  padding: clamp(24px, 4vw, 42px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(8, 40, 100, 0.08);
}

.job-detail-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  margin-bottom: 24px;
}

.job-detail-header h3 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.job-meta-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 28px;
  padding: 20px;
  background: var(--surface-alt);
  border-radius: var(--radius);
}

.job-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.job-detail-grid h4 {
  margin: 0 0 12px;
  color: var(--brand-deep);
  font-size: 1.04rem;
}

.plain-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.job-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.7fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.job-card.is-hidden {
  display: none;
}

.job-type {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.job-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.job-meta div {
  display: grid;
  gap: 3px;
}

.job-meta dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.job-meta dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

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

.process-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
  font-weight: 900;
}

.page-hero {
  padding-block: clamp(70px, 10vw, 126px);
  background:
    linear-gradient(120deg, #eef5ff 0%, #ffffff 58%),
    radial-gradient(circle at top right, rgba(16, 87, 255, 0.15), transparent 34%);
}

.page-hero h1 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.page-hero .hero-copy {
  color: var(--ink-soft);
}

.contact-location-card {
  display: grid;
  gap: 10px;
  padding: clamp(28px, 4vw, 42px);
  background: var(--brand-deep);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-location-card span,
.contact-location-card small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

.contact-location-card strong {
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.1;
}

.contact-location-card p {
  margin-bottom: 16px;
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 50px rgba(8, 40, 100, 0.08);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--brand-deep);
  font-size: 0.86rem;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(16, 87, 255, 0.18);
  border-color: var(--brand);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--brand-deep);
  font-weight: 750;
}

@media (max-width: 1080px) {
  .navbar {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-links.is-open,
  .nav-actions.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .nav-links.is-open {
    gap: 0;
    padding-top: 8px;
  }

  .nav-links.is-open a {
    padding: 16px 0;
    border-top: 1px solid var(--line);
  }

  .nav-actions.is-open {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-bottom: 18px;
  }

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

  .job-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .top-strip {
    display: none;
  }

  .container,
  .navbar {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: 74svh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 17, 48, 0.88), rgba(6, 17, 48, 0.5)),
      linear-gradient(0deg, rgba(6, 17, 48, 0.48), rgba(6, 17, 48, 0.08));
  }

  .hero-content {
    padding-block: 54px;
  }

  .metric-grid,
  .split,
  .split-wide,
  .path-grid,
  .insight-grid,
  .benefit-grid,
  .contact-layout,
  .job-detail-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    gap: 1px;
  }

  .metric-grid > div {
    min-height: 104px;
    padding: 20px;
  }

  .service-grid,
  .service-grid-expanded,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .job-detail-header {
    display: grid;
  }

  .job-meta-wide {
    grid-template-columns: 1fr;
  }

  .image-panel::after {
    right: -8px;
    bottom: -8px;
  }
}

@media (max-width: 540px) {
  .brand-image img {
    width: 156px;
    height: 44px;
  }

  .brand-text small {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .nav-actions.is-open {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.2rem, 13vw, 3.4rem);
  }

  .solution-item {
    grid-template-columns: 1fr;
  }

  .job-meta {
    grid-template-columns: 1fr;
  }
}
