{"id":27,"date":"2022-06-21T19:21:32","date_gmt":"2022-06-21T19:21:32","guid":{"rendered":"https:\/\/clockwork.galaxyweblinks.com\/?page_id=22"},"modified":"2026-03-03T17:19:33","modified_gmt":"2026-03-03T17:19:33","slug":"careers","status":"publish","type":"page","link":"https:\/\/www.clockwork.com\/careers\/","title":{"rendered":"Careers"},"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\/2022\/07\/careers-yellow-2-1.png);\">\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>Careers at Clockwork.<br \/>\nDo great work, have great lives.<\/h1>\n          <\/div>\n        \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=\"746900639\" src=\"https:\/\/player.vimeo.com\/video\/746900639?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=\"746900639\" src=\"https:\/\/player.vimeo.com\/video\/746900639?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=\"content-with-form\" aria-label=\"content with form\">\n            <div class=\"new-container\">\n                <div class=\"flex-wrapper wrap\">\n                    <div class=\"flex-2\">\n                        <div class=\"hiring-box\"  style=\"background-color:#eeeeee\" >\n                                                            <h2>Current Openings<\/h2>\n                            \n                            \n                            \n                                                                <p>Please check out our newsletter for the latest career opportunities.<\/p>\n                            \n                        <\/div>\n                    <\/div>\n                    <div class=\"flex-2\">\n\n                        <div class=\"newslatter-box\"  style=\"background-color:#ffcc00\" >\n                        <div class=\"newslatter-box-inner\">\n                                  <h4>Pssst. Our newsletter has the early scoop on openings.<\/h4>\n                                <div class=\"form-light\">\n                  \n\t\t\t\t\t<script>\n\t\t\t\t\t\twindow.hsFormsOnReady = window.hsFormsOnReady || [];\n\t\t\t\t\t\twindow.hsFormsOnReady.push(()=>{\n\t\t\t\t\t\t\thbspt.forms.create({\n\t\t\t\t\t\t\t\tportalId: 4060534,\n\t\t\t\t\t\t\t\tformId: \"b42f0ee6-802d-44ac-a4e6-0142a9b7f08a\",\n\t\t\t\t\t\t\t\ttarget: \"#hbspt-form-1777971498000-0928339041\",\n\t\t\t\t\t\t\t\tregion: \"na1\",\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t})});\n\t\t\t\t\t<\/script>\n\t\t\t\t\t<div class=\"hbspt-form\" id=\"hbspt-form-1777971498000-0928339041\"><\/div>\n                <\/div>\n              <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n        <\/section>\n    \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>What\u2019s in it for you?<\/h2>\n        \n                  <div class=\"image-grid-content\">\n            <p>It takes more than a taco bar to define job fulfillment (but we wouldn\u2019t say no to one). And we know people do their best work when they\u2019re treated like actual human beings with diverse lives outside of the office. That\u2019s why, in addition to an award-winning company culture, Clockwork offers:<\/p>\n          <\/div>\n        \n      <\/div>\n    <\/div>\n        \n    \n    \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\/2022\/07\/windows-ZQ-3NFtNOOc-unsplash-1.png\" role=\"img\" alt=\"person seated on a yoga mat stretching while practicing wellness\">\n                  <\/div>\n                \n                <div class=\"service-box\">\n                                      <h2>Health &#038; retirement benefits<\/h2>\n                  \n                                      <p>401k and employer matching program. Healthcare, dental, and vision coverage.<\/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-shapesix\" >\n                    <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/48_D6A1212-1.png\" role=\"img\" alt=\"Clockworkers seated at our kitchen table working side by side. The garage door to our Rayvic building is open on a sunny day.\">\n                  <\/div>\n                \n                <div class=\"service-box\">\n                                      <h2>Hybrid work style<\/h2>\n                  \n                                      <p>Work remotely or at our iconic headquarters in Northeast Minneapolis \u2014 wherever you feel most productive.<\/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-shapeone\" >\n                    <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/11_D6A0387-1.png\" role=\"img\" alt=\"Clockworker seated at their desk typing on their computer\">\n                  <\/div>\n                \n                <div class=\"service-box\">\n                                      <h2>Remote work perks<\/h2>\n                  \n                                      <p>Enjoy an annual home office equipment budget and a monthly connectivity stipend.<\/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-shapefourteen\" >\n                    <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/17_D6A0448-1.png\" role=\"img\" alt=\"A Clockworker and their child seated together in our office having lunch\">\n                  <\/div>\n                \n                <div class=\"service-box\">\n                                      <h2>Family-friendly policies<\/h2>\n                  \n                                      <p>Make the most of benefits such as flexible working schedules or babies-at-work.<\/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-shapethirteen\" >\n                    <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/pexels-darta-antane-9334617-1.png\" role=\"img\" alt=\"Hiker on a mountain trail crouching to write in a diary\">\n                  <\/div>\n                \n                <div class=\"service-box\">\n                                      <h2>Flexible work schedules<\/h2>\n                  \n                                      <p>Take advantage of ample PTO and support for a sustainable working pace.<\/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-shapethree\" >\n                    <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/paul-hanaoka-6FqkGMOLskY-unsplash-1.png\" role=\"img\" alt=\"A concentrated Clockworker seated on an office couch while working\">\n                  <\/div>\n                \n                <div class=\"service-box\">\n                                      <h2>Professional development<\/h2>\n                  \n                                      <p>Receive time and budget to level up your professional skills.<\/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-shapeleven\" >\n                    <img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/68_D6A1488-1.png\" role=\"img\" alt=\"A group shot of Clockwork employees posing in front of the Rayvic Clockwork headquarters\">\n                  <\/div>\n                \n                <div class=\"service-box\">\n                                      <h2>Diversity, Equity, &#038; Inclusion<\/h2>\n                  \n                                      <p>Work for a leadership team dedicated to implementing a race-equity vision. <\/p>\n                                  <\/div>\n\n              <\/div>\n            <\/div>\n\n                  \n      <\/div>\n      \n    \n    \n        \n    \n    \n    \n  <\/div>\n<\/div>\n\n        <section class=\"image-with-content\" aria-label=\"image with content \">\n                                    \n                                <div class=\"piece-odd\"  style=\"background-color:#eeeeee\" >\n                    <div class=\"new-container\">\n\n                        <div class=\"flex-wrapper wrap center\">\n                            <div class=\"flex-7\">\n                                <div class=\"piece-content\">\n\n                                    \n                                    \n\n                                                                            <h2>Clockwork is an equal opportunity employer<\/h2>\n<p><strong>We aim to create an inclusive and respectful workplace for diverse humans.<\/strong><\/p>\n<p>We know that diversity of identities, experiences, and ways of thinking results in better solutions for our clients, and the people they serve. And each new hire is an opportunity for us to bring in a different perspective that can add to our company culture.<\/p>\n<p>Underrepresented communities such as people of color, women, LGBTQ, and people with disabilities are encouraged to apply for open roles.<\/p>\n<p><strong>Do you feel you may not meet every requirement in a job post?<\/strong><\/p>\n<p>Clockwork is dedicated to building a diverse, inclusive, and authentic workplace. If you\u2019re excited about one of our open roles but your experience doesn\u2019t align perfectly with every qualification in the job description, we encourage you to apply anyway. You may be just the right candidate for this or other roles.<\/p>\n                                    \n                                    \n                                <\/div>\n\n                            <\/div>\n                            <div class=\"flex-3 \">\n                                                                    <div class=\"img-piece\" ><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/07\/Group-187-2.png\" role=\"img\" alt=\"decorative graphic composed of rainbow and equal sign symbols\"><\/div>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            \n                                <div class=\"piece-even\" >\n                    <div class=\"new-container\">\n\n                        <div class=\"flex-wrapper wrap center\">\n                            <div class=\"flex-3\">\n                                <div class=\"piece-content\">\n\n                                                                                                                        <h2 \n                                            >\n                                                                                    \n                                        Our Values                                            \n                                                                                    <\/h2> \n                                                                            \n                                    \n\n                                                                            <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<h3>We tell the truth. We keep our promises.<\/h3>\n<h3>We\u2019re helpful.<\/h3>\n<h3>We\u2019re curious.<\/h3>\n<h3>We\u2019re adaptable.<\/h3>\n<h3>We\u2019re fueled by challenge.<\/h3>\n                                    \n                                                                            <div class=\"cta-link\"><a tabindex=\"0\" aria-label=\"Click this link to Learn More\" href=\"\/about-us\/#our-value-section\" target=\"_self\" aria-label=\"click link\" class=\"fancy-link arrow-after\">Learn More<\/a><\/div>\n                                    \n                                <\/div>\n\n                            <\/div>\n                            <div class=\"flex-7 \">\n                                                                    <div class=\"img-piece\" ><img decoding=\"async\" src=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/11\/careers_our-values.jpg\" role=\"img\" alt=\"Clockwork employees\"><\/div>\n                                                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n                            <\/div>\n        <\/section>","protected":false},"excerpt":{"rendered":"","protected":false},"author":24,"featured_media":4103,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"content-type":"","footnotes":""},"coauthors":[73],"class_list":["post-27","page","type-page","status-publish","has-post-thumbnail","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>Clockwork Careers<\/title>\n<meta name=\"description\" content=\"Do great work. Have great lives. Technology, experience design, and product careers. Learn about our award-winning, remote-friendly culture.\" \/>\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\/careers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Careers at Clockwork \u2014 Now hiring!\" \/>\n<meta property=\"og:description\" content=\"Do great work. Have great lives. Technology, experience design, and product careers. Learn about our award-winning, remote-friendly culture.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.clockwork.com\/careers\/\" \/>\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=\"2026-03-03T17:19:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/10\/Careers-at-Clockwork-Do-great-work.-Have-great-lives.-2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1600\" \/>\n\t<meta property=\"og:image:height\" content=\"900\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"Careers at Clockwork \u2014 Now hiring!\" \/>\n<meta name=\"twitter:description\" content=\"Do great work. Have great lives. Technology, experience design, and product careers. Learn about our award-winning, remote-friendly culture.\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/10\/Careers-at-Clockwork-Do-great-work.-Have-great-lives.-2.png\" \/>\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\/careers\/\",\"url\":\"https:\/\/www.clockwork.com\/careers\/\",\"name\":\"Clockwork Careers\",\"isPartOf\":{\"@id\":\"https:\/\/www.clockwork.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.clockwork.com\/careers\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.clockwork.com\/careers\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/08\/careers_header-image.png\",\"datePublished\":\"2022-06-21T19:21:32+00:00\",\"dateModified\":\"2026-03-03T17:19:33+00:00\",\"description\":\"Do great work. Have great lives. Technology, experience design, and product careers. Learn about our award-winning, remote-friendly culture.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.clockwork.com\/careers\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.clockwork.com\/careers\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.clockwork.com\/careers\/#primaryimage\",\"url\":\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/08\/careers_header-image.png\",\"contentUrl\":\"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/08\/careers_header-image.png\",\"width\":1920,\"height\":1080,\"caption\":\"Clockwork careers. Two employees working together at Clockwork headquarters in Minneapolis. Remote-friendly jobs.\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.clockwork.com\/careers\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.clockwork.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Careers\"}]},{\"@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":"Clockwork Careers","description":"Do great work. Have great lives. Technology, experience design, and product careers. Learn about our award-winning, remote-friendly culture.","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\/careers\/","og_locale":"en_US","og_type":"article","og_title":"Careers at Clockwork \u2014 Now hiring!","og_description":"Do great work. Have great lives. Technology, experience design, and product careers. Learn about our award-winning, remote-friendly culture.","og_url":"https:\/\/www.clockwork.com\/careers\/","og_site_name":"Clockwork","article_publisher":"https:\/\/www.facebook.com\/clockworkactivemedia","article_modified_time":"2026-03-03T17:19:33+00:00","og_image":[{"width":1600,"height":900,"url":"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/10\/Careers-at-Clockwork-Do-great-work.-Have-great-lives.-2.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_title":"Careers at Clockwork \u2014 Now hiring!","twitter_description":"Do great work. Have great lives. Technology, experience design, and product careers. Learn about our award-winning, remote-friendly culture.","twitter_image":"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/10\/Careers-at-Clockwork-Do-great-work.-Have-great-lives.-2.png","twitter_site":"@Clockwork_Tweet","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.clockwork.com\/careers\/","url":"https:\/\/www.clockwork.com\/careers\/","name":"Clockwork Careers","isPartOf":{"@id":"https:\/\/www.clockwork.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.clockwork.com\/careers\/#primaryimage"},"image":{"@id":"https:\/\/www.clockwork.com\/careers\/#primaryimage"},"thumbnailUrl":"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/08\/careers_header-image.png","datePublished":"2022-06-21T19:21:32+00:00","dateModified":"2026-03-03T17:19:33+00:00","description":"Do great work. Have great lives. Technology, experience design, and product careers. Learn about our award-winning, remote-friendly culture.","breadcrumb":{"@id":"https:\/\/www.clockwork.com\/careers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.clockwork.com\/careers\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.clockwork.com\/careers\/#primaryimage","url":"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/08\/careers_header-image.png","contentUrl":"https:\/\/www.clockwork.com\/wp-content\/uploads\/2022\/08\/careers_header-image.png","width":1920,"height":1080,"caption":"Clockwork careers. Two employees working together at Clockwork headquarters in Minneapolis. Remote-friendly jobs."},{"@type":"BreadcrumbList","@id":"https:\/\/www.clockwork.com\/careers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.clockwork.com\/"},{"@type":"ListItem","position":2,"name":"Careers"}]},{"@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\/27","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=27"}],"version-history":[{"count":224,"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/pages\/27\/revisions"}],"predecessor-version":[{"id":9598,"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/pages\/27\/revisions\/9598"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/media\/4103"}],"wp:attachment":[{"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/media?parent=27"}],"wp:term":[{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.clockwork.com\/wp-json\/wp\/v2\/coauthors?post=27"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}