/* Generated from src/styles by scripts/build.mjs. Do not edit directly. */
@font-face {
  font-family: "Geist";
  src: url("./assets/geist-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: "Proxima";
  src: url("./assets/proxima-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Proxima";
  src: url("./assets/proxima-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --bg: #fafafa;
  --panel: #f2f2f2;
  --panel-deep: #ececec;
  --ink: #202020;
  --muted: #707070;
  --line: rgba(0, 0, 0, 0.075);
  --blue: #1300ff;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.2, 0.8, 0.18, 1);
  --contact-spring: cubic-bezier(0.2, 1.14, 0.32, 1);
  --about-column: min(100% - 72px, 704px);
  --about-list-primary: 212px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-feature-settings: "ss01" 1, "ss03" 1;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 3;
  background: rgb(244, 244, 244);
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms var(--ease-soft);
}

body.work-spotlight::before {
  opacity: 1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 30;
  background: var(--bg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease-soft);
}

body.page-leaving::after {
  opacity: 1;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  background: #171717;
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  height: 82px;
  pointer-events: none;
}

.nav-pill {
  position: absolute;
  top: 24px;
  left: 50%;
  z-index: 3;
  display: flex;
  gap: 4px;
  transform: translateX(-50%);
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(250, 250, 250, 0.78);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(16px);
  pointer-events: auto;
  animation: soft-drop 620ms var(--ease-expo) both 80ms;
}

.nav-pill a {
  padding: 8px 13px 7px;
  border-radius: 999px;
  color: #646464;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  transition: background-color 220ms var(--ease-out), color 220ms var(--ease-out);
}

.home-page .nav-pill .home-nav,
.about-page .nav-pill .about-nav,
.case-study-page .nav-pill .home-nav {
  background: #f3f3f3;
  color: #4e4e4e;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.02);
}

.contact-dock {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 310px;
  height: 224px;
  pointer-events: none;
}

.contact-card {
  position: absolute;
  top: -154px;
  right: -86px;
  width: 200px;
  height: 200px;
  transform: translate3d(0, 0, 0) rotate(-9deg);
  transform-origin: 50% 50%;
  overflow: clip;
  border-radius: 12px;
  background: rgb(255, 220, 0);
  color: rgba(20, 20, 20, 0.72);
  box-shadow: 0 0 20px -12px rgba(0, 0, 0, 0.4);
  will-change: transform;
  transition: transform 400ms var(--contact-spring);
  pointer-events: auto;
  animation: contact-peek 400ms var(--contact-spring) both 200ms;
}

.contact-card.has-entered {
  animation: none;
}

.contact-dock.is-open .contact-card,
.contact-dock:focus-within .contact-card {
  animation: none;
  transform: translate3d(-110px, 178px, 0) rotate(0deg);
}

.contact-trigger {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: auto;
  height: 21px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(20, 20, 20, 0.6);
  font: inherit;
  font-size: 15px;
  font-weight: 450;
  letter-spacing: -0.01em;
  line-height: 21px;
  text-align: left;
  cursor: pointer;
}

.contact-trigger:focus-visible {
  outline: 2px solid rgba(20, 20, 20, 0.5);
  outline-offset: 4px;
  border-radius: 4px;
}

.contact-links {
  position: absolute;
  left: 20px;
  top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  opacity: 1;
  transform: none;
  pointer-events: none;
}

.contact-dock.is-open .contact-links,
.contact-dock:focus-within .contact-links {
  opacity: 1;
  pointer-events: auto;
}

.contact-links p {
  margin: 0 0 6px;
  color: #141414;
  font-size: 15px;
  font-weight: 450;
  letter-spacing: -0.01em;
  line-height: 21px;
}

.contact-links a,
.contact-links span {
  display: inline-flex;
  align-items: center;
  height: 26px;
  color: #006ad4;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 21px;
  text-decoration: none;
}

.contact-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-links a::after,
.contact-links span::after {
  content: " ↗";
}

.contact-links a.phone-number::after {
  content: "";
}

main {
  width: min(100% - 40px, 912px);
  margin: 0 auto;
}

.intro {
  width: 100%;
  padding-top: clamp(150px, 17vh, 196px);
  padding-bottom: 64px;
  animation: intro-rise 760ms var(--ease-expo) both 170ms;
  transition: opacity 520ms var(--ease-soft);
}

.intro h1 {
  margin: 0 0 25px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.intro p {
  max-width: none;
  margin: 0 0 24px;
  color: rgb(92, 92, 92);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.42;
}

.intro p a {
  color: rgb(92, 92, 92);
  font-weight: 400;
}

.intro p a::before {
  content: "";
  width: 22px;
  height: 22px;
  display: inline-block;
  margin: 0 5px -5px 4px;
  border-radius: 6px;
  background: #fff url("https://f1sdops9oeki9qqi.public.blob.vercel-storage.com/personal-site/assets/fresh-clinics-brandmark-lWA2O5a0aUQjAfBYqQFuWXygvxscjX.png") center / 22px 22px no-repeat;
}

.intro-actions {
  position: relative;
  display: flex;
  gap: 8px;
  width: max-content;
  margin-top: 34px;
}

.intro-actions > .button {
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: action-buttons-reveal 360ms var(--ease-expo) both 1375ms;
}

.action-selection {
  position: absolute;
  inset: -8px -7px -8px -5px;
  z-index: 2;
  border: 1px solid #2779e8;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.02, 0.08);
  transform-origin: 0 0;
  animation: action-selection-drag 2200ms linear both 320ms;
}

.action-selection i {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid #2779e8;
  background: var(--bg);
}

.action-selection i:nth-child(1) {
  top: -4px;
  left: -4px;
}

.action-selection i:nth-child(2) {
  top: -4px;
  right: -4px;
}

.action-selection i:nth-child(3) {
  right: -4px;
  bottom: -4px;
}

.action-selection i:nth-child(4) {
  bottom: -4px;
  left: -4px;
}

.action-cursor {
  position: absolute;
  top: -10px;
  left: -11px;
  z-index: 3;
  width: 24px;
  height: 26px;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.08));
  will-change: transform, opacity;
  animation: action-cursor-drag 2200ms linear both 320ms;
}

.action-cursor svg {
  display: block;
  width: 100%;
  height: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  background: rgba(242, 242, 242, 0);
  color: rgb(20, 20, 20);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: transform 170ms var(--ease-out), background-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.button.filled {
  border-color: rgba(0, 0, 0, 0.04);
  background: rgb(242, 242, 242);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px -6px rgba(0, 0, 0, 0.18);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.projects-heading {
  margin: 0 2px 18px;
  color: #292929;
  font-size: 17px;
  font-variation-settings: "wght" 580;
  font-weight: 560;
  line-height: 1.2;
  transition: opacity 520ms var(--ease-soft);
}

body.work-spotlight .projects-heading {
  opacity: 0.08;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  grid-auto-flow: dense;
  gap: 24px;
  position: relative;
  padding-bottom: 52px;
}

.work-card {
  position: relative;
  z-index: 1;
  min-height: 230px;
  overflow: visible;
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  isolation: isolate;
  transform: translateY(24px);
  opacity: 0;
  animation: card-rise 780ms var(--ease-expo) both;
  transition: opacity 520ms var(--ease-soft), filter 520ms var(--ease-soft), transform 620ms var(--ease-soft), background-color 520ms var(--ease-soft), box-shadow 620ms var(--ease-soft);
}

.work-card[href] {
  cursor: pointer;
}

.work-card[href]:focus-visible {
  outline: 2px solid rgba(28, 28, 28, 0.55);
  outline-offset: 4px;
}

.work-card:nth-child(1) { animation-delay: 250ms; }
.work-card:nth-child(2) { animation-delay: 320ms; }
.work-card:nth-child(3) { animation-delay: 390ms; }
.work-card:nth-child(4) { animation-delay: 460ms; }
.work-card:nth-child(5) { animation-delay: 510ms; }
.work-card:nth-child(6) { animation-delay: 560ms; }
.work-card:nth-child(7) { animation-delay: 610ms; }
.work-card:nth-child(8) { animation-delay: 660ms; }
.work-card:nth-child(9) { animation-delay: 710ms; }

.work-card.is-settled {
  animation: none;
  opacity: 1;
  transform: translateY(0);
}

.work-card:hover:not(.is-active):not(.is-releasing) {
  z-index: 2;
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.055);
}

.work-card.toolkit-card:hover:not(.is-active):not(.is-releasing) {
  z-index: 1;
  transform: translateY(0);
  box-shadow: none;
}

.work-card.is-active {
  animation: none;
  z-index: 7;
  opacity: 1;
  filter: none;
  transform: translateY(0) scale(1);
  box-shadow: 0 30px 66px rgba(0, 0, 0, 0.12);
}

.work-card.is-releasing {
  animation: none;
  z-index: 6;
  opacity: 1;
  filter: none;
  transform: translateY(0) scale(1);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.055);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.72), transparent 55%);
  opacity: 0;
  transition: opacity 560ms var(--ease-soft);
}

