:root {
  --paper: #e2e2dd;
  --paper-alt: #dfdfdc;
  --ink: #1d1713;
  --muted: #767471;
  --line: #c5c5c1;
  --dark-muted: #777;
  --white: #fff;
  --black: #000;
  --edge: clamp(24px, 6.667vw, 128px);
  --vh: 1vh;
  --frame-scale-x: 1;
  --frame-scale-y: 1;
  --frame-scale: 1;
  --menu-transition: cubic-bezier(0.18, 0.03, 0.35, 1);
}

* {
  box-sizing: border-box;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

html {
  background: var(--black);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  font-variation-settings: "opsz" 14;
  scrollbar-width: none;
}

body {
  margin: 0;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media (hover: hover) and (pointer: fine) {
  body,
  body * {
    cursor: none !important;
  }
}

body.preview-open {
  overflow: hidden;
}

body.mobile-view-notice-open {
  overflow: hidden;
}

.mobile-view-notice {
  align-items: flex-end;
  background: rgba(0, 0, 0, 0.62);
  display: none;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 16px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  pointer-events: none;
  position: fixed;
  transition: opacity 260ms ease;
  z-index: 2400;
}

.mobile-view-notice-capable .mobile-view-notice {
  display: flex;
}

.mobile-view-notice.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-view-notice-panel {
  background: var(--paper);
  border: 1px solid var(--ink);
  color: var(--ink);
  max-width: 420px;
  padding: 24px;
  padding-top: 64px;
  position: relative;
  transform: translate3d(0, 24px, 0);
  transition: transform 320ms var(--menu-transition);
  width: 100%;
}

.mobile-view-notice.is-open .mobile-view-notice-panel {
  transform: translate3d(0, 0, 0);
}

.mobile-view-notice-close {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  display: flex;
  height: 40px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
}

.mobile-view-notice-close img {
  height: 10px;
  width: 10px;
}

.mobile-view-notice-label {
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 24px;
}

.mobile-view-notice h2 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 36px;
  margin: 0;
}

.mobile-view-notice #mobile-view-notice-copy {
  font-size: 16px;
  line-height: 24px;
  margin: 20px 0 32px;
}

.mobile-view-notice-continue {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--white);
  display: block;
  height: 48px;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

.mobile-view-notice-close:focus-visible,
.mobile-view-notice-continue:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: -4px;
}

@media (hover: hover) and (pointer: fine) {
  .mobile-view-notice-close:hover,
  .mobile-view-notice-continue:hover {
    background: var(--white);
    color: var(--ink);
  }
}

body.preview-transitioning::after {
  content: "";
  inset: 0;
  pointer-events: auto;
  position: fixed;
  touch-action: none;
  z-index: 3000;
}

body.preview-open .grain {
  opacity: 0;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  height: 0;
  width: 0;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.grain {
  display: block;
  height: 100vh;
  image-rendering: pixelated;
  inset: 0;
  opacity: 1;
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  width: 100vw;
  z-index: 2000;
}

.site-cursor {
  background: var(--white);
  border-radius: 50%;
  height: 16px;
  left: 0;
  mix-blend-mode: difference;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: translate3d(-50%, -50%, 0) scale(1);
  transition: height 180ms ease, opacity 180ms ease, width 180ms ease;
  width: 16px;
  will-change: transform, width, height;
  z-index: 3000;
}

.site-cursor.is-visible {
  opacity: 1;
}

.site-cursor.is-hovering {
  height: 28px;
  width: 28px;
}

@media (hover: none), (pointer: coarse) {
  .site-cursor {
    display: none;
  }
}

#smooth-wrapper {
  overflow: hidden;
  position: relative;
  transform-origin: center center;
  transition:
    opacity 1500ms var(--menu-transition),
    transform 1500ms var(--menu-transition);
  will-change: transform, opacity;
}

#smooth-content {
  min-height: 100vh;
  will-change: transform;
}

.site-nav {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 24px;
  position: fixed;
  right: 0;
  top: 0;
  opacity: 1;
  transform-origin: center center;
  transform: translateY(0);
  transition:
    color 240ms ease,
    opacity 1500ms var(--menu-transition),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 50;
}

.site-nav.nav-hidden {
  transform: translateY(-110%);
}

.brand img {
  height: 32px;
  width: 125px;
}

.nav-dark .brand img {
  content: url("/public/assets/logo-light.svg");
}

.nav-actions {
  align-items: center;
  display: flex;
  gap: 8px;
}

.language-switcher {
  position: relative;
}

.language,
.menu-button,
.button {
  align-items: center;
  border: 1px solid var(--ink);
  display: inline-flex;
  height: 45px;
  justify-content: center;
  line-height: 1;
  transition: background-color 260ms ease, color 260ms ease, transform 260ms ease, border-color 260ms ease;
}

.language {
  background: transparent;
  border-color: transparent;
  color: var(--ink);
  gap: 2px;
  height: auto;
  padding: 0 12px;
}

.language img {
  height: 5.5px;
  transition: transform 220ms ease;
  width: 9.5px;
}

.language-switcher.is-open .language img {
  transform: rotate(180deg);
}

.language-menu {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  min-width: 184px;
  opacity: 0;
  padding: 4px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 14px);
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 220ms var(--menu-transition);
  visibility: hidden;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.language-option {
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  min-height: 40px;
  padding: 8px 10px;
  text-align: left;
  width: 100%;
}

.language-option:hover,
.language-option[aria-checked="true"] {
  background: var(--black);
  color: var(--white);
}

.language-option strong {
  font-size: 12px;
  font-weight: 600;
}

.button {
  background: var(--black);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  padding: 0 20px;
}

.menu-button {
  background: transparent;
  padding: 0;
  width: 45px;
}

.menu-button img {
  height: 13.5px;
  width: 19.5px;
}

.button:hover,
.menu-button:hover {
  transform: translateY(-2px);
}

.nav-dark {
  color: var(--white);
}

.nav-dark .button {
  background: var(--white);
  color: var(--black);
}

.nav-dark .menu-button {
  border-color: var(--white);
}

.nav-dark .menu-button img {
  content: url("/public/assets/menu-light.svg");
}

.nav-dark .language {
  color: var(--white);
}

.nav-dark .language img {
  content: url("/public/assets/chevron-light.svg");
}

