:root {
  --ink: #081a2e;
  --ink-raised: #102a43;
  --ink-soft: #294258;
  --slate: #5d7082;
  --muted: #7b8b9a;
  --blue: #0b45f5;
  --blue-dark: #0736c2;
  --cyan: #18c7e8;
  --sky: #dff4fb;
  --wash: #edf3f8;
  --paper: #f7f9fb;
  --white: #ffffff;
  --line: #cad7e2;
  --line-dark: rgba(255, 255, 255, .15);
  --heading: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1240px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: -9999px;
  padding: 11px 17px;
  color: var(--white);
  background: var(--blue);
  border-radius: 4px;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 84px;
  background: rgba(247, 249, 251, .96);
  border-bottom: 1px solid rgba(8, 26, 46, .1);
  transition: height .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.site-header.scrolled {
  height: 72px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 10px 35px rgba(8, 26, 46, .08);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
  width: 140px;
  height: 44px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 140px;
  height: auto;
  transform: scale(1.12);
  transform-origin: center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: #3d5266;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  max-width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 5px;
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(11, 69, 245, .22);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 12px;
}

.button-bright {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button-bright:hover,
.button-bright:focus-visible {
  color: var(--ink);
  background: var(--sky);
  border-color: var(--sky);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.button-ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .4);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border-color: var(--white);
  box-shadow: none;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 176px 0 0;
  color: var(--white);
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue) 0 62%, var(--cyan) 62% 78%, #baf44a 78% 100%);
}

.hero-grid-mark {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent 0, #000 58%, #000 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(480px, .94fr);
  align-items: center;
  gap: 76px;
  padding-bottom: 80px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--blue);
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.eyebrow > span {
  width: 32px;
  height: 2px;
  background: currentColor;
}

.eyebrow-light {
  color: #7cdff0;
}

.hero h1,
.section-heading h2,
.clarity-section h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--heading);
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: 1.03;
}

.hero h1 {
  max-width: 710px;
  font-size: clamp(52px, 5.4vw, 76px);
}

.hero-lede {
  max-width: 660px;
  margin: 29px 0 33px;
  color: #b9c7d4;
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 24px 0 0;
  color: #8ea2b5;
  font-size: 13px;
}

.hero-note span {
  color: var(--cyan);
  font-size: 18px;
}

.work-map {
  position: relative;
  overflow: hidden;
  background: rgba(16, 42, 67, .88);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .26);
}

.work-map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(var(--blue), var(--cyan));
}

.work-map-head {
  min-height: 135px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 28px 28px 25px 34px;
  border-bottom: 1px solid var(--line-dark);
}

.map-kicker {
  display: block;
  margin-bottom: 10px;
  color: #7cdff0;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.work-map-head h2 {
  max-width: 360px;
  margin: 0;
  font-family: var(--heading);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.03em;
}

.map-mark {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 700;
}

.map-mark span {
  color: var(--cyan);
}

.work-lane {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 15px 25px 15px 34px;
  border-bottom: 1px solid var(--line-dark);
}

.lane-index {
  color: #6f879d;
  font-family: var(--heading);
  font-size: 10px;
  font-weight: 700;
}

.work-lane > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.work-lane strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.work-lane > div span {
  margin-top: 3px;
  color: #91a5b8;
  font-size: 11px;
  line-height: 1.45;
}

.lane-action {
  padding: 6px 8px;
  color: #a8dff0;
  background: rgba(24, 199, 232, .08);
  border: 1px solid rgba(24, 199, 232, .18);
  border-radius: 3px;
  font-size: 9px;
  font-weight: 600;
  white-space: nowrap;
}

.work-map-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 17px 25px 17px 34px;
}

.work-map-foot span {
  color: #91a5b8;
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.work-map-foot span + span {
  border-left: 1px solid var(--line-dark);
}

.audience-rail {
  position: relative;
  z-index: 2;
  min-height: 98px;
  display: grid;
  grid-template-columns: 105px 1fr;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line-dark);
}

.audience-rail > span {
  color: #657e95;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.audience-rail > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.audience-rail strong {
  padding: 7px 25px;
  color: #c3d0dc;
  border-left: 1px solid var(--line-dark);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 600;
}

.section {
  padding: 126px 0;
}

.section-heading h2,
.clarity-section h2,
.contact-copy h2 {
  font-size: clamp(42px, 4.6vw, 62px);
}

.section-heading > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.72;
}

.fit-section {
  background: var(--white);
}

.fit-layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 110px;
}