.work-card.is-active::after {
  opacity: 1;
}

.work-card.is-active .arrow {
  background: #fff;
  color: #242424;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.11), 0 10px 22px rgba(0, 0, 0, 0.08);
}

.arrow:hover {
  transform: scale(1.06);
  background: #fff;
  color: #242424;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12), 0 8px 18px rgba(0, 0, 0, 0.07);
}

body.work-spotlight .intro {
  opacity: 0.08;
}

.work-grid.is-hovering .work-card:not(.is-active):not(.is-releasing) {
  opacity: 0.08;
  filter: saturate(0.35);
}

.work-grid.is-hovering .experience-cluster {
  opacity: 0.08;
  filter: saturate(0.35);
}

.span-tall {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 0;
}

.span-full {
  grid-column: 1 / -1;
  grid-row: span 1;
  min-height: 0;
}

.arrow {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  appearance: none;
  background: #fbfbfb;
  color: #8d8d8d;
  cursor: pointer;
  font-family: inherit;
  font-size: 21px;
  line-height: 1;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px var(--line);
  transition: transform 460ms var(--ease-soft), color 420ms var(--ease-soft), box-shadow 460ms var(--ease-soft);
}

.arrow:focus-visible {
  outline: 2px solid rgba(20, 20, 20, 0.55);
  outline-offset: 4px;
}