.nav-dark .language-menu {
  background: var(--black);
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.nav-dark .language-option:hover,
.nav-dark .language-option[aria-checked="true"] {
  background: var(--white);
  color: var(--black);
}

.menu-overlay {
  background: #e2e2dd;
  color: #767471;
  height: 100vh;
  inset: 0;
  pointer-events: none;
  position: fixed;
  transform: translate3d(100%, 0, 0);
  visibility: hidden;
  transition:
    transform 1500ms var(--menu-transition),
    visibility 0s linear 1500ms;
  width: 100vw;
  z-index: 1200;
}

.menu-overlay.is-open {
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition:
    transform 1500ms var(--menu-transition),
    visibility 0s linear 0s;
  visibility: visible;
}

.menu-panel {
  height: 100%;
  position: relative;
  width: 100%;
}

.menu-close {
  align-items: center;
  background: transparent;
  border: 1px solid #1d1713;
  display: flex;
  height: 45px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 24px;
  top: 24px;
  transition: transform 260ms ease;
  width: 45px;
  z-index: 2;
}

.menu-close:hover {
  transform: translateY(-2px);
}

.menu-close:active {
  transform: scale(0.96);
}

.menu-close img {
  display: block;
  height: 10px;
  width: 10px;
}

.menu-list {
  display: grid;
  grid-template-rows: repeat(7, minmax(0, 1fr));
  height: 100%;
  width: 100%;
}

.menu-link {
  align-items: flex-end;
  border: 1px solid #c5c5c1;
  color: #767471;
  display: flex;
  font-size: clamp(42px, 3.333vw, 64px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 72px;
  min-width: 0;
  overflow: hidden;
  padding: 32px 128px;
  position: relative;
  transition: color 220ms ease;
}

.menu-link::after {
  border-right: 1px solid #c5c5c1;
  content: "";
  inset: 0 auto 0 0;
  pointer-events: none;
  position: absolute;
  width: var(--menu-row-width, 23vw);
}

.menu-link:nth-child(1) { --menu-row-width: 22.5vw; }
.menu-link:nth-child(2) { --menu-row-width: 37.4vw; }
.menu-link:nth-child(3) { --menu-row-width: 27.8vw; }
.menu-link:nth-child(4) { --menu-row-width: 36.8vw; }
.menu-link:nth-child(5) { --menu-row-width: 39vw; }
.menu-link:nth-child(6) { --menu-row-width: 26.5vw; }
.menu-link:nth-child(7) { --menu-row-width: 39.3vw; }

.menu-link span {
  position: relative;
  white-space: nowrap;
  z-index: 1;
}

.menu-link:hover,
.menu-link.is-active {
  color: #1d1713;
}

@media (min-width: 821px) {
  .menu-link {
    align-items: stretch;
    padding: 0;
  }

  .menu-link::after {
    display: none;
  }

  .menu-link span {
    align-items: center;
    border-right: 1px solid #c5c5c1;
    display: inline-flex;
    flex: 0 0 auto;
    height: 100%;
    padding: 0 128px;
    transition: background-color 260ms ease, color 260ms ease;
  }

  .menu-link:hover span,
  .menu-link.is-active span,
  .menu-link:focus-visible span {
    background: #1d1713;
    color: #e2e2dd;
  }

  .menu-link:focus-visible {
    outline: 0;
  }
}

body.menu-open {
  background: #000;
  overflow: hidden;
}

body.menu-transitioning .site-nav {
  transition:
    opacity 1500ms var(--menu-transition),
    transform 1500ms var(--menu-transition);
}

body.menu-open #smooth-wrapper,
body.menu-open .site-nav {
  opacity: 0.4;
  transform: translate3d(-50%, 0, 0) scale(0.8);
  transition:
    opacity 1500ms var(--menu-transition),
    transform 1500ms var(--menu-transition);
}

.section {
  min-height: 100vh;
  position: relative;
}

.light-section {
  background: var(--paper);
}

.dark-section {
  background: var(--black);
  color: var(--white);
}

.viewport-stage {
  background: var(--paper);
  height: calc(var(--vh) * 500);
  min-height: 3100px;
  position: relative;
  z-index: 1;
  --stage-progress: 0;
}

.viewport-sticky {
  background: var(--black);
  height: calc(var(--vh) * 100);
  left: 0;
  min-height: 620px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate3d(0, var(--stage-stick-y, 0px), 0);
  will-change: transform;
}

.viewport-panel {
  background: var(--paper);
  height: 100%;
  inset: 0;
  min-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 var(--edge);
  pointer-events: none;
  position: absolute;
  transition: none;
  visibility: hidden;
  will-change: opacity, transform;
}

.viewport-panel .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.viewport-stage[data-active-panel="hero"] .hero,
.viewport-stage[data-active-panel="started-design"] [data-panel="started-design"],
.viewport-stage[data-active-panel="product-design"] [data-panel="product-design"],
.viewport-stage[data-active-panel="areas"] [data-panel="areas"] {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.hero {
  transform: translate3d(0, 0, 0);
}

.hero-title {
  font-size: clamp(46px, 3.333vw, 64px);
  font-weight: 500;
  left: var(--edge);
  letter-spacing: -0.01em;
  line-height: 1.125;
  max-width: 1276px;
  position: absolute;
  top: calc(221px * var(--frame-scale-y));
  width: min(1276px, calc(100vw - var(--edge) * 2));
}

.viewport-panel .split-line:not(.split-ready),
.viewport-panel .hero-copy p:not(.split-ready) {
  visibility: hidden;
}

.split-word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 1.05em, 0);
  will-change: opacity, transform, filter;
}

.split-char {
  display: inline-block;
  opacity: 0;
  transform-origin: 50% 0%;
  transform-style: preserve-3d;
  will-change: opacity, transform, filter;
}

.muted {
  color: var(--muted);
}

.muted-dark {
  color: var(--dark-muted);
}

.hero-preview {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: block;
  height: calc(191px * var(--frame-scale));
  left: var(--edge);
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  isolation: isolate;
  top: calc(760px * var(--frame-scale-y));
  width: calc(282px * var(--frame-scale));
}

.hero-preview:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 8px;
}

.hero-preview img,
.project-media img,
.shape-grid img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-preview-image {
  display: block;
  inset: 0;
  position: absolute;
  transform: translateZ(0);
}

.hero-preview-image-current {
  z-index: 1;
}

.hero-preview-image-next {
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}

.hero-preview-shutters {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  inset: 0;
  perspective: 520px;
  pointer-events: none;
  position: absolute;
  transform-style: preserve-3d;
  z-index: 2;
}

.hero-preview-shutter {
  opacity: 0;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
}

.hero-preview-shutter:nth-child(odd) {
  --slice-enter-y: -108%;
  --slice-rotate-x: -9deg;
  --slice-rotate-y: 46deg;
  transform-origin: 50% 100%;
}

.hero-preview-shutter:nth-child(even) {
  --slice-enter-y: 108%;
  --slice-rotate-x: 9deg;
  --slice-rotate-y: -46deg;
  transform-origin: 50% 0;
}

.hero-preview-shutter img {
  height: 100%;
  max-width: none;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 600%;
}

.hero-preview-shutter:nth-child(1) img { left: 0; }
.hero-preview-shutter:nth-child(2) img { left: -100%; }
.hero-preview-shutter:nth-child(3) img { left: -200%; }
.hero-preview-shutter:nth-child(4) img { left: -300%; }
.hero-preview-shutter:nth-child(5) img { left: -400%; }
.hero-preview-shutter:nth-child(6) img { left: -500%; }

.hero-preview::before {
  border: 1px solid rgba(226, 226, 221, 0.78);
  box-shadow: inset 0 0 0 1px rgba(29, 23, 19, 0.12);
  content: "";
  inset: 8px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 4;
}

.hero-preview::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.88), transparent);
  content: "";
  height: 2px;
  inset: 50% -18% auto;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translate3d(0, -50%, 0) rotate(-7deg) scaleX(0);
  transform-origin: 0 50%;
  width: auto;
  z-index: 5;
}

.hero-preview.is-transitioning .hero-preview-image-current,
.hero-preview.is-transitioning.is-reverse .hero-preview-image-current {
  animation: mobileHeroPreviewCurrentExit 1050ms cubic-bezier(0.76, 0, 0.24, 1) both;
  will-change: opacity, transform, filter;
}

.hero-preview.is-transitioning.is-reverse .hero-preview-image-current {
  animation-name: mobileHeroPreviewCurrentExitReverse;
}

.hero-preview.is-transitioning .hero-preview-image-next,
.hero-preview.is-transitioning.is-reverse .hero-preview-image-next {
  animation: none;
  opacity: 0;
  visibility: hidden;
}

.hero-preview.is-transitioning .hero-preview-shutter {
  animation: mobileHeroPreviewShutter 750ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--slice-delay);
  will-change: opacity, transform;
}

.hero-preview.is-transitioning.is-reverse .hero-preview-shutter {
  animation-delay: var(--slice-delay-reverse);
}

.hero-preview.is-transitioning::before {
  animation: mobileHeroPreviewFrame 1050ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-preview.is-transitioning::after,
.hero-preview.is-transitioning.is-reverse::after {
  animation: mobileHeroPreviewSignal 1050ms cubic-bezier(0.65, 0, 0.35, 1) both;
}

.hero-preview.is-transitioning.is-reverse::after {
  animation-name: mobileHeroPreviewSignalReverse;
}

@keyframes heroPreviewCurrentExit {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    opacity: 0.58;
    transform: translate3d(-2.8%, 0, 0) scale(0.965);
  }
}

@keyframes heroPreviewCurrentExitReverse {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    opacity: 0.58;
    transform: translate3d(2.8%, 0, 0) scale(0.965);
  }
}

