@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #202124;
  --paper: #f6f6f6;
  --brand-blue: #0077FF;
  --theme-ink: var(--ink);
  --theme-paper: var(--paper);
  --type-caption-size: 12px;
  --type-caption-leading: 16px;
  --type-label-size: 14px;
  --type-label-leading: 20px;
  --type-body-size: 16px;
  --type-body-leading: 24px;
  --type-lead-size: 20px;
  --type-lead-leading: 28px;
  --type-title-size: 24px;
  --type-title-leading: 32px;
  --type-h2-size: 40px;
  --type-h2-leading: 48px;
  --type-button-size: 16px;
  --type-button-leading: 24px;
  --type-caption-tracking: 0.01em;
  --type-label-tracking: 0em;
  --type-body-tracking: 0em;
  --type-lead-tracking: 0em;
  --type-title-tracking: 0em;
  --type-heading-tracking: -0.025em;
  --type-font-features:
    "kern" 1, "liga" 1, "calt" 1, "dlig" 0, "tnum" 0, "ss01" 1,
    "ss02" 0, "ss03" 0, "ss04" 0, "ss05" 0, "ss06" 0, "ss07" 0,
    "ss08" 0, "ss09" 0, "ss10" 0, "ss11" 0;
  --type-large: var(--type-h2-size);
  --type-small: var(--type-body-size);
  --type-medium: var(--type-title-size);
  --type-extra-small: var(--type-label-size);
  --small-text-weight: 300;
  --type-weight: 400;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;
  --space-related: var(--space-4);
  --space-group: var(--space-5);
  --space-block: var(--space-7);
  --space-section: var(--space-9);
  --space-section-large: var(--space-10);
  --space-page-inline: var(--space-5);
  --space-medium: var(--space-3);
  --space-large: var(--space-5);
  --section-height-default: 80vh;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

html {
  scroll-behavior: auto;
}

body {
  color: var(--theme-ink);
  background: var(--theme-paper);
  font-family: "Geist", system-ui, sans-serif;
  font-size: var(--type-body-size);
  font-weight: var(--type-weight);
  line-height: var(--type-body-leading);
  letter-spacing: var(--type-body-tracking);
  font-feature-settings: var(--type-font-features);
  overflow-x: hidden;
}

body.is-modal-open {
  overflow: hidden;
  padding-right: var(--modal-scrollbar-compensation, 0px);
}

body,
h1,
h2,
h3,
p {
  margin: 0;
}

.section-progress-nav {
  position: fixed;
  left: 50%;
  top: var(--space-6);
  z-index: 9999;
  width: var(--section-progress-collapsed-width, 96px);
  height: 40px;
  border-radius: 12px;
  background: #e1e1e1;
  box-shadow: 0 0.5px 2px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -12px, 0);
  transition:
    width 300ms cubic-bezier(0.2, 0.8, 0.2, 1),
    height 300ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background 300ms ease,
    opacity 220ms ease,
    box-shadow 300ms ease,
    transform 220ms ease;
}

.section-progress-nav.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

.section-progress-nav:hover,
.section-progress-nav:focus-within,
.section-progress-nav.is-expanded {
  width: var(--section-progress-expanded-width, 320px);
  height: var(--section-progress-expanded-height, 196px);
  background: #e1e1e1;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

.section-progress-nav__indicators {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 40px;
  margin: 0;
  padding: 0 var(--space-2);
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  list-style: none;
  transition:
    opacity 180ms ease,
    transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.section-progress-nav:hover .section-progress-nav__indicators,
.section-progress-nav:focus-within .section-progress-nav__indicators,
.section-progress-nav.is-expanded .section-progress-nav__indicators {
  opacity: 0;
  transform: translate3d(0, -10px, 0);
}

.section-progress-nav__indicator {
  position: relative;
  width: 10px;
  height: 5px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.58);
  overflow: hidden;
  transition: width 300ms ease;
}

.section-progress-nav__indicator.is-active {
  width: 30px;
}

.section-progress-nav__indicator-fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #1a1a1a;
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.section-progress-nav__contents {
  box-sizing: border-box;
  width: var(--section-progress-expanded-width, 320px);
  padding: var(--space-4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition:
    opacity 180ms ease 50ms,
    transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.section-progress-nav:hover .section-progress-nav__contents,
.section-progress-nav:focus-within .section-progress-nav__contents,
.section-progress-nav.is-expanded .section-progress-nav__contents {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.section-progress-nav__heading {
  margin: 0 0 var(--space-3);
  padding: 0 var(--space-2);
  color: rgba(26, 26, 26, 0.54);
  font-size: var(--type-extra-small);
  font-weight: var(--small-text-weight);
  line-height: var(--type-label-leading);
  letter-spacing: var(--type-label-tracking);
}

.section-progress-nav__list {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: var(--space-1);
  list-style: none;
}

.section-progress-nav__button {
  display: flex;
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  padding: var(--space-2) var(--space-3);
  align-items: center;
  color: #1a1a1a;
  background: transparent;
  font: inherit;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transition: background 220ms ease;
}

.section-progress-nav__button:hover,
.section-progress-nav__button:focus-visible,
.section-progress-nav__item.is-active .section-progress-nav__button {
  background: rgba(202, 202, 202, 0.62);
}

.section-progress-nav__button:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: -2px;
}

.section-progress-nav__item-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: var(--space-1);
}

.section-progress-nav__item-title {
  color: #1a1a1a;
  font-size: var(--type-extra-small);
  font-weight: var(--small-text-weight);
  line-height: var(--type-label-leading);
  letter-spacing: var(--type-label-tracking);
}

.section-progress-nav__item-description {
  color: rgba(26, 26, 26, 0.54);
  font-size: var(--type-extra-small);
  font-weight: var(--small-text-weight);
  line-height: var(--type-label-leading);
  letter-spacing: var(--type-label-tracking);
}

.portfolio-page {
  width: 100%;
  transition:
    filter 320ms ease,
    transform 320ms ease;
}

body.is-section-nav-expanded .portfolio-page {
  filter: blur(4px);
  transform: scale(0.998);
}

body.is-modal-open .portfolio-page {
  filter: blur(22px);
}

body.is-modal-open .section-progress-nav {
  opacity: 0;
  pointer-events: none;
}

.content-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease-out;
  will-change: opacity;
}

.content-modal[hidden] {
  display: none;
}

.content-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, 0.84);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.content-modal__viewport {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  padding: var(--space-5);
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: hidden;
  overscroll-behavior: contain;
}