.caption {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 18px);
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 460ms var(--ease-soft) 80ms, transform 580ms var(--ease-soft) 80ms;
}

.work-card.is-active .caption {
  opacity: 1;
  transform: translateY(0);
}

.caption strong {
  color: #202020;
  font-size: 18px;
  font-variation-settings: "wght" 450;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.18;
}

.caption span {
  color: #9a9a9a;
  font-size: 17px;
  font-variation-settings: "wght" 450;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.18;
}

.card-audit {
  background: #fff;
}

.card-product {
  background: #edf2f6;
}

.card-resource {
  background: #f3f1ed;
}

.customer-map-stage,
.resource-stage {
  position: absolute;
  top: 50%;
  right: 30px;
  left: 30px;
  aspect-ratio: 4 / 3;
  transform: translateY(-50%);
}

.knowledge-stage {
  position: absolute;
  top: calc(50% - 6px);
  left: 50%;
  height: min(calc(100% - 30px), 428px);
  aspect-ratio: 850 / 1490;
  transform: translate(-50%, -50%);
}

.customer-map-stage {
  aspect-ratio: 1672 / 941;
}

.resource-stage {
  aspect-ratio: 1693 / 929;
}

.customer-map-cover,
.resource-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #dededb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px -30px rgba(0, 0, 0, 0.38);
  transition: transform 620ms var(--ease-soft), box-shadow 620ms var(--ease-soft);
}

.card-product:hover .customer-map-cover,
.card-resource:hover .resource-cover {
  box-shadow: 0 22px 48px -30px rgba(0, 0, 0, 0.45);
  transform: translateY(-2px);
}

.knowledge-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 620ms var(--ease-soft);
}

.card-audit:hover .knowledge-cover {
  transform: translateY(-1px);
}

.experience-cluster {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  min-height: 0;
  grid-template-rows: auto 1fr;
  gap: 14px;
  opacity: 0;
  filter: none;
  transform: translateY(24px);
  animation: card-rise 780ms var(--ease-expo) both 460ms;
  transition: opacity 520ms var(--ease-soft), filter 520ms var(--ease-soft);
}

.experience-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 0 2px;
}

.experience-header h2 {
  margin: 0;
  color: #292929;
  font-size: 17px;
  font-variation-settings: "wght" 580;
  font-weight: 560;
  line-height: 1.2;
}

.experience-header > span {
  color: #9a9a9a;
  font-size: 13px;
  line-height: 1.2;
}

.experience-grid {
  display: grid;
  min-height: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.experience-project {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  color: #252525;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.018);
  transition: transform 520ms var(--ease-soft), box-shadow 520ms var(--ease-soft);
}

.experience-project:hover,
.experience-project:focus-visible {
  z-index: 2;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.075);
}

.experience-project:focus-visible {
  outline: 2px solid rgba(28, 28, 28, 0.55);
  outline-offset: 3px;
}

.experience-project > img {
  display: block;
  width: 76px;
  height: 76px;
  object-fit: contain;
  transform: translateY(0);
  transition: transform 560ms var(--ease-expo), filter 520ms var(--ease-soft);
}

.experience-project:hover > img,
.experience-project:focus-visible > img {
  transform: translateY(-22px) scale(0.88);
}

.experience-project-copy {
  position: absolute;
  right: 18px;
  bottom: 17px;
  left: 18px;
  display: grid;
  gap: 3px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 420ms var(--ease-soft) 40ms, transform 500ms var(--ease-soft) 40ms;
}

.experience-project:hover .experience-project-copy,
.experience-project:focus-visible .experience-project-copy {
  opacity: 1;
  transform: translateY(0);
}

