{"id":24,"date":"2022-06-21T19:20:59","date_gmt":"2022-06-21T19:20:59","guid":{"rendered":"https:\/\/clockwork.galaxyweblinks.com\/?page_id=16"},"modified":"2025-09-09T17:03:09","modified_gmt":"2025-09-09T17:03:09","slug":"about-us","status":"publish","type":"page","link":"https:\/\/www.clockwork.com\/about-us\/","title":{"rendered":"About Us"},"content":{"rendered":"\n<div class=\"block hero-banner video rounded\" id=\"heroBanner\" style=\"background-color: #161616; background-image: url(https:\/\/www.clockwork.com\/wp-content\/uploads\/2024\/11\/pattern-outlined-.5pt.svg);\">\n\n\n\n  <div class=\"grid-container\">\n    <div class=\"grid-x grid-margin-x\">\n      <div class=\"cell small-12 large-7\">\n\n                  <div class=\"banner-content\" style=\"color: #ffffff\" >\n            <h1><span>When people get here, they stick around.<\/span> Here\u2019s why.<\/h1>\n          <\/div>\n        \n                  <div class=\"banner-link\">\n            <a  class=\"fancy-button white arrow-after\" href=\"https:\/\/www.clockwork.com\/our-story\/\" target=\"_self\">\n              Read the Clockwork story            <\/a>\n          <\/div>\n        \n      <\/div>\n\n      <div class=\"cell small-12 large-5\">\n        \n          <div class=\"mask-container video rounded\" id=\"maskContainer\">\n\n                      <button class=\"video-player-button\" id=\"videoPlayerButton\" onclick=\"handleClick()\">\n              <span class=\"show-for-sr\">Play<\/span>\n            <\/button>\n\n                          <button class=\"video-cc-button\" id=\"videoCCButton\" style=\"display: none;\">\n                <span class=\"show-for-sr\">Toggle Captions<\/span>\n                <span class=\"cc-label\">CC<\/span>\n              <\/button>\n            \n            <div class=\"mask rounded\" id=\"mask\">\n              <div class=\"mask-video\">\n                <div class=\"embed-container\">\n\n                  \n                                      <!-- Background video iframe (muted, looping) -->\n                    <iframe loading=\"lazy\" id=\"videoPlayerBackground\" data-video-source=\"vimeo\" data-video-id=\"758057253\" src=\"https:\/\/player.vimeo.com\/video\/758057253?background=1&#038;autoplay=1&#038;muted=1&#038;loop=1&#038;color=ef0800&#038;title=0&#038;byline=0&#038;portrait=0&#038;autopause=0&#038;controls=0\" width=\"640\" height=\"360\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"display: block;\" role=\"none\"><\/iframe>\n                    <!-- Playing video iframe (unmuted, with captions support) -->\n                    <iframe loading=\"lazy\" id=\"videoPlayer\" data-video-source=\"vimeo\" data-video-id=\"758057253\" src=\"https:\/\/player.vimeo.com\/video\/758057253?background=0&#038;autoplay=0&#038;muted=0&#038;loop=0&#038;color=ef0800&#038;title=0&#038;byline=0&#038;portrait=0&#038;autopause=0\" width=\"640\" height=\"360\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen style=\"display: none;\" role=\"application\" title=\"Video player\"><\/iframe>\n                  \n                <\/div>\n              <\/div>\n            <\/div>\n          \n          \n          <\/div>\n        \n      <\/div>\n    <\/div>\n  <\/div>\n\n<\/div>\n\n<script src=\"https:\/\/player.vimeo.com\/api\/player.js\"><\/script>\n\n<script>\n  const videoPlayer = document.getElementById('videoPlayer');\n  const videoPlayerButton = document.getElementById('videoPlayerButton');\n  const mask = document.getElementById(\"mask\");\n\n  if (videoPlayer.dataset.videoSource === \"youtube\") {\n    \/\/ https:\/\/developers.google.com\/youtube\/iframe_api_reference#Example_Video_Player_Constructors\n    var tag = document.createElement('script');\n    tag.src = 'https:\/\/www.youtube.com\/iframe_api';\n    var firstScriptTag = document.getElementsByTagName('script')[0];\n    firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);\n\n    var player;\n    function onYouTubeIframeAPIReady() {\n      player = new YT.Player('videoPlayer', {\n        videoId: videoPlayer.dataset.videoId,\n        playerVars: { \n          'autoplay': 1,\n          'controls': 1,\n          'loop': 1,\n          'mute': 1,\n          'rel': 0,\n        },\n      });\n    }\n\n    function handleClick() {\n      \/\/ heroBanner.classList.add(\"play\");\n      let maskContainer = event.target.parentNode;\n      if(maskContainer.classList.contains(\"play\")) {\n        maskContainer.classList.remove(\"play\");\n        mask.classList.remove(\"play\");\n        player.seekTo(0);\n        player.mute();\n      } else {\n        maskContainer.classList.add(\"play\");\n        mask.classList.add(\"play\");\n        player.seekTo(0);\n        player.unMute();\n      }\n    }\n\n    videoPlayerButton.onclick = function(){ handleClick() };\n\n    new Waypoint({\n      element: videoPlayer,\n      handler: function(direction) {\n        if(direction == 'down') {\n          player.pauseVideo();\n          this.destroy();\n        }\n      },\n      offset: '-100%'\n    })\n  }\n\n  if (videoPlayer.dataset.videoSource === \"vimeo\") {\n    \/\/ https:\/\/developer.vimeo.com\/player\/sdk\n    var backgroundIframe = document.getElementById('videoPlayerBackground');\n    var playingIframe = videoPlayer;\n    var backgroundPlayer = new Vimeo.Player(backgroundIframe);\n    var player = new Vimeo.Player(playingIframe);\n    var ccButton = document.getElementById('videoCCButton');\n    var captionsEnabled = false;\n    var availableTextTracks = null;\n\n    \/\/ Get available text tracks from the playing iframe (which supports captions)\n    player.getTextTracks().then(function(tracks) {\n      availableTextTracks = tracks;\n      console.log('Available text tracks:', tracks);\n      \n      \/\/ Prefer subtitles over captions, then find English track or first available track\n      var textTrack = tracks.find(function(track) {\n        return (track.language === 'en' || track.language.startsWith('en')) && track.kind === 'subtitles';\n      }) || tracks.find(function(track) {\n        return track.language === 'en' || track.language.startsWith('en');\n      }) || (tracks.length > 0 ? tracks[0] : null);\n      \n      if (textTrack) {\n        console.log('Selected text track:', textTrack);\n        \/\/ Store the language code for toggling\n        if (ccButton) {\n          ccButton.dataset.trackLanguage = textTrack.language;\n          ccButton.dataset.trackKind = textTrack.kind || 'subtitles';\n        }\n      } else {\n        console.log('No text tracks available');\n      }\n    }).catch(function(error) {\n      console.log('Error getting text tracks:', error);\n    });\n\n    function handleClick() {\n      \/\/ heroBanner.classList.add(\"play\");\n      \n      \n    }\n\n    videoPlayerButton.onclick = function(){\n      let maskContainer = event.target.parentNode;\n      console.log(maskContainer);\n      if(maskContainer.classList.contains(\"play\")) {\n        \/\/ Switch back to background video\n        maskContainer.classList.remove(\"play\");\n        mask.classList.remove(\"play\");\n        player.pause();\n        backgroundIframe.style.display = 'block';\n        playingIframe.style.display = 'none';\n        \n        if (captionsEnabled) {\n          player.disableTextTrack().catch(function(error) {\n            console.log('Error disabling text track:', error);\n          });\n          captionsEnabled = false;\n        }\n        if (ccButton) {\n          ccButton.style.display = 'none';\n          ccButton.classList.remove('active');\n        }\n      } else {\n        \/\/ Switch to playing video\n        maskContainer.classList.add(\"play\");\n        mask.classList.add(\"play\");\n        backgroundIframe.style.display = 'none';\n        playingIframe.style.display = 'block';\n        \n        \/\/ Always start from the beginning\n        player.setCurrentTime(0);\n        player.setMuted(false);\n        player.play().catch(function(error) {\n          console.log('Error playing video:', error);\n        });\n        \n        \/\/ Show CC button if text tracks are available\n        if (ccButton && ccButton.dataset.trackLanguage) {\n          ccButton.style.display = 'block';\n        }\n        \n        \/\/ Re-enable captions if they were previously enabled\n        if (captionsEnabled && ccButton && ccButton.dataset.trackLanguage) {\n          setTimeout(function() {\n            var language = ccButton.dataset.trackLanguage;\n            var kind = ccButton.dataset.trackKind || 'subtitles';\n            player.enableTextTrack(language, kind).catch(function(error) {\n              player.enableTextTrack(language).catch(function(fallbackError) {\n                console.log('Error re-enabling captions after play:', fallbackError);\n              });\n            });\n          }, 300);\n        }\n      }\n    };\n\n    \/\/ CC toggle button handler - much simpler now with two iframes!\n    if (ccButton) {\n      ccButton.onclick = function(e) {\n        e.stopPropagation();\n        if (ccButton.dataset.trackLanguage) {\n          if (captionsEnabled) {\n            player.disableTextTrack().then(function() {\n              captionsEnabled = false;\n              ccButton.classList.remove('active');\n              console.log('Captions disabled');\n            }).catch(function(error) {\n              console.log('Error disabling text track:', error);\n            });\n          } else {\n            var language = ccButton.dataset.trackLanguage;\n            var kind = ccButton.dataset.trackKind || 'subtitles';\n            console.log('Enabling text track:', language, 'kind:', kind);\n            \n            \/\/ Ensure video is playing before enabling captions\n            player.getPaused().then(function(paused) {\n              if (paused) {\n                console.log('Video is paused, playing first...');\n                player.play().then(function() {\n                  enableCaptions();\n                });\n              } else {\n                enableCaptions();\n              }\n            });\n            \n            function enableCaptions() {\n              \/\/ Try with both language and kind\n              player.enableTextTrack(language, kind).then(function(track) {\n                captionsEnabled = true;\n                ccButton.classList.add('active');\n                console.log('Captions enabled successfully:', track);\n              }).catch(function(error) {\n                console.log('Error enabling text track with kind:', error);\n                \/\/ Try without kind parameter as fallback\n                player.enableTextTrack(language).then(function(track) {\n                  captionsEnabled = true;\n                  ccButton.classList.add('active');\n                  console.log('Captions enabled successfully (fallback):', track);\n                }).catch(function(fallbackError) {\n                  console.log('Error enabling text track (fallback):', fallbackError);\n                });\n              });\n            }\n          }\n        }\n      };\n    }\n\n    new Waypoint({\n      element: playingIframe,\n      handler: function(direction) {\n        if(direction == 'down') {\n          \/\/ Pause the playing video if it's visible\n          if (playingIframe.style.display !== 'none') {\n            player.pause();\n          }\n          this.destroy();\n        }\n      },\n      offset: '-100%'\n    })\n  }\n\n<\/script>\n\n\n        <section class=\"image-with-content\" aria-label=\"image with content \">\n                                    \n                                <div class=\"piece-even\" >\n                    <div class=\"new-container\">\n\n                        <div class=\"flex-wrapper wrap center\">\n                            <div class=\"flex-2\">\n                                <div class=\"piece-content\">\n\n                                                                                                                        <h5>\n                                                                                    \n                                        What sets us apart                                            \n                                         \n                                            <\/h5> \n                                                                            \n                                                                            <div class=\"subtitle-banner-inner\">Here in the Twin Cities, we\u2019re surrounded by a lot of great talent and our remote-first workplace means we have talent from across the US. That means you\u2019ve got plenty of choices for getting great things done.<\/div>\n                                    \n\n                                                                            <h3>Here\u2019s why people feel good about choosing Clockwork:<\/h3>\n                                    \n                                    \n                                <\/div>\n\n                            <\/div>\n                            <div class=\"flex-2 mobile-hidden\">\n                                                                    <div ><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/about-us_what-sets-us-apart.jpg\" role=\"img\" alt=\"A group of Clockwork staff members posing in front of our Rayvic headquarters building\"><\/div>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                            <\/div>\n        <\/section>\n\n\n<div class='mobile-hidden'>\n\t<section class=\"scroll-image-section\" id=\"scroll-image-section\" aria-label=\"scroll image section\">\n\t\t<div class=\"new-container\">\n\t\t\t<div class=\"flex-wrapper wrap\">\n\t\t\t\t<div class=\"flex-2\">\n\t\t\t\t\t<div class=\"image-scroll\">\n\t\t\t\t\t\t\n\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" id=\"image-scroll-1\" class=\"image-scroll-img\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/about-us_what-sets-us-apart_1-2.png\" alt=\"number 1\" role=\"img\">\n\t\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\n\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" id=\"image-scroll-2\" class=\"image-scroll-img\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/about-us_what-sets-us-apart_2-2.png\" alt=\"number 2\" role=\"img\">\n\t\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\n\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" id=\"image-scroll-3\" class=\"image-scroll-img\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/about-us_what-sets-us-apart_3-2.png\" alt=\"number 3\" role=\"img\">\n\t\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"flex-2\">\n\t\t\t\t\t\n\n\t\t\t\t\t\t\t<div class=\"scroll-content\" data-section-id=\"1\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h3>We deliver on our promises.<\/h3>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>To deliver results, we ask \u201cwhy\u201d\u2014a lot. It\u2019s a simple question that helps us uncover the core issue you\u2019re trying to solve. And surprise, sometimes it\u2019s not the reason you called us in the first place. But that\u2019s ok. When we know what we\u2019re up against, we can do work that matters for the results you need.<\/p>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t<div class=\"scroll-content\" data-section-id=\"2\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h3>We put people first. Really.<\/h3>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>It\u2019s how we work with clients, treat each other, and approach technology. We think about you and the business decisions you\u2019re making. We think about the living, breathing people using products\u2014not just the personas, audiences, or clients. That\u2019s how you get solutions that work for people.<\/p>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t<div class=\"scroll-content\" data-section-id=\"3\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h3>We\u2019re simply easy to work with.<\/h3>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Technology can be hard. It\u2019s complicated, it brings disparate teams together (sometimes with disparate goals) and it\u2019s a big endeavor. When that\u2019s the case, you want a partner who makes it easier to manage large projects and complex problems. We don\u2019t tech-splain, either, because that\u2019s just rude. <\/p>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/section>\n<\/div>\n\n<div class='mobile-show'>\n\t<section class=\"scroll-image-section\" aria-label=\"scroll image content section\">\n\t\t<div class=\"new-container\">\n\t\t\t<div class=\"flex-wrapper wrap\">\n\t\t\t\t<div class=\"flex-1\">\n\t\t\t\t\t<div class=\"image-scroll-content\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<div class=\"scroll-content-image\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/about-us_what-sets-us-apart_1-2.png\" alt=\"number 1\" role=\"img\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\n\t\t\t\t\t\t\t\t<div class=\"scroll-content-text\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h3>We deliver on our promises.<\/h3>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>To deliver results, we ask \u201cwhy\u201d\u2014a lot. It\u2019s a simple question that helps us uncover the core issue you\u2019re trying to solve. And surprise, sometimes it\u2019s not the reason you called us in the first place. But that\u2019s ok. When we know what we\u2019re up against, we can do work that matters for the results you need.<\/p>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<div class=\"scroll-content-image\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/about-us_what-sets-us-apart_2-2.png\" alt=\"number 2\" role=\"img\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\n\t\t\t\t\t\t\t\t<div class=\"scroll-content-text\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h3>We put people first. Really.<\/h3>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>It\u2019s how we work with clients, treat each other, and approach technology. We think about you and the business decisions you\u2019re making. We think about the living, breathing people using products\u2014not just the personas, audiences, or clients. That\u2019s how you get solutions that work for people.<\/p>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<div class=\"scroll-content-image\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/about-us_what-sets-us-apart_3-2.png\" alt=\"number 3\" role=\"img\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\n\t\t\t\t\t\t\t\t<div class=\"scroll-content-text\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h3>We\u2019re simply easy to work with.<\/h3>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Technology can be hard. It\u2019s complicated, it brings disparate teams together (sometimes with disparate goals) and it\u2019s a big endeavor. When that\u2019s the case, you want a partner who makes it easier to manage large projects and complex problems. We don\u2019t tech-splain, either, because that\u2019s just rude. <\/p>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/section>\n<\/div>\n\n<style type=\"text\/css\">\n\t.about-page .scroll-image-section .image-scroll {\n\t\tposition: sticky;\n\t\tpadding-bottom: 0;\n\t\ttop: 100px;\n\t}\n<\/style>\n\n\n<section class=\"our-value\" id=\"our-value-section\" aria-label=\"our value section\">\n\t<div class=\"new-container\">\n\t\t<div class=\"flex-wrapper wrap space-between\">\n\n\t\t\t<div class=\"flex-2\">\n\t\t\t\t<div class=\"our-value-heading\">\n\t\t\t\t\t<div class=\"value-list-item\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<h2>Our Values<\/h2>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Our values guide how we partner with people and approach our work. Most importantly, they reflect what it\u2019s like to work with us. And that\u2019s something we want you to feel good about.<\/p>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"sticky-heading-list\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h3 class=\"heading-link\"><a tabindex=\"0\" aria-label=\"Click this link for the We tell the truth. We keep our promises.\" data-scroll=\"1\" href=\"#1\" class=\"sticky-heading-list-atag\">We tell the truth. We keep our promises.<\/a><\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h3 class=\"heading-link\"><a tabindex=\"0\" aria-label=\"Click this link for the We\u2019re helpful.\" data-scroll=\"2\" href=\"#2\" class=\"sticky-heading-list-atag\">We\u2019re helpful.<\/a><\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h3 class=\"heading-link\"><a tabindex=\"0\" aria-label=\"Click this link for the We're curious.\" data-scroll=\"3\" href=\"#3\" class=\"sticky-heading-list-atag\">We&#8217;re curious.<\/a><\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h3 class=\"heading-link\"><a tabindex=\"0\" aria-label=\"Click this link for the We\u2019re adaptable.\" data-scroll=\"4\" href=\"#4\" class=\"sticky-heading-list-atag\">We\u2019re adaptable.<\/a><\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h3 class=\"heading-link\"><a tabindex=\"0\" aria-label=\"Click this link for the We\u2019re fueled by challenge.\" data-scroll=\"5\" href=\"#5\" class=\"sticky-heading-list-atag\">We\u2019re fueled by challenge.<\/a><\/h3>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t<a tabindex=\"0\" id=\"skip-content\" class=\"fancy-link skip-section\" href=\"#\" target=\"_self\">\n              Skip to next section \t\t\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\n\t\t\t\t\t<\/div>\n\n\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t<div class=\"flex-2\">\n\t\t\t\t<div class=\"our-value-information\">\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"our-value-box  odd-bg\" id=\"1\" data-anchor=\"1\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h6>We tell the truth. We keep our promises.<\/h6>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Being clear, direct, and respectful with information is part of who we are. Whether we\u2019re sharing good news (yay!) or tough news (sadly, it happens), we communicate quickly and openly. We believe in honest conversations and transparent collaboration. Our word is our brand.<\/p>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"our-value-image\"><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/about-us_our-values_1-1.jpg\" alt=\"Clockworker working with remote staff via zoom call\" role=\"img\"><\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"our-value-box-bg\"><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/about-us_our-values_background-1.png\" alt=\"Concentric white circles on a black background, radiating from a central point, create a ripple effect reminiscent of cutting-edge experience design.\" role=\"img\"><\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"our-value-box  even-bg\" id=\"2\" data-anchor=\"2\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h6>We\u2019re helpful.<\/h6>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>We help you succeed, solve problems, and get results. We leave ego at the door and work in service of your goals and vision, adding value at every step. Need help? We\u2019re the folks to call.<\/p>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"our-value-image\"><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/about-us_our-values_2-1.jpg\" alt=\"Two Clockworkers collaborating and problem solving on a whiteboard\" role=\"img\"><\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"our-value-box-bg\"><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/about-us_our-values_background-2.png\" alt=\"An abstract design resembling clockwork, with concentric oval shapes. White lines outline each oval against a black background, creating a tunnel-like visual effect. This digital solution offers a symmetrical and centered pattern that draws you in.\" role=\"img\"><\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"our-value-box  odd-bg\" id=\"3\" data-anchor=\"3\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h6>We&#8217;re curious.<\/h6>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>We actively seek out new skills, new information, and new ways of working to meet you and your customers where you are. We ask questions, listen, and analyze, so our solutions are as thoughtful as your experience.<\/p>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"our-value-image\"><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/about-us_our-values_3-1.jpg\" alt=\"software developer attending a collaborative white-boarding meeting\" role=\"img\"><\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"our-value-box-bg\"><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/about-us_our-values_background-1.png\" alt=\"Concentric white circles on a black background, radiating from a central point, create a ripple effect reminiscent of cutting-edge experience design.\" role=\"img\"><\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"our-value-box  even-bg\" id=\"4\" data-anchor=\"4\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h6>We\u2019re adaptable.<\/h6>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Business moves quickly, and needs and objectives can change. We know that, and pivot to adjust. We assess \u2014 people, processes, and tools \u2014 and do what needs to be done to keep things moving in the right direction.<\/p>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"our-value-image\"><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/10\/75_D6A1386_22020916.jpg\" alt=\"Clockwork employees smiling and clapping\" role=\"img\"><\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"our-value-box-bg\"><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/about-us_our-values_background-2.png\" alt=\"An abstract design resembling clockwork, with concentric oval shapes. White lines outline each oval against a black background, creating a tunnel-like visual effect. This digital solution offers a symmetrical and centered pattern that draws you in.\" role=\"img\"><\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"our-value-box  odd-bg\" id=\"5\" data-anchor=\"5\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h6>We\u2019re fueled by challenge.<\/h6>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>We like complex problems and big objectives. We like untangling what doesn\u2019t work, and fixing it so you are enabled and empowered to work better.<\/p>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"our-value-image\"><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/about-us_our-values_5-1.jpg\" alt=\"Client strategist working with coffee in hand\" role=\"img\"><\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"our-value-box-bg\"><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/about-us_our-values_background-2.png\" alt=\"An abstract design resembling clockwork, with concentric oval shapes. White lines outline each oval against a black background, creating a tunnel-like visual effect. This digital solution offers a symmetrical and centered pattern that draws you in.\" role=\"img\"><\/div>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/div>\n\t<\/div>\n<\/section>\n\n\n\n<div class=\"block image-grid-with-mask\" id=\"image-grid-with-mask\">\n  <div class=\"grid-container\">\n\n        <div class=\"grid-x grid-margin-x align-justify\">\n      <div class=\"cell small-12 medium-shrink\">\n\n                  <h2>Our People<\/h2>\n        \n                  <div class=\"image-grid-content\">\n            <p>Human-centered solutions start with super smart humans. Meet the people who come together from different backgrounds, disciplines and time zones to make great work for our clients.<\/p>\n          <\/div>\n        \n      <\/div>\n    <\/div>\n        \n    \n    \n          <div class=\"mobile-hidden\">\n      \n      <div class=\"grid-x grid-margin-x small-up-1 medium-up-3\">\n                            \n            \n            <div class=\"cell\">\n              <div class=\"wow animate__animated animate__fadeInUp\" data-wow-delay=\"0.5s\">\n                                  <div  class=\"shape-default make-shapetwo\" >\n                    <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2025\/08\/Jenny-Holman-2025-Square-720x720.png\" role=\"img\" alt=\"Jenny Holman, Clockwork CEO. A woman with long brown hair and a white jacket smiles at the camera. The background is slightly blurred, featuring blue tones and textured glass panels arranged in a clockwork-like pattern.\">\n                  <\/div>\n                \n                <div class=\"service-box\">\n                                      <h2>Jenny Holman<\/h2>\n                  \n                                      <p>CEO<\/p>\n                                  <\/div>\n\n              <\/div>\n            <\/div>\n\n          \n            \n            <div class=\"cell\">\n              <div class=\"wow animate__animated animate__fadeInUp\" data-wow-delay=\"0.75s\">\n                                  <div  class=\"shape-default make-shapeone\" >\n                    <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2025\/08\/Vince-Cabansag-2025-Square-720x720.png\" role=\"img\" alt=\"Vincent Cabansag, Chief Operations Officer at Clockwork. A smiling man with dark hair wearing a white t-shirt and a dark denim jacket stands in front of colorful abstract paintings, his pose relaxed yet precise\u2014almost clockwork in its casual confidence.\">\n                  <\/div>\n                \n                <div class=\"service-box\">\n                                      <h2>Vince Cabansag<\/h2>\n                  \n                                      <p>COO<\/p>\n                                  <\/div>\n\n              <\/div>\n            <\/div>\n\n          \n            \n            <div class=\"cell\">\n              <div class=\"wow animate__animated animate__fadeInUp\" data-wow-delay=\"1s\">\n                                  <div  class=\"shape-default make-shapesix\" >\n                    <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2024\/07\/Nancy-Lyons-Headshot-2024-720x720.webp\" role=\"img\" alt=\"Nancy Lyons CEO of Clockwork\">\n                  <\/div>\n                \n                <div class=\"service-box\">\n                                      <h2>Nancy Lyons<\/h2>\n                  \n                                      <p>Co-Founder<\/p>\n                                  <\/div>\n\n              <\/div>\n            <\/div>\n\n          \n            \n            <div class=\"cell\">\n              <div class=\"wow animate__animated animate__fadeInUp\" data-wow-delay=\"1.25s\">\n                                  <div  class=\"shape-default make-shapeeight\" >\n                    <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2025\/08\/Chuck-Hermes-2025-Square-720x720.png\" role=\"img\" alt=\"Chuck Hermes, Co-Founder and Chief Experience Officer at Clockwork. A middle-aged man with glasses and a receding hairline smiles at the camera. He is wearing a striped shirt and is seated indoors, with blurred signs\u2014including a blue and yellow ROYAL clockwork sign\u2014in the background.\">\n                  <\/div>\n                \n                <div class=\"service-box\">\n                                      <h2>Chuck Hermes<\/h2>\n                  \n                                      <p>Co-Founder &amp; Chief Experience Officer<\/p>\n                                  <\/div>\n\n              <\/div>\n            <\/div>\n\n          \n            \n            <div class=\"cell\">\n              <div class=\"wow animate__animated animate__fadeInUp\" data-wow-delay=\"1.5s\">\n                                  <div  class=\"shape-default make-shapeten\" >\n                    <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/image-129.png\" role=\"img\" alt=\"Scott Jackson\">\n                  <\/div>\n                \n                <div class=\"service-box\">\n                                      <h2>Scott Jackson<\/h2>\n                  \n                                      <p>VP of Finance<\/p>\n                                  <\/div>\n\n              <\/div>\n            <\/div>\n\n          \n            \n            <div class=\"cell\">\n              <div class=\"wow animate__animated animate__fadeInUp\" data-wow-delay=\"1.75s\">\n                                  <div  class=\"shape-default make-shapefourteen\" >\n                    <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2024\/07\/Chelsey-Mona-1791-scaled-e1720448848522-720x720.webp\" role=\"img\" alt=\"Chelsey Mona Clockwork Experience Design\">\n                  <\/div>\n                \n                <div class=\"service-box\">\n                                      <h2>Chelsey Mona<\/h2>\n                  \n                                      <p>Director of Experience Design<\/p>\n                                  <\/div>\n\n              <\/div>\n            <\/div>\n\n          \n            \n            <div class=\"cell\">\n              <div class=\"wow animate__animated animate__fadeInUp\" data-wow-delay=\"2s\">\n                                  <div  class=\"shape-default make-shapetwo\" >\n                    <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2025\/08\/Jay-Haase-Square-720x720.png\" role=\"img\" alt=\"Jay Haase, Director of Software Engineering at Clockwork. A smiling person with glasses, a goatee, and curly hair pulled back, wearing a light blue button-up shirt, stands in front of a blurred gray background like clockwork.\">\n                  <\/div>\n                \n                <div class=\"service-box\">\n                                      <h2>Jay Haase<\/h2>\n                  \n                                      <p>Director of Software Engineering<\/p>\n                                  <\/div>\n\n              <\/div>\n            <\/div>\n\n          \n            \n            <div class=\"cell\">\n              <div class=\"wow animate__animated animate__fadeInUp\" data-wow-delay=\"2.25s\">\n                                  <div  class=\"shape-default make-shapeeight\" >\n                    <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2024\/07\/Preferred-Kasey-Ross-0126-1-scaled-e1720449907843-720x720.webp\" role=\"img\" alt=\"Kasey Ross Change Management Clockwork\">\n                  <\/div>\n                \n                <div class=\"service-box\">\n                                      <h2>Kasey Ross<\/h2>\n                  \n                                      <p>Director of Change Strategy<\/p>\n                                  <\/div>\n\n              <\/div>\n            <\/div>\n\n                  \n      <\/div>\n            <\/div>\n    \n    \n          <div class=\"mobile-show\">\n        <div class=\"flex-wrapper wrap\">\n          <div class=\"flex-1\">\n            <div class=\"people-image-grid-slider\">\n                              \n                                                      \n                  \n                  <div class=\"people-image-grid-slide\">\n\n                                          <div  class=\"shape-default make-shapetwo\" >\n                        <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2025\/08\/Jenny-Holman-2025-Square-720x720.png\" role=\"img\" alt=\"Jenny Holman, Clockwork CEO. A woman with long brown hair and a white jacket smiles at the camera. The background is slightly blurred, featuring blue tones and textured glass panels arranged in a clockwork-like pattern.\">\n                      <\/div>\n                    \n                    <div class=\"service-box\">\n                                              <h2>Jenny Holman<\/h2>\n                      \n                                              <p>CEO<\/p>\n                                          <\/div>\n\n                  <\/div>\n                \n                                                      \n                  \n                  <div class=\"people-image-grid-slide\">\n\n                                          <div  class=\"shape-default make-shapeone\" >\n                        <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2025\/08\/Vince-Cabansag-2025-Square-720x720.png\" role=\"img\" alt=\"Vincent Cabansag, Chief Operations Officer at Clockwork. A smiling man with dark hair wearing a white t-shirt and a dark denim jacket stands in front of colorful abstract paintings, his pose relaxed yet precise\u2014almost clockwork in its casual confidence.\">\n                      <\/div>\n                    \n                    <div class=\"service-box\">\n                                              <h2>Vince Cabansag<\/h2>\n                      \n                                              <p>COO<\/p>\n                                          <\/div>\n\n                  <\/div>\n                \n                                                      \n                  \n                  <div class=\"people-image-grid-slide\">\n\n                                          <div  class=\"shape-default make-shapesix\" >\n                        <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2024\/07\/Nancy-Lyons-Headshot-2024-720x720.webp\" role=\"img\" alt=\"Nancy Lyons CEO of Clockwork\">\n                      <\/div>\n                    \n                    <div class=\"service-box\">\n                                              <h2>Nancy Lyons<\/h2>\n                      \n                                              <p>Co-Founder<\/p>\n                                          <\/div>\n\n                  <\/div>\n                \n                                                      \n                  \n                  <div class=\"people-image-grid-slide\">\n\n                                          <div  class=\"shape-default make-shapeeight\" >\n                        <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2025\/08\/Chuck-Hermes-2025-Square-720x720.png\" role=\"img\" alt=\"Chuck Hermes, Co-Founder and Chief Experience Officer at Clockwork. A middle-aged man with glasses and a receding hairline smiles at the camera. He is wearing a striped shirt and is seated indoors, with blurred signs\u2014including a blue and yellow ROYAL clockwork sign\u2014in the background.\">\n                      <\/div>\n                    \n                    <div class=\"service-box\">\n                                              <h2>Chuck Hermes<\/h2>\n                      \n                                              <p>Co-Founder &amp; Chief Experience Officer<\/p>\n                                          <\/div>\n\n                  <\/div>\n                \n                                                      \n                  \n                  <div class=\"people-image-grid-slide\">\n\n                                          <div  class=\"shape-default make-shapeten\" >\n                        <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/image-129.png\" role=\"img\" alt=\"Scott Jackson\">\n                      <\/div>\n                    \n                    <div class=\"service-box\">\n                                              <h2>Scott Jackson<\/h2>\n                      \n                                              <p>VP of Finance<\/p>\n                                          <\/div>\n\n                  <\/div>\n                \n                                                      \n                  \n                  <div class=\"people-image-grid-slide\">\n\n                                          <div  class=\"shape-default make-shapefourteen\" >\n                        <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2024\/07\/Chelsey-Mona-1791-scaled-e1720448848522-720x720.webp\" role=\"img\" alt=\"Chelsey Mona Clockwork Experience Design\">\n                      <\/div>\n                    \n                    <div class=\"service-box\">\n                                              <h2>Chelsey Mona<\/h2>\n                      \n                                              <p>Director of Experience Design<\/p>\n                                          <\/div>\n\n                  <\/div>\n                \n                                                      \n                  \n                  <div class=\"people-image-grid-slide\">\n\n                                          <div  class=\"shape-default make-shapetwo\" >\n                        <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2025\/08\/Jay-Haase-Square-720x720.png\" role=\"img\" alt=\"Jay Haase, Director of Software Engineering at Clockwork. A smiling person with glasses, a goatee, and curly hair pulled back, wearing a light blue button-up shirt, stands in front of a blurred gray background like clockwork.\">\n                      <\/div>\n                    \n                    <div class=\"service-box\">\n                                              <h2>Jay Haase<\/h2>\n                      \n                                              <p>Director of Software Engineering<\/p>\n                                          <\/div>\n\n                  <\/div>\n                \n                                                      \n                  \n                  <div class=\"people-image-grid-slide\">\n\n                                          <div  class=\"shape-default make-shapeeight\" >\n                        <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2024\/07\/Preferred-Kasey-Ross-0126-1-scaled-e1720449907843-720x720.webp\" role=\"img\" alt=\"Kasey Ross Change Management Clockwork\">\n                      <\/div>\n                    \n                    <div class=\"service-box\">\n                                              <h2>Kasey Ross<\/h2>\n                      \n                                              <p>Director of Change Strategy<\/p>\n                                          <\/div>\n\n                  <\/div>\n                \n                          <\/div>\n          <\/div>\n        <\/div>\n      <\/div>\n    \n        \n    \n    \n    \n  <\/div>\n<\/div>\n\n\n<div class=\"block three-cards\">\n  <div class=\"grid-container\">\n    <div class=\"grid-x grid-margin-x\">\n      <div class=\"cell\">\n\n                          <div class=\"three-cards-image wow animate__animated animate__fadeInUp\" data-wow-delay=\"0.25s\">\n            <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/10\/45_D6A0770_22020916-scaled.jpg\" alt=\"A row of smiling Clockworkers sitting at our Rayvic kitchen table\">\n          <\/div>\n        \n      <\/div>\n    <\/div>\n    <div class=\"grid-x grid-margin-x\">\n\n                      \n          \n          <div class=\"cell small-12 medium-4\">\n            <div class=\"card wow animate__animated animate__fadeInUp\" data-wow-delay=\"1s\">\n              <div class=\"card-content\">\n\n                                  <h3>People-centered problem solvers.<\/h3>\n                \n                                  <p>With 20 years of digital work to our name, you can bet we\u2019ve seen (and developed) it all. And we just keep honing our expertise in technology, accessibility, strategy and design. Take a look at what that gets you.<\/p>\n                \n                                                    <a class=\"fancy-link arrow-after\" href=\"https:\/\/www.clockwork.com\/expertise\/\" target=\"_self\">\n                    See our expertise                  <\/a>\n                              <\/div>\n            <\/div>\n          <\/div>\n\n        \n          \n          <div class=\"cell small-12 medium-4\">\n            <div class=\"card wow animate__animated animate__fadeInUp\" data-wow-delay=\"1.25s\">\n              <div class=\"card-content\">\n\n                                  <h3>This is the stuff they talk about.<\/h3>\n                \n                                  <p>Working with Clockwork means you get a team that\u2019s focused on designing solutions that work for every user, every time. Sometimes that\u2019s a website. Sometimes it\u2019s an exhibit. Each time, it&#8217;s absolute magic. <\/p>\n                \n                                                    <a class=\"fancy-link arrow-after\" href=\"https:\/\/www.clockwork.com\/work\/\" target=\"_self\">\n                    See the work                  <\/a>\n                              <\/div>\n            <\/div>\n          <\/div>\n\n        \n          \n          <div class=\"cell small-12 medium-4\">\n            <div class=\"card wow animate__animated animate__fadeInUp\" data-wow-delay=\"1.5s\">\n              <div class=\"card-content\">\n\n                                  <h3>Come as you are, stay for the vibe.<\/h3>\n                \n                                  <p>When you\u2019re part of Clockwork, it\u2019s because we want you for exactly who you are, wherever you are. That\u2019s one reason so many people have been here for an industry-defying length of time\u2014and why so many others come back.<\/p>\n                \n                                                    <a class=\"fancy-link arrow-after\" href=\"https:\/\/www.clockwork.com\/careers\/\" target=\"_self\">\n                    See our benefits                  <\/a>\n                              <\/div>\n            <\/div>\n          <\/div>\n\n              \n    <\/div>\n  <\/div>\n<\/div>\n\n    <section class=\"image-with-content our-impact-section\" aria-label=\"image with content \">\n                                \n                                <div class=\"piece-even\" >\n                    <div class=\"new-container\">\n\n                        <div class=\"flex-wrapper wrap center\">\n                            <div class=\"flex-2\">\n                                <div class=\"piece-content\">\n\n                                                                                                                        <h2 \n                                            >\n                                                                                    \n                                        Our Impact                                            \n                                                                                    <\/h2> \n                                                                            \n                                    \n\n                                                                            <p>As a small business, we have a responsibility to serve the people and communities around us. This is how we own it and act on it.<\/p>\n                                    \n                                                                            <div class=\"cta-link\"><a tabindex=\"0\" aria-label=\"Click this link to Learn about our impact\" href=\"https:\/\/www.clockwork.com\/impact\/\" target=\"_self\" aria-label=\"click link\" class=\"fancy-link arrow-after\">Learn about our impact<\/a><\/div>\n                                    \n                                <\/div>\n\n                            <\/div>\n                            <div class=\"flex-2 \">\n                                                                    <div class=\"img-piece\" ><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/about-us_our-impact.jpg\" role=\"img\" alt=\"Volunteers making an impact loading aid boxes\"><\/div>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                            <\/div>\n        <\/section>","protected":false},"excerpt":{"rendered":"","protected":false},"author":24,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"coauthors":[73],"class_list":["post-24","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v23.2 (Yoast SEO v25.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>About Us \u2014 Clockwork<\/title>\n<meta name=\"description\" content=\"We&#039;ve been solving problems for humans using technology and design since 2002. Great people, big ideas, exceptional skills, and brutal honesty.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.clockwork.com\/about-us\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"About Us - Clockwork\" \/>\n<meta property=\"og:description\" content=\"We&#039;ve been solving problems for humans using technology and design since 2002. Great people, big ideas, exceptional skills, and brutal honesty.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.clockwork.com\/about-us\/\" \/>\n<meta property=\"og:site_name\" content=\"Clockwork\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/clockworkactivemedia\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-09T17:03:09+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@Clockwork_Tweet\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.clockwork.com\/about-us\/\",\"url\":\"https:\/\/www.clockwork.com\/about-us\/\",\"name\":\"About Us \u2014 Clockwork\",\"isPartOf\":{\"@id\":\"https:\/\/www.clockwork.com\/#website\"},\"datePublished\":\"2022-06-21T19:20:59+00:00\",\"dateModified\":\"2025-09-09T17:03:09+00:00\",\"description\":\"We've been solving problems for humans using technology and design since 2002. Great people, big ideas, exceptional skills, and brutal honesty.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.clockwork.com\/about-us\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.clockwork.com\/about-us\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.clockwork.com\/about-us\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.clockwork.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"About Us\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.clockwork.com\/#website\",\"url\":\"https:\/\/www.clockwork.com\/\",\"name\":\"Clockwork\",\"description\":\"We create human-centered digital experiences.\",\"publisher\":{\"@id\":\"https:\/\/www.clockwork.com\/#organization\"},\"alternateName\":\"Clockwork: Custom Software Solutions & Experience Design\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.clockwork.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.clockwork.com\/#organization\",\"name\":\"Clockwork\",\"url\":\"https:\/\/www.clockwork.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.clockwork.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/clockwork.svg\",\"contentUrl\":\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/clockwork.svg\",\"width\":93,\"height\":48,\"caption\":\"Clockwork\"},\"image\":{\"@id\":\"https:\/\/www.clockwork.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/clockworkactivemedia\",\"https:\/\/x.com\/Clockwork_Tweet\",\"https:\/\/www.linkedin.com\/company\/clockwork-active-media-systems\"],\"description\":\"Experience design & technology consultancy. We build enterprise websites, software platforms, and mobile apps with a human-centered approach.\",\"legalName\":\"Clockwork\",\"foundingDate\":\"2001-01-01\",\"naics\":\"541511\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"51\",\"maxValue\":\"200\"},\"actionableFeedbackPolicy\":\"https:\/\/www.clockwork.com\/accessibility-statement\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"About Us \u2014 Clockwork","description":"We've been solving problems for humans using technology and design since 2002. Great people, big ideas, exceptional skills, and brutal honesty.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.clockwork.com\/about-us\/","og_locale":"en_US","og_type":"article","og_title":"About Us - Clockwork","og_description":"We've been solving problems for humans using technology and design since 2002. Great people, big ideas, exceptional skills, and brutal honesty.","og_url":"https:\/\/www.clockwork.com\/about-us\/","og_site_name":"Clockwork","article_publisher":"https:\/\/www.facebook.com\/clockworkactivemedia","article_modified_time":"2025-09-09T17:03:09+00:00","twitter_card":"summary_large_image","twitter_site":"@Clockwork_Tweet","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.clockwork.com\/about-us\/","url":"https:\/\/www.clockwork.com\/about-us\/","name":"About Us \u2014 Clockwork","isPartOf":{"@id":"https:\/\/www.clockwork.com\/#website"},"datePublished":"2022-06-21T19:20:59+00:00","dateModified":"2025-09-09T17:03:09+00:00","description":"We've been solving problems for humans using technology and design since 2002. Great people, big ideas, exceptional skills, and brutal honesty.","breadcrumb":{"@id":"https:\/\/www.clockwork.com\/about-us\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.clockwork.com\/about-us\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.clockwork.com\/about-us\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.clockwork.com\/"},{"@type":"ListItem","position":2,"name":"About Us"}]},{"@type":"WebSite","@id":"https:\/\/www.clockwork.com\/#website","url":"https:\/\/www.clockwork.com\/","name":"Clockwork","description":"We create human-centered digital experiences.","publisher":{"@id":"https:\/\/www.clockwork.com\/#organization"},"alternateName":"Clockwork: Custom Software Solutions & Experience Design","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.clockwork.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.clockwork.com\/#organization","name":"Clockwork","url":"https:\/\/www.clockwork.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.clockwork.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/clockwork.svg","contentUrl":"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/clockwork.svg","width":93,"height":48,"caption":"Clockwork"},"image":{"@id":"https:\/\/www.clockwork.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/clockworkactivemedia","https:\/\/x.com\/Clockwork_Tweet","https:\/\/www.linkedin.com\/company\/clockwork-active-media-systems"],"description":"Experience design & technology consultancy. We build enterprise websites, software platforms, and mobile apps with a human-centered approach.","legalName":"Clockwork","foundingDate":"2001-01-01","naics":"541511","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"51","maxValue":"200"},"actionableFeedbackPolicy":"https:\/\/www.clockwork.com\/accessibility-statement\/"}]}},"_links":{"self":[{"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/pages\/24","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/users\/24"}],"replies":[{"embeddable":true,"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/comments?post=24"}],"version-history":[{"count":154,"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/pages\/24\/revisions"}],"predecessor-version":[{"id":8547,"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/pages\/24\/revisions\/8547"}],"wp:attachment":[{"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/media?parent=24"}],"wp:term":[{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/coauthors?post=24"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}