.sticky-heading {
  position: sticky;
  top: 112px;
}

.sticky-heading h2 {
  max-width: 500px;
}

.sticky-heading > p:not(.eyebrow) {
  max-width: 500px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding-bottom: 5px;
  color: var(--blue);
  border-bottom: 1px solid rgba(11, 69, 245, .3);
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 700;
}

.arrow-link span,
.service-row > a span,
.footer-contact a span {
  transition: transform .2s ease;
}

.arrow-link:hover span,
.arrow-link:focus-visible span,
.service-row > a:hover span,
.service-row > a:focus-visible span,
.footer-contact a:hover span,
.footer-contact a:focus-visible span {
  transform: translate(3px, -3px);
}

.fit-list {
  border-top: 1px solid var(--line);
}

.fit-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
  padding: 42px 0 46px;
  border-bottom: 1px solid var(--line);
}

.fit-number {
  padding-top: 7px;
  color: var(--blue);
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 700;
}

.fit-label,
.service-title > span {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.fit-list h3 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(27px, 2.5vw, 36px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.04em;
}

.fit-list article p:not(.fit-label) {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.7;
}

.fit-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.fit-list li {
  padding: 7px 10px;
  color: var(--ink-soft);
  background: var(--wash);
  border: 1px solid #dce6ee;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 500;
}

.services-section {
  background: var(--wash);
  border-block: 1px solid var(--line);
}

.services-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  align-items: end;
  gap: 90px;
}

.services-heading h2 {
  max-width: 760px;
}

.services-heading > p {
  margin-bottom: 6px !important;
}

.service-index {
  margin-top: 72px;
  border-top: 2px solid var(--ink);
}

.service-row {
  display: grid;
  grid-template-columns: 46px minmax(175px, .8fr) minmax(260px, 1.25fr) minmax(150px, .7fr) minmax(150px, .72fr);
  align-items: start;
  gap: 24px;
  padding: 31px 0 34px;
  border-bottom: 1px solid #bfcdda;
  transition: background-color .2s ease, padding-left .2s ease, padding-right .2s ease;
}

.service-row:hover {
  padding-right: 18px;
  padding-left: 18px;
  background: rgba(255, 255, 255, .72);
}

.service-number {
  padding-top: 4px;
  color: var(--blue);
  font-family: var(--heading);
  font-size: 10px;
  font-weight: 700;
}

.service-title h3 {
  margin: 0;
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.025em;
}

.service-row > p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.65;
}

.service-row ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-row li {
  position: relative;
  padding-left: 14px;
  color: #405669;
  font-size: 12px;
  line-height: 1.65;
}

.service-row li::before {
  content: "";
  position: absolute;
  top: .7em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
}

.service-row > a {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 3px;
  color: var(--blue);
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.clarity-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: var(--white);
  background: var(--blue);
}

.clarity-section::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -80px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255, 255, 255, .025), 0 0 0 130px rgba(255, 255, 255, .02);
}

.clarity-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  align-items: end;
  gap: 110px;
}

.clarity-section h2 {
  max-width: 720px;
  color: var(--white);
}

.clarity-questions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .35);
  border-left: 1px solid rgba(255, 255, 255, .35);
}

.clarity-questions div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, .35);
  border-bottom: 1px solid rgba(255, 255, 255, .35);
}

.clarity-questions span {
  color: #93e6f4;
  font-size: 9px;
  font-weight: 700;
}

.clarity-questions strong {
  font-family: var(--heading);
  font-size: 15px;
  font-weight: 600;
}

.approach-section {
  color: var(--white);
  background: var(--ink);
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 110px;
}

.approach-heading {
  position: sticky;
  top: 112px;
}

.approach-heading h2 {
  color: var(--white);
}

.approach-heading > p:not(.eyebrow) {
  color: #97aabd;
}

.scope-note {
  margin-top: 42px;
  padding: 22px 24px;
  border: 1px solid rgba(124, 223, 240, .3);
  border-left: 3px solid var(--cyan);
}

.scope-note > span {
  color: #7cdff0;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.scope-note p {
  margin: 9px 0 0;
  color: #b9c7d4;
  font-size: 13px;
  line-height: 1.65;
}

.approach-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.approach-steps li {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 25px;
  padding: 38px 0 42px;
  border-bottom: 1px solid var(--line-dark);
}

.step-number {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #7cdff0;
  border: 1px solid rgba(124, 223, 240, .35);
  border-radius: 50%;
  font-family: var(--heading);
  font-size: 10px;
  font-weight: 700;
}