.experience-project-copy strong {
  overflow: hidden;
  font-size: 15px;
  font-variation-settings: "wght" 590;
  font-weight: 580;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.experience-project-copy > span {
  overflow: hidden;
  color: #8d8d8d;
  font-size: 12px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.experience-project--easyvisit {
  background: #5014b8;
  color: #fff;
}

.experience-project--easyvisit > img {
  width: 124px;
}

.experience-project--easyvisit .experience-project-copy > span {
  color: rgba(255, 255, 255, 0.7);
}

.experience-project--gallery {
  background: #fff;
}

.experience-project--gallery > img {
  width: 128px;
  height: 116px;
}

.experience-project--fresh {
  background: #f2f5f1;
}

.experience-project--fresh > img {
  width: 82px;
  height: 82px;
}

.toolkit {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.tool-icons {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 14px 17px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.tool-item {
  position: relative;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  margin: 0;
  place-items: center;
  color: #2b2b2b;
  transition: opacity 360ms var(--ease-soft), filter 360ms var(--ease-soft), transform 420ms var(--ease-soft);
}

.tool-item img {
  display: block;
  width: 44px;
  height: 44px;
  padding: 7px;
  object-fit: contain;
  border-radius: 9px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.035);
  transition: transform 420ms var(--ease-soft), box-shadow 420ms var(--ease-soft), filter 420ms var(--ease-soft);
}

.tool-item figcaption {
  position: absolute;
  bottom: calc(100% + 16px);
  left: 50%;
  z-index: 4;
  padding: 8px 13px 9px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 22px -9px rgba(0, 0, 0, 0.24), 0 1px 2px rgba(0, 0, 0, 0.04);
  color: #303030;
  font-size: 13px;
  font-variation-settings: "wght" 510;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 7px, 0) scale(0.94);
  transform-origin: center bottom;
  transition: opacity 160ms linear, transform 360ms var(--ease-expo), visibility 0s linear 360ms;
  visibility: hidden;
  white-space: nowrap;
}

.tool-item figcaption::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 13px;
  height: 13px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.98);
  transform: translateX(-50%) rotate(45deg);
}

.tool-icons:hover .tool-item:not(:hover),
.about-toolkit:hover .tool-item:not(:hover) {
  opacity: 0.46;
  filter: saturate(0.72);
}

.tool-item:hover {
  z-index: 5;
  transform: none;
}

.tool-item:hover img {
  transform: scale(1.055);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.045), 0 9px 16px -10px rgba(0, 0, 0, 0.36);
}

.tool-item:hover figcaption {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
  transition-delay: 30ms, 30ms, 0s;
  visibility: visible;
}

.toolkit svg {
  position: absolute;
  left: 58px;
  bottom: 104px;
  width: 86px;
  color: #252525;
}

.toolkit span {
  position: absolute;
  left: 88px;
  bottom: 96px;
  transform: rotate(-9deg);
  font-family: "Proxima", "Geist", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.intelligence-card {
  background: #f1f4f0;
}

.intelligence-stage {
  position: absolute;
  top: calc(50% - 16px);
  left: 50%;
  height: min(calc(100% - 86px), 388px);
  aspect-ratio: 1217 / 1293;
  transform: translate(-50%, -50%);
}

.intelligence-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 22px 48px -30px rgba(0, 0, 0, 0.4);
  transition: transform 620ms var(--ease-soft), box-shadow 620ms var(--ease-soft);
}

.intelligence-card:hover .intelligence-cover {
  box-shadow: 0 24px 52px -30px rgba(0, 0, 0, 0.46);
  transform: translateY(-2px);
}

.pricing-card {
  grid-column: 3 / span 2;
  background: #eef3ef;
}

.pricing-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(calc(100% - 60px), 520px);
  aspect-ratio: 1672 / 941;
  transform: translate(-50%, -50%);
}

.pricing-cover {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 22px 48px -30px rgba(0, 0, 0, 0.45);
}

.testing-card {
  background: #f7f6f3;
}

.testing-stage {
  position: absolute;
  top: calc(50% - 6px);
  left: 50%;
  height: min(calc(100% - 28px), 430px);
  aspect-ratio: 980 / 1480;
  transform: translate(-50%, -50%);
}

.testing-cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 620ms var(--ease-soft);
}

.testing-card:hover .testing-cover {
  box-shadow: none;
  transform: translateY(-1px);
}

.deployments-card {
  overflow: hidden;
  background: #eef0f2;
}

.deployment-panel {
  position: absolute;
  inset: 18px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 8px;
  padding: 13px 16px 11px;
  overflow: hidden;
  border: 1px solid #d4d9df;
  border-radius: 12px;
  background: #fbfcfd;
  color: #25292e;
  box-shadow: 0 12px 30px -28px rgba(31, 35, 40, 0.48);
}

.deployment-summary,
.deployment-title,
.deployment-footer {
  display: flex;
  align-items: center;
}

.deployment-summary {
  justify-content: space-between;
  gap: 18px;
}

.deployment-title {
  min-width: 0;
  gap: 9px;
}

.deployment-mark {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid #d8dde3;
  border-radius: 7px;
  background: #f3f5f7;
}

.deployment-mark svg {
  width: 17px;
  height: 17px;
  overflow: visible;
  fill: #fbfcfd;
  stroke: #59636e;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.deployment-title div {
  display: grid;
  gap: 1px;
}

.deployment-title strong {
  font-size: 13px;
  font-variation-settings: "wght" 610;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.1;
}

.deployment-title div > span,
.deployment-footer,
.deployment-live {
  color: #656d76;
  font-size: 10px;
  line-height: 1.1;
}

.deployment-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border: 1px solid #d8dde3;
  border-radius: 999px;
  background: #f6f8fa;
  white-space: nowrap;
}

.deployment-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1f883d;
  box-shadow: 0 0 0 3px rgba(31, 136, 61, 0.12);
}