.content-modal__panel {
  --process-modal-frame-height: min(
    900px,
    calc(100svh - var(--space-page-inline) - var(--space-page-inline))
  );
  position: relative;
  width: 550px;
  max-width: calc(100vw - var(--space-page-inline) - var(--space-page-inline));
  height: var(--process-modal-frame-height);
  border-radius: 28px;
  background: #fff;
  overflow: hidden;
}

.content-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.content-modal.is-closing {
  opacity: 0;
  pointer-events: none;
}

.content-modal__close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  z-index: 5;
  display: grid;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  place-items: center;
  color: #fff;
  background: #202124;
  cursor: pointer;
  transition:
    color 200ms ease-out,
    background-color 200ms ease-out;
}

.content-modal__close::before,
.content-modal__close::after {
  content: "";
  position: absolute;
  width: var(--space-4);
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.content-modal__close::before {
  transform: rotate(45deg);
}

.content-modal__close::after {
  transform: rotate(-45deg);
}

.content-modal__close:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.process-modal__process-scene {
  --process-layout-edge: 0px;
  --process-modal-canvas-height: 66%;
  --square-system-width: min(100%, 560px);
  --square-system-height: var(--process-modal-canvas-height);
  --process-modal-viewport-height: 100%;
  position: relative;
  height: 100%;
  background: #fff;
  overflow-x: hidden;
  overflow-y: hidden;
  overscroll-behavior: contain;
}

.process-modal__process-scene .square-system-sticky {
  --square-system-width: min(100%, 560px);
  --square-system-height: var(--process-modal-canvas-height);
  position: absolute;
  inset: 0 0 auto;
  min-height: 0;
  height: var(--process-modal-canvas-height);
  padding: 0;
  background: #fff;
  overflow: hidden;
}

.process-modal__process-scene .square-system-field {
  left: 50%;
  right: auto;
  top: 0;
  width: var(--square-system-width);
  max-width: 100%;
  height: 100%;
  transform: translateX(-50%);
}

.process-modal__process-scene .process-callout-stack {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
}

.process-modal__process-scene .process-callout-track {
  height: 100%;
  min-height: 0;
}

.process-modal__process-scene .process-callout {
  left: 50%;
  top: auto;
  bottom: max(122px, calc(env(safe-area-inset-bottom) + 108px));
  width: min(
    390px,
    calc(100% - var(--space-page-inline) - var(--space-page-inline))
  );
  text-align: center;
  transform:
    translate3d(
      calc(-50% + var(--process-card-x, 0px)),
      var(--process-card-y, 0px),
      0
    );
}

.process-modal__process-scene .process-callout__content,
.process-modal__process-scene .process-callout__copy {
  align-items: center;
}

.process-modal__process-scene .process-callout__description {
  font-size: var(--type-body-size);
  line-height: var(--type-body-leading);
  letter-spacing: var(--type-body-tracking);
}

.process-modal__process-scene .process-callout-progress {
  display: none;
}

.process-step-controls {
  position: absolute;
  left: 50%;
  top: auto;
  bottom: max(48px, calc(env(safe-area-inset-bottom) + 34px));
  z-index: 3;
  display: grid;
  width: min(
    400px,
    calc(100% - var(--space-page-inline) - var(--space-page-inline))
  );
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-1);
  transform: translate3d(-50%, 0, 0);
}

.process-step-control {
  display: grid;
  min-width: 0;
  height: 44px;
  border: 0;
  border-radius: 5px;
  padding: 0;
  place-items: center;
  color: rgba(32, 33, 36, 0.44);
  background: #d9d9d9;
  font: inherit;
  font-size: var(--type-title-size);
  font-weight: 400;
  line-height: var(--type-title-leading);
  letter-spacing: var(--type-title-tracking);
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.process-step-control.is-active {
  color: #fff;
  background: var(--brand-blue);
}

.process-step-control:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.portfolio-section {
  min-height: var(--section-height, var(--section-height-default));
}

.word-scroll-section {
  position: relative;
  min-height: var(--word-scroll-height, calc(50vh + 1620px));
  background: var(--theme-paper);
  overflow: hidden;
}

.portfolio-intro {
  position: absolute;
  left: 50%;
  top: var(--space-7);
  z-index: 2;
  width: min(980px, calc(100vw - 48px));
  color: var(--theme-ink);
  font-size: var(--type-label-size);
  font-weight: var(--type-weight);
  line-height: var(--type-label-leading);
  letter-spacing: var(--type-label-tracking);
  text-align: center;
  transform: translateX(-50%);
}

.portfolio-intro__muted {
  color: #999999;
}

.opening-viewport {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: var(--space-page-inline);
}

.opening-sentence,
.word {
  color: var(--theme-ink);
  font-size: var(--type-large);
  font-weight: var(--type-weight);
  line-height: var(--type-h2-leading);
  letter-spacing: var(--type-heading-tracking);
}

.opening-sentence {
  width: min(960px, 100%);
  margin: 0;
  text-align: center;
  text-wrap: balance;
}

.landing-scroll-indicator {
  position: fixed;
  left: 50%;
  bottom: max(28px, env(safe-area-inset-bottom));
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-2);
  color: var(--theme-ink);
  opacity: 0.74;
  transform: translateX(-50%);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.landing-scroll-indicator__symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.landing-scroll-indicator.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.landing-scroll-indicator--modal {
  position: absolute;
  top: 40px;
  bottom: auto;
  z-index: 4;
  color: var(--ink);
}

.landing-scroll-indicator__icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.landing-scroll-indicator__icon--hand {
  display: none;
}

.landing-scroll-indicator__text {
  color: currentColor;
  font-size: var(--type-label-size);
  font-weight: var(--type-weight);
  line-height: var(--type-label-leading);
  letter-spacing: var(--type-label-tracking);
  text-align: center;
  white-space: nowrap;
}

#wordLayer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.word {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  white-space: nowrap;
  opacity: 0;
  transform-origin: center;
  will-change: transform, opacity;
}