@keyframes heroPreviewReveal {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 1;
    transform: translate3d(5%, 0, 0) scale(1.12);
  }
  48% {
    -webkit-clip-path: polygon(0 0, 72% 0, 55% 100%, 0 100%);
    clip-path: polygon(0 0, 72% 0, 55% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 115% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 115% 0, 100% 100%, 0 100%);
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroPreviewRevealReverse {
  0% {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    opacity: 1;
    transform: translate3d(-5%, 0, 0) scale(1.12);
  }
  48% {
    -webkit-clip-path: polygon(28% 0, 100% 0, 100% 100%, 45% 100%);
    clip-path: polygon(28% 0, 100% 0, 100% 100%, 45% 100%);
  }
  100% {
    -webkit-clip-path: polygon(-15% 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(-15% 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroPreviewSweep {
  0% {
    opacity: 0;
    transform: translate3d(-190%, 0, 0) skewX(-13deg);
  }
  22% {
    opacity: 0.72;
  }
  72% {
    opacity: 0.38;
  }
  100% {
    opacity: 0;
    transform: translate3d(520%, 0, 0) skewX(-13deg);
  }
}

@keyframes heroPreviewSweepReverse {
  0% {
    opacity: 0;
    transform: translate3d(520%, 0, 0) skewX(13deg);
  }
  22% {
    opacity: 0.72;
  }
  72% {
    opacity: 0.38;
  }
  100% {
    opacity: 0;
    transform: translate3d(-190%, 0, 0) skewX(13deg);
  }
}

@keyframes mobileHeroPreviewCurrentExit {
  0%,
  18% {
    filter: blur(0) saturate(1);
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateZ(0) scale(1);
  }
  100% {
    filter: blur(3px) saturate(0.58);
    opacity: 0.18;
    transform: translate3d(-3%, 0, -80px) rotateZ(-1.4deg) scale(0.9);
  }
}

@keyframes mobileHeroPreviewCurrentExitReverse {
  0%,
  18% {
    filter: blur(0) saturate(1);
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateZ(0) scale(1);
  }
  100% {
    filter: blur(3px) saturate(0.58);
    opacity: 0.18;
    transform: translate3d(3%, 0, -80px) rotateZ(1.4deg) scale(0.9);
  }
}

@keyframes mobileHeroPreviewShutter {
  0% {
    filter: brightness(1.32) saturate(0.55);
    opacity: 0;
    transform:
      translate3d(0, var(--slice-enter-y), 64px)
      rotateX(var(--slice-rotate-x))
      rotateY(var(--slice-rotate-y))
      scaleX(0.78);
  }
  36% {
    opacity: 1;
  }
  76% {
    filter: brightness(1.05) saturate(0.9);
    opacity: 1;
    transform: translate3d(0, -1.5%, 0) rotateX(0) rotateY(0) scaleX(1.025);
  }
  100% {
    filter: brightness(1) saturate(1);
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0) rotateY(0) scaleX(1);
  }
}

@keyframes mobileHeroPreviewFrame {
  0%,
  24% {
    opacity: 0;
    transform: rotateZ(-2.5deg) scale(0.72);
  }
  48% {
    opacity: 0.92;
  }
  78% {
    opacity: 0.5;
    transform: rotateZ(0.8deg) scale(1.025);
  }
  100% {
    opacity: 0;
    transform: rotateZ(0) scale(1);
  }
}

@keyframes mobileHeroPreviewSignal {
  0%,
  26% {
    opacity: 0;
    transform: translate3d(0, -50%, 0) rotate(-7deg) scaleX(0);
  }
  42% {
    opacity: 0.9;
  }
  78% {
    opacity: 0.34;
    transform: translate3d(0, -50%, 0) rotate(-7deg) scaleX(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -50%, 0) rotate(-7deg) scaleX(1.15);
  }
}

@keyframes mobileHeroPreviewSignalReverse {
  0%,
  26% {
    opacity: 0;
    transform: translate3d(0, -50%, 0) rotate(7deg) scaleX(0);
  }
  42% {
    opacity: 0.9;
  }
  78% {
    opacity: 0.34;
    transform: translate3d(0, -50%, 0) rotate(7deg) scaleX(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -50%, 0) rotate(7deg) scaleX(1.15);
  }
}

.hero-preview::before,
.hero-preview::after {
  content: none;
}

.hero-preview.is-transitioning .hero-preview-image-current,
.hero-preview.is-transitioning.is-reverse .hero-preview-image-current {
  animation: heroPreviewSlideOut 1200ms cubic-bezier(0.76, 0, 0.24, 1) both;
  will-change: transform;
}

.hero-preview.is-transitioning .hero-preview-image-next,
.hero-preview.is-transitioning.is-reverse .hero-preview-image-next {
  animation: heroPreviewSlideIn 1200ms cubic-bezier(0.76, 0, 0.24, 1) both;
  opacity: 1;
  visibility: visible;
  will-change: transform;
}

@keyframes heroPreviewSlideOut {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes heroPreviewSlideIn {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.hero-copy {
  font-size: 20px;
  left: auto;
  line-height: 32px;
  position: absolute;
  right: var(--edge);
  top: calc(850px * var(--frame-scale-y));
  width: min(620px, calc(100vw - var(--edge) * 2));
}

.hero-copy p {
  margin: 0;
}

.hero-combine {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0 4px;
}

.skill-tag {
  appearance: none;
  -webkit-appearance: none;
  align-items: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 20px;
  font-weight: 500;
  justify-content: center;
  line-height: 20px;
  margin: 0;
  outline: 0;
  overflow: hidden;
  padding: 6px 2px;
  text-decoration: none;
  transition: background-color 360ms ease, color 360ms ease, transform 360ms ease;
  vertical-align: baseline;
  will-change: transform;
}

.tag-yellow {
  background: #ffc443;
  transform: rotate(-2deg);
}

.tag-blue {
  background: #5643ff;
  color: var(--white);
  transform: rotate(2deg);
}

.tag-purple {
  background: #a743ff;
  color: var(--white);
  transform: rotate(-2deg);
}

.skill-tag:hover {
  background: #1d1713;
  color: var(--white);
  transform: rotate(0deg) translateY(-2px);
}

.metric-panel {
  color: var(--black);
}

.metric-label,
.metric-value-frame,
.metric-value {
  margin: 0;
  position: absolute;
  text-align: center;
  white-space: nowrap;
}

.metric-label {
  color: var(--muted);
  font-size: 20px;
  font-weight: 400;
  left: 50%;
  line-height: 32px;
  top: calc(434px * var(--frame-scale-y));
  transform: translateX(-50%);
}

.metric-value-frame {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%) scale(var(--frame-scale-x));
  transform-origin: bottom center;
  width: 1920px;
}

.metric-value {
  font-size: 618px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 618px;
  position: relative;
  text-box-edge: cap alphabetic;
  text-box-trim: trim-both;
}

.metric-motion {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 1em, 0);
  will-change: opacity, transform, filter;
}

html:not([data-language="en"]) #areas .metric-value {
  left: -48px;
  text-align: left;
  width: 1920px;
}

.selected {
  margin-top: calc(var(--vh) * -100);
  background-color: #000;
  min-height: calc(var(--vh) * 800);
  overflow: visible;
  padding: 0;
  position: relative;
  z-index: 2;
}

.selected-inner {
  min-height: calc(var(--vh) * 800);
  overflow: visible;
  position: relative;
  transform: none;
}

.selected .selected-copy,
.selected .project-list {
  display: none;
}

.om-showcase {
  background-color: #000;
  color: #fff;
  min-height: calc(var(--vh) * 800);
  overflow: hidden;
  position: relative;
}

.om-showcase::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.42) 72%, #000 100%),
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0) 82%, #000 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 8;
}

.om-scenes {
  min-height: calc(var(--vh) * 800);
  position: relative;
  z-index: 10;
}

.om-project-scene {
  align-items: center;
  display: flex;
  height: calc(var(--vh) * 100);
  justify-content: center;
  isolation: isolate;
  min-height: 620px;
  overflow: hidden;
  perspective: 900px;
  position: relative;
}

.om-project-scene.final-project-scene {
  transform: translate3d(0, var(--final-work-hold-y, 0px), 0);
  will-change: transform;
  z-index: 14;
}

.om-project-scene.after-final-project {
  display: none;
}

.om-title {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  left: 50%;
  letter-spacing: -0.32px;
  line-height: 48px;
  margin: 0;
  pointer-events: none;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  white-space: nowrap;
  z-index: 20;
}

.om-title-button {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  pointer-events: auto;
  text-align: center;
}

.om-title-button:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 8px;
}

.om-title-text {
  display: inline-block;
  min-width: 12ch;
  will-change: opacity, transform, filter;
}

.om-carousel {
  height: var(--om-cell-h, 420px);
  left: 50%;
  margin: calc(var(--om-cell-h, 420px) * -0.5) 0 0 calc(var(--om-cell-w, 350px) * -0.5);
  position: absolute;
  top: 50%;
  transform: translateZ(var(--om-depth, -550px)) rotateX(var(--om-rotate-x, 3deg)) rotateY(var(--om-rotate-y, 0deg)) rotateZ(var(--om-rotate-z, 3deg));
  transform-style: preserve-3d;
  width: var(--om-cell-w, 350px);
  will-change: transform;
  z-index: 4;
}

.om-carousel-cell {
  height: var(--om-cell-h, 420px);
  left: 0;
  margin: 0;
  position: absolute;
  top: 0;
  transform: rotateY(var(--om-cell-angle, 0deg)) translateZ(var(--om-radius, 540px));
  transform-style: preserve-3d;
  width: var(--om-cell-w, 350px);
}

.om-card {
  height: 100%;
  position: relative;
  transform: rotateZ(var(--om-card-rotate, 8deg));
  transform-style: preserve-3d;
  width: 100%;
}

.om-card-face {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 4px;
  height: 100%;
  inset: 0;
  overflow: hidden;
  position: absolute;
  transform-style: preserve-3d;
  width: 100%;
}

.om-card-face--back {
  transform: rotateY(180deg);
}

.om-carousel-cell img {
  -webkit-user-drag: none;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  width: 100%;
}

.selected-copy {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 32px;
  margin: 0 0 40px 36.4vw;
  max-width: 575px;
}