.deployment-chart {
  display: grid;
  min-height: 0;
  grid-template-rows: 14px 1fr;
  gap: 3px;
}

.deployment-months {
  display: flex;
  justify-content: space-between;
  padding-left: 32px;
  color: #656d76;
  font-size: 9px;
  line-height: 1;
}

.deployment-grid-row {
  display: grid;
  min-height: 0;
  grid-template-columns: 26px 1fr;
  gap: 6px;
}

.deployment-days {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  align-items: center;
  padding: 4px 0;
  color: #656d76;
  font-size: 9px;
  line-height: 1;
}

.deployment-grid {
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-columns: repeat(52, minmax(0, 1fr));
  gap: 2px;
}

.deployment-week {
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-rows: repeat(7, minmax(0, 1fr));
  gap: 2px;
}

.deployment-cell,
.deployment-legend i {
  min-width: 0;
  min-height: 0;
  border: 1px solid rgba(31, 35, 40, 0.035);
  border-radius: 2px;
  background: #ebedf0;
}

.deployment-cell[data-level="1"],
.deployment-legend i:nth-child(2) { background: #9be9a8; }
.deployment-cell[data-level="2"],
.deployment-legend i:nth-child(3) { background: #40c463; }
.deployment-cell[data-level="3"],
.deployment-legend i:nth-child(4) { background: #30a14e; }
.deployment-cell[data-level="4"],
.deployment-legend i:nth-child(5) { background: #216e39; }

.deployment-cell[data-level="4"] {
  transition: transform 420ms var(--ease-expo), filter 420ms var(--ease-soft);
  transition-delay: calc(var(--cell-delay, 0) * 7ms);
}

.deployments-card:hover .deployment-cell[data-level="4"] {
  filter: saturate(1.12);
  transform: scale(1.16);
}

.deployment-footer {
  justify-content: flex-end;
  gap: 5px;
  min-height: 0;
}

.deployment-legend {
  display: grid;
  grid-template-columns: repeat(5, 8px);
  gap: 3px;
}

.deployment-legend i {
  width: 8px;
  height: 8px;
}

.deployment-branch {
  margin-left: auto;
  padding: 3px 7px;
  border-radius: 999px;
  background: #f0f2f4;
  color: #59636e;
  font-variation-settings: "wght" 560;
  font-weight: 550;
}

.about-main {
  width: 100%;
  padding-top: 96px;
}

.about-hero {
  display: grid;
  min-height: 326px;
  place-items: center;
  margin-bottom: 30px;
  overflow: visible;
}

.about-badge {
  position: relative;
  width: var(--about-column);
  height: 302px;
  animation: about-badge-drop 780ms var(--ease-expo) both 90ms;
}

.about-lanyard {
  position: absolute;
  top: -190px;
  left: 50%;
  z-index: 2;
  width: 50px;
  height: auto;
  transform: translateX(-50%);
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.about-badge-card {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: 44px minmax(190px, 0.9fr) minmax(232px, 1fr);
  align-items: center;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.035);
  border-radius: 18px;
  background: #f6f6f6;
  box-shadow: 0 24px 34px -28px rgba(0, 0, 0, 0.34);
}

.about-department {
  display: grid;
  height: 100%;
  place-items: center;
  background: #e8e8e8;
  color: #b6b6b6;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.about-profile {
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 12px 24px 10px 28px;
}

.about-profile img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #fff;
}

.about-profile div {
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 260px;
  text-align: center;
}

.about-profile strong {
  display: block;
  color: #222;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.about-profile span {
  display: block;
  margin-top: 4px;
  color: #5c5c5c;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.about-skills {
  display: grid;
  width: min(100% - 28px, 278px);
  margin: 0;
  padding: 0;
  list-style: none;
  color: #7f7f7f;
  align-self: center;
  justify-self: start;
}

.about-skills li {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 42px;
  border-bottom: 1px solid #dfdfdf;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.about-skills li:first-child {
  border-top: 1px solid #dfdfdf;
}

.about-skills svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.about-copy {
  display: grid;
  width: var(--about-column);
  gap: 19px;
  margin: 0 auto 62px;
  animation: intro-rise 760ms var(--ease-expo) both 190ms;
}

.about-copy p {
  margin: 0;
  color: rgb(92, 92, 92);
  font-family: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.45;
}

.about-section {
  width: var(--about-column);
  margin: 0 auto 54px;
  animation: intro-rise 760ms var(--ease-expo) both 250ms;
}

.about-section h1,
.about-section h2 {
  margin: 0 0 18px;
  color: #202020;
  font-size: 16px;
  font-variation-settings: "wght" 450;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

#toolkit-title {
  margin-bottom: 21px;
  font-size: 17px;
}

.about-toolkit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  width: fit-content;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.055);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.about-list {
  display: grid;
  border-top: 1px solid #e7e7e7;
}

.about-list div {
  display: grid;
  grid-template-columns: var(--about-list-primary) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  padding: 17px 0;
  border-bottom: 1px solid #e7e7e7;
}

.about-list strong,
.about-list a,
.about-list span,
.about-list em,
.about-contact a,
.about-contact span {
  color: #6a6a6a;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.about-list strong {
  color: #292929;
  font-variation-settings: "wght" 450;
}

.about-list a {
  color: #6a6a6a;
  text-decoration: none;
}

.about-list a:hover,
.about-list a:focus-visible {
  color: #006ad4;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-list em {
  color: #9a9a9a;
  text-align: right;
}

.about-contact {
  padding-bottom: 72px;
}

.about-contact div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.about-contact a,
.about-contact span {
  color: #006ad4;
}

.about-contact a::after,
.about-contact span::after {
  content: " ↗";
}

.about-contact a.phone-number::after {
  content: "";
}

.case-study-main {
  width: 100%;
  margin: 0;
  padding: 0 0 80px;
}

.case-hero {
  padding-top: 160px;
}

.case-hero-copy {
  width: min(calc(100% - 32px), 1200px);
  min-height: 246px;
  margin: 0 auto;
  text-align: center;
  animation: case-hero-rise 720ms var(--ease-expo) both 70ms;
}

.case-hero h1 {
  max-width: 1200px;
  margin: 0 auto;
  color: #202020;
  font-size: 32px;
  font-variation-settings: "wght" 450;
  font-weight: 450;
  line-height: 40px;
}

.case-hero-copy > p {
  max-width: 1100px;
  margin: 16px auto 0;
  color: #5c5c5c;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-top: 18px;
  color: #666;
  font-size: 16px;
  line-height: 26px;
}

.case-meta a {
  color: #4d4d4d;
}

.case-meta a::after {
  content: " ↗";
}

.case-hero-media {
  position: relative;
  display: grid;
  width: min(calc(100% - 32px), 1080px);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: #f1f1ef;
  box-shadow: none;
  animation: case-media-rise 820ms var(--ease-expo) both 150ms;
}

.case-hero-media img,
.case-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0;
  border-radius: inherit;
  background: transparent;
  box-shadow: none;
}

.case-media--map {
  background: #edf2f6;
}

.case-media--resource {
  background: #f3f1ed;
}

.case-media--pricing {
  background: #eef3ef;
}

.case-media--testing {
  background: #f3f1ee;
}

.case-media--intelligence {
  background: #f1f4f0;
}

.case-layout {
  display: grid;
  width: min(calc(100% - 32px), 1408px);
  grid-template-columns: minmax(130px, 1fr) minmax(0, 720px) minmax(130px, 1fr);
  margin: 74px auto 0;
  padding-top: 40px;
}

.case-toc {
  position: sticky;
  top: 74px;
  z-index: 2;
  display: flex;
  width: 172px;
  height: max-content;
  grid-column: 1;
  grid-row: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  justify-self: start;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  visibility: hidden;
  transition:
    opacity 320ms var(--ease-soft),
    transform 420ms var(--ease-expo),
    visibility 0s linear 420ms;
}

.case-toc.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.case-toc a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 1000px;
  color: #666;
  font-size: 15px;
  font-variation-settings: "wght" 450;
  font-weight: 450;
  line-height: 22px;
  transition: background-color 240ms var(--ease-out), color 240ms var(--ease-out);
}