.word-reveal-section {
  --section-height: 60vh;
  position: relative;
  height: var(--section-height);
  background: var(--theme-paper);
  overflow: hidden;
}

.word-reveal-scene {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 30vh;
  background: var(--theme-paper);
  pointer-events: none;
}

.word-reveal-copy {
  position: relative;
  width: min(980px, calc(100vw - 48px));
  color: var(--theme-ink);
  font-size: var(--type-large);
  font-weight: var(--type-weight);
  line-height: var(--type-h2-leading);
  letter-spacing: var(--type-heading-tracking);
  text-align: center;
}

.word-reveal-line {
  display: block;
  white-space: nowrap;
}

.word-reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transform-origin: center;
  will-change: opacity, transform;
}

.word-reveal-word + .word-reveal-word {
  margin-left: 0.28em;
}

.offer-text-section {
  --process-layout-max-width: 1440px;
  --process-layout-edge: max(
    0px,
    calc((100vw - var(--process-layout-max-width)) / 2)
  );
  position: relative;
  z-index: 1;
  min-height: auto;
  margin-top: -24vh;
  padding: 50vh var(--space-page-inline) 18vh;
  background: transparent;
  overflow: visible;
}

.square-system-sticky {
  --square-system-width: min(80vw, 1280px);
  --square-system-height: 100svh;
  position: fixed;
  inset: 0;
  z-index: 0;
  display: grid;
  min-height: 100vh;
  margin: 0;
  padding: var(--space-page-inline);
  place-items: center;
  background: transparent;
  overflow: hidden;
  pointer-events: none;
}

.offer-text-section.is-square-system-released .square-system-sticky {
  position: absolute;
  inset: var(--square-system-release-y, 0px) 0 auto;
  height: 100vh;
  min-height: 100svh;
}

.offer-text-section .headline-section__header {
  position: relative;
  z-index: 1;
  margin-inline: auto;
}

.square-system-field {
  position: absolute;
  right: var(--process-layout-edge);
  top: 0;
  width: var(--square-system-width);
  height: var(--square-system-height);
  pointer-events: none;
}

.square-system-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.process-callout-stack {
  position: relative;
  z-index: 1;
  margin-top: 18vh;
  margin-inline: -20vh;
  height: 360vh;
  pointer-events: none;
}

.process-callout-track {
  --process-progress-gap: var(--space-5);
  --process-progress-length: 130px;
  --process-progress-left: calc(
    var(--process-layout-edge) + clamp(56px, 6vw, 86px)
  );
  --process-progress-thickness: 5px;
  position: sticky;
  top: 0;
  display: block;
  height: 100vh;
  min-height: 100svh;
}

.process-callout {
  position: absolute;
  left: calc(
    var(--process-progress-left) +
    var(--process-progress-thickness) +
    var(--process-progress-gap)
  );
  top: calc(50% - (var(--process-progress-length) / 2));
  display: block;
  width: min(480px, 31vw);
  color: var(--theme-ink);
  opacity: var(--process-card-opacity, 0);
  transform:
    translate3d(
      var(--process-card-x, 0px),
      var(--process-card-y, 0px),
      0
    );
  will-change: opacity, transform;
  pointer-events: none;
}

.process-callout__content {
  display: flex;
  width: 100%;
  align-items: flex-start;
  word-break: break-word;
}

.process-callout-progress {
  --process-progress-opacity: 0;
  position: absolute;
  left: var(--process-progress-left);
  top: 50%;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  width: var(--process-progress-thickness);
  height: var(--process-progress-length);
  opacity: var(--process-progress-opacity);
  transform: translate3d(0, -50%, 0);
  will-change: opacity;
  pointer-events: none;
}

  .process-callout-progress__segment {
  position: relative;
  display: block;
  width: var(--process-progress-thickness);
  height: calc((var(--process-progress-length) - 24px) / 4);
  flex: none;
  border-radius: 999px;
  background: #d9d9d9;
  overflow: hidden;
}

.process-callout-progress__fill {
  --process-progress-fill: 0;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--brand-blue);
  transform: scaleY(var(--process-progress-fill));
  transform-origin: top;
  will-change: transform;
}

.process-callout__copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.process-callout__step {
  color: var(--theme-ink);
  font-size: var(--type-label-size);
  font-weight: 400;
  line-height: var(--type-label-leading);
  letter-spacing: var(--type-label-tracking);
}

.process-callout__title {
  margin: var(--space-related) 0 0;
  color: inherit;
  font-size: var(--type-medium);
  font-weight: var(--type-weight);
  line-height: var(--type-title-leading);
  letter-spacing: var(--type-title-tracking);
}

.process-callout__description {
  width: 100%;
  margin-top: var(--space-group);
  color: inherit;
  font-size: var(--type-body-size);
  font-weight: 400;
  line-height: var(--type-body-leading);
  letter-spacing: var(--type-body-tracking);
}

.process-callout__description-line {
  display: block;
  white-space: nowrap;
}

.process-callout__deliverables {
  display: flex;
  width: min(440px, 100%);
  margin: var(--space-related) 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: var(--space-1);
  list-style: none;
}