.project-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-row {
  border-top: 1px solid #222;
  cursor: none;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  min-height: 283px;
  padding-top: 20px;
}

.project-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 460px;
}

.project-meta {
  align-items: center;
  display: flex;
  gap: 12px;
}

.project-meta strong,
.project-meta span {
  display: block;
  font-size: 12px;
  letter-spacing: -0.01em;
  line-height: 12px;
}

.project-meta strong {
  color: #f7f7f7;
  font-weight: 600;
  margin-bottom: 4px;
}

.project-meta span {
  color: #94979c;
}

.logo-chip {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.logo-chip img {
  height: 20px;
  object-fit: contain;
  width: 20px;
}

.logo-chip.logo-raw {
  background: transparent;
}

.logo-chip.logo-raw img {
  height: 32px;
  width: 32px;
}

.logo-chip.yellow img {
  height: 4.5px;
  width: 27px;
}

.logo-chip.green { background: #4f8014; }
.logo-chip.brown { background: #390900; }
.logo-chip.violet { background: #8b5cf6; }
.logo-chip.white { background: #fff; color: #111; }
.logo-chip.teal { background: #038757; }
.logo-chip.blue { background: #123ccf; }
.logo-chip.yellow { background: #fcd34d; color: #111; }
.logo-chip.black { background: #111; }

.project-info p {
  color: #94979c;
  font-size: 13px;
  line-height: 16px;
  margin: 0 0 10px;
}

.project-media {
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(3, minmax(220px, 389px));
}

.project-media img {
  aspect-ratio: 389 / 263;
  background: #111;
  width: 100%;
}

.area-pointer,
.service-pointer {
  color: var(--ink);
  font-size: 13px;
  left: 0;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: opacity 180ms ease;
  z-index: 80;
}

.area-pointer {
  background: #e2e2dd;
  padding: 8px;
}

.area-pointer.visible {
  opacity: 1;
}

.service-pointer {
  align-items: center;
  background: #1d1713;
  color: var(--white);
  display: inline-flex;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.12px;
  line-height: 12px;
  padding: 6px;
  transform: translate3d(var(--service-pointer-x, 0px), var(--service-pointer-y, 0px), 0) scale(0.96);
  transition: opacity 160ms ease, filter 160ms ease;
  white-space: nowrap;
  z-index: 90;
}

.service-pointer.visible {
  opacity: 1;
  transform: translate3d(var(--service-pointer-x, 0px), var(--service-pointer-y, 0px), 0) scale(1);
}

.service-pointer img {
  display: block;
  height: 16px;
  width: 16px;
}

.preview-wrapper {
  background-color: transparent;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  z-index: 120;
}

.preview-wrapper.is-open {
  opacity: 1;
  pointer-events: auto;
}

.project-preview {
  background-color: #000;
  color: #fff;
  display: block;
  height: 100%;
  inset: 0;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 var(--edge) 128px;
  pointer-events: none;
  position: absolute;
  scroll-behavior: smooth;
  scrollbar-color: rgba(255, 255, 255, 0.28) #000;
  scrollbar-width: thin;
  transform-style: preserve-3d;
  visibility: hidden;
}

.project-preview.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.preview-header {
  align-items: center;
  background: #000;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1340px;
  padding: 40px 0 24px;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 20;
}

.preview-title {
  font-size: clamp(32px, 3.333vw, 64px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.125;
  margin: 0;
}

.preview-title .split-char,
.preview-close .split-char {
  opacity: 1;
}

.preview-close {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 0;
  text-align: right;
  white-space: nowrap;
}

.preview-close:hover,
.preview-close:focus-visible {
  color: rgba(255, 255, 255, 0.62);
  outline: none;
}

.preview-copy {
  color: #94979c;
  font-size: 13px;
  line-height: 20px;
  margin: 24px auto 0;
  max-width: 760px;
  text-align: left;
  width: 100%;
}

.preview-meta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 32px;
  grid-template-columns: 0.75fr 1.5fr 1fr;
  margin: 48px auto 64px;
  max-width: 1340px;
  padding: 24px 0;
  width: 100%;
}

.preview-meta div {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.preview-meta dt,
.preview-meta dd {
  margin: 0;
}

.preview-meta dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 16px;
}

.preview-meta dd {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.preview-grid {
  display: grid;
  gap: clamp(14px, 2.2vw, 32px);
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  margin: 0 auto 160px;
  max-width: 1340px;
  perspective: 900px;
  width: 100%;
}

.preview-grid-item {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  margin: 0;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: opacity, transform, filter;
}

.preview-grid-item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.preview-actions {
  align-items: center;
  display: flex;
  gap: 32px;
  justify-content: flex-end;
  margin: -92px auto 112px;
  max-width: 1340px;
  width: 100%;
}

.preview-action {
  align-items: center;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  gap: 2px;
  font-size: 16px;
  font-weight: 500;
  justify-content: center;
  line-height: normal;
  min-height: 20px;
  min-width: 0;
  padding: 0;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.preview-action:hover,
.preview-action:focus-visible {
  outline: none;
  opacity: 0.7;
  transform: translateY(-1px);
}

.preview-action-primary {
  background: transparent;
  color: #fff;
}

.preview-action-primary:hover,
.preview-action-primary:focus-visible {
  background: transparent;
  color: #fff;
}

.preview-action img {
  display: block;
  flex: 0 0 auto;
  height: 10px;
  width: 10px;
}

.gallery-modal,
.media-lightbox {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 260ms ease;
  visibility: hidden;
}

.gallery-modal {
  overflow: auto;
  padding: 96px var(--edge);
  z-index: 180;
}

.gallery-modal.is-open,
.media-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.gallery-modal-panel {
  margin: 0 auto;
  max-width: 1180px;
  min-height: 100%;
  transform: translate3d(0, 28px, 0) scale(0.98);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.gallery-modal.is-open .gallery-modal-panel {
  transform: translate3d(0, 0, 0) scale(1);
}

.gallery-modal-close,
.media-lightbox-close {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 0;
  position: fixed;
  right: var(--edge);
  top: 40px;
  z-index: 2;
}

.gallery-modal-close:hover,
.gallery-modal-close:focus-visible,
.media-lightbox-close:hover,
.media-lightbox-close:focus-visible {
  color: rgba(255, 255, 255, 0.62);
  outline: none;
}

.gallery-open .preview-close,
.media-lightbox-open .gallery-modal-close {
  opacity: 0;
  pointer-events: none;
}

.gallery-modal-grid {
  display: grid;
  gap: clamp(14px, 2vw, 28px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-media-button {
  aspect-ratio: 16 / 10;
  background: rgba(255, 255, 255, 0.05);
  border: 0;
  border-radius: 4px;
  cursor: zoom-in;
  display: block;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  transform: translate3d(0, 34px, 0) scale(0.97);
  transition: filter 180ms ease, transform 180ms ease;
  width: 100%;
}

.gallery-modal.is-open .gallery-media-button {
  animation: galleryTileIn 520ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--gallery-index, 0) * 70ms);
}

.gallery-media-button:hover,
.gallery-media-button:focus-visible {
  filter: brightness(1.08);
  outline: none;
  transform: translate3d(0, -2px, 0) scale(1);
}

.gallery-media-button img,
.gallery-media-button video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.media-lightbox {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 72px var(--edge);
  z-index: 220;
}

.media-lightbox-stage {
  max-height: 100%;
  max-width: min(1180px, 100%);
}

.media-lightbox-stage img,
.media-lightbox-stage video {
  border-radius: 4px;
  display: block;
  max-height: calc(100vh - 144px);
  max-width: 100%;
  object-fit: contain;
}

.media-lightbox.is-open .media-lightbox-stage {
  animation: mediaLightboxIn 340ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes galleryTileIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes mediaLightboxIn {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.preview-case-layout {
  display: grid;
  gap: clamp(48px, 6vw, 104px);
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1340px;
  width: 100%;
}

.preview-case-index {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 144px;
}

.preview-case-index span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 12px;
}

.preview-case-index a {
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  line-height: 20px;
  text-decoration: none;
  transition: color 180ms ease;
}

.preview-case-index a:hover,
.preview-case-index a:focus-visible,
.preview-case-index a.is-active {
  color: #fff;
  outline: none;
}

.preview-case-content {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.preview-case-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  column-gap: clamp(24px, 3vw, 56px);
  display: grid;
  grid-template-columns: 32px minmax(190px, 0.72fr) minmax(0, 1.28fr);
  padding: 56px 0 112px;
  scroll-margin-top: 112px;
}

.preview-case-section > span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  grid-column: 1;
  line-height: 16px;
}

.preview-case-section > h3 {
  font-size: clamp(24px, 2.083vw, 40px);
  font-weight: 500;
  grid-column: 2;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}

.preview-case-section > p,
.preview-case-section > ul,
.preview-case-section > ol,
.preview-case-section > div {
  grid-column: 3;
}

.preview-case-section > p {
  color: #b4b6ba;
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}

.preview-case-section > p + p,
.preview-case-section > p + ul,
.preview-case-section > p + ol,
.preview-case-section > p + div,
.preview-case-section > ul + p,
.preview-case-section > div + p {
  margin-top: 20px;
}

.preview-case-list,
.preview-number-grid {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}

.preview-case-list li,
.preview-number-grid li {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  padding: 14px 0;
}

.preview-case-list li:last-child,
.preview-number-grid li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.preview-number-grid {
  counter-reset: preview-architecture;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.preview-number-grid li {
  counter-increment: preview-architecture;
  padding-right: 16px;
}

.preview-number-grid li::before {
  color: rgba(255, 255, 255, 0.4);
  content: counter(preview-architecture, decimal-leading-zero);
  display: block;
  font-size: 12px;
  margin-bottom: 20px;
}

.preview-insight-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.preview-insight-grid article {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0 20px 0 16px;
}

.preview-insight-grid article:first-child {
  border-left: 0;
  padding-left: 0;
}

.preview-insight-grid strong,
.preview-split-notes strong,
.preview-metric-list strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.preview-insight-grid p,
.preview-split-notes p,
.preview-metric-list p {
  color: #94979c;
  font-size: 13px;
  line-height: 19px;
  margin: 12px 0 0;
}

.preview-insight-grid small {
  color: #fff;
  display: block;
  font-size: 12px;
  line-height: 18px;
  margin-top: 20px;
}

.preview-split-notes {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.preview-split-notes article {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 16px;
}

.preview-split-notes article > span {
  color: rgba(255, 255, 255, 0.4);
  display: block;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 32px;
}

.preview-metric-list {
  display: grid;
}

.preview-metric-list article {
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 20px 0;
}

.preview-metric-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.preview-metric-list em {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  white-space: nowrap;
}

.preview-case-conclusion > h3,
.preview-case-conclusion > p {
  color: #fff;
}

.preview-case-placeholder .preview-case-section > p {
  color: #777;
}

.expertise-stage {
  background: var(--paper);
  margin-top: calc(var(--vh) * -100);
  min-height: calc(var(--vh) * 250);
  overflow: hidden;
  position: relative;
  --expertise-stage-progress: 0;
  z-index: 3;
}

.expertise-sticky {
  background: var(--paper);
  height: calc(var(--vh) * 100);
  min-height: 620px;
  overflow: hidden;
  position: sticky;
  top: 0;
  transform: translate3d(0, var(--expertise-stick-y, 0px), 0);
  will-change: transform;
}

.expertise {
  background: var(--paper);
  height: 100%;
  inset: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  will-change: opacity, transform;
}

.expertise {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transform-origin: center center;
  z-index: 2;
}

.expertise-stage[data-active-panel="expect"] .expertise {
  pointer-events: none;
}

.section-label {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 32px;
  margin: 0;
}

.section-label.light {
  color: var(--white);
}

.expertise-content {
  left: calc(721px * var(--frame-scale-x));
  position: absolute;
  top: calc(221px * var(--frame-scale-y));
  width: min(555px, calc(100vw - var(--edge) * 2));
  z-index: 2;
}

.expertise-content .section-label {
  font-weight: 400;
}

.expertise-list {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 64px;
}

.expertise-item {
  background: transparent;
  border: 0;
  color: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  display: block;
  font-size: clamp(44px, 3.333vw, 64px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 48px;
  padding: 0;
  text-align: left;
  transition: color 260ms ease;
  white-space: nowrap;
  width: max-content;
}

.expertise-item:focus {
  outline: none;
}

.expertise-item.active,
.expertise-item:hover,
.expertise-item:focus-visible {
  color: #000;
}

.expertise-note {
  color: rgba(0, 0, 0, 0.5);
  font-size: 13px;
  line-height: 16px;
  margin: calc(335px * var(--frame-scale-y)) 0 0;
  max-width: 385px;
}

.expertise-gradient-stage {
  bottom: -3vmax;
  height: auto;
  left: -3vmax;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: -3vmax;
  top: -3vmax;
  width: auto;
  z-index: 0;
}

.expertise-gradient {
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 260ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}

.expertise-gradient.is-active {
  opacity: 1;
}

.expertise-gradient video {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.expertise-tooltip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  left: 0;
  max-width: 314px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translate3d(var(--tooltip-x, 0px), var(--tooltip-y, 0px), 0);
  transition: opacity 220ms ease, filter 220ms ease;
  filter: blur(4px);
  will-change: transform, opacity, filter;
  z-index: 20;
}

.expertise-tooltip.is-visible {
  opacity: 1;
  filter: blur(0);
}

.expertise-tooltip span {
  border: 1px solid #c4c4c4;
  border-radius: 100px;
  background: #fff;
  color: #000;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 12px;
  padding: 4px 6px;
}

.expertise-tooltip span {
  filter: blur(6px);
  opacity: 0;
  transform: translate3d(0, 10px, 0) scale(0.96);
  transition:
    opacity 360ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 420ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0ms;
  will-change: opacity, transform, filter;
}

.expertise-tooltip.is-visible span {
  filter: blur(0);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: calc(var(--tag-index, 0) * 58ms);
}

.expected {
  margin-top: calc(var(--vh) * -100);
  min-height: calc(var(--vh) * 125);
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 5;
}

.expected-sticky {
  background: var(--black);
  height: calc(var(--vh) * 100);
  min-height: 620px;
  overflow: hidden;
  position: sticky;
  top: 0;
  transform: translate3d(0, var(--expect-stick-y, 0px), 0);
  will-change: transform;
}

.expected .section-label {
  font-weight: 350;
  left: calc(721px * var(--frame-scale-x));
  margin-left: 0;
  position: absolute;
  top: 221px;
  z-index: 2;
}

.expect-cloud {
  align-content: center;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
  isolation: isolate;
  left: 0;
  margin: 0;
  padding: 24px;
  position: absolute;
  transform: translate3d(0, 0, 0);
  width: 100%;
  will-change: opacity;
  z-index: 2;
}

.expect-cloud span {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  font-size: clamp(32px, 3.333vw, 64px);
  font-weight: 500;
  letter-spacing: -0.64px;
  line-height: 56px;
  min-height: 56px;
  text-transform: uppercase;
  transition: color 180ms ease, opacity 180ms ease;
  will-change: opacity;
}

.expect-cloud i {
  align-self: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  font-size: clamp(32px, 3.333vw, 64px);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.64px;
  line-height: 56px;
  min-height: 56px;
}

.expect-cloud i.is-line-end {
  display: none;
}

.expect-token {
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.expect-cloud.is-hovering .expect-token {
  opacity: 0.2;
}

.expect-cloud.is-hovering .expect-token.is-active {
  color: var(--white);
  opacity: 1;
}

.expect-preview {
  border-radius: 12px;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  contain: layout style paint;
  height: 232px;
  left: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translate3d(var(--expect-preview-x, 0px), var(--expect-preview-y, 0px), 0) rotate(var(--expect-preview-rotate, 0deg)) scale(0.92);
  transition:
    opacity 150ms ease,
    filter 150ms ease,
    transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
  filter: blur(8px);
  transform-origin: center bottom;
  width: 180px;
  will-change: opacity, transform, filter;
  z-index: 4;
}

.expect-preview.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(var(--expect-preview-x, 0px), var(--expect-preview-y, 0px), 0) rotate(var(--expect-preview-rotate, 0deg)) scale(1);
}

.expect-preview img,
.expect-preview video {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.expect-preview img {
  object-position: var(--expect-preview-position, 50% 50%);
  transition: opacity 120ms ease;
}

.expect-preview video {
  backface-visibility: hidden;
  image-rendering: auto;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 180ms ease;
  transform: translate3d(0, 0, 0);
}

.expect-preview.is-video img {
  opacity: 0;
}

.expect-preview.is-video .expect-preview-video.is-active {
  opacity: 1;
}

.services-stage {
  background: var(--paper-alt);
  position: relative;
  z-index: 6;
}

.services-sticky {
  background: var(--paper-alt);
  position: relative;
  transform: translate3d(0, var(--services-hold-y, 0px), 0);
  will-change: transform;
  z-index: 1;
}

.services {
  background: var(--paper-alt);
  min-height: calc(2878px * var(--frame-scale-y));
  padding: calc(221px * var(--frame-scale-y)) calc(128px * var(--frame-scale-x)) calc(var(--vh) * 100 + 128px);
}

.services-label {
  font-weight: 400;
  margin-left: calc(593px * var(--frame-scale-x));
}

.service-list {
  margin-top: 109px;
  width: min(calc(1664px * var(--frame-scale-x)), calc(100vw - 256px * var(--frame-scale-x)));
}

.service-row {
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  display: grid;
  grid-template-columns: calc(593px * var(--frame-scale-x)) minmax(320px, 408px);
  padding: 40px 0;
}

.service-row:last-child {
  border-bottom: 0;
}

.service-row:focus-visible {
  outline: 1px solid #989898;
  outline-offset: -1px;
}

.service-row:first-child {
  padding-bottom: 40px;
  padding-top: 0;
}

.service-row > span,
.service-row h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 32px;
  margin: 0;
}

.service-row strong {
  align-items: flex-end;
  display: flex;
  gap: 8px;
  font-size: clamp(42px, 2.813vw, 54px);
  font-weight: 700;
  letter-spacing: -0.54px;
  line-height: 66px;
  margin: 32px 0;
}

.service-row small {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  opacity: 0.7;
  padding-bottom: 12px;
}

.service-row p,
.service-row li {
  font-size: 13px;
  line-height: 16px;
}

.service-row p {
  margin: 0 0 32px;
  opacity: 0.7;
}

.tags-line {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 32px;
  width: 100%;
}

.tags-line span {
  background: #e2e2dd;
  border: 1px solid #989898;
  border-radius: 100px;
  color: #4e4e4e;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.12px;
  line-height: 12px;
  padding: 4px 6px;
  white-space: nowrap;
}

.service-row ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-row li {
  align-items: flex-start;
  display: flex;
  gap: 8px;
}

.service-row li::before {
  background: url("/public/assets/figma-check.svg") center / 12.1667px 8.83333px no-repeat;
  content: "";
  display: block;
  flex: 0 0 16px;
  height: 16px;
  width: 16px;
}

.service-row li.disabled {
  opacity: 0.5;
}

.service-row li.disabled::before {
  background-image: url("/public/assets/figma-x-close.svg");
  background-size: 9.5px 9.5px;
}

.footer-layer {
  background: var(--black);
  margin-top: calc(var(--vh) * -100);
  min-height: calc(var(--vh) * 100);
  position: relative;
  z-index: 2;
}

.shapes {
  background: var(--black);
  height: calc(var(--vh) * 188);
  min-height: 1392px;
  position: relative;
}

.shapes-sticky {
  background: var(--black);
  height: calc(var(--vh) * 100);
  min-height: 620px;
  overflow: hidden;
  position: sticky;
  top: 0;
  transform: translate3d(0, var(--shapes-stick-y, 0px), 0);
  will-change: transform;
}

.shapes-copy {
  align-items: flex-start;
  background: transparent;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: clamp(176px, 28vh, 346px);
  left: calc(185px * var(--frame-scale-x));
  opacity: calc(1 - var(--shapes-copy-exit, 0));
  pointer-events: none;
  position: absolute;
  top: clamp(96px, 15vh, 162px);
  transform: translate3d(0, calc(var(--shapes-copy-exit, 0) * -48px), 0);
  width: calc(650px * var(--frame-scale-x));
  will-change: opacity, transform;
  z-index: 5;
}

.shapes-copy-main {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: calc(32px * var(--frame-scale-x));
  width: 100%;
}

.shapes-copy-main,
.shape-notes,
.shape-note-word,
.shape-note-word > span {
  background: transparent;
  box-shadow: none;
}

.shapes-copy-main > p {
  background: transparent;
  font-size: clamp(28px, 2.083vw, 40px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
  pointer-events: auto;
  text-transform: none;
  text-wrap: balance;
  width: 100%;
}

.shapes-copy .muted-dark {
  color: rgba(255, 255, 255, 0.5);
}

.resume-download {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--black);
  display: inline-grid;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  overflow: hidden;
  padding: 12px 20px;
  pointer-events: auto;
  position: relative;
  transition: opacity 200ms ease, transform 260ms ease;
}

.resume-download:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.resume-download-state {
  align-items: center;
  display: inline-flex;
  gap: 4px;
  grid-area: 1 / 1;
  justify-content: center;
  transition: opacity 280ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.resume-download-success {
  opacity: 0;
  transform: translate3d(0, 90%, 0);
}

.resume-download.is-downloaded .resume-download-default {
  opacity: 0;
  transform: translate3d(0, -90%, 0);
}

.resume-download.is-downloaded {
  background: rgba(255, 255, 255, 0.25);
  cursor: default;
  pointer-events: none;
  transform: none;
}

.resume-download.is-downloaded .resume-download-success {
  color: #bababa;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.resume-download-default img {
  display: block;
  height: 20px;
  width: 20px;
}

.resume-download-success img {
  display: block;
  height: 10.6667px;
  width: 14.8333px;
}

.text-scatter {
  cursor: default;
}

.text-scatter .scatter-word {
  display: inline-block;
  white-space: nowrap;
}

.text-scatter .scatter-char {
  display: inline-block;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  transform-origin: 50% 50%;
  transition: transform var(--scatter-duration, 2000ms) cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.shape-notes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  max-width: 359px;
  padding: 0;
  position: relative;
  width: calc(359px * var(--frame-scale-x));
}

.shape-notes strong {
  display: block;
  font-size: clamp(17px, 1.25vw, 24px);
  line-height: 1.333;
  margin: 0;
}

.shape-notes p {
  font-size: 13px;
  line-height: 18px;
  margin: 0;
}

.shape-note-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.shape-note-word > span {
  display: inline-block;
  filter: blur(5px);
  opacity: 0;
  transform: translate3d(0, 115%, 0) rotate(2deg);
  transform-origin: 0 100%;
  transition:
    filter 960ms ease,
    opacity 860ms ease,
    transform 1260ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(2380ms + (var(--word-index) * 28ms));
  will-change: filter, opacity, transform;
}

.shape-layer-grid {
  cursor: grab;
  height: 100vh;
  left: 0;
  opacity: calc(1 - var(--shapes-grid-exit, 0));
  pointer-events: auto;
  position: absolute;
  touch-action: pan-y;
  top: 0;
  transform: translate3d(var(--shape-grid-x, 0px), var(--shape-grid-y, 0px), 0);
  user-select: none;
  width: 100vw;
  will-change: opacity, transform;
  z-index: 1;
}

.shapes-sticky.is-shape-dragging .shape-layer-grid {
  cursor: grabbing;
}

.shape-layer-item {
  background: transparent;
  contain: paint;
  isolation: isolate;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  transform: translate3d(var(--shape-item-x, 0px), var(--shape-item-y, 0px), 0) scale(var(--shape-item-scale, 1));
  transform-origin: center;
  will-change: transform;
}

.shape-layer-item img,
.shape-layer-item video {
  backface-visibility: hidden;
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  transform: translate3d(0, 0, 0);
  width: 100%;
  will-change: transform;
}

.shapes.is-shapes-visible .shape-note-word > span {
  filter: blur(0);
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg);
}

.footer {
  min-height: 1301px;
  overflow: hidden;
  padding: 128px 24px 0;
  position: relative;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  font-size: clamp(46px, 3.333vw, 64px);
  font-weight: 500;
  gap: 4px;
  letter-spacing: -0.01em;
  line-height: 72px;
  margin-top: 0;
  max-width: 100%;
  width: max-content;
}

.footer-cta .cta-hover,
.footer-links a {
  position: relative;
}

.footer-cta .cta-hover {
  align-items: center;
  display: inline-flex;
}

.footer-links a {
  display: block;
  text-indent: 0;
  transition: opacity 240ms ease, text-indent 240ms ease;
  width: max-content;
}

.footer-cta .cta-hover::before,
.footer-links a::before {
  background: currentColor;
  content: "";
  display: block;
  height: 1em;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: calc(100% + 0.08em);
  top: 50%;
  transform: translate3d(-0.12em, -50%, 0);
  -webkit-mask: url("/public/assets/arrow-narrow-right.svg") center / contain no-repeat;
  mask: url("/public/assets/arrow-narrow-right.svg") center / contain no-repeat;
  transition: opacity 240ms ease, transform 240ms ease;
  width: 1em;
}

.footer-cta .cta-hover::before {
  flex: 0 0 auto;
  margin-right: 0;
  max-width: 0;
  overflow: hidden;
  position: static;
  right: auto;
  top: auto;
  transform: translate3d(-0.12em, 0, 0);
  transition: max-width 240ms ease, opacity 240ms ease, transform 240ms ease;
}

.footer-links a::before {
  left: 0;
  max-width: 0;
  overflow: hidden;
  right: auto;
  transform: translate3d(0, -50%, 0);
  transition: max-width 240ms ease, opacity 240ms ease;
}

.footer-cta:hover .cta-hover,
.footer-links a:hover {
  opacity: 0.5;
}

.footer-links a:hover {
  text-indent: 1em;
}

.footer-cta:hover .cta-hover::before {
  opacity: 1;
  max-width: 1em;
  transform: translate3d(0, 0, 0);
}

.footer-links a:hover::before {
  opacity: 1;
  max-width: 1em;
  transform: translate3d(0, -50%, 0);
}

.footer-links {
  column-gap: clamp(48px, 6.6vw, 128px);
  display: grid;
  grid-template-columns: 191px 123px 114px 1fr;
  margin-top: 128px;
  position: relative;
  row-gap: 40px;
  z-index: 2;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.footer-links p {
  color: var(--dark-muted);
  font-size: 20px;
  line-height: 32px;
  margin: 0 0 12px;
  white-space: nowrap;
}

.footer-links a {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 32px;
  white-space: nowrap;
}

.footer-links a + a {
  margin-top: 8px;
}

.footer-meta {
  align-items: flex-end;
  color: var(--dark-muted);
  font-size: 15px;
  line-height: 16px;
  justify-self: end;
  margin-left: auto;
  text-align: right;
}

.footer-meta p {
  font-size: 15px;
  line-height: 16px;
  margin: 0;
}

.footer-meta p:last-child {
  margin-top: auto;
}

.footer-outline {
  bottom: auto;
  left: 0;
  max-width: none;
  opacity: 1;
  position: absolute;
  top: 808px;
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.shapes-copy.reveal,
.shapes-copy.reveal.is-visible {
  opacity: calc(1 - var(--shapes-copy-exit, 0));
  transform: translate3d(0, calc(var(--shapes-copy-exit, 0) * -48px), 0);
}

.split-line {
  transition-duration: 900ms;
}

@media (min-width: 1181px) and (min-height: 1081px) {
  .hero-preview {
    bottom: 129px;
    top: auto;
  }

  .hero-copy {
    bottom: 166px;
    top: auto;
  }

  .expertise-note {
    margin-top: calc(335px + (var(--vh) * 100 - 1080px));
  }
}

@media (max-width: 1180px) {
  .services,
  .footer {
    min-height: auto;
  }

  .hero-copy {
    width: min(540px, calc(100vw - var(--edge) * 2));
  }

  .project-row {
    display: grid;
  }

  .project-info {
    gap: 80px;
    width: min(460px, 100%);
  }

  .project-media {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
  }

  .expertise-stage {
    min-height: calc(var(--vh) * 250);
  }

  .expertise-sticky {
    min-height: 620px;
  }

  .expertise {
    min-height: 0;
    padding: 0;
  }

  .expertise-content {
    left: var(--edge);
    top: 160px;
  }

  .expertise-note {
    margin-top: 220px;
  }

  .service-row {
    grid-template-columns: 160px 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 820px) {
  :root {
    --edge: 24px;
  }

  .site-nav {
    align-items: center;
    padding: 16px;
  }

  .brand img {
    height: 24px;
    width: 94px;
  }

  .language {
    padding: 0 6px;
  }

  .language-menu {
    right: -48px;
  }

  .button {
    height: 40px;
    padding: 0 14px;
  }

  .menu-button {
    height: 40px;
    width: 40px;
  }

  .expertise,
  .services,
  .shapes,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .viewport-stage {
    min-height: 900px;
  }

  .viewport-sticky {
    min-height: 560px;
  }

  .viewport-panel {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-title {
    font-size: clamp(31px, 8.4vw, 34px);
    top: calc(156px * var(--frame-scale-y));
    width: calc(100vw - 48px);
  }

  .hero-preview {
    aspect-ratio: 282 / 191;
    height: auto;
    top: calc(612px * var(--frame-scale-y));
    width: min(188px, 42vw);
  }

  .hero-copy {
    bottom: calc(32px * var(--frame-scale-y));
    font-size: 15px;
    left: 24px;
    line-height: 23px;
    right: 24px;
    top: auto;
    width: auto;
  }

  .hero-copy p + p {
    margin-top: 8px;
  }

  .hero-combine {
    column-gap: 3px;
    row-gap: 5px;
  }

  .skill-tag {
    font-size: 15px;
    line-height: 18px;
    min-height: 26px;
    padding: 4px 6px;
    -webkit-tap-highlight-color: transparent;
  }

  .shapes-copy-main > p {
    font-size: 30px;
  }

  .metric-label {
    font-size: 13px;
    line-height: 16px;
    top: calc(288px * var(--frame-scale-y));
  }

  .selected {
    padding-left: 0;
    padding-right: 0;
  }

  .selected-copy,
  .services-label {
    margin-left: 0;
  }

  .expected .section-label {
    left: 24px;
  }

  .project-media {
    grid-template-columns: 1fr;
  }

  .project-media img:nth-child(n + 2) {
    display: none;
  }

  .project-preview {
    padding: 0 24px 80px;
  }

  .preview-header {
    align-items: center;
    padding: 24px 0 20px;
  }

  .preview-title {
    font-size: 38px;
    line-height: 48px;
  }

  .preview-copy {
    margin-top: 20px;
  }

  .preview-meta {
    gap: 20px;
    grid-template-columns: 1fr;
    margin: 32px auto 48px;
  }

  .preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 48px;
  }

  .preview-actions {
    align-items: flex-end;
    flex-direction: column;
    gap: 16px;
    margin: 0 auto 72px;
  }

  .preview-action {
    width: auto;
  }

  .gallery-modal {
    padding: 76px 24px 40px;
  }

  .gallery-modal-close,
  .media-lightbox-close {
    right: 24px;
    top: 24px;
  }

  .gallery-modal-grid {
    grid-template-columns: 1fr;
  }

  .gallery-media-button {
    aspect-ratio: auto;
  }

  .gallery-media-button img {
    height: auto;
    object-fit: contain;
  }

  .media-lightbox {
    padding: 72px 24px;
  }

  .preview-case-layout {
    gap: 56px;
    grid-template-columns: 1fr;
  }

  .preview-case-index {
    display: grid;
    gap: 12px 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: static;
  }

  .preview-case-index span {
    grid-column: 1 / -1;
  }

  .preview-case-section {
    column-gap: 12px;
    grid-template-columns: 28px minmax(0, 1fr);
    padding: 40px 0 72px;
  }

  .preview-case-section > h3 {
    grid-column: 2;
  }

  .preview-case-section > p,
  .preview-case-section > ul,
  .preview-case-section > ol,
  .preview-case-section > div {
    grid-column: 1 / -1;
    margin-top: 32px;
  }

  .preview-case-section > p + p,
  .preview-case-section > p + ul,
  .preview-case-section > p + ol,
  .preview-case-section > p + div,
  .preview-case-section > ul + p,
  .preview-case-section > div + p {
    margin-top: 18px;
  }

  .preview-insight-grid,
  .preview-number-grid,
  .preview-split-notes {
    grid-template-columns: 1fr;
  }

  .preview-insight-grid article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding: 18px 0;
  }

  .preview-insight-grid article:first-child {
    border-top: 0;
  }

  .preview-metric-list article {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .preview-metric-list em {
    white-space: normal;
  }

  .expertise-item {
    background: transparent;
    font-size: 32px;
    line-height: 36px;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
    white-space: normal;
  }

  .expertise-item.active,
  .expertise-item:active,
  .expertise-item:focus {
    background: transparent;
  }

  .expertise {
    min-height: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .expertise-content {
    left: 24px;
    top: 104px;
    width: calc(100vw - 48px);
  }

  .expertise-content .section-label {
    font-size: 18px;
    line-height: 24px;
  }

  .expertise-list {
    gap: 12px;
    margin-top: 36px;
  }

  .expertise-note {
    font-size: 12.5px;
    line-height: 18px;
    margin-top: 184px;
    max-width: 300px;
  }

  .expertise-tooltip {
    display: flex;
    gap: 4px;
    max-width: min(314px, calc(100vw - 48px));
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .expect-cloud {
    align-content: flex-start;
    bottom: 24px;
    gap: 0 8px;
    margin: 0;
    overflow: hidden;
    padding: 0 24px;
    top: 332px;
  }

  .expect-cloud span {
    font-size: 22px;
    letter-spacing: -0.01em;
    line-height: 29px;
    min-height: 29px;
  }

  .expect-cloud i {
    font-size: 22px;
    letter-spacing: -0.01em;
    line-height: 29px;
    min-height: 29px;
  }

  .expected .section-label {
    font-size: 18px;
    line-height: 24px;
    top: 88px;
  }

  .expect-token {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
  }

  .expect-preview {
    border-radius: 8px;
    filter: none;
    height: 170px;
    left: auto;
    opacity: 1;
    right: 24px;
    top: 136px;
    transform: translate3d(0, 0, 0) scale(1);
    width: 132px;
  }

  html.mobile-native-scroll .expect-preview.is-visible {
    filter: none;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .shapes {
    height: calc(var(--vh) * 180);
    min-height: 1180px;
    padding: 0;
  }

  .shapes-sticky {
    height: calc(var(--vh) * 100);
    min-height: 560px;
  }

  .shapes-copy {
    bottom: 36px;
    gap: 0;
    justify-content: space-between;
    left: 24px;
    top: 88px;
    width: calc(100% - 48px);
  }

  .shapes-copy-main {
    gap: 24px;
  }

  .shapes-copy-main > p {
    font-size: 30px;
    line-height: 38px;
    position: relative;
    text-transform: none;
  }

  .shape-copy-line,
  .shape-copy-line-one,
  .shape-copy-line-two,
  .shape-copy-line-three {
    background: transparent;
    left: auto;
    max-width: none;
    padding: 0;
    position: relative;
    top: auto;
    width: auto;
  }

  .shapes-copy .muted-dark {
    color: rgba(255, 255, 255, 0.5);
  }

  .resume-download {
    margin-top: 0;
  }

  .shape-layer-grid {
    height: 100vh;
    width: 100vw;
  }

  .shape-notes {
    max-width: 359px;
    padding: 0;
    width: 100%;
  }

  .footer {
    min-height: 0;
    padding-bottom: max(32px, env(safe-area-inset-bottom));
    padding-top: 80px;
  }

  .footer-cta {
    font-size: 30px;
    gap: 0;
    line-height: 36px;
    overflow-wrap: anywhere;
    position: relative;
    width: 100%;
    z-index: 2;
  }

  .footer-links {
    column-gap: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 72px;
    row-gap: 44px;
  }

  .footer-links > div:first-child,
  .footer-meta {
    grid-column: 1 / -1;
  }

  .footer-links p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 18px;
    line-height: 26px;
  }

  .footer-links a + a {
    margin-top: 4px;
  }

  .footer-meta {
    align-items: flex-end;
    font-size: 13px;
    line-height: 18px;
    margin-left: 0;
    margin-top: 28px;
    text-align: right;
  }

  .footer-meta p {
    font-size: 13px;
    line-height: 18px;
  }

  .footer-outline {
    bottom: 0;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    width: 175%;
    z-index: 0;
  }

  .menu-overlay {
    height: 100dvh;
    min-height: 100dvh;
    overflow: hidden;
  }

  .menu-panel {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    min-height: 100dvh;
    padding-top: max(84px, calc(env(safe-area-inset-top) + 68px));
  }

  .menu-close {
    height: 44px;
    right: 20px;
    top: max(20px, env(safe-area-inset-top));
    width: 44px;
  }

  .menu-close img {
    height: 12px;
    width: 12px;
  }

  .menu-list {
    align-content: start;
    display: grid;
    flex: 1 1 auto;
    grid-template-rows: repeat(7, minmax(68px, 1fr));
    height: auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0 20px max(20px, env(safe-area-inset-bottom));
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .menu-list::-webkit-scrollbar {
    display: none;
  }

  .menu-link {
    align-items: center;
    border: 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(26px, 7.2vw, 30px);
    line-height: 1.08;
    min-height: 68px;
    overflow: visible;
    padding: 12px 4px;
    -webkit-tap-highlight-color: transparent;
  }

  .menu-link:first-child {
    border-top: 1px solid var(--line);
  }

  .menu-link::after {
    display: none;
  }

  .menu-link span {
    white-space: normal;
  }
}

html.mobile-native-scroll {
  --vh: 1svh;
  overscroll-behavior-y: none;
  scroll-behavior: auto;
  touch-action: pan-y;
}

html.mobile-native-scroll body:not(.menu-open) #smooth-wrapper {
  overflow: visible;
}

html.mobile-native-scroll #smooth-content {
  min-height: 100dvh;
  overflow-anchor: none;
  transform: none !important;
  will-change: auto;
}

html.mobile-native-scroll .grain {
  display: none;
}

html.mobile-native-scroll .viewport-sticky {
  background: var(--paper);
  height: 100dvh;
  min-height: 100dvh;
  position: sticky;
  top: 0;
  transform: none !important;
  will-change: auto;
}

html.mobile-native-scroll .viewport-panel {
  min-height: 100dvh;
}

html.mobile-native-scroll .metric-panel {
  align-content: center;
  display: grid;
  grid-template-rows: auto auto;
  justify-items: center;
  padding: 24px;
  row-gap: 22px;
}

html.mobile-native-scroll .metric-label,
html.mobile-native-scroll .metric-value-frame {
  bottom: auto;
  left: auto;
  position: relative;
  top: auto;
  transform: none;
  width: auto;
}

html.mobile-native-scroll .metric-label {
  font-size: 14px;
  line-height: 20px;
}

html.mobile-native-scroll .metric-value {
  font-size: clamp(70px, 20.5vw, 88px);
  left: auto;
  line-height: 0.96;
  text-align: center;
  width: auto;
}

html.mobile-native-scroll:not([data-language="en"]) #areas .metric-value {
  left: auto;
  text-align: center;
  width: auto;
}

html.mobile-native-scroll .selected {
  margin-top: 0;
  min-height: 0;
}

html.mobile-native-scroll .selected-inner,
html.mobile-native-scroll .om-showcase,
html.mobile-native-scroll .om-scenes {
  min-height: 0;
}

html.mobile-native-scroll .om-project-scene {
  height: calc(var(--vh) * 100);
  min-height: max(560px, calc(var(--vh) * 100));
}

html.mobile-native-scroll .expertise-stage {
  margin-top: 0;
  min-height: calc(var(--vh) * 160);
  overflow: clip;
}

html.mobile-native-scroll .expected {
  margin-top: 0;
  overflow: clip;
}

html.mobile-native-scroll .services {
  padding-bottom: 128px;
}

html.mobile-native-scroll .footer-layer {
  margin-top: 0;
}

html.mobile-native-scroll .expertise-sticky,
html.mobile-native-scroll .expected-sticky,
html.mobile-native-scroll .services-sticky,
html.mobile-native-scroll .shapes-sticky,
html.mobile-native-scroll .om-project-scene.final-project-scene {
  transform: none !important;
  will-change: auto;
}

html.mobile-native-scroll .om-carousel,
html.mobile-native-scroll .om-card,
html.mobile-native-scroll .om-title-text,
html.mobile-native-scroll .shape-layer-grid,
html.mobile-native-scroll .shape-layer-item,
html.mobile-native-scroll .shape-layer-item img,
html.mobile-native-scroll .shape-layer-item video {
  will-change: auto;
}

@media (max-width: 374px) {
  .site-nav .contact-link {
    display: none;
  }

  .hero-title {
    font-size: 31px;
  }

  .hero-preview {
    top: calc(556px * var(--frame-scale-y));
  }

  .hero-copy {
    font-size: 15px;
    line-height: 22px;
  }

  .skill-tag {
    font-size: 15px;
    line-height: 18px;
  }

  .expertise-item {
    font-size: 30px;
    line-height: 34px;
  }

  .expect-cloud span,
  .expect-cloud i {
    font-size: 21px;
    line-height: 28px;
    min-height: 28px;
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .viewport-sticky,
  .om-project-scene,
  .expertise-sticky,
  .expected-sticky,
  .shapes-sticky {
    min-height: 100dvh;
  }

  .site-nav {
    padding-bottom: 12px;
    padding-top: 12px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.08;
    top: 82px;
  }

  .hero-preview {
    bottom: 24px;
    height: auto;
    top: auto;
    width: 136px;
  }

  .hero-copy,
  .skill-tag {
    font-size: 16px;
    line-height: 24px;
  }

  .hero-copy {
    bottom: 20px;
    right: var(--edge);
    top: auto;
    width: min(540px, 64vw);
  }

  .expertise-content {
    left: var(--edge);
    top: 64px;
    width: calc(100vw - var(--edge) * 2);
  }

  .expertise-list {
    gap: 6px;
    margin-top: 16px;
  }

  .expertise-item {
    font-size: 28px;
    line-height: 30px;
  }

  .expertise-note {
    margin-top: 18px;
    max-width: 540px;
  }

  .expected .section-label {
    left: var(--edge);
    top: 72px;
  }

  .expect-cloud {
    align-content: flex-start;
    bottom: 16px;
    gap: 0 10px;
    padding: 0 var(--edge);
    top: 126px;
  }

  .expect-cloud span,
  .expect-cloud i {
    font-size: 22px;
    letter-spacing: 0;
    line-height: 28px;
    min-height: 28px;
  }

  .shapes-copy {
    bottom: 20px;
    gap: 24px;
    top: 72px;
  }

  .shapes-copy-main > p {
    font-size: 26px;
    line-height: 32px;
  }

  .shape-notes {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-view-notice,
  .mobile-view-notice-panel {
    transition: none;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  #smooth-wrapper {
    position: static;
  }
}