.case-toc a:hover,
.case-toc a.is-active {
  color: #292929;
}

.case-toc a.is-active {
  background: #e8e8e8;
}

.case-article {
  min-width: 0;
  grid-column: 2;
  grid-row: 1;
}

.case-section {
  scroll-margin-top: 128px;
  margin: 0 0 64px;
}

.case-section h2 {
  max-width: 720px;
  margin: 0 0 24px;
  color: #242424;
  font-size: 28px;
  font-variation-settings: "wght" 500;
  font-weight: 500;
  line-height: 38px;
}

.case-section > p {
  max-width: 720px;
  margin: 0 0 24px;
  color: #5c5c5c;
  font-size: 16px;
  line-height: 25.6px;
}

.case-section > p:last-child {
  margin-bottom: 0;
}

.case-steps {
  max-width: 720px;
  margin: 8px 0 28px;
  padding: 0;
  color: #5c5c5c;
  counter-reset: case-step;
  list-style: none;
}

.case-steps li {
  position: relative;
  min-height: 32px;
  margin: 0 0 18px;
  padding-left: 44px;
  font-size: 16px;
  line-height: 25.6px;
  counter-increment: case-step;
}

.case-steps li:last-child {
  margin-bottom: 0;
}

.case-steps li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ededeb;
  color: #686868;
  content: counter(case-step);
  font-size: 13px;
  font-variation-settings: "wght" 540;
  font-weight: 540;
  line-height: 1;
  place-items: center;
}

.case-measures {
  max-width: 720px;
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid #dedede;
  list-style: none;
}

.case-measures li {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid #dedede;
}

.case-measures strong {
  color: #343434;
  font-size: 15px;
  font-variation-settings: "wght" 540;
  font-weight: 540;
  line-height: 23px;
}