.process-callout__deliverables li {
  display: block;
  border-radius: 6px;
  padding: var(--space-1) var(--space-2);
  color: rgba(32, 33, 36, 0.72);
  background: rgba(32, 33, 36, 0.08);
  font-size: var(--type-extra-small);
  font-weight: var(--small-text-weight);
  line-height: var(--type-label-leading);
  letter-spacing: var(--type-label-tracking);
}

@media (max-width: 1200px) {
  .offer-text-section {
    --process-layout-edge: 0px;
  }

  .square-system-sticky {
    --square-system-width: 100vw;
    --square-system-height: min(62svh, 680px);
  }

  .square-system-field {
    left: 0;
    right: auto;
    top: 0;
  }

  .offer-text-section {
    padding-bottom: 18vh;
    padding-right: 0;
    padding-left: 0;
  }

  .offer-text-section .headline-section__header {
    width: min(980px, calc(100vw - 48px));
  }

  .process-callout-stack {
    margin-top: clamp(80px, 13vh, 150px);
    margin-inline: 0;
    height: 360svh;
  }

  .process-callout-track {
    height: 100svh;
    min-height: 100svh;
  }

  .process-callout {
    left: 50%;
    right: auto;
    top: auto;
    bottom: max(109px, calc(env(safe-area-inset-bottom) + 93px));
    width: min(480px, calc(100vw - 80px));
    text-align: center;
    transform:
      translate3d(
        calc(-50% + var(--process-card-x, 0px)),
        var(--process-card-y, 0px),
        0
      );
  }

  .process-callout-progress {
    left: 50%;
    top: auto;
    bottom: max(84px, calc(env(safe-area-inset-bottom) + 68px));
    width: var(--process-progress-length);
    height: var(--process-progress-thickness);
    flex-direction: row;
    gap: var(--space-2);
    transform: translate3d(-50%, 0, 0);
  }

.process-callout-progress__segment {
    width: calc((var(--process-progress-length) - 24px) / 4);
    height: var(--process-progress-thickness);
  }

  .process-callout-progress__fill {
    transform: scaleX(var(--process-progress-fill));
    transform-origin: left;
  }

  .process-callout__content {
    display: flex;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .process-callout__copy {
    align-items: center;
  }

  .process-callout__deliverables {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  #processModal {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
  }

  .content-modal__viewport {
    padding: 0;
  }

  .content-modal__panel {
    --process-modal-frame-height: 100dvh;
    width: 100vw;
    max-width: none;
    height: 100vh;
    height: var(--process-modal-frame-height);
    min-height: 100vh;
    min-height: var(--process-modal-frame-height);
    border-radius: 0;
  }

  .content-modal__close {
    top: max(var(--space-page-inline), env(safe-area-inset-top));
    right: var(--space-page-inline);
  }

  .process-modal__process-scene {
    --process-modal-viewport-height: 100%;
    --process-modal-canvas-height: 64%;
  }

  .process-modal__process-scene .process-callout-track {
    height: 100%;
  }

  .process-modal__process-scene .process-callout {
    bottom: max(126px, calc(env(safe-area-inset-bottom) + 110px));
    width: min(
      340px,
      calc(100vw - var(--space-page-inline) - var(--space-page-inline))
    );
  }

  .process-step-controls {
    bottom: max(54px, calc(env(safe-area-inset-bottom) + 38px));
    width: min(
      400px,
      calc(100vw - var(--space-page-inline) - var(--space-page-inline))
    );
  }

  .square-system-sticky {
    --square-system-height: min(58svh, 560px);
  }

  .offer-text-section {
    padding-bottom: 16vh;
  }

  .process-callout-stack {
    margin-top: clamp(64px, 10vh, 110px);
  }

  .process-callout {
    bottom: max(107px, calc(env(safe-area-inset-bottom) + 91px));
    width: min(380px, calc(100vw - 48px));
  }

  .process-callout-progress {
    bottom: max(82px, calc(env(safe-area-inset-bottom) + 66px));
  }
}

@media (max-width: 480px) {
  .process-callout {
    bottom: max(105px, calc(env(safe-area-inset-bottom) + 89px));
    width: min(340px, calc(100vw - 40px));
  }

  .process-callout__copy {
    gap: 0;
  }

  .process-callout-progress {
    bottom: max(80px, calc(env(safe-area-inset-bottom) + 64px));
    gap: var(--space-2);
  }

  .process-callout-progress__segment {
    width: calc((var(--process-progress-length) - 21px) / 4);
  }
}

@media (max-width: 1000px) and (max-height: 600px) and (orientation: landscape) {
  #processModal {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
  }

  #processModal .content-modal__viewport {
    width: 100%;
    height: 100%;
    padding: 0;
  }

  #processModal .content-modal__panel {
    --process-modal-frame-height: 100dvh;
    width: 100vw;
    max-width: none;
    height: 100vh;
    height: var(--process-modal-frame-height);
    min-height: 100vh;
    min-height: var(--process-modal-frame-height);
    border-radius: 0;
  }

  #processModal .content-modal__close {
    top: max(var(--space-page-inline), env(safe-area-inset-top));
    right: max(var(--space-page-inline), env(safe-area-inset-right));
  }

  #processModal .process-modal__process-scene .process-callout {
    width: min(560px, calc(100vw - 120px));
  }

  #processModal .process-modal__process-scene .process-callout__content {
    background: #fff;
    box-shadow: 0 0 24px 24px #fff;
  }

  #processModal .process-step-controls {
    width: min(400px, calc(100vw - 48px));
  }
}