.approach-steps h3 {
  margin: 0;
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.03em;
}

.approach-steps p {
  max-width: 650px;
  margin: 11px 0 0;
  color: #97aabd;
  font-size: 15px;
  line-height: 1.7;
}

.standards-section {
  background: var(--white);
}

.standards-heading {
  max-width: 850px;
}

.standards-heading > p:not(.eyebrow) {
  max-width: 720px;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 70px;
  border-top: 2px solid var(--ink);
}

.standards-grid article {
  min-width: 0;
  min-height: 330px;
  padding: 30px 30px 36px 0;
  border-bottom: 1px solid var(--line);
}

.standards-grid article + article {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.standard-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 1px solid var(--blue);
  font-family: var(--heading);
  font-size: 11px;
  font-weight: 700;
}

.standards-grid h3 {
  margin: 92px 0 0;
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.025em;
}

.standards-grid p {
  margin: 13px 0 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.7;
}

.faq-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 110px;
}

.faq-heading {
  position: sticky;
  top: 112px;
}

.faq-heading > p:not(.eyebrow) {
  max-width: 480px;
}

.faq-heading a {
  color: var(--blue);
  font-weight: 600;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 27px 0;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  position: relative;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

summary span::before,
summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--blue);
  transform: translate(-50%, -50%);
}

summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .2s ease;
}

details[open] summary span::after {
  transform: translate(-50%, -50%);
}

details p {
  max-width: 720px;
  margin: -5px 55px 28px 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.72;
}

.contact-section {
  padding: 0 0 80px;
  background: var(--paper);
}

.contact-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, .75fr);
  align-items: end;
  gap: 90px;
  padding: 68px 72px;
  color: var(--white);
  background: var(--blue);
}

.contact-card::before,
.contact-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.contact-card::before {
  top: 0;
  right: 0;
  width: 43%;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, .18);
  background-image: linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
  background-size: 56px 56px;
}

.contact-card::after {
  top: 50%;
  right: 13%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 34px rgba(255, 255, 255, .035), 0 0 0 68px rgba(255, 255, 255, .025);
}

.contact-copy,
.contact-action {
  position: relative;
  z-index: 2;
}

.contact-copy h2 {
  max-width: 800px;
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 23px 0 0;
  color: #d9e4ff;
  font-size: 17px;
  line-height: 1.7;
}

.contact-action {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 18px;
}

.contact-action > a:not(.button) {
  color: #d9e4ff;
  font-size: 13px;
  font-weight: 600;
}

.site-footer {
  padding: 74px 0 25px;
  color: var(--white);
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr .7fr .7fr 1fr;
  gap: 60px;
  padding-bottom: 62px;
}

.brand-footer {
  width: 150px;
  background: var(--white);
  border-radius: 3px;
}

.brand-footer img {
  width: 150px;
}