.case-measures span {
  color: #686868;
  font-size: 15px;
  line-height: 23px;
}

[data-case-reveal] {
  opacity: 1;
  transform: none;
}

.is-reveal-ready [data-case-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease-soft), transform 700ms var(--ease-expo);
}

.is-reveal-ready [data-case-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.case-media-panel {
  display: grid;
  width: 100%;
  min-height: 420px;
  margin: 0;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: #f2f2f0;
}

.case-section > .case-media-panel {
  margin: 48px 0 0;
}

.case-media-panel img {
  width: calc(100% - 48px);
  max-height: 500px;
  object-fit: contain;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  box-shadow: 0 22px 50px -38px rgba(0, 0, 0, 0.42);
}

.case-media-panel--map {
  background: #edf2f6;
}

.case-media-panel--resource {
  background: #f4f2ee;
}

.case-media-panel--pricing {
  background: #eef3ef;
}

.case-media-panel--testing {
  background: #f3f1ee;
}

.case-media-panel--intelligence {
  background: #f1f4f0;
}

.case-notes {
  margin-bottom: 0;
  padding-top: 4px;
}

.case-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid #dedede;
  color: #6f6f6f;
  font-size: 14px;
}

.case-next a {
  color: #242424;
  font-size: 16px;
}

.case-next a::after {
  content: " →";
}