.headline-section__header {
  display: flex;
  width: min(980px, 100%);
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.headline-section__eyebrow {
  color: var(--theme-ink);
  font-size: var(--type-label-size);
  font-weight: var(--type-weight);
  line-height: var(--type-label-leading);
  letter-spacing: var(--type-label-tracking);
  text-align: center;
}

.headline-section__title {
  width: min(980px, 100%);
  margin: var(--space-related) 0 0;
  color: var(--theme-ink);
  font-size: var(--type-large);
  font-weight: var(--type-weight);
  line-height: var(--type-h2-leading);
  letter-spacing: var(--type-heading-tracking);
  text-align: center;
  text-wrap: balance;
}

.headline-section__plain {
  width: min(52ch, 100%);
  color: var(--theme-ink);
  margin-top: var(--space-group);
  font-size: var(--type-body-size);
  font-weight: var(--type-weight);
  line-height: var(--type-body-leading);
  letter-spacing: var(--type-body-tracking);
  text-align: center;
  text-wrap: pretty;
}

.process-link-button {
  display: inline-flex;
  width: auto;
  margin-top: var(--space-block);
  padding: 0;
  align-items: center;
  gap: 10px;
  color: var(--theme-ink);
  background: transparent;
  font-size: var(--type-label-size);
  font-weight: 400;
  line-height: var(--type-label-leading);
  letter-spacing: var(--type-label-tracking);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 200ms ease-out;
}

.process-link-button:hover,
.process-link-button:focus-visible {
  gap: 20px;
}

.process-link-button:focus-visible {
  outline: 1px solid var(--theme-ink);
  outline-offset: 4px;
}

.process-link-button__arrow,
.process-link-button__arrow svg {
  display: block;
  width: 16px;
  height: 16px;
}

.process-link-button__arrow {
  flex: none;
  border-radius: 3px;
  background: var(--brand-blue);
}

.process-link-button__arrow path {
  stroke: #fff;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.difference-section {
  display: flex;
  min-height: 100vh;
  padding: var(--space-section) var(--space-page-inline);
  flex-direction: column;
  align-items: center;
  background: var(--theme-paper);
  color: var(--theme-ink);
  overflow: hidden;
}

.difference-section__header {
  display: flex;
  width: min(1280px, 100%);
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.difference-section__eyebrow {
  color: inherit;
  font-size: var(--type-label-size);
  font-weight: var(--type-weight);
  line-height: var(--type-label-leading);
  letter-spacing: var(--type-label-tracking);
  text-align: center;
}

.difference-section__title {
  width: min(1240px, 100%);
  margin: var(--space-related) 0 0;
  color: inherit;
  font-size: var(--type-large);
  font-weight: var(--type-weight);
  line-height: var(--type-h2-leading);
  letter-spacing: var(--type-heading-tracking);
  text-align: center;
  text-wrap: balance;
}

.difference-section__plain {
  width: min(760px, 100%);
  color: inherit;
  margin-top: var(--space-group);
  font-size: var(--type-body-size);
  font-weight: var(--type-weight);
  line-height: var(--type-body-leading);
  letter-spacing: var(--type-body-tracking);
  text-align: center;
}

.difference-table {
  --difference-before-cell: #e9e9e9;
  --difference-before-header: #d9d9d9;
  --difference-after-cell: #b8dcf0;
  --difference-after-header: #9bd1ef;
  display: grid;
  width: min(600px, 100%);
  margin-top: var(--space-8);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-rows: auto;
  gap: var(--space-1);
  color: var(--theme-ink);
}

.difference-table__cell {
  display: flex;
  min-width: 0;
  border-radius: 6px;
  padding: var(--space-2) var(--space-5) var(--space-2) var(--space-3);
  align-items: flex-start;
  color: var(--ink);
  background: var(--difference-before-cell);
  font-size: var(--type-extra-small);
  font-weight: var(--small-text-weight);
  line-height: var(--type-label-leading);
  letter-spacing: var(--type-label-tracking);
  word-break: break-word;
  transform: translate3d(0, 0, 0);
  will-change: opacity, transform;
}

.difference-table__cell--before {
  color: var(--ink);
  background: var(--difference-before-cell);
}

.difference-table__cell--after {
  background: var(--difference-after-cell);
}

.difference-table__cell--header {
  padding: var(--space-2) var(--space-3);
}

.difference-table__cell--before.difference-table__cell--header {
  background: var(--difference-before-header);
}

.difference-table__cell--after.difference-table__cell--header {
  background: var(--difference-after-header);
}

.contact-section {
  display: flex;
  min-height: 100vh;
  padding: var(--space-section-large) var(--space-page-inline)
    calc(var(--space-section-large) + var(--space-7));
  flex-direction: column;
  align-items: center;
  background: var(--theme-paper);
  color: var(--theme-ink);
}

.contact-section__header {
  width: min(760px, 100%);
}

.contact-section__header .headline-section__title {
  width: min(680px, 100%);
}

.contact-section__header .headline-section__plain {
  width: min(600px, 100%);
}

.contact-form {
  display: grid;
  width: min(300px, 100%);
  margin-top: var(--space-9);
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-1);
}

.contact-form__field {
  position: relative;
  width: 100%;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 6px;
  padding: var(--space-2) var(--space-3);
  color: #111111;
  background: #e9e9e9;
  font: inherit;
  font-size: var(--type-extra-small);
  font-weight: var(--small-text-weight);
  line-height: var(--type-label-leading);
  letter-spacing: var(--type-label-tracking);
  transition:
    background 160ms ease,
    box-shadow 160ms ease;
}

.contact-form__field input,
.contact-form__field select {
  height: 36px;
}

.contact-form__field--message {
  grid-column: 1 / -1;
}

.contact-form__field textarea {
  min-height: 156px;
  resize: vertical;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #858585;
  opacity: 1;
}

.contact-form__field select {
  padding-right: var(--space-7);
  color: #858585;
  appearance: none;
  cursor: pointer;
}

.contact-form__field select:valid {
  color: #111111;
}

.contact-form__field--select::after {
  content: "";
  position: absolute;
  right: var(--space-5);
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #858585;
  border-bottom: 2px solid #858585;
  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}

.contact-form__field input:hover,
.contact-form__field select:hover,
.contact-form__field textarea:hover {
  background: #e5e5e5;
}

.contact-form__field input:focus-visible,
.contact-form__field select:focus-visible,
.contact-form__field textarea:focus-visible {
  outline: 1px solid var(--brand-blue);
  outline-offset: 0;
  color: #111111;
  background: #e9e9e9;
  box-shadow: none;
}

.contact-form__submit {
  display: flex;
  grid-column: 1 / -1;
  width: 100%;
  height: 36px;
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  padding: var(--space-2) var(--space-3);
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--brand-blue);
  font: inherit;
  font-size: var(--type-extra-small);
  font-weight: var(--type-weight);
  line-height: var(--type-label-leading);
  letter-spacing: var(--type-label-tracking);
  cursor: pointer;
  transition:
    background 160ms ease,
    opacity 160ms ease,
    transform 160ms ease;
}