.footer-brand p {
  max-width: 390px;
  margin: 22px 0 0;
  color: #8fa3b6;
  font-size: 14px;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-nav strong,
.footer-contact strong {
  margin-bottom: 6px;
  color: var(--white);
  font-family: var(--heading);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.footer-nav a {
  color: #94a8ba;
  font-size: 13px;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--white);
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #7cdff0;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 23px;
  color: #688096;
  border-top: 1px solid var(--line-dark);
  font-size: 11px;
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 48px, 1020px);
  }

  .desktop-nav {
    gap: 20px;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(410px, .9fr);
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(50px, 5.7vw, 66px);
  }

  .fit-layout,
  .approach-layout,
  .faq-layout {
    gap: 70px;
  }

  .service-row {
    grid-template-columns: 38px minmax(160px, .8fr) minmax(230px, 1.2fr) minmax(135px, .65fr);
  }

  .service-row > a {
    grid-column: 2 / -1;
    justify-self: start;
  }

  .clarity-grid {
    gap: 65px;
  }

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

  .standards-grid article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .standards-grid article {
    min-height: 290px;
  }

  .standards-grid h3 {
    margin-top: 65px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: calc(100vw - 36px);
  }

  .site-header,
  .site-header.scrolled {
    height: 70px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .menu-button span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: transform .2s ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    inset: 70px 0 auto;
    display: flex;
    visibility: hidden;
    pointer-events: none;
    flex-direction: column;
    padding: 10px 18px 20px;
    opacity: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 35px rgba(8, 26, 46, .12);
    transform: translateY(-14px);
    transition: opacity .2s ease, transform .2s ease, visibility 0s .2s;
  }

  .mobile-nav.open {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .mobile-nav a {
    padding: 12px 4px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-family: var(--heading);
    font-size: 15px;
    font-weight: 600;
  }

  .mobile-nav a:last-child {
    margin-top: 13px;
    padding: 14px;
    color: var(--white);
    background: var(--blue);
    border: 0;
    border-radius: 4px;
    text-align: center;
  }

  .hero {
    padding-top: 128px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 60px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(48px, 9vw, 68px);
  }

  .work-map {
    width: min(100%, 680px);
  }

  .audience-rail {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0 28px;
  }

  .audience-rail > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-rail strong {
    padding: 7px 16px;
  }

  .audience-rail strong:nth-child(odd) {
    border-left: 0;
  }

  .section {
    padding: 94px 0;
  }

  .fit-layout,
  .services-heading,
  .approach-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .fit-layout,
  .approach-layout,
  .faq-layout {
    gap: 60px;
  }

  .services-heading {
    gap: 25px;
  }

  .sticky-heading,
  .approach-heading,
  .faq-heading {
    position: static;
  }

  .service-row {
    grid-template-columns: 38px minmax(160px, .7fr) minmax(0, 1.3fr);
  }

  .service-row ul {
    grid-column: 2;
  }

  .service-row > a {
    grid-column: 3;
    justify-self: end;
  }

  .clarity-grid {
    grid-template-columns: 1fr;
  }

  .clarity-questions {
    width: min(100%, 660px);
  }

  .contact-card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 38px;
    padding: 58px 48px;
  }

  .contact-card::before {
    width: 35%;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 35px;
  }

  .footer-contact {
    grid-column: 1 / -1;
    padding-top: 25px;
    border-top: 1px solid var(--line-dark);
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .brand,
  .brand img {
    width: 124px;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-grid {
    gap: 44px;
    padding-bottom: 52px;
  }

  .hero h1 {
    font-size: 43px;
    line-height: 1.05;
  }

  .hero-lede {
    font-size: 16px;
  }

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

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

  .work-map-head {
    min-height: 115px;
    padding: 22px 20px 20px 25px;
  }

  .work-map-head h2 {
    font-size: 20px;
  }

  .map-mark {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .work-lane {
    grid-template-columns: 27px minmax(0, 1fr);
    gap: 9px;
    padding: 14px 17px 14px 25px;
  }

  .lane-action {
    grid-column: 2;
    justify-self: start;
  }

  .work-map-foot {
    padding: 15px 10px 15px 18px;
  }

  .work-map-foot span {
    font-size: 8px;
  }

  .audience-rail > div {
    grid-template-columns: 1fr;
  }

  .audience-rail strong,
  .audience-rail strong:nth-child(odd) {
    padding: 7px 0;
    border-left: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .clarity-section h2,
  .contact-copy h2 {
    font-size: 38px;
  }

  .section-heading > p:not(.eyebrow),
  .contact-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .fit-list article {
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 12px;
    padding: 32px 0 35px;
  }

  .fit-list h3 {
    font-size: 27px;
  }

  .service-index {
    margin-top: 48px;
  }

  .service-row {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    padding: 27px 0 30px;
  }

  .service-row:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .service-title,
  .service-row > p,
  .service-row ul,
  .service-row > a {
    grid-column: 2;
  }

  .service-row > a {
    justify-self: start;
  }

  .clarity-section {
    padding: 75px 0;
  }

  .clarity-grid {
    gap: 45px;
  }

  .clarity-questions {
    grid-template-columns: 1fr;
  }

  .clarity-questions div {
    min-height: 90px;
  }

  .approach-steps li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 13px;
    padding: 30px 0 34px;
  }

  .step-number {
    width: 40px;
    height: 40px;
  }

  .approach-steps h3 {
    font-size: 20px;
  }

  .standards-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .standards-grid article,
  .standards-grid article + article,
  .standards-grid article:nth-child(3) {
    min-height: auto;
    padding: 28px 0 32px;
    border-left: 0;
  }

  .standards-grid h3 {
    margin-top: 35px;
  }

  summary {
    font-size: 14px;
  }

  details p {
    margin-right: 0;
    font-size: 14px;
  }

  .contact-section {
    padding-bottom: 28px;
  }

  .contact-card {
    min-height: 500px;
    gap: 34px;
    padding: 44px 25px;
  }

  .contact-card::before {
    width: 52%;
  }

  .contact-card::after {
    right: -20%;
  }

  .contact-action {
    align-items: stretch;
  }

  .contact-action .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