.legacy-about-redirect {
  position: relative;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.legacy-about-redirect:target {
  width: auto;
  height: auto;
  margin: -138px 0 120px;
  overflow: visible;
  opacity: 1;
  pointer-events: auto;
}

.legacy-about-redirect a {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgb(242, 242, 242);
  color: #202020;
  font-size: 15px;
  font-weight: 500;
}

.pixel-mark {
  position: relative;
  width: 16px;
  height: 16px;
}

.pixel-mark i {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #1670ee;
}

.pixel-mark i:first-child {
  left: 0;
  top: 0;
}

.pixel-mark i:nth-child(2) {
  right: 0;
  top: 0;
  background: #006aff;
}

.pixel-mark i:nth-child(3) {
  left: 0;
  bottom: 0;
  background: #85b8ff;
}

.pixel-mark i:nth-child(4) {
  right: 0;
  bottom: 0;
  background: #0052c4;
}

@keyframes soft-drop {
  from {
    opacity: 0;
    transform: translate(-50%, -8px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes contact-peek {
  from {
    opacity: 0;
    transform: translate3d(120px, -64px, 0) rotate(-9deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-9deg);
  }
}

@keyframes intro-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes action-buttons-reveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes action-selection-drag {
  0%,
  11% {
    opacity: 0;
    transform: scale(0.02, 0.08);
  }
  14% {
    opacity: 1;
    transform: scale(0.02, 0.08);
  }
  44% {
    opacity: 1;
    transform: scale(1);
  }
  78% {
    opacity: 1;
    transform: scale(1);
  }
  91%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes action-cursor-drag {
  0%,
  11% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
  14% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  44% {
    opacity: 1;
    transform: translate3d(217px, 56px, 0);
  }
  78% {
    opacity: 1;
    transform: translate3d(217px, 56px, 0);
  }
  91%,
  100% {
    opacity: 0;
    transform: translate3d(217px, 56px, 0);
  }
}

@keyframes about-badge-drop {
  from {
    opacity: 0;
    transform: translate3d(0, -34px, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes case-hero-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes case-media-rise {
  from {
    opacity: 0;
    transform: translateY(38px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes card-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  :root {
    --about-column: min(100% - 48px, 704px);
  }

  main {
    width: min(100% - 32px, 620px);
  }

  .intro {
    padding-bottom: 58px;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .knowledge-stage {
    top: calc(50% - 6px);
    right: auto;
    left: 50%;
    height: min(calc(100% - 30px), 420px);
    transform: translate(-50%, -50%);
  }

  .span-tall,
  .span-full {
    grid-column: span 2;
  }

  .about-main {
    width: 100%;
  }

  .case-study-main {
    width: 100%;
  }

  .case-layout {
    display: block;
    width: min(calc(100% - 32px), 720px);
    margin-top: 48px;
    padding-top: 40px;
  }

  .case-toc {
    display: none;
  }

  .about-badge {
    height: 288px;
  }

  .about-lanyard {
    top: -182px;
    width: 46px;
  }

  .about-badge-card {
    grid-template-columns: 44px minmax(176px, 0.9fr) minmax(214px, 1fr);
    min-height: 210px;
  }

  .about-department {
    font-size: 18px;
  }

  .about-profile {
    padding-left: 28px;
  }

  .about-profile img {
    width: 72px;
    height: 72px;
  }

  .about-profile strong {
    font-size: 19px;
  }

  .about-profile span {
    font-size: 16px;
  }

  .about-skills {
    width: min(100% - 26px, 262px);
  }

  .about-skills li {
    min-height: 41px;
    font-size: 15px;
  }

  .about-list div,
  .recognition-list div {
    grid-template-columns: 1fr auto;
  }

  .about-list span {
    grid-column: 1;
  }

  .about-list em {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 560px) {
  :root {
    --about-column: calc(100% - 24px);
  }

  .site-header {
    height: 70px;
  }

  .contact-dock {
    z-index: 4;
    width: 286px;
    height: 224px;
  }

  main {
    width: calc(100% - 24px);
  }

  .intro {
    padding-top: 128px;
    padding-bottom: 54px;
  }

  .intro h1 {
    font-size: 17px;
  }

  .intro p {
    font-size: 18px;
  }

  .about-main {
    width: 100%;
    padding-top: 92px;
  }

  .case-study-main {
    width: 100%;
  }

  .case-hero {
    padding-top: 160px;
  }

  .case-hero-copy {
    width: calc(100% - 32px);
    min-height: 250px;
    margin-bottom: 0;
  }

  .case-hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .case-hero-copy > p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 24px;
  }

  .case-hero-media {
    width: calc(100% - 32px);
    aspect-ratio: 567 / 400;
    border-radius: 8px;
  }

  .case-hero-media img,
  .case-hero-media video {
    width: 100%;
    height: 100%;
    border-radius: inherit;
  }

  .case-layout {
    width: calc(100% - 32px);
    margin-top: 48px;
  }

  .case-section {
    scroll-margin-top: 138px;
    margin-bottom: 56px;
  }

  .case-section h2 {
    margin-bottom: 24px;
    font-size: 28px;
    line-height: 38px;
  }

  .case-section > p {
    font-size: 16px;
    line-height: 25.6px;
  }

  .case-measures li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px 0;
  }

  .case-media-panel {
    width: 100%;
    min-height: 280px;
    margin: 0;
    border-radius: 12px;
  }

  .case-section > .case-media-panel {
    margin: 40px 0 0;
  }

  .case-media-panel img {
    width: calc(100% - 28px);
  }

  .case-next {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-toolkit {
    gap: 10px;
    padding: 10px;
  }

  .about-toolkit .tool-item,
  .about-toolkit .tool-item img {
    width: 40px;
    height: 40px;
  }

  .about-hero {
    min-height: 354px;
    margin-bottom: 30px;
    overflow: visible;
  }

  .about-badge {
    height: 324px;
  }

  .about-lanyard {
    top: -152px;
    width: 40px;
  }

  .about-badge-card {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    min-height: 264px;
    border-radius: 16px;
  }

  .about-department {
    grid-row: 1 / span 2;
    font-size: 17px;
  }

  .about-profile {
    gap: 10px;
    padding: 30px 20px 18px;
  }

  .about-profile img {
    width: 74px;
    height: 74px;
  }

  .about-profile div {
    justify-items: center;
  }

  .about-profile strong {
    font-size: 21px;
  }

  .about-profile span {
    font-size: 16px;
  }

  .about-skills {
    width: calc(100% - 42px);
    justify-self: center;
    padding-bottom: 24px;
  }

  .about-skills li {
    min-height: 40px;
    gap: 10px;
    font-size: 15px;
  }

  .about-skills svg {
    width: 18px;
    height: 18px;
  }

  .about-copy {
    margin-top: 0;
  }

  .about-copy p {
    font-size: 17px;
  }

  .about-section {
    margin-bottom: 46px;
  }

  .about-list div,
  .recognition-list div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 15px 0;
  }

  .about-list span,
  .about-list em {
    grid-column: auto;
    grid-row: auto;
  }

  .about-list em {
    text-align: left;
  }

  .work-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 44px;
  }

  .knowledge-stage {
    top: calc(50% - 6px);
    right: auto;
    left: 50%;
    height: min(calc(100% - 28px), 364px);
    transform: translate(-50%, -50%);
  }

  .work-card,
  .span-tall,
  .span-full {
    min-height: 392px;
  }

  .experience-cluster {
    display: grid;
    min-height: 484px;
    grid-template-rows: auto 1fr;
  }

  .deployments-card {
    min-height: 300px;
  }

  .deployment-panel {
    inset: 18px 16px;
    padding: 15px 14px 12px;
  }

  .deployment-months span:nth-child(-n+6),
  .deployment-week:nth-child(-n+26) {
    display: none;
  }

  .deployment-months {
    padding-left: 29px;
  }

  .deployment-grid {
    grid-template-columns: repeat(26, minmax(0, 1fr));
    gap: 3px;
  }

  .deployment-week {
    gap: 3px;
  }

  .toolkit svg {
    left: 28px;
  }

  .toolkit span {
    left: 60px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .work-card,
  .intro,
  .nav-pill,
  .contact-card {
    opacity: 1 !important;
    transform: none;
  }

  .about-badge {
    animation: none !important;
    opacity: 1 !important;
    transform: none;
  }

  .case-hero-copy,
  .case-hero-media,
  [data-case-reveal] {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .intro-actions > .button {
    animation: none !important;
    opacity: 1 !important;
  }

  .action-selection,
  .action-cursor {
    display: none;
  }
}