.contact-form__submit:hover {
  background: #006be6;
}

.contact-form__submit:active {
  transform: translateY(1px);
}

.contact-form__submit:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 4px;
}

.contact-form__submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.contact-form__status {
  grid-column: 1 / -1;
  min-height: var(--type-label-leading);
  color: #616161;
  font-size: var(--type-label-size);
  line-height: var(--type-label-leading);
  letter-spacing: var(--type-label-tracking);
  text-align: center;
}

.contact-form__status.is-error {
  color: #9d261d;
}

.contact-form__status.is-success {
  color: #166534;
}

.contact-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .content-modal__close,
  .process-link-button,
  .difference-table__cell,
  .case-study-phase-map__cell {
    transition: none;
  }

  .difference-table__cell,
  .case-study-phase-map__cell {
    opacity: 1;
    transform: none;
  }
}

.case-study-section {
  --case-study-gutter: clamp(24px, 7vw, 135px);
  --case-study-subsection-gap: 25vh;
  --case-study-space-1: var(--space-3);
  --case-study-space-2: var(--space-5);
  --case-study-space-3: var(--space-7);
  display: flex;
  min-height: auto;
  padding: 0 0 var(--case-study-subsection-gap);
  flex-direction: column;
  align-items: center;
  gap: var(--case-study-subsection-gap);
  background: var(--theme-paper);
  color: var(--theme-ink);
  overflow: hidden;
}

.case-study-section--carousel-only {
  padding: var(--case-study-subsection-gap) 0;
  gap: var(--space-5);
}

.landing-scroll-indicator.landing-scroll-indicator--carousel {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 1;
  color: var(--theme-ink);
  transform: none;
  transition: none;
}

.case-study-subsection {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: var(--case-study-space-3);
}

.case-study-subsection--text-table {
  gap: calc(var(--case-study-space-2) + var(--case-study-space-2));
}

.case-study-hero-stage {
  --case-hero-radius: 12px;
  --case-hero-scale: 0.6;
  position: relative;
  width: 100%;
  height: 80vh;
}

.case-study-hero {
  position: sticky;
  top: 0;
  width: 100%;
  height: 80vh;
  margin: 0;
  border-radius: var(--case-hero-radius);
  overflow: hidden;
  transform: translate3d(0, 0, 0) scale(var(--case-hero-scale));
  transform-origin: center center;
  will-change: transform;
}

.case-study-hero img,
.case-study-comparison__image,
.case-study-final-image img,
.case-study-final-image video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-copy {
  display: flex;
  width: min(600px, calc(100vw - 48px));
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.case-study-copy__eyebrow {
  color: inherit;
  font-size: var(--type-label-size);
  font-weight: var(--type-weight);
  line-height: var(--type-label-leading);
  letter-spacing: var(--type-label-tracking);
}

.case-study-phase-map__cell,
.case-study-comparison__label {
  color: inherit;
  font-size: var(--type-extra-small);
  font-weight: var(--small-text-weight);
  line-height: var(--type-label-leading);
  letter-spacing: var(--type-label-tracking);
}

.case-study-copy__title {
  width: 100%;
  margin: 0;
  color: inherit;
  font-size: var(--type-medium);
  font-weight: var(--type-weight);
  line-height: var(--type-title-leading);
  letter-spacing: var(--type-title-tracking);
  text-align: center;
}

.case-study-copy__title,
.case-study-copy__subhead {
  margin-top: var(--space-related);
  white-space: pre-line;
}

.case-study-copy--intro .case-study-copy__title {
  font-size: var(--type-large);
  line-height: var(--type-h2-leading);
  letter-spacing: var(--type-heading-tracking);
}

.case-study-copy__body {
  width: min(44ch, 100%);
  margin-top: var(--space-group);
  color: inherit;
  font-size: var(--type-body-size);
  font-weight: var(--type-weight);
  line-height: var(--type-body-leading);
  white-space: pre-line;
  letter-spacing: var(--type-body-tracking);
}

.case-study-copy__subhead {
  width: min(52ch, 100%);
  margin: var(--space-related) 0 0;
  color: inherit;
  font-size: var(--type-medium);
  font-weight: var(--type-weight);
  line-height: var(--type-title-leading);
  letter-spacing: var(--type-title-tracking);
  text-align: center;
}

.case-study-carousel {
  --case-study-carousel-height: min(800px, 80vh);
  position: relative;
  width: 100%;
  height: var(--case-study-carousel-height);
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.case-study-carousel.is-dragging {
  cursor: grabbing;
}

.case-study-carousel__track {
  display: flex;
  width: max-content;
  height: 100%;
  gap: var(--case-study-space-3);
  will-change: transform;
}

.case-study-carousel__set {
  display: flex;
  flex: 0 0 auto;
  height: 100%;
  gap: var(--case-study-space-3);
}

.case-study-carousel__item {
  position: relative;
  height: 100%;
  aspect-ratio: 800 / 1066;
  flex: 0 0 auto;
  border-radius: 12px;
  overflow: hidden;
}

.case-study-carousel__item--wide {
  aspect-ratio: 1650 / 1066;
}

.case-study-carousel__picture,
.case-study-carousel__image {
  display: block;
  width: 100%;
  height: 100%;
}

.case-study-carousel__image {
  object-fit: cover;
  pointer-events: none;
}

.case-study-carousel__button {
  position: absolute;
  bottom: 0;
  left: 50%;
  isolation: isolate;
  display: flex;
  margin-top: 0;
  padding: var(--space-4) var(--space-6);
  align-items: center;
  justify-content: center;
  border-radius: 8px 8px 0 0;
  color: var(--theme-ink);
  background: #fff;
  text-decoration: none;
  text-align: center;
  transform: translate3d(-50%, calc(100% + var(--space-3)), 0);
  opacity: 0;
  pointer-events: auto;
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
  will-change: transform;
}

.case-study-carousel__item:hover .case-study-carousel__button,
.case-study-carousel__item.is-drag-source .case-study-carousel__button,
.case-study-carousel__button.is-modal-focus-target,
.case-study-carousel__button:focus-visible {
  transform: translate3d(-50%, 0, 0);
  opacity: 1;
}

.case-study-carousel__button.is-modal-focus-target {
  transition: none;
}

.case-study-carousel__button:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: -2px;
}

.case-study-carousel__action {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 10px;
  transition: gap 200ms ease-out;
}

.case-study-carousel__button:hover .case-study-carousel__action,
.case-study-carousel__button:focus-visible .case-study-carousel__action {
  gap: 20px;
}

.case-study-carousel__label {
  font-size: var(--type-label-size);
  font-weight: 400;
  line-height: var(--type-label-leading);
  letter-spacing: var(--type-label-tracking);
  white-space: nowrap;
}

.case-study-carousel__arrow,
.case-study-carousel__arrow svg {
  display: block;
  width: 16px;
  height: 16px;
  flex: none;
}

@media (hover: none) {
  .case-study-carousel__button {
    transform: translate3d(-50%, 0, 0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-study-carousel__button,
  .case-study-carousel__action {
    transition: none;
  }
}

.case-study-comparison {
  --comparison-position: 33%;
  position: relative;
  width: min(1055px, calc(100vw - 48px));
  aspect-ratio: 1055 / 625;
  border-radius: 12px;
  overflow: visible;
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}

.case-study-comparison__image {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.case-study-comparison__image--after {
  clip-path: inset(0 0 0 var(--comparison-position));
}

.case-study-comparison__handle {
  position: absolute;
  inset: -40px auto -22px var(--comparison-position);
  z-index: 2;
  display: flex;
  width: 112px;
  border: 0;
  padding: 0;
  align-items: flex-start;
  justify-content: center;
  color: var(--brand-blue);
  background: transparent;
  font: inherit;
  transform: translateX(-56px);
  cursor: ew-resize;
}

.case-study-comparison__handle:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: -2px;
}

.case-study-comparison__line {
  display: block;
  width: 5px;
  height: 100%;
  border-radius: 999px;
  background: var(--brand-blue);
}

.case-study-comparison__label {
  position: absolute;
  top: 0;
  padding-top: 0;
  color: var(--theme-ink);
  white-space: nowrap;
}

.case-study-comparison__label--before {
  right: calc(50% + 28px);
}

.case-study-comparison__label--after {
  left: calc(50% + 28px);
  color: var(--brand-blue);
}

.case-study-phase-map {
  display: grid;
  width: min(600px, calc(100vw - 48px));
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-1);
}

.case-study-phase-map__cell {
  min-width: 0;
  border-radius: 6px;
  padding: var(--space-2) var(--space-5) var(--space-2) var(--space-3);
  color: var(--ink);
  background: #e9e9e9;
  word-break: break-word;
  transform: translate3d(0, 0, 0);
  will-change: opacity, transform;
}

.case-study-phase-map__cell--header {
  background: #d9d9d9;
}

.case-study-phase-map__cell--after {
  background: #b8dcf0;
}

.case-study-phase-map__cell--header.case-study-phase-map__cell--after {
  background: #9bd1ef;
}

.case-study-final-image {
  width: min(1444px, 70vw);
  aspect-ratio: 1444 / 750;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
}

.content-modal--case-study .content-modal__viewport {
  align-items: flex-start;
  overflow-y: auto;
}

.content-modal__panel--case-study {
  width: 800px;
  height: auto;
  min-height: 0;
  background: #f7f7f7;
}

.content-modal--case-study .content-modal__close {
  position: fixed;
  top: calc(var(--space-5) + var(--space-6));
  right: max(
    calc((100vw - 800px) / 2 + var(--space-6)),
    calc(var(--space-5) + var(--space-6))
  );
  color: var(--ink);
  background: #fff;
  box-shadow: 0 0.5px 2px rgba(0, 0, 0, 0.12);
  transition:
    color 200ms ease-out,
    background-color 200ms ease-out;
}

.content-modal--case-study.is-closing .content-modal__close {
  pointer-events: none;
}

.content-modal__close:hover {
  color: #fff;
  background-color: var(--brand-blue);
}

.case-study-modal__body {
  display: block;
  width: 100%;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: visible;
}

.case-study-modal__body .case-study-section {
  --case-study-subsection-gap: var(--space-section);
  width: 100%;
  padding: 0 0 var(--space-section);
}

.case-study-modal__body .case-study-section--flush-media-end {
  padding-bottom: 0;
}

.case-study-modal-thumbnail {
  width: 100%;
  height: clamp(500px, 70svh, 600px);
  margin: 0;
  overflow: hidden;
}

.case-study-modal-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-modal__body .case-study-copy {
  width: min(
    600px,
    calc(100% - var(--space-page-inline) - var(--space-page-inline))
  );
}

.case-study-modal__gallery {
  display: grid;
  width: 100%;
  gap: calc(var(--space-4) + var(--space-1));
}

.case-study-modal__gallery-item {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.case-study-modal__gallery-item img,
.case-study-modal__gallery-item video {
  display: block;
  width: 100%;
  height: auto;
}

.case-study-modal__body .case-study-carousel {
  height: min(750px, 80svh);
}

.case-study-modal__body .case-study-carousel__item {
  display: block;
  position: static;
  width: auto;
  height: 100%;
  aspect-ratio: auto;
  flex: 0 0 auto;
  border-radius: 12px;
  object-fit: cover;
  pointer-events: none;
}

.case-study-modal__body .case-study-phase-map {
  width: min(
    600px,
    calc(100% - var(--space-page-inline) - var(--space-page-inline))
  );
}

.case-study-modal-video {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
}

.case-study-modal-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

@media (max-width: 1023px) {
  :root {
    --type-h2-size: 36px;
    --type-h2-leading: 44px;
  }
}

@media (max-width: 760px) {
  :root {
    --type-h2-size: 32px;
    --type-h2-leading: 40px;
    --type-title-size: 20px;
    --type-title-leading: 28px;
    --space-section: var(--space-8);
    --space-section-large: var(--space-9);
    --space-page-inline: 20px;
  }

  .section-progress-nav {
    top: auto;
    bottom: calc(30px + env(safe-area-inset-bottom, 0px));
    transform: translate3d(-50%, 12px, 0);
  }

  .section-progress-nav.is-visible {
    transform: translate3d(-50%, 0, 0);
  }

  .section-progress-nav:hover,
  .section-progress-nav:focus-within {
    width: var(--section-progress-collapsed-width, 96px);
    height: 40px;
    background: rgba(225, 225, 225, 0.72);
    box-shadow: 0 0.5px 2px rgba(0, 0, 0, 0.06);
  }

  .section-progress-nav:hover .section-progress-nav__indicators,
  .section-progress-nav:focus-within .section-progress-nav__indicators {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .section-progress-nav:hover .section-progress-nav__contents,
  .section-progress-nav:focus-within .section-progress-nav__contents {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
  }

  .section-progress-nav.is-expanded {
    width: min(300px, calc(100vw - 24px));
    height: var(--section-progress-expanded-height, 196px);
    background: rgba(225, 225, 225, 0.9);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
  }

  .section-progress-nav.is-expanded .section-progress-nav__indicators {
    opacity: 0;
    transform: translate3d(0, -10px, 0);
  }

  .section-progress-nav.is-expanded .section-progress-nav__contents {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .section-progress-nav__contents {
    width: min(300px, calc(100vw - 24px));
  }

  .portfolio-intro {
    width: calc(100vw - 40px);
  }

  .landing-scroll-indicator {
    bottom: max(20px, env(safe-area-inset-bottom));
    gap: var(--space-2);
  }

  .landing-scroll-indicator--modal {
    top: max(18px, env(safe-area-inset-top));
    bottom: auto;
  }

  .landing-scroll-indicator__icon--mouse {
    display: none;
  }

  .landing-scroll-indicator__icon--hand {
    display: block;
  }

  .word-reveal-line {
    white-space: nowrap;
  }

  .word-reveal-copy {
    width: min(360px, calc(100vw - 40px));
  }

  .offer-text-section {
    padding-inline: var(--space-page-inline);
  }

  .offer-text-section .headline-section__title br {
    display: none;
  }

  .offer-text-section .headline-section__plain br,
  .difference-section__plain br {
    display: none;
  }

  .difference-section {
    min-height: auto;
    padding: var(--space-section) var(--space-page-inline);
  }

  .difference-section__header {
    gap: 0;
  }

  .difference-section__title {
    width: min(480px, 100%);
  }

  .difference-section__title br {
    display: none;
  }

  .difference-table {
    margin-top: var(--space-8);
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-1);
  }

  .difference-table__cell {
    min-height: auto;
    padding: var(--space-2) var(--space-3);
  }

  .difference-table__cell--header {
    min-height: auto;
    padding: var(--space-2) var(--space-3);
  }

  .contact-section {
    min-height: auto;
    padding: var(--space-section-large) var(--space-page-inline)
      calc(var(--space-section-large) + var(--space-7));
  }

  .contact-form {
    margin-top: var(--space-8);
  }

  .contact-section__header br {
    display: none;
  }

  .contact-form__field textarea {
    min-height: 156px;
  }

  .case-study-section {
    padding-bottom: var(--case-study-subsection-gap);
  }

  .case-study-hero {
    top: 0;
  }

  .case-study-copy__title br,
  .case-study-copy__subhead br {
    display: none;
  }

  .case-study-carousel__track {
    gap: var(--case-study-space-2);
  }

  .case-study-carousel__set {
    gap: var(--case-study-space-2);
  }

  .case-study-carousel__item {
    height: 100%;
  }

  .case-study-comparison {
    width: calc(100vw - 40px);
  }

  .case-study-comparison__handle {
    inset-block: -34px -18px;
    width: 96px;
    transform: translateX(-48px);
  }

  .case-study-comparison__label--before {
    right: calc(50% + 20px);
  }

  .case-study-comparison__label--after {
    left: calc(50% + 20px);
  }

  .case-study-phase-map {
    width: calc(100vw - 40px);
  }

  .case-study-phase-map__cell {
    padding: var(--space-2) var(--space-3);
  }

  .case-study-final-image {
    width: calc(100vw - 40px);
  }

  .content-modal__panel--case-study {
    width: 100vw;
    max-width: 100vw;
    border-radius: 0;
  }

  .content-modal--case-study .content-modal__close {
    top: max(var(--space-page-inline), env(safe-area-inset-top));
    right: var(--space-page-inline);
  }

  .case-study-modal__body {
    min-height: 100svh;
  }

  .case-study-modal__body .case-study-copy,
  .case-study-modal__body .case-study-phase-map,
  .case-study-modal-video {
    width: calc(100% - var(--space-page-inline) - var(--space-page-inline));
  }
}
