<!DOCTYPE html><!-- Last Published: Mon Nov 10 2025 14:10:48 GMT+0000 (Coordinated Universal Time) --><html data-wf-domain="wfprod.payscale.com" data-wf-page="68013cdf26128e71ab5b3027" data-wf-site="678b9f42ff433e48155d0586" lang="en"><head><meta charset="utf-8"/><title>What Should You Be Paid? Salary and Wages | Payscale</title><meta content="What Should You Be Paid? Salary and Wages | Payscale" property="og:title"/><meta content="What Should You Be Paid? Salary and Wages | Payscale" property="twitter:title"/><meta content="width=device-width, initial-scale=1" name="viewport"/><link href="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/css/payscale-staging.shared.367d492bd.min.css" rel="stylesheet" type="text/css"/><script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script><link href="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/682a15238980d2afdc3f302b_payscale-favicon.png" rel="shortcut icon" type="image/x-icon"/><link href="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/682a1528d7d614e5dba2f8f2_payscale-webclip.png" rel="apple-touch-icon"/><link href="https://www.payscale.com/for-individuals" rel="canonical"/><!-- Charset & Viewport -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />

<!-- CHEQ INVOCATION TAG -->
<script async
src="https://ob.greencolumnart.com/i/e5d5d180836d70d64ffeb39886549972.js"
data-ch="cheq4ppc" class="ct_clicktrue_84080" data-jsonp="onCheqResponse">
</script>
<!-- END CHEQ INVOCATION TAG -->

<!-- Facebook Domain Verification -->
<meta name="facebook-domain-verification" content="zmicjcz23dwwg4wr4it2kpa201mgnt" />

<!-- Open Graph Meta Tags (for social previews) -->
<meta property="og:image" content="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/6826b33f1bbb33cc0befc00f_payscale-create-confidence-in-your-compensation.png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="627" />

<!-- OneTrust Cookies Consent Notice - Webflow - START -->
<script src="https://cdn.cookielaw.org/consent/832d08fb-f25f-4eb2-86ed-d72dd85e17cd/otSDKStub.js"  type="text/javascript" charset="UTF-8" data-domain-script="832d08fb-f25f-4eb2-86ed-d72dd85e17cd" ></script>
<script type="text/javascript">
function OptanonWrapper() { }
</script>
<!-- OneTrust Cookies Consent Notice - Webflow - END -->

<!-- Custom CSS - START -->
<style>
/* Pre-hide Marketo form container */
.marketo-wrapper {
  opacity: 0;
  transition: opacity 0.4s;
  min-height: 50px; /* Prevent layout shift */
}

/* Custom Nav CSS */
.header.scroll .header__bg,
.header:has(.nav__dd-trigger.w--open) .header__bg{
	opacity: 1;
}
.nav-layout-side{
	transform: translateX(-100%);
}
.nav-layout-side .nav-side_list-wr{
	transform: translateX(-100%);
}
.nav-layout-side.is-active{
	transform: translateX(0%);
}
.nav-layout-side.is-active .nav-side_list-wr{
	transform: translateX(0%);
}
.nav-side_list-option{
	display: none;
}
@media screen and (max-width: 992px) {
  .nav-layout-side{
    transform: translateX(0);
    display: none;
  }
  .nav-layout-side.is-active{
    display: flex;
  }
  .nav-layout-side .nav-side_list-wr{
    transform: translateX(0);
  }
}
</style>
<!-- Custom CSS - END -->

<!-- Optimizely, OneTrust - Custom Consent Checker - START -->
<script>
  // Hold Optimizely events immediately
  window.optimizely = window.optimizely || [];
  window.optimizely.push({
    type: "holdEvents",
  });

  // Guard to prevent duplicate consent checks on initial load
  let consentChecked = false;

  // Function to check OneTrust cookie consent
  function checkOneTrustConsent() {
    // Only allow once on initial load
    if (consentChecked) return;
    consentChecked = true;

    try {
      const oneTrustCookie = document.cookie
        .split("; ")
        .find((row) => row.startsWith("OptanonConsent="));

      if (oneTrustCookie) {
        // Extract groups parameter from the cookie
        const groupsMatch = oneTrustCookie.match(/groups=([^&]*)/);
        if (groupsMatch) {
          // Decode the URL-encoded groups string
          const decodedGroups = decodeURIComponent(groupsMatch[1]);

          // Check if C0003 is set to "1"
          const hasConsent = decodedGroups.includes("C0003:1");

          // Configure Optimizely based on consent
          if (hasConsent) {
            console.log(
              "Functional cookies consent granted - enabling Optimizely"
            );
            window.optimizely.push({
              type: "setOptOut",
              isOptOut: false,
            });
            window.optimizely.push({
              type: "sendEvents",
            });
          } else {
            console.log(
              "Functional cookies consent denied - disabling Optimizely"
            );
            window.optimizely.push({
              type: "setOptOut",
              isOptOut: true,
            });
            // Note: No need to sendEvents since we're opting out
          }
        }
      }
    } catch (error) {
      console.error("Error processing OneTrust consent:", error);
    }
  }

  // Track if OneTrustReadyEvent has fired
  let oneTrustReadyFired = false;

  // Listen for OneTrust ready event (fires on initial load)
  window.addEventListener("OneTrustReadyEvent", function () {
    oneTrustReadyFired = true;
    console.log("OneTrust is ready - checking initial consent state");
    checkOneTrustConsent();
  });

  // Listen for OneTrust consent updates (fires on user interaction)
  window.addEventListener(
    "OneTrustGroupsUpdated",
    function () {
      // Reset guard so consent can be checked again on update
      consentChecked = false;
      console.log("OneTrust consent status updated");
      checkOneTrustConsent();
    },
    false
  );

  // Fallback: if OneTrustReadyEvent hasn't fired after 1 second, check consent
  setTimeout(function () {
    if (!oneTrustReadyFired) {
      checkOneTrustConsent();
    }
  }, 1000);
</script>
<!-- Optimizely, OneTrust - Custom Consent Checker - END -->

<!-- Optimizely Script - START -->
<script src="https://cdn.optimizely.com/js/21011434469.js" async></script>
<!-- Optimizely Script - END -->

<!-- Google Tag Manager - Test - START -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-TH8G2L6M');</script>
<!-- End Google Tag Manager - Test - END -->
<script src="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586%2F66ba5a08efe71070f98dd10a%2F67b618c4a9d2c46c21c3513b%2Fp3cvwr-1.1.1.js" type="text/javascript"></script></head><body><div class="page-wrapper"><div class="styles"><div class="gtm-tst w-embed w-iframe"><!-- Google Tag Manager (noscript) - Test - START -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TH8G2L6M"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) - Test - END --></div><div class="global-styles w-embed"><style>

/* Make text look crisper and more legible in all browsers */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Focus state style for keyboard navigation for the focusable elements */
*[tabindex]:focus-visible,
  input[type="file"]:focus-visible {
   outline: 0.125rem solid #4d65ff;
   outline-offset: 0.125rem;
}

/* Get rid of top margin on first element in any rich text element */
.w-richtext > :not(div):first-child, .w-richtext > div:first-child > :first-child {
  margin-top: 0 !important;
}

/* Get rid of bottom margin on last element in any rich text element */
.w-richtext>:last-child, .w-richtext ol li:last-child, .w-richtext ul li:last-child {
	margin-bottom: 0 !important;
}

/* Create a class of .div-square which maintains a 1:1 dimension of a div */
.div-square::after {
	content: "";
	display: block;
	padding-bottom: 100%;
}

/* Make sure containers never lose their center alignment */
.container-medium,.container-small, .container-large, .container-huge {
	margin-right: auto !important;
  margin-left: auto !important;
}


.ts-3lines {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

/* Apply "..." after 2 lines of text */
.ts-2lines {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
/* Apply "..." after 1 lines of text */
.ts-1line {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
/* Adds inline flex display */
.display-inlineflex {
  display: inline-flex;
}

/* These classes are never overwritten */
.hide {
  display: none !important;
}

@media screen and (max-width: 991px), 
  @media screen and (max-width: 767px), 
  @media screen and (max-width: 479px){
    .hide, .hide-tablet{
      display: none !important;
    }
  }
  @media screen and (max-width: 767px)
    .hide-mobile-landscape{
      display: none !important;
    }
  }
  @media screen and (max-width: 479px)
    .hide-mobile{
      display: none !important;
    }
  }

/* Removes native scrollbar */  
.no-scrollbar,  
[data-scrollbar="none"] {  
    -ms-overflow-style: none;  /* For Internet Explorer and Edge */  
    overflow: -moz-scrollbars-none; /* For Firefox */  
}  

.no-scrollbar::-webkit-scrollbar,  
[data-scrollbar="none"]::-webkit-scrollbar {  
    display: none; /* For Chrome, Safari, and Opera */  
}

@media (max-width: 1024px) and (min-width: 992px) {
  .padding-global, .padding-global.is-navigation {
  	padding: 0 1.5rem;
  }
}
</style></div><div class="project-styles w-embed"><style>
.button:active .btn-icon-box {
    background: #D50E51;
    color: white;
}     
  .resource_card:hover .image-cover {
    transform: scale(1.05);
}
.button.is-outline-icon:hover .btn-icon-box.is-outline {
    background: white;
    color: #D50E51;
}

.button.is-outline-icon:active .btn-icon-box.is-outline {
    background: #D50E51;
    color: white;
}
.button.is-text:hover .button-arr-line {
  width: 1.5rem;
  background: #816bc4;
}


.footer_menu-link:hover .footer_menu-line {
    width: 100%;
}
.footer_share-box:hover .footer_share-bg {
    width: 100%;
    height: 100%;
}
  
select {
	appearance: none;
}

.filter_wrapper:has(input[type="checkbox"]:checked) .filter_block-bottom {
    opacity: 1;
    pointer-events: auto;
}

  .button-arrow-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16.826' viewBox='0 0 16 16.826'%3E%3Cg id='Icon_feather-arrow-right' data-name='Icon feather-arrow-right' transform='translate(1 1.413)'%3E%3Cpath id='Path_17426' data-name='Path 17426' d='M7.5,18h14' transform='translate(-7.5 -11)' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3Cpath id='Path_17427' data-name='Path 17427' d='M18,7.5l7.651,7L18,21.5' transform='translate(-11.651 -7.5)' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E%0A");
  }
  
  .w-tabs:before, .w-tabs:after {
  	display: none;
  }

  .table-row:nth-child(even) {
    background: #f4f2ea;
  }
  .table-row:hover {
    background: #e8edf1;
  }
  .table.is-left-aligned .table-row {
  	text-align: left;
  }
</style></div><div class="marketo-styles w-embed"><style>
  .mktoForm input, .mktoForm select {
    border: 1px solid #a9b3bc;
    border-radius: .5rem;
    width: 100% !important;
    height: 38px;
    padding-left: 1rem !important;
    color: #0A4444;
    margin-bottom: 1rem;
  }
  .mktoForm {
    width: 100% !important;
    max-width: 480px !important;
  }
  .mktoForm {
    font-family: var(--text-font) !important;
    font-weight: 400 !important;
    color: #0A4444 !important;
  }
  .mktoFormRow {
    width: 100%;
    margin: 0 !important;
    display: flex;
    grid-gap: 1.5rem;
  }

  .mktoFieldDescriptor.mktoFormCol {
    width: auto;
    margin: 0 0 .3rem 0 !important;
    flex-grow: 1;
  }

  .mktoFormCol {
    width: 100%;
  }

  .mktoHtmlText.mktoHasWidth {
    width: 94% !important;
    margin-top: 20px;
  }

  .mktoFieldWrap {
    width: 100%;
  }

  .mktoOffset {
    display: none;
  }

  .mktoButton {
    font-family: var(--text-font);
    line-height: 1.5;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    background-color: #1C8391 !important;
    background-image: none !important;
    border: 1px solid #0A4444 !important;
    color: #ffffff !important;
    text-align: center;
    border-radius: 6px;
    padding: .5rem 1.5rem !important;
    font-size: .875rem !important;
    font-weight: 600 !important;
    text-decoration: none;
    transition: background-color .3s;
  }
  .mktoButton:hover {
    background-color: #816bc4 !important;
  }
  .mktoLabel {
    width: auto !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #0A4444;
    margin-bottom: .25rem !important;
    float: none !important;
  }
  .mktoAsterix, .mktoGutter {
    display: none !important;
  }
  .mktoForm input[type="radio"], .mktoForm input[type="checkbox"] {
    width: auto !important;
    height: 1.25rem;
  }
  .mktoForm textarea {
    width: 100% !important;
    resize: auto !important;
  }
  .mktoRadioList > label, .mktoCheckboxList > label {
    font-size: 1rem !important;
    line-height: 1.25rem !important;
  }

  .mktoErrorMsg, .mktoErrorDetail {
    color: #ffffff !important;
  }
  
  .mktoHtmlText a {
    color: #0A4444 !important;
  }
  .mktoHtmlText span {
    color: #0A4444 !important;
  }
  .mktoCaptchaDisclaimer {
  	color: #0A4444 !important;
  }
  .marketo-wrapper[theme="white"] .mktoHtmlText {
    color: white !important;
  }
  .marketo-wrapper[theme="white"] .mktoHtmlText span {
    color: white !important;
  }
  .marketo-wrapper[theme="white"] a {
    color: white !important;
  }
  .marketo-wrapper[theme="white"] label {
    color: white !important;
  }
  .marketo-wrapper[theme="white"] .mktoTemplateBox {
    color: white !important;
  }
  .marketo-wrapper[theme="white"] .mktoNotYou {
    color: white !important;
  }
  .marketo-wrapper[theme="white"] .mktoCaptchaDisclaimer {
    color: white !important;
  }
  .marketo-wrapper[id="5900"] .marketo-prompt {
    display:block;
  }
  @media screen and (max-width: 600px) {
    .mktoFormRow {
    	flex-direction: column;
      grid-gap: .5rem;
     
    }
    .mktoClear {
    	display: none !important;
    }
  }
  .mktoFieldWrap textarea {
  	padding: 12px 16px !important;
  }
  .mktoNotYou {
  	color: #0A4444 !important;
  }
  .mktoForm a {
    text-decoration: underline !important;
  }
  @media only screen and (max-width: 480px) {
  	.mktoForm .mktoFormRow .mktoField {
    	height: 2.5rem !important;
      padding: .5rem !important;

    }
  }
  .mktoErrorMsg, .mktoErrorArrow {
     background-color: #23A4B5 !important;
     border: none !important;
     box-shadow: none !important;
     background-image: none !important;
     text-shadow: none !important;
}
</style></div><div class="global-styles w-embed"><style>
  .ts-highlight::before {
    content: '';
    position: absolute;
    top: .5rem;
    left: 0rem;
    right: 0rem;
    bottom: 0;
    background: linear-gradient(90deg, #CFBDFF 0%, #B399F8 100%);
    z-index: -1; 
    border-radius: inherit; 
    border-radius: 100px;
  }
  .ts-highlight.is-green::before {
    background: linear-gradient(90deg, #C4EFE4 0%, #B9DCD3 100%);
  }
  .ts-highlight.is-yellow::before {
    background: linear-gradient(90deg, #E8FF84 0%, #D1F72F 100%);
  }
  .bg--green .ts-highlight,
  .is-page-hero .ts-highlight,
  .is-abstarct-bg .ts-highlight{
    color: #0A4444;
  }
  .bg--green .ts-highlight::before {
    background: linear-gradient(90deg, #C4EFE4 0%, #B9DCD3 100%);
  }
  .is-page-hero .ts-highlight::before {
    background: linear-gradient(90deg, #C4EFE4 0%, #B9DCD3 100%);
  }

  .nav-side_dd-option .nav-side_dd-option-bg{
    opacity: 0;
    width: 0%;
  }
  .nav-side_dd-option:hover,
  .nav-side_dd-option.is-active{
    color: #1C8391;
  }
  .nav-side_dd-option:hover .nav-side_dd-option-bg,
  .nav-side_dd-option.is-active .nav-side_dd-option-bg{
    opacity: 1;
    width: 100%;
  }
  .loop-move-left {
    flex: none;
    animation-name: loop-move-left;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-play-state: running;
    animation-fill-mode: both;
  }

  @media screen and (max-width: 600px) {
    .ts-highlight::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      background: linear-gradient(90deg, #CFBDFF 0%, #B399F8 100%);
      z-index: -1; 
      border-radius: inherit; 
      border-radius: 100px;
    }
  }
  .sldr-nav .w-slider-dot {
    margin: 0 !important;
    width: .75rem;
    height: .75rem;
    background: #CAC9C2 !important;
    border-radius: 6px !important;
  }
  .sldr-nav .w-slider-dot.w-active {
  	width: 1.75rem;
    background: #1C8391 !important;
  }
  
  .video-lightbox .video-play{
  	transform: scale(1);
  }
  .video-lightbox:hover .video-play{
  	transform: scale(1.05);
  }
  
  .swiper-pagination-bullet{
  	width: .75rem;
    height: .75rem;
    background: #CAC9C2;
    transition: width 250ms ease;
    border-radius: 1000px;
  }
  .swiper-pagination-bullet.swiper-pagination-bullet-active{
  	width: 1.875rem;
  	background: #B9DCD3;
    border-radius: 100px;
  }
  .slider_arrow {
  	transition: 0.2s ease opacity;
    opacity: 1;
    pointer-events: auto;
  }
  .slider_arrow.swiper-button-disabled {
  	opacity: 0;
    pointer-events: none;
  }
</style></div></div><div data-wf--nav--variant="base" class="header-wr"><div class="banner-wr"><div class="banner-login-wr"><a data-nav-item="login" href="#" class="nav-lk banner-login w-inline-block"><div class="embed-icon w-embed"><svg width="13" height="13" viewBox="0 0 13 13" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M5.7312 2.808C5.544 2.8104 5.3664 2.8872 5.2368 3.0216C5.1048 3.156 5.0352 3.3384 5.0376 3.5256C5.04 3.7128 5.1192 3.8928 5.2536 4.0224L6.828 5.5536H0.7032C0.3144 5.556 0 5.8704 0 6.2568C0 6.444 0.072 6.624 0.204 6.756C0.336 6.888 0.516 6.9648 0.7032 6.9648H6.8232L5.2536 8.496C4.9752 8.7672 4.968 9.2112 5.2368 9.4896C5.3664 9.6264 5.5464 9.7032 5.7336 9.7056C5.9232 9.7104 6.1032 9.636 6.2376 9.5064L9.0504 6.7608C9.1872 6.6288 9.264 6.4464 9.264 6.2544C9.264 6.0624 9.1872 5.8824 9.0504 5.748L6.2376 3.0072C6.1032 2.8752 5.9208 2.8008 5.7312 2.8032V2.808ZM6.7536 0C6.5664 0 6.3864 0.0768 6.2544 0.2088C6.1224 0.3408 6.048 0.5208 6.0504 0.708C6.0504 1.0944 6.3648 1.4088 6.7536 1.4112H10.5096C10.7448 1.4112 10.9176 1.5792 10.9176 1.812V10.7016C10.9176 10.9368 10.7472 11.1024 10.5096 11.1024H6.7536C6.5664 11.1024 6.3864 11.1792 6.2544 11.3112C6.1224 11.4432 6.048 11.6232 6.0504 11.8104C6.0504 12.1992 6.3648 12.5112 6.7536 12.5136H10.5096C11.5032 12.5136 12.3216 11.6928 12.3216 10.7016V1.812C12.3216 0.8184 11.5008 0 10.5096 0H6.7536Z" fill="currentColor"/>
</svg></div><div>Login</div></a></div><div class="header_bg-banner"></div></div><header id="header" class="header"><div class="sticky-container"><a href="/" class="header__brand w-inline-block"><div class="header__brand-image is-closed w-embed"><svg width="100%" height="100%" viewBox="0 0 195 46" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1074_3915)">
<path d="M66.0507 19.0251C66.0507 24.2426 62.5431 28.0448 56.1025 28.0448H51.8605V37.7137C51.8605 38.0781 51.6156 38.321 51.2484 38.321H48.0281C47.6608 38.321 47.416 38.0781 47.416 37.7137V10.6126C47.416 10.2483 47.6608 10.0054 48.0281 10.0054H56.1025C62.5431 10.0054 66.0507 13.8076 66.0507 19.0251ZM61.771 19.0251C61.771 15.2649 59.0403 13.971 55.9424 13.971H51.8652V24.0838H55.9424C59.0403 24.0838 61.771 22.7479 61.771 19.0297V19.0251Z" fill="currentColor"/>
<path d="M86.0685 19.1043V37.7089C86.0685 38.0732 85.8237 38.3161 85.4565 38.3161H82.6834C82.3162 38.3161 82.1137 38.0732 82.0713 37.7089L81.9066 35.6864C80.4 37.5454 78.1966 38.8393 75.3811 38.8393C69.7549 38.8393 65.6777 34.229 65.6777 28.4463C65.6777 22.6636 69.7549 18.0533 75.3811 18.0533C78.1919 18.0533 80.3953 19.3893 81.9442 21.2903L82.0666 19.1043C82.109 18.74 82.3114 18.4971 82.6787 18.4971H85.4518C85.819 18.4971 86.0638 18.74 86.0638 19.1043H86.0685ZM81.8689 28.4089C81.8689 24.8917 79.3406 21.9396 75.8331 21.9396C72.3256 21.9396 69.7973 24.6908 69.7973 28.4089C69.7973 32.1271 72.3679 34.9624 75.8331 34.9624C79.2983 34.9624 81.8689 31.9683 81.8689 28.4089Z" fill="currentColor"/>
<path d="M107.798 19.184L97.2802 45.5144C97.1578 45.8367 96.8706 46.0002 96.5458 46.0002H93.4855C93.0383 46.0002 92.8311 45.7573 92.9959 45.3135L95.849 38.3958L88.1842 19.184C88.0194 18.7402 88.2266 18.4973 88.6738 18.4973H91.7718C92.0966 18.4973 92.3838 18.6608 92.5062 18.9831L97.9676 33.3838L103.429 18.9831C103.551 18.6608 103.839 18.4973 104.163 18.4973H107.304C107.751 18.4973 107.958 18.7402 107.793 19.184H107.798Z" fill="currentColor"/>
<path d="M123.091 33.0192C123.091 36.6206 119.381 38.844 115.793 38.844C112.408 38.844 109.72 37.1858 108.293 35.5276C108.048 35.2426 108.091 34.9624 108.251 34.7195L109.513 33.0613C109.8 32.6969 110.04 32.7763 110.407 33.0613C111.754 34.0749 113.627 35.2053 115.666 35.2053C117.46 35.2053 118.929 34.5186 118.929 32.9398C118.929 29.0582 108.656 30.4315 108.656 23.7987C108.656 20.2814 111.754 18.0533 115.341 18.0533C117.705 18.0533 120.313 19.1043 121.984 21.0475C122.229 21.3324 122.149 21.6126 121.942 21.8976L120.803 23.3923C120.558 23.7146 120.233 23.5932 119.903 23.3503C118.312 22.1358 117.215 21.5286 115.581 21.5286C114.197 21.5286 112.766 22.2152 112.766 23.752C112.766 27.5962 123.081 25.8539 123.081 33.0146L123.091 33.0192Z" fill="currentColor"/>
<path d="M140.127 32.7767C140.452 32.4917 140.739 32.4917 141.026 32.7767L142.82 34.4769C143.065 34.7198 143.107 35.0421 142.862 35.327C140.988 37.471 138.253 38.8443 135.075 38.8443C129.326 38.8443 124.962 34.2761 124.962 28.4513C124.962 22.6266 129.326 18.0583 135.075 18.0583C138.173 18.0583 140.866 19.4316 142.74 21.5756C142.985 21.8605 142.942 22.1828 142.697 22.4257L140.904 24.126C140.616 24.4109 140.334 24.3689 140.004 24.0839C138.823 23.0703 137.556 21.94 135.113 21.94C131.567 21.94 129.077 24.7285 129.077 28.4513C129.077 32.1741 131.563 34.9207 135.113 34.9207C137.641 34.9207 138.987 33.8697 140.127 32.7767Z" fill="currentColor"/>
<path d="M165.038 19.1043V37.7089C165.038 38.0732 164.793 38.3161 164.426 38.3161H161.653C161.286 38.3161 161.083 38.0732 161.041 37.7089L160.876 35.6864C159.37 37.5454 157.166 38.8393 154.351 38.8393C148.725 38.8393 144.647 34.229 144.647 28.4463C144.647 22.6636 148.725 18.0533 154.351 18.0533C157.162 18.0533 159.365 19.3893 160.914 21.2903L161.036 19.1043C161.079 18.74 161.281 18.4971 161.648 18.4971H164.421C164.789 18.4971 165.034 18.74 165.034 19.1043H165.038ZM160.839 28.4089C160.839 24.8917 158.31 21.9396 154.803 21.9396C151.295 21.9396 148.767 24.6908 148.767 28.4089C148.767 32.1271 151.338 34.9624 154.803 34.9624C158.268 34.9624 160.839 31.9683 160.839 28.4089Z" fill="currentColor"/>
<path d="M169.52 8.79089H172.581C172.948 8.79089 173.193 9.03379 173.193 9.39812V37.7137C173.193 38.0781 172.948 38.321 172.581 38.321H169.52C169.153 38.321 168.908 38.0781 168.908 37.7137V9.39812C168.908 9.03379 169.153 8.79089 169.52 8.79089Z" fill="currentColor"/>
<path d="M195.001 27.8391C195.001 29.3338 194.799 30.0625 193.697 30.0625H179.836C180.368 33.2575 182.732 35.3221 186.362 35.3221C188.4 35.3221 189.869 34.6728 191.211 33.6639C191.536 33.421 191.781 33.3416 192.068 33.6218L193.372 34.8736C193.697 35.1959 193.697 35.4809 193.372 35.8032C191.498 37.7043 188.89 38.8347 185.952 38.8347C179.836 38.8347 175.637 34.2664 175.637 28.4417C175.637 22.6169 179.794 18.0487 185.543 18.0487C191.291 18.0487 195.001 22.6216 195.001 27.8391ZM179.794 27.1151H191.211C190.924 23.8407 188.64 21.6968 185.585 21.6968C182.529 21.6968 180.204 23.8407 179.794 27.1151Z" fill="currentColor"/>
<path d="M38.1934 16.245C38.1934 17.8842 36.8784 19.1889 35.2261 19.1889C33.5739 19.1889 32.2588 17.8842 32.2588 16.245C32.2588 14.6057 33.5739 13.301 35.2261 13.301C36.8784 13.301 38.1934 14.6517 38.1934 16.245Z" fill="currentColor"/>
<path d="M38.1934 6.91916C38.1934 8.5584 36.8784 9.8631 35.2261 9.8631C33.5739 9.8631 32.2588 8.5584 32.2588 6.91916C32.2588 5.27992 33.5739 3.97522 35.2261 3.97522C36.8784 3.97522 38.1934 5.32592 38.1934 6.91916Z" fill="currentColor"/>
<path d="M38.1934 25.6284C38.1934 27.2676 36.8784 28.5723 35.2261 28.5723C33.5739 28.5723 32.2588 27.2676 32.2588 25.6284C32.2588 23.9891 33.5739 22.6844 35.2261 22.6844C36.8784 22.6844 38.1934 23.9891 38.1934 25.6284Z" fill="currentColor"/>
<path d="M38.1948 35.0078C38.1948 36.6471 36.8798 37.9518 35.2275 37.9518H35.1306C33.5753 37.9016 32.3108 36.6471 32.2602 35.104C32.2096 33.4648 33.5247 32.1141 35.1306 32.0639C36.7828 32.0137 38.1443 33.3184 38.1948 34.9117V35.0078Z" fill="currentColor"/>
<path d="M29.4239 16.2448C29.4239 17.8841 28.1088 19.1888 26.4566 19.1888C24.8043 19.1888 23.4893 17.8841 23.4893 16.2448C23.4893 14.6056 24.8043 13.3009 26.4566 13.3009C28.0625 13.3009 29.4239 14.6516 29.4239 16.2448Z" fill="currentColor"/>
<path d="M29.4239 25.6285C29.4239 27.2677 28.1088 28.5725 26.4566 28.5725C24.8043 28.5725 23.4893 27.2677 23.4893 25.6285C23.4893 23.9893 24.8043 22.6846 26.4566 22.6846C28.0625 22.6846 29.4239 23.9893 29.4239 25.6285Z" fill="currentColor"/>
<path d="M29.4239 35.0081C29.4239 36.6474 28.1088 37.9521 26.4566 37.9521C24.8043 37.9521 23.4893 36.6474 23.4893 35.0081C23.4893 33.3689 24.8043 32.0642 26.4566 32.0642C28.0625 32.0642 29.4239 33.3689 29.4239 35.0081Z" fill="currentColor"/>
<path d="M20.6544 25.6285C20.6544 27.2677 19.3393 28.5725 17.687 28.5725C16.0348 28.5725 14.7197 27.2677 14.7197 25.6285C14.7197 23.9893 16.0348 22.6846 17.687 22.6846C19.3393 22.6846 20.6544 23.9893 20.6544 25.6285Z" fill="currentColor"/>
<path d="M20.6544 35.0081C20.6544 36.6474 19.3393 37.9521 17.687 37.9521C16.0348 37.9521 14.7197 36.6474 14.7197 35.0081C14.7197 33.3689 16.0348 32.0642 17.687 32.0642C19.3393 32.0642 20.6544 33.3689 20.6544 35.0081Z" fill="currentColor"/>
<path d="M11.8907 16.2484C11.8907 17.8876 10.5756 19.1923 8.92338 19.1923C7.27112 19.1923 5.95605 17.8876 5.95605 16.2986C5.95605 14.7095 7.27112 13.3546 8.92338 13.3546C10.5756 13.3044 11.8907 14.6593 11.8907 16.2484Z" fill="currentColor"/>
<path d="M11.8907 25.6284C11.8907 27.2676 10.5756 28.5723 8.92338 28.5723C7.27112 28.5723 5.95605 27.2676 5.95605 25.6284C5.95605 23.9891 7.27112 22.6844 8.92338 22.6844C10.5756 22.6844 11.8907 23.9891 11.8907 25.6284Z" fill="currentColor"/>
<path d="M11.8907 35.008C11.8907 36.6473 10.5756 37.952 8.92338 37.952C7.27112 37.952 5.95605 36.6473 5.95605 35.008C5.95605 33.3688 7.27112 32.0641 8.92338 32.0641C10.5756 32.0641 11.8907 33.3688 11.8907 35.008Z" fill="currentColor"/>
</g>
<defs>
<clipPath id="clip0_1074_3915">
<rect width="195" height="46" fill="currentColor"/>
</clipPath>
</defs>
</svg></div><div class="header__brand-image is-openned w-embed"><svg width="100%" height="100%" viewBox="0 0 195 46" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_1074_3915)">
<path d="M66.0507 19.0251C66.0507 24.2426 62.5431 28.0448 56.1025 28.0448H51.8605V37.7137C51.8605 38.0781 51.6156 38.321 51.2484 38.321H48.0281C47.6608 38.321 47.416 38.0781 47.416 37.7137V10.6126C47.416 10.2483 47.6608 10.0054 48.0281 10.0054H56.1025C62.5431 10.0054 66.0507 13.8076 66.0507 19.0251ZM61.771 19.0251C61.771 15.2649 59.0403 13.971 55.9424 13.971H51.8652V24.0838H55.9424C59.0403 24.0838 61.771 22.7479 61.771 19.0297V19.0251Z" fill="currentColor"/>
<path d="M86.0685 19.1043V37.7089C86.0685 38.0732 85.8237 38.3161 85.4565 38.3161H82.6834C82.3162 38.3161 82.1137 38.0732 82.0713 37.7089L81.9066 35.6864C80.4 37.5454 78.1966 38.8393 75.3811 38.8393C69.7549 38.8393 65.6777 34.229 65.6777 28.4463C65.6777 22.6636 69.7549 18.0533 75.3811 18.0533C78.1919 18.0533 80.3953 19.3893 81.9442 21.2903L82.0666 19.1043C82.109 18.74 82.3114 18.4971 82.6787 18.4971H85.4518C85.819 18.4971 86.0638 18.74 86.0638 19.1043H86.0685ZM81.8689 28.4089C81.8689 24.8917 79.3406 21.9396 75.8331 21.9396C72.3256 21.9396 69.7973 24.6908 69.7973 28.4089C69.7973 32.1271 72.3679 34.9624 75.8331 34.9624C79.2983 34.9624 81.8689 31.9683 81.8689 28.4089Z" fill="currentColor"/>
<path d="M107.798 19.184L97.2802 45.5144C97.1578 45.8367 96.8706 46.0002 96.5458 46.0002H93.4855C93.0383 46.0002 92.8311 45.7573 92.9959 45.3135L95.849 38.3958L88.1842 19.184C88.0194 18.7402 88.2266 18.4973 88.6738 18.4973H91.7718C92.0966 18.4973 92.3838 18.6608 92.5062 18.9831L97.9676 33.3838L103.429 18.9831C103.551 18.6608 103.839 18.4973 104.163 18.4973H107.304C107.751 18.4973 107.958 18.7402 107.793 19.184H107.798Z" fill="currentColor"/>
<path d="M123.091 33.0192C123.091 36.6206 119.381 38.844 115.793 38.844C112.408 38.844 109.72 37.1858 108.293 35.5276C108.048 35.2426 108.091 34.9624 108.251 34.7195L109.513 33.0613C109.8 32.6969 110.04 32.7763 110.407 33.0613C111.754 34.0749 113.627 35.2053 115.666 35.2053C117.46 35.2053 118.929 34.5186 118.929 32.9398C118.929 29.0582 108.656 30.4315 108.656 23.7987C108.656 20.2814 111.754 18.0533 115.341 18.0533C117.705 18.0533 120.313 19.1043 121.984 21.0475C122.229 21.3324 122.149 21.6126 121.942 21.8976L120.803 23.3923C120.558 23.7146 120.233 23.5932 119.903 23.3503C118.312 22.1358 117.215 21.5286 115.581 21.5286C114.197 21.5286 112.766 22.2152 112.766 23.752C112.766 27.5962 123.081 25.8539 123.081 33.0146L123.091 33.0192Z" fill="currentColor"/>
<path d="M140.127 32.7767C140.452 32.4917 140.739 32.4917 141.026 32.7767L142.82 34.4769C143.065 34.7198 143.107 35.0421 142.862 35.327C140.988 37.471 138.253 38.8443 135.075 38.8443C129.326 38.8443 124.962 34.2761 124.962 28.4513C124.962 22.6266 129.326 18.0583 135.075 18.0583C138.173 18.0583 140.866 19.4316 142.74 21.5756C142.985 21.8605 142.942 22.1828 142.697 22.4257L140.904 24.126C140.616 24.4109 140.334 24.3689 140.004 24.0839C138.823 23.0703 137.556 21.94 135.113 21.94C131.567 21.94 129.077 24.7285 129.077 28.4513C129.077 32.1741 131.563 34.9207 135.113 34.9207C137.641 34.9207 138.987 33.8697 140.127 32.7767Z" fill="currentColor"/>
<path d="M165.038 19.1043V37.7089C165.038 38.0732 164.793 38.3161 164.426 38.3161H161.653C161.286 38.3161 161.083 38.0732 161.041 37.7089L160.876 35.6864C159.37 37.5454 157.166 38.8393 154.351 38.8393C148.725 38.8393 144.647 34.229 144.647 28.4463C144.647 22.6636 148.725 18.0533 154.351 18.0533C157.162 18.0533 159.365 19.3893 160.914 21.2903L161.036 19.1043C161.079 18.74 161.281 18.4971 161.648 18.4971H164.421C164.789 18.4971 165.034 18.74 165.034 19.1043H165.038ZM160.839 28.4089C160.839 24.8917 158.31 21.9396 154.803 21.9396C151.295 21.9396 148.767 24.6908 148.767 28.4089C148.767 32.1271 151.338 34.9624 154.803 34.9624C158.268 34.9624 160.839 31.9683 160.839 28.4089Z" fill="currentColor"/>
<path d="M169.52 8.79089H172.581C172.948 8.79089 173.193 9.03379 173.193 9.39812V37.7137C173.193 38.0781 172.948 38.321 172.581 38.321H169.52C169.153 38.321 168.908 38.0781 168.908 37.7137V9.39812C168.908 9.03379 169.153 8.79089 169.52 8.79089Z" fill="currentColor"/>
<path d="M195.001 27.8391C195.001 29.3338 194.799 30.0625 193.697 30.0625H179.836C180.368 33.2575 182.732 35.3221 186.362 35.3221C188.4 35.3221 189.869 34.6728 191.211 33.6639C191.536 33.421 191.781 33.3416 192.068 33.6218L193.372 34.8736C193.697 35.1959 193.697 35.4809 193.372 35.8032C191.498 37.7043 188.89 38.8347 185.952 38.8347C179.836 38.8347 175.637 34.2664 175.637 28.4417C175.637 22.6169 179.794 18.0487 185.543 18.0487C191.291 18.0487 195.001 22.6216 195.001 27.8391ZM179.794 27.1151H191.211C190.924 23.8407 188.64 21.6968 185.585 21.6968C182.529 21.6968 180.204 23.8407 179.794 27.1151Z" fill="currentColor"/>
<path d="M38.1934 16.245C38.1934 17.8842 36.8784 19.1889 35.2261 19.1889C33.5739 19.1889 32.2588 17.8842 32.2588 16.245C32.2588 14.6057 33.5739 13.301 35.2261 13.301C36.8784 13.301 38.1934 14.6517 38.1934 16.245Z" fill="currentColor"/>
<path d="M38.1934 6.91916C38.1934 8.5584 36.8784 9.8631 35.2261 9.8631C33.5739 9.8631 32.2588 8.5584 32.2588 6.91916C32.2588 5.27992 33.5739 3.97522 35.2261 3.97522C36.8784 3.97522 38.1934 5.32592 38.1934 6.91916Z" fill="currentColor"/>
<path d="M38.1934 25.6284C38.1934 27.2676 36.8784 28.5723 35.2261 28.5723C33.5739 28.5723 32.2588 27.2676 32.2588 25.6284C32.2588 23.9891 33.5739 22.6844 35.2261 22.6844C36.8784 22.6844 38.1934 23.9891 38.1934 25.6284Z" fill="currentColor"/>
<path d="M38.1948 35.0078C38.1948 36.6471 36.8798 37.9518 35.2275 37.9518H35.1306C33.5753 37.9016 32.3108 36.6471 32.2602 35.104C32.2096 33.4648 33.5247 32.1141 35.1306 32.0639C36.7828 32.0137 38.1443 33.3184 38.1948 34.9117V35.0078Z" fill="currentColor"/>
<path d="M29.4239 16.2448C29.4239 17.8841 28.1088 19.1888 26.4566 19.1888C24.8043 19.1888 23.4893 17.8841 23.4893 16.2448C23.4893 14.6056 24.8043 13.3009 26.4566 13.3009C28.0625 13.3009 29.4239 14.6516 29.4239 16.2448Z" fill="currentColor"/>
<path d="M29.4239 25.6285C29.4239 27.2677 28.1088 28.5725 26.4566 28.5725C24.8043 28.5725 23.4893 27.2677 23.4893 25.6285C23.4893 23.9893 24.8043 22.6846 26.4566 22.6846C28.0625 22.6846 29.4239 23.9893 29.4239 25.6285Z" fill="currentColor"/>
<path d="M29.4239 35.0081C29.4239 36.6474 28.1088 37.9521 26.4566 37.9521C24.8043 37.9521 23.4893 36.6474 23.4893 35.0081C23.4893 33.3689 24.8043 32.0642 26.4566 32.0642C28.0625 32.0642 29.4239 33.3689 29.4239 35.0081Z" fill="currentColor"/>
<path d="M20.6544 25.6285C20.6544 27.2677 19.3393 28.5725 17.687 28.5725C16.0348 28.5725 14.7197 27.2677 14.7197 25.6285C14.7197 23.9893 16.0348 22.6846 17.687 22.6846C19.3393 22.6846 20.6544 23.9893 20.6544 25.6285Z" fill="currentColor"/>
<path d="M20.6544 35.0081C20.6544 36.6474 19.3393 37.9521 17.687 37.9521C16.0348 37.9521 14.7197 36.6474 14.7197 35.0081C14.7197 33.3689 16.0348 32.0642 17.687 32.0642C19.3393 32.0642 20.6544 33.3689 20.6544 35.0081Z" fill="currentColor"/>
<path d="M11.8907 16.2484C11.8907 17.8876 10.5756 19.1923 8.92338 19.1923C7.27112 19.1923 5.95605 17.8876 5.95605 16.2986C5.95605 14.7095 7.27112 13.3546 8.92338 13.3546C10.5756 13.3044 11.8907 14.6593 11.8907 16.2484Z" fill="currentColor"/>
<path d="M11.8907 25.6284C11.8907 27.2676 10.5756 28.5723 8.92338 28.5723C7.27112 28.5723 5.95605 27.2676 5.95605 25.6284C5.95605 23.9891 7.27112 22.6844 8.92338 22.6844C10.5756 22.6844 11.8907 23.9891 11.8907 25.6284Z" fill="currentColor"/>
<path d="M11.8907 35.008C11.8907 36.6473 10.5756 37.952 8.92338 37.952C7.27112 37.952 5.95605 36.6473 5.95605 35.008C5.95605 33.3688 7.27112 32.0641 8.92338 32.0641C10.5756 32.0641 11.8907 33.3688 11.8907 35.008Z" fill="currentColor"/>
</g>
<defs>
<clipPath id="clip0_1074_3915">
<rect width="195" height="46" fill="currentColor"/>
</clipPath>
</defs>
</svg></div></a><div class="sticky-layout"><a href="/demo-request/get-a-demo?tk_ctg=hdr-nav&amp;tk_cta=dmo" class="btn is-small mobile w-inline-block"><div>Get a Demo</div></a><a data-w-id="5f5c392f-a244-14fd-f202-a9e74e3b0718" href="#" class="nav__menu-button w-inline-block"><div class="nav__menu-icon is-lines w-embed"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M2.66797 12.668H13.3346" stroke="#222423" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M2.66797 3.33203H13.3346" stroke="#222423" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M2.66797 8H13.3346" stroke="#222423" stroke-linecap="round" stroke-linejoin="round"/>
</svg></div><div class="nav__menu-icon is-cross w-embed"><svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2451_45852)">
<path d="M3.29492 12.2948L11.8845 3.70518" stroke="#222423" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M11.8838 12.2948L3.29417 3.70518" stroke="#222423" stroke-linecap="round" stroke-linejoin="round"/>
</g>
<defs>
<clipPath id="clip0_2451_45852">
<rect width="16" height="16" fill="white"/>
</clipPath>
</defs>
</svg></div></a><nav class="nav__menu-list"><ul role="list" class="nav__menu w-list-unstyled"><li class="nav__list-item login-nav"><a data-nav-item="login" href="#" class="nav-lk login w-inline-block"><div>Login</div><div class="side-nav_arrow is-top w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div></a><div data-nav-item="login" class="nav-layout-side is-login"><div class="nav-side_dd-wr is-login"><a data-nav-back="main" href="#" class="back-link w-inline-block"><div class="side-nav_arrow is-back w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div><div>Back</div></a><div class="side-nav_padding-wr"><div class="heading-3">Login</div></div><div class="nav-side_dd-options-wr"><div><div class="nav-side_dd-options is-links"><a href="/products/customer-login" class="nav-side_dd-option nav-menu__login w-inline-block"><div class="nav-side_dd-option-bg"></div><div>Login</div><div class="side-nav_arrow w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div></a><div class="nav-side_dd-options"><a href="/myaccount.aspx" class="nav-side_dd-option nav-menu__account w-inline-block"><div class="nav-side_dd-option-bg"></div><div>My Account</div><div class="side-nav_arrow w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div></a><a href="/mypayscale.aspx" class="nav-side_dd-option nav-menu__reports w-inline-block"><div class="nav-side_dd-option-bg"></div><div>View Reports</div><div class="side-nav_arrow w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div></a><a href="https://insight.payscale.com/" class="nav-side_dd-option nav-menu__business-account w-inline-block"><div class="nav-side_dd-option-bg"></div><div>Business Dashboard</div><div class="side-nav_arrow w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div></a><a href="/logout.aspx" class="nav-side_dd-option nav-menu__logout w-inline-block"><div class="nav-side_dd-option-bg"></div><div>Logout</div><div class="side-nav_arrow w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div></a></div></div></div></div></div></div></li><li class="nav__list-item"><a data-nav-item="solutions" href="#" class="nav-lk w-inline-block"><div>Solutions</div><div class="side-nav_arrow is-top w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div></a><div data-nav-item="solutions" class="nav-layout-side"><div class="nav-layout-side_close-trigger"></div><div class="nav-side_dd-wr"><a data-nav-back="main" href="#" class="back-link w-inline-block"><div class="side-nav_arrow is-back w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div><div>Back</div></a><div class="side-nav_padding-wr"><div class="heading-3">Solutions</div></div><div class="nav-side_dd-options-wr"><div><div class="side-nav_categorie-heading"><div class="embed-icon w-embed"><svg width="30" height="36" viewBox="0 0 30 36" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15 13.5L22.5 11.25V18.75L15 21.75V13.5Z" fill="#B399F8"/>
<path d="M15.0007 14.25V21.75M15.0007 14.25L8.24948 10.8749M15.0007 14.25L21.7495 10.8756M22.5001 16.5L27.8568 19.7138C28.8279 20.2964 28.8279 21.7037 27.8569 22.2863L23.25 25.0504M7.49948 16.5L2.1433 19.7137C1.17227 20.2963 1.17229 21.7036 2.14334 22.2862L13.4572 29.074C14.4073 29.644 15.5941 29.644 16.5441 29.074L18 28.2004M13.4573 6.92592L8.95617 9.62613C8.05245 10.1683 7.49948 11.1449 7.49948 12.1987V16.3013C7.49948 17.3552 8.05245 18.3317 8.95617 18.8739L13.4573 21.5741C14.4073 22.144 15.5941 22.144 16.5441 21.574L21.0442 18.8739C21.9478 18.3317 22.5007 17.3552 22.5007 16.3014V12.1986C22.5007 11.1448 21.9478 10.1683 21.0442 9.6261L16.5441 6.92603C15.5941 6.35604 14.4073 6.35599 13.4573 6.92592Z" stroke="#0A4444" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
</svg></div><div>Payscale products</div></div><div class="nav-side_dd-options"><div data-side-nav-dd="01" class="nav-side_dd-option"><div class="nav-side_dd-option-bg"></div><div>Product overview</div><div class="side-nav_arrow w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div><a href="/products" class="overlay-link w-inline-block"></a></div><div data-side-nav-dd="02" class="nav-side_dd-option"><div class="nav-side_dd-option-bg"></div><div>Marketpay</div><div class="side-nav_arrow w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div><a href="/products/software/marketpay" class="overlay-link w-inline-block"></a></div><div data-side-nav-dd="03" class="nav-side_dd-option"><div class="nav-side_dd-option-bg"></div><div>Payfactors</div><div class="side-nav_arrow w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div><a href="/products/software/payfactors" class="overlay-link w-inline-block"></a></div><div data-side-nav-dd="04" class="nav-side_dd-option"><div class="nav-side_dd-option-bg"></div><div>Paycycle</div><div class="side-nav_arrow w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div><a href="/products/software/paycycle" class="overlay-link w-inline-block"></a></div></div></div><div class="line"></div><div><div class="nav-side_dd-options"><a href="/marketplace" class="nav-side_dd-option w-inline-block"><div class="nav-side_dd-option-bg"></div><div>Partners + Integrations</div><div class="side-nav_arrow w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div></a><a href="/products/services" class="nav-side_dd-option w-inline-block"><div class="nav-side_dd-option-bg"></div><div>Services</div><div class="side-nav_arrow w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div></a></div></div></div></div><div class="nav-side_list-wr"><div data-side-nav-dd="01" class="nav-side_list-option"><a data-nav-back="sub-nav" href="#" class="back-link w-inline-block"><div class="side-nav_arrow is-back w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div><div>Back</div></a><img src="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/68152dcf0ac3f4128d7f1f8b_side-nav_icon-dd-open.svg" loading="eager" alt="" class="nav_side-icon"/><div class="nav-side_list-option-info"><div class="heading-3">Product overview</div><p class="text-size-medium">Payscale products are powered by over 250 billion data points, HR leaders and compensation teams rely on Payscale’s portfolio of solutions to deliver insights across the entire employee lifecycle.</p></div><div class="button-group is-vertical"><a href="/products" class="btn w-inline-block"><div>Learn More</div></a><a href="/demo-request/get-a-demo?tk_ctg=hdr-nav&amp;tk_cta=dmo" class="btn w-inline-block"><div>Get a Demo</div></a></div></div><div data-side-nav-dd="02" class="nav-side_list-option"><a data-nav-back="sub-nav" href="#" class="back-link w-inline-block"><div class="side-nav_arrow is-back w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div><div>Back</div></a><img src="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/68152dcf0ac3f4128d7f1f8b_side-nav_icon-dd-open.svg" loading="eager" alt="" class="nav_side-icon"/><div class="nav-side_list-option-info"><div class="heading-3">Payscale Marketpay</div><p class="text-size-medium">Payscale Marketpay™ is intended for global companies with large workforces, dedicated compensation teams, mature pay structures, and lots of survey data to manage.</p></div><div class="button-group is-vertical"><a href="/products/software/marketpay" class="btn w-inline-block"><div>Learn More</div></a><a href="/demo-request/marketpay-demo-request?tk_ctg=hdr-nav&amp;tk_cta=dmo" class="btn w-inline-block"><div>Get a Demo</div></a></div></div><div data-side-nav-dd="03" class="nav-side_list-option"><a data-nav-back="sub-nav" href="#" class="back-link w-inline-block"><div class="side-nav_arrow is-back w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div><div>Back</div></a><img src="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/68152dcf0ac3f4128d7f1f8b_side-nav_icon-dd-open.svg" loading="eager" alt="" class="nav_side-icon"/><div class="nav-side_list-option-info"><div class="heading-3">Payscale Payfactors</div><p class="text-size-medium">Payscale Payfactors provides access to fresh compensation data and AI-powered workflows—all within a scalable platform that delivers intelligent insights to help organizations of all sizes make confident pay decisions.</p></div><div class="button-group is-vertical"><a href="/products/software/payfactors" class="btn w-inline-block"><div>Learn More</div></a><a href="/demo-request/payfactors-free?tk_ctg=hdr-nav&amp;tk_cta=frm" class="btn w-inline-block"><div>Free Trial</div></a></div></div><div data-side-nav-dd="04" class="nav-side_list-option"><a data-nav-back="sub-nav" href="#" class="back-link w-inline-block"><div class="side-nav_arrow is-back w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div><div>Back</div></a><img src="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/68152dcf0ac3f4128d7f1f8b_side-nav_icon-dd-open.svg" loading="eager" alt="" class="nav_side-icon"/><div class="nav-side_list-option-info"><div class="heading-3">Payscale Paycycle</div><p class="text-size-medium">Payscale Paycycle is the go-to solution to help organizations plan for regular pay raises to keep up with inflation, reward performance, and align with market trends.</p></div><div class="button-group is-vertical"><a href="/products/software/paycycle" class="btn w-inline-block"><div>Learn More</div></a><a href="/demo-request/compensation-planning?tk_ctg=hdr-nav&amp;tk_cta=dmo" class="btn w-inline-block"><div>Get a Demo</div></a></div></div></div></div></li><li class="nav__list-item"><a href="/products/data" class="nav-lk w-inline-block"><div>Data</div></a></li><li class="nav__list-item"><a href="/customer-success" class="nav-lk w-inline-block"><div>Customer Success</div></a></li><li class="nav__list-item"><a href="/products/pricing" class="nav-lk w-inline-block"><div>Pricing</div></a></li><li class="nav__list-item"><a data-nav-item="resources" href="#" class="nav-lk w-inline-block"><div>Resources</div><div class="side-nav_arrow is-top w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div></a><div data-nav-item="resources" class="nav-layout-side"><div class="nav-layout-side_close-trigger"></div><div class="nav-side_dd-wr"><a data-nav-back="main" href="#" class="back-link w-inline-block"><div class="side-nav_arrow is-back w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div><div>Back</div></a><div class="side-nav_padding-wr"><div class="heading-3">Resources</div></div><div class="nav-side_dd-options-wr"><div><div class="side-nav_categorie-heading"><div class="embed-icon w-embed"><svg width="30" height="36" viewBox="0 0 30 36" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M15 13.5L22.5 11.25V18.75L15 21.75V13.5Z" fill="#B399F8"/>
<path d="M15.0007 14.25V21.75M15.0007 14.25L8.24948 10.8749M15.0007 14.25L21.7495 10.8756M22.5001 16.5L27.8568 19.7138C28.8279 20.2964 28.8279 21.7037 27.8569 22.2863L23.25 25.0504M7.49948 16.5L2.1433 19.7137C1.17227 20.2963 1.17229 21.7036 2.14334 22.2862L13.4572 29.074C14.4073 29.644 15.5941 29.644 16.5441 29.074L18 28.2004M13.4573 6.92592L8.95617 9.62613C8.05245 10.1683 7.49948 11.1449 7.49948 12.1987V16.3013C7.49948 17.3552 8.05245 18.3317 8.95617 18.8739L13.4573 21.5741C14.4073 22.144 15.5941 22.144 16.5441 21.574L21.0442 18.8739C21.9478 18.3317 22.5007 17.3552 22.5007 16.3014V12.1986C22.5007 11.1448 21.9478 10.1683 21.0442 9.6261L16.5441 6.92603C15.5941 6.35604 14.4073 6.35599 13.4573 6.92592Z" stroke="#0A4444" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"/>
</svg></div><div>Resources</div></div><div class="nav-side_dd-options"><div data-side-nav-dd="resources_01" class="nav-side_dd-option"><div class="nav-side_dd-option-bg"></div><div>Research &amp; Insights</div><div class="side-nav_arrow w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div></div><div data-side-nav-dd="resources_02" class="nav-side_dd-option"><div class="nav-side_dd-option-bg"></div><div>Events &amp; Community</div><div class="side-nav_arrow w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div></div><div data-side-nav-dd="resources_03" class="nav-side_dd-option"><div class="nav-side_dd-option-bg"></div><div>Employees &amp; Job Seekers</div><div class="side-nav_arrow w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div></div><a href="/compensation-trends" class="nav-side_dd-option w-inline-block"><div class="nav-side_dd-option-bg"></div><div>Blog</div><div class="side-nav_arrow w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div></a></div></div></div></div><div class="nav-side_list-wr"><div data-side-nav-dd="resources_01" class="nav-side_list-option"><a data-nav-back="sub-nav" href="#" class="back-link w-inline-block"><div class="side-nav_arrow is-back w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div><div>Back</div></a><div class="nav-side_list-option-info"><div class="heading-3">Research &amp; Insights</div></div><div class="nav_links-dd"><a href="/research-and-insights-type/research-reports" class="nav_link-dd w-inline-block"><div>Research reports</div></a><a href="/research-and-insights-type/ebooks" class="nav_link-dd w-inline-block"><div>Ebooks</div></a><a href="/research-and-insights-type/whitepapers" class="nav_link-dd w-inline-block"><div>Whitepapers</div></a><a href="/research-and-insights-type/data-visualizations" class="nav_link-dd w-inline-block"><div>Data visualizations</div></a><a href="/research-and-insights" class="nav_link-dd w-inline-block"><div>Browse All</div></a></div></div><div data-side-nav-dd="resources_02" class="nav-side_list-option"><a data-nav-back="sub-nav" href="#" class="back-link w-inline-block"><div class="side-nav_arrow is-back w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div><div>Back</div></a><div class="nav-side_list-option-info"><div class="heading-3">Events &amp; Community</div></div><div class="nav_links-dd"><a href="/events" class="nav_link-dd w-inline-block"><div>Live Events</div></a><a href="/research-and-insights-type/webinars" class="nav_link-dd w-inline-block"><div>On-Demand Webinars</div></a><a href="/why-payscale/payscale-connect" class="nav_link-dd w-inline-block"><div>Payscale Collective</div></a><a href="/compference" class="nav_link-dd w-inline-block"><div>Compference</div></a></div></div><div data-side-nav-dd="resources_03" class="nav-side_list-option"><a data-nav-back="sub-nav" href="#" class="back-link w-inline-block"><div class="side-nav_arrow is-back w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div><div>Back</div></a><div class="nav-side_list-option-info"><div class="heading-3">Employees &amp; Job Seekers</div></div><div class="nav_links-dd"><a href="/for-individuals" aria-current="page" class="nav_link-dd w-inline-block w--current"><div>For Individuals</div></a><a href="/research/US/Country=United_States/Salary" class="nav_link-dd w-inline-block"><div>Salary Research</div></a><a href="/research/US/Job?tk_ctg=jse&amp;tk_cta=dmo" class="nav_link-dd w-inline-block"><div>Find a Job</div></a><a href="/cost-of-living-calculator" class="nav_link-dd w-inline-block"><div>Cost of Living Calculator</div></a><a href="/career-path-planner" class="nav_link-dd w-inline-block"><div>Career Path Planner</div></a><a href="/survey" class="nav_link-dd w-inline-block"><div>Salary Survey</div></a></div></div></div></div></li><li class="nav__list-item"><a data-nav-item="for-individuals" href="#" class="nav-lk w-inline-block"><div>Company</div><div class="side-nav_arrow is-top w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div></a><div data-nav-item="for-individuals" class="nav-layout-side is-login"><div class="nav-layout-side_close-trigger"></div><div class="nav-side_dd-wr is-login"><a data-nav-back="main" href="#" class="back-link w-inline-block"><div class="side-nav_arrow is-back w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div><div>Back</div></a><div class="side-nav_padding-wr"><div class="heading-3">Company</div></div><div class="nav-side_dd-options-wr"><div><div class="nav-side_dd-options"><a href="/why-payscale" class="nav-side_dd-option w-inline-block"><div class="nav-side_dd-option-bg"></div><div>Why Payscale</div><div class="side-nav_arrow w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div></a><a href="/why-payscale/executive-leadership" class="nav-side_dd-option w-inline-block"><div class="nav-side_dd-option-bg"></div><div>Payscale Leadership</div><div class="side-nav_arrow w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div></a><a href="/careers" class="nav-side_dd-option w-inline-block"><div class="nav-side_dd-option-bg"></div><div>Careers</div><div class="side-nav_arrow w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div></a><a href="/compference" class="nav-side_dd-option w-inline-block"><div class="nav-side_dd-option-bg"></div><div>Compference</div><div class="side-nav_arrow w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div></a><a href="/in-the-news" class="nav-side_dd-option w-inline-block"><div class="nav-side_dd-option-bg"></div><div>Newsroom</div><div class="side-nav_arrow w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div></a><a href="/press-releases" class="nav-side_dd-option w-inline-block"><div class="nav-side_dd-option-bg"></div><div>Press Releases</div><div class="side-nav_arrow w-embed"><svg width="9" height="16" viewBox="0 0 9 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9.00012 8.00001L1.80012 15.2L0.120117 13.52L5.64012 8.00001L0.120117 2.48001L1.80012 0.800013L9.00012 8.00001Z" fill="currentColor"/>
</svg></div></a></div></div></div></div></div></li><li class="nav-mobile-btn"><a href="/demo-request/contact-sales?tk_ctg=hdr-nav&amp;tk_cta=ctc-sls" class="btn is-secondary w-inline-block"><div>Contact Sales</div></a><a href="/demo-request/get-a-demo?tk_ctg=hdr-nav&amp;tk_cta=dmo" class="btn w-inline-block"><div>Get a Demo</div></a></li></ul><div class="header__buttons-wr"><a href="/demo-request/contact-sales?tk_ctg=hdr-nav&amp;tk_cta=ctc-sls" class="btn is-secondary is-small w-inline-block"><div>Contact Sales</div></a></div><a href="/demo-request/get-a-demo?tk_ctg=hdr-nav&amp;tk_cta=dmo" class="btn is-small w-inline-block"><div>Get a Demo</div></a></nav></div></div><div class="header__bg"></div><div class="hide w-embed w-script"><script>
(function () {
  // Cookie utility functions
  function setCookie(name, value, daysToLive) {
    // Convert boolean values to string
    const stringValue = typeof value === "boolean" ? value.toString() : value;

    const date = new Date();
    date.setTime(date.getTime() + daysToLive * 24 * 60 * 60 * 1000);

    const expires = daysToLive ? `expires=${date.toUTCString()}` : "";
    document.cookie = `${name}=${stringValue};${expires};path=/;SameSite=Lax`;
  }

  function getCookie(name) {
    const value = `; ${document.cookie}`;
    const parts = value.split(`; ${name}=`);
    if (parts.length === 2) return parts.pop().split(";").shift();
    return null;
  }

  // Helper: checks if cookie is enabled/true
  function isCookieEnabled(name) {
    const val = getCookie(name);
    return val === "true";
  }

  // Function to handle user context and cookies
  function getUserContextAndSetCookies() {
    // Check if cookies are enabled in the browser
    if (!navigator.cookieEnabled) {
      console.log("Cookies are disabled in this browser");
      curateNavigation();
      return;
    }

    fetch("/WebServices/UserContext.asmx/GetUserContext", {
      method: "POST",
      headers: {
        "Content-Type": "application/json; charset=utf-8",
      },
    })
      .then((response) => {
        if (!response.ok) {
          throw new Error("Network response failed");
        }
        return response.json();
      })
      .then((result) => {
        const data = result.d;

        // Set business account cookie if applicable (30 day cookie)
        if (data?.loggedIn && data?.accountTypeGeneral > 1) {
          setCookie("hasBusinessAccount", true, 30);
        }

        // Set session cookies (0 day expiration = session cookie)
        setCookie("isLoggedIn", data?.loggedIn ? true : false, 0);
        setCookie("hasReport", data?.hasConsumerProfile ? true : false, 0);
      })
      .catch((error) => {
        // Generic error logging without exposing sensitive details
        console.log("An error occurred while fetching user data");
      })
      .finally(() => {
        // Run navigation curation after cookies are set
        curateNavigation();
      });
  }

  // Main function to curate navigation
  function curateNavigation() {
    // Selectors for menu items
    const loginMenu = document.querySelector(".nav-menu__login");
    const myAccountMenu = document.querySelector(".nav-menu__account");
    const businessAccountMenuItem = document.querySelector(
      ".nav-menu__business-account"
    );
    const reportsMenu = document.querySelector(".nav-menu__reports");

    // Check cookies
    const hasLogin = isCookieEnabled("isLoggedIn");
    // const hasLogin = 1;

    // Ensure only one of Login or My Account is visible at a time
    if (loginMenu && myAccountMenu) {
      if (hasLogin) {
        loginMenu.style.display = "none";
        myAccountMenu.style.display = "flex";

        const hasBusinessAccount = isCookieEnabled("hasBusinessAccount");
        // const hasBusinessAccount = 1;
        const hasReport = isCookieEnabled("hasReport");
        // const hasReport = 1;

        // Toggle Business Account
        if (businessAccountMenuItem) {
          businessAccountMenuItem.style.display = hasBusinessAccount
            ? "flex"
            : "none";
        }

        // Toggle Reports
        if (reportsMenu) {
          reportsMenu.style.display = hasReport ? "flex" : "none";
        }
      } else {
        loginMenu.style.display = "flex";
        myAccountMenu.style.display = "none";
      }
    }
  }

  // Initialize: Check document ready state
  function init() {
    getUserContextAndSetCookies();
  }

  // Check if document has already loaded or add event listener
  if (document.readyState === "loading") {
    // Document still loading, add event listener
    document.addEventListener("DOMContentLoaded", init);
  } else {
    // Document already loaded, run init immediately
    init();
  }
})();
</script></div></header></div><div class="main-wrapper"><div class="section is-hero bg-gradient"><div class="padding-global"><div class="container-default"><div class="header-wrapper"><div class="breadcrumb-global"><a href="/" class="hero-bc-link tc-dark">Home</a><div class="hero-bc-sp tc-dark">•</div><a href="/for-individuals" aria-current="page" class="hero-bc-link tc-dark w--current">For Individuals</a></div><h1>Discover your earning potential</h1><div class="max-width-44"><p class="text-size-large">Do you know what you should be paid? Payscale for people is the go-to salary tool for assessing the worth of your job-skills on the open market.</p></div><a href="/survey" class="btn w-inline-block"><div>See My Earning Potential</div></a></div></div></div></div><section class="section"><div class="padding-global"><div class="container-huge"><div class="solution-grid"><img src="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/680144bdf8d9713c0ae70a96_For-Individuals_Know-your-market-worth-654x332.jpg" loading="lazy" sizes="(max-width: 654px) 100vw, 654px" srcset="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/680144bdf8d9713c0ae70a96_For-Individuals_Know-your-market-worth-654x332-p-500.jpg 500w, https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/680144bdf8d9713c0ae70a96_For-Individuals_Know-your-market-worth-654x332.jpg 654w" alt="" class="solution-grid-img"/><div id="w-node-ca3f38a8-a3e7-e99b-260a-29cd9af8171b-ab5b3027" class="solution-showcase-content"><div class="heading-3">Know your market worth with a personalized salary report</div><div class="solution-showcase-text w-richtext"><p>The value of your professional skills in today’s job market is based on a range of evolving factors. Payscale offers unlimited access to tools individuals can use to help negotiate better compensation and benefits. Generate your salary report now.</p></div><a href="/survey" class="btn w-inline-block"><div>Complete your salary profile</div></a></div></div></div></div></section><section class="section pt-0-2"><div class="padding-global"><div class="container-huge"><div class="solution-grid"><img src="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/680144b9aa49e7476f09645f_For-Individuals_Salary-and-compensation-research-654x332.jpg" loading="lazy" sizes="(max-width: 654px) 100vw, 654px" srcset="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/680144b9aa49e7476f09645f_For-Individuals_Salary-and-compensation-research-654x332-p-500.jpg 500w, https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/680144b9aa49e7476f09645f_For-Individuals_Salary-and-compensation-research-654x332.jpg 654w" alt="" class="solution-grid-img"/><div id="w-node-_968d1e60-5f4a-61b3-0f31-5d3678c1d2b6-ab5b3027" class="solution-showcase-content"><div class="heading-3">Advance your career with salary and compensation research</div><div class="solution-showcase-text w-richtext"><p>The ability to seek and discover in-depth salary data for specific jobs, employers, schools, and more can provide you with the vision to move your career forward with clarity. Visit the Payscale Salary Data &amp; Career Research Center to learn more.</p></div><a href="/research" class="btn w-inline-block"><div>Start researching now</div></a></div></div></div></div></section><section class="section"><div class="padding-global"><div class="container-default"><h2>Maximize your wages with insights from<br/>the world’s largest salary database</h2><div class="resource_grid is-center-grid"><a href="/salary-negotiation-guide" class="rsrc-card is-center-card w-inline-block"><div class="rsrc-img-wrapper"><img src="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/68014a6c7a05f5d91591e6c4_salary-negotiation-guide-856x364.jpg" loading="lazy" sizes="(max-width: 856px) 100vw, 856px" srcset="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/68014a6c7a05f5d91591e6c4_salary-negotiation-guide-856x364-p-500.jpg 500w, https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/68014a6c7a05f5d91591e6c4_salary-negotiation-guide-856x364-p-800.jpg 800w, https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/68014a6c7a05f5d91591e6c4_salary-negotiation-guide-856x364.jpg 856w" alt="" class="rsrc-img"/></div><div class="rsrc-content"><h3 class="heading-5 text-weight-semibold">Salary Negotiation Guide</h3><p class="text-size-small">Research, strategize, negotiate. Our complimentary Salary Negotiation Guide is a vital resource for prepping for your next salary negotiation.</p><div class="rsrc-card-spacer"></div><div class="arrow-link"><div>Plan your salary negotiation</div><div class="icon-embed w-embed"><svg width="5" height="9" viewBox="0 0 5 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.44 4.46689L0.84 8.06689L-3.67176e-08 7.22689L2.76 4.46689L-2.78004e-07 1.70689L0.84 0.866895L4.44 4.46689Z" fill="currentColor"/>
</svg></div></div></div></a><a href="/cost-of-living-calculator" class="rsrc-card is-center-card w-inline-block"><div class="rsrc-img-wrapper"><img src="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/68014a6c47f9293468b36dbc_cost-of-living-calculator-2-661x281.jpg" loading="lazy" sizes="(max-width: 661px) 100vw, 661px" srcset="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/68014a6c47f9293468b36dbc_cost-of-living-calculator-2-661x281-p-500.jpg 500w, https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/68014a6c47f9293468b36dbc_cost-of-living-calculator-2-661x281.jpg 661w" alt="" class="rsrc-img"/></div><div class="rsrc-content"><h3 class="heading-5 text-weight-semibold">Cost-of-Living Calculator</h3><p class="text-size-small">Considering a relocation? Take advantage of our Cost-of-Living Calculator to compare costs for different cities based on your annual salary.</p><div class="rsrc-card-spacer"></div><div class="arrow-link"><div>Compare your location</div><div class="icon-embed w-embed"><svg width="5" height="9" viewBox="0 0 5 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.44 4.46689L0.84 8.06689L-3.67176e-08 7.22689L2.76 4.46689L-2.78004e-07 1.70689L0.84 0.866895L4.44 4.46689Z" fill="currentColor"/>
</svg></div></div></div></a><a href="/career-path-planner" class="rsrc-card is-center-card w-inline-block"><div class="rsrc-img-wrapper"><img src="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/68014a6c406efd561cff23ab_career-path-planner-856x364.jpg" loading="lazy" sizes="(max-width: 856px) 100vw, 856px" srcset="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/68014a6c406efd561cff23ab_career-path-planner-856x364-p-500.jpg 500w, https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/68014a6c406efd561cff23ab_career-path-planner-856x364-p-800.jpg 800w, https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/68014a6c406efd561cff23ab_career-path-planner-856x364.jpg 856w" alt="" class="rsrc-img"/></div><div class="rsrc-content"><h3 class="heading-5 text-weight-semibold">Career Path Planner</h3><p class="text-size-small">Career questions or compensation uncertainty? Weigh the relationship between jobs and salaries with our real-time Career Growth Planner.</p><div class="rsrc-card-spacer"></div><div class="arrow-link"><div>Start planning here</div><div class="icon-embed w-embed"><svg width="5" height="9" viewBox="0 0 5 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.44 4.46689L0.84 8.06689L-3.67176e-08 7.22689L2.76 4.46689L-2.78004e-07 1.70689L0.84 0.866895L4.44 4.46689Z" fill="currentColor"/>
</svg></div></div></div></a></div><div class="spacer-1 is-lavender"></div><a href="/for-individuals/career-resources/" class="arrow-link w-inline-block"><div>See all career resources</div><div class="icon-embed w-embed"><svg width="5" height="9" viewBox="0 0 5 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.44 4.46689L0.84 8.06689L-3.67176e-08 7.22689L2.76 4.46689L-2.78004e-07 1.70689L0.84 0.866895L4.44 4.46689Z" fill="currentColor"/>
</svg></div></a></div></div></section><section class="section"><div class="padding-global"><div class="container-huge"><h2>Career advice from the compensation experts</h2><div class="w-dyn-list"><div role="list" class="resource_grid is-center-grid w-dyn-items"><div role="listitem" class="is-center-grid-card w-dyn-item"><a href="/compensation-trends/will-pay-transparency-make-every-employees-salary-the-same" class="resource_card w-inline-block"><div class="resource_thumb-box"><img src="https://cdn.prod.website-files.com/679bae06eb7799b5b30a41c3/691205bc350f7f475611c40a_Pay%20Differentiation_Featured%20Image.png" loading="lazy" alt="" class="image-cover"/></div><div class="resource_text"><h3 class="heading-5 text-weight-semibold">Will pay transparency make every employee&#x27;s salary the same?</h3><p class="text-size-small">Pay transparency requires justifying pay differences, not identical salaries. Discover why equity matters more than equality and how to prepare for the impact of pay transparency.</p></div></a></div><div role="listitem" class="is-center-grid-card w-dyn-item"><a href="/compensation-trends/forget-the-hr-mission-statements-what-you-pay-is-more-important-than-what-you-say" class="resource_card w-inline-block"><div class="resource_thumb-box"><img src="https://cdn.prod.website-files.com/679bae06eb7799b5b30a41c3/690a47ff8bf01da8ba7d6ba6_Featured-image-template_852x480.avif" loading="lazy" alt="" class="image-cover"/></div><div class="resource_text"><h3 class="heading-5 text-weight-semibold">Forget HR mission statements. What you pay is more important than what you say.</h3><p class="text-size-small">As companies retreat from DEI, pay gaps for women and other demographic groups persist. Discover why pay transparency (not diversity pledges) are the true measure of your organization&#x27;s commitment to equality.</p></div></a></div><div role="listitem" class="is-center-grid-card w-dyn-item"><a href="/compensation-trends/wage-growth-slows-for-many-workers-while-some-industries-see-salary-spikes" class="resource_card w-inline-block"><div class="resource_thumb-box"><img src="https://cdn.prod.website-files.com/679bae06eb7799b5b30a41c3/6903c2a3a99d7915f557b760_Pay%20trends%20blog.avif" loading="lazy" alt="" class="image-cover"/></div><div class="resource_text"><h3 class="heading-5 text-weight-semibold">Wage growth slows for many workers, while some industries see salary spikes</h3><p class="text-size-small">Wage growth varies dramatically by industry in 2025. Oil &amp; Gas leads the pack at 8% while Healthcare plateaus at 3.4%. Get industry-specific data to keep your pay ranges competitive.</p></div></a></div></div></div><div class="spacer-1 is-lavender"></div><a href="/compensation-trends" class="arrow-link w-inline-block"><div>Explore our Compensation News</div><div class="icon-embed w-embed"><svg width="5" height="9" viewBox="0 0 5 9" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.44 4.46689L0.84 8.06689L-3.67176e-08 7.22689L2.76 4.46689L-2.78004e-07 1.70689L0.84 0.866895L4.44 4.46689Z" fill="currentColor"/>
</svg></div></a></div></div></section><section class="section bg-green"><div class="padding-global"><div class="container-huge"><div class="solution-grid"><div class="experience-card"><div class="experience-icon-3-2"><img width="68" loading="lazy" alt="" src="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/680152137689bc96cd78d5b5_power-of-pay.svg"/></div><h3 class="heading-3 tc-white">Could your business use<br/>the power of pay?</h3><p class="text-size-medium">Explore how Payscale’s compensation solutions<br/>help employers get pay right.</p><a href="/solutions" class="btn is-yellow w-inline-block"><div>See the solutions</div></a></div><div class="experience-card"><div class="experience-icon-3-2"><img width="68" loading="lazy" alt="" src="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/680152154788d90e0e219d13_job-search.svg"/></div><h3 class="heading-3 tc-white">Let Payscale jump-start<br/>your job search</h3><p class="text-size-medium">Visit our real-time Job Search engine for<br/>opportunities in your field.</p><a href="/job-search-engine" class="btn is-yellow w-inline-block"><div>Find your next role</div></a></div></div></div></div></section></div><section class="sct is-footer"><div class="padding-global"><div class="container-default"><div class="footer_top-group"><a href="/a" class="footer-logo w-inline-block"><img src="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/6815002921cb0e40bdfaaa83_logo-dark.svg" loading="lazy" alt=""/></a><div class="footer_group"><div class="footer_link-group"><div class="text-overline">Solutions</div><a href="/products" class="footer_link w-inline-block"><div class="footer-5_link-icon w-embed"><svg fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2Zm0 2v14H5V5h14Zm-7.86 10.73 3-3.87L18 17H6l3-3.86 2.14 2.59Z" fill="currentcolor"/></svg></div><div>Payscale Products</div></a><a href="/products/software/marketpay" class="footer_link w-inline-block"><div class="footer-5_link-icon w-embed"><svg fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2Zm0 2v14H5V5h14Zm-7.86 10.73 3-3.87L18 17H6l3-3.86 2.14 2.59Z" fill="currentcolor"/></svg></div><div>Marketpay</div></a><a href="/products/software/payfactors" class="footer_link w-inline-block"><div class="footer-5_link-icon w-embed"><svg fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2Zm0 2v14H5V5h14Zm-7.86 10.73 3-3.87L18 17H6l3-3.86 2.14 2.59Z" fill="currentcolor"/></svg></div><div>Payfactors</div></a><a href="/products/software/paycycle" class="footer_link w-inline-block"><div class="footer-5_link-icon w-embed"><svg fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2Zm0 2v14H5V5h14Zm-7.86 10.73 3-3.87L18 17H6l3-3.86 2.14 2.59Z" fill="currentcolor"/></svg></div><div>Paycycle</div></a><a href="/marketplace" class="footer_link w-inline-block"><div class="footer-5_link-icon w-embed"><svg fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2Zm0 2v14H5V5h14Zm-7.86 10.73 3-3.87L18 17H6l3-3.86 2.14 2.59Z" fill="currentcolor"/></svg></div><div>Partners &amp; Integrations</div></a></div><div class="footer_link-group"><a href="/products/data" class="link-overline text-overline w-inline-block"><div>Data</div><div class="embed-icon w-embed"><svg width="5" height="8" viewBox="0 0 5 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.44 4.34922L0.84 7.94922L-3.67176e-08 7.10922L2.76 4.34922L-2.78004e-07 1.58922L0.84 0.749219L4.44 4.34922Z" fill="#1C8391"/>
</svg></div></a></div><div class="footer_link-group"><div class="text-overline">Support</div><a href="/about/contact-us" class="footer_link w-inline-block"><div class="footer-5_link-icon w-embed"><svg fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2Zm0 2v14H5V5h14Zm-7.86 10.73 3-3.87L18 17H6l3-3.86 2.14 2.59Z" fill="currentcolor"/></svg></div><div>Contact us</div></a></div></div><div class="footer_group"><a href="/demo-request/get-a-demo/?tk_ctg=hm&amp;tk_cta=dmo" class="link-overline text-overline w-inline-block"><div>Get started</div><div class="embed-icon w-embed"><svg width="5" height="8" viewBox="0 0 5 8" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M4.44 4.34922L0.84 7.94922L-3.67176e-08 7.10922L2.76 4.34922L-2.78004e-07 1.58922L0.84 0.749219L4.44 4.34922Z" fill="#1C8391"/>
</svg></div></a><div class="footer_link-group"><div class="text-overline">Customer Success</div><a href="/customer-success" class="footer_link w-inline-block"><div class="footer-5_link-icon w-embed"><svg fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2Zm0 2v14H5V5h14Zm-7.86 10.73 3-3.87L18 17H6l3-3.86 2.14 2.59Z" fill="currentcolor"/></svg></div><div>Customer Success &amp; Services</div></a><a href="/why-payscale/customer-stories" class="footer_link w-inline-block"><div class="footer-5_link-icon w-embed"><svg fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2Zm0 2v14H5V5h14Zm-7.86 10.73 3-3.87L18 17H6l3-3.86 2.14 2.59Z" fill="currentcolor"/></svg></div><div>Customer Stories</div></a></div><div class="footer_link-group"><div class="text-overline">Company</div><a href="/why-payscale" class="footer_link w-inline-block"><div class="footer-5_link-icon w-embed"><svg fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2Zm0 2v14H5V5h14Zm-7.86 10.73 3-3.87L18 17H6l3-3.86 2.14 2.59Z" fill="currentcolor"/></svg></div><div>Why Payscale</div></a><a href="/why-payscale/executive-leadership" class="footer_link w-inline-block"><div class="footer-5_link-icon w-embed"><svg fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2Zm0 2v14H5V5h14Zm-7.86 10.73 3-3.87L18 17H6l3-3.86 2.14 2.59Z" fill="currentcolor"/></svg></div><div>Leadership</div></a><a href="/careers" class="footer_link w-inline-block"><div class="footer-5_link-icon w-embed"><svg fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2Zm0 2v14H5V5h14Zm-7.86 10.73 3-3.87L18 17H6l3-3.86 2.14 2.59Z" fill="currentcolor"/></svg></div><div>Careers</div></a><a href="/in-the-news" class="footer_link w-inline-block"><div class="footer-5_link-icon w-embed"><svg fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2Zm0 2v14H5V5h14Zm-7.86 10.73 3-3.87L18 17H6l3-3.86 2.14 2.59Z" fill="currentcolor"/></svg></div><div>Newsroom</div></a><a href="/press-releases" class="footer_link w-inline-block"><div class="footer-5_link-icon w-embed"><svg fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2Zm0 2v14H5V5h14Zm-7.86 10.73 3-3.87L18 17H6l3-3.86 2.14 2.59Z" fill="currentcolor"/></svg></div><div>Press Releases</div></a><a href="https://www.payscale.com/about/esg" class="footer_link w-inline-block"><div class="footer-5_link-icon w-embed"><svg fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2Zm0 2v14H5V5h14Zm-7.86 10.73 3-3.87L18 17H6l3-3.86 2.14 2.59Z" fill="currentcolor"/></svg></div><div>Corporate Responsibility</div></a></div></div><div class="footer_group"><div class="footer_link-group"><div class="footer_sc-wr is-lg-column"><div class="text-overline">We’re social</div><div class="footer_soc-links"><a href="https://www.facebook.com/Payscale" target="_blank" class="w-inline-block"><div class="footer-social_icon w-embed"><svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2539_1652)">
<path d="M12 0.349609C5.37264 0.349609 0 5.72225 0 12.3496C0 17.9771 3.87456 22.6994 9.10128 23.9963V16.0168H6.62688V12.3496H9.10128V10.7694C9.10128 6.68513 10.9498 4.79201 14.9597 4.79201C15.72 4.79201 17.0318 4.94129 17.5685 5.09009V8.41409C17.2853 8.38433 16.7933 8.36945 16.1822 8.36945C14.2147 8.36945 13.4544 9.11489 13.4544 11.0526V12.3496H17.3741L16.7006 16.0168H13.4544V24.2618C19.3963 23.5442 24.0005 18.485 24.0005 12.3496C24 5.72225 18.6274 0.349609 12 0.349609Z" fill="currentColor"/>
</g>
<defs>
<clipPath id="clip0_2539_1652">
<rect width="24" height="24" fill="white" transform="translate(0 0.349609)"/>
</clipPath>
</defs>
</svg></div></a><a href="https://twitter.com/payscale" target="_blank" class="w-inline-block"><div class="footer-social_icon w-embed"><svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M18.3263 2.25391H21.6998L14.3297 10.6774L23 22.1399H16.2112L10.894 15.1879L4.80995 22.1399H1.43443L9.31743 13.13L1 2.25391H7.96111L12.7674 8.60824L18.3263 2.25391ZM17.1423 20.1207H19.0116L6.94539 4.16704H4.93946L17.1423 20.1207Z" fill="currentColor"/>
</svg></div></a><a href="https://www.instagram.com/payscale/" target="_blank" class="w-inline-block"><div class="footer-social_icon w-embed"><svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2539_1656)">
<path d="M12 2.51055C15.2063 2.51055 15.5859 2.52461 16.8469 2.58086C18.0188 2.63242 18.6516 2.8293 19.0734 2.99336C19.6313 3.20898 20.0344 3.47148 20.4516 3.88867C20.8734 4.31055 21.1313 4.70898 21.3469 5.2668C21.5109 5.68867 21.7078 6.32617 21.7594 7.49336C21.8156 8.75898 21.8297 9.13867 21.8297 12.3402C21.8297 15.5465 21.8156 15.9262 21.7594 17.1871C21.7078 18.359 21.5109 18.9918 21.3469 19.4137C21.1313 19.9715 20.8687 20.3746 20.4516 20.7918C20.0297 21.2137 19.6313 21.4715 19.0734 21.6871C18.6516 21.8512 18.0141 22.048 16.8469 22.0996C15.5813 22.1559 15.2016 22.1699 12 22.1699C8.79375 22.1699 8.41406 22.1559 7.15313 22.0996C5.98125 22.048 5.34844 21.8512 4.92656 21.6871C4.36875 21.4715 3.96563 21.209 3.54844 20.7918C3.12656 20.3699 2.86875 19.9715 2.65313 19.4137C2.48906 18.9918 2.29219 18.3543 2.24063 17.1871C2.18438 15.9215 2.17031 15.5418 2.17031 12.3402C2.17031 9.13398 2.18438 8.7543 2.24063 7.49336C2.29219 6.32148 2.48906 5.68867 2.65313 5.2668C2.86875 4.70898 3.13125 4.30586 3.54844 3.88867C3.97031 3.4668 4.36875 3.20898 4.92656 2.99336C5.34844 2.8293 5.98594 2.63242 7.15313 2.58086C8.41406 2.52461 8.79375 2.51055 12 2.51055ZM12 0.349609C8.74219 0.349609 8.33438 0.363672 7.05469 0.419922C5.77969 0.476172 4.90313 0.682422 4.14375 0.977734C3.35156 1.28711 2.68125 1.69492 2.01563 2.36523C1.34531 3.03086 0.9375 3.70117 0.628125 4.48867C0.332812 5.25273 0.126563 6.12461 0.0703125 7.39961C0.0140625 8.68398 0 9.0918 0 12.3496C0 15.6074 0.0140625 16.0152 0.0703125 17.2949C0.126563 18.5699 0.332812 19.4465 0.628125 20.2059C0.9375 20.998 1.34531 21.6684 2.01563 22.334C2.68125 22.9996 3.35156 23.4121 4.13906 23.7168C4.90313 24.0121 5.775 24.2184 7.05 24.2746C8.32969 24.3309 8.7375 24.3449 11.9953 24.3449C15.2531 24.3449 15.6609 24.3309 16.9406 24.2746C18.2156 24.2184 19.0922 24.0121 19.8516 23.7168C20.6391 23.4121 21.3094 22.9996 21.975 22.334C22.6406 21.6684 23.0531 20.998 23.3578 20.2105C23.6531 19.4465 23.8594 18.5746 23.9156 17.2996C23.9719 16.0199 23.9859 15.6121 23.9859 12.3543C23.9859 9.09649 23.9719 8.68867 23.9156 7.40898C23.8594 6.13398 23.6531 5.25742 23.3578 4.49805C23.0625 3.70117 22.6547 3.03086 21.9844 2.36523C21.3188 1.69961 20.6484 1.28711 19.8609 0.982422C19.0969 0.687109 18.225 0.480859 16.95 0.424609C15.6656 0.363672 15.2578 0.349609 12 0.349609Z" fill="currentColor"/>
<path d="M12 6.18555C8.59688 6.18555 5.83594 8.94648 5.83594 12.3496C5.83594 15.7527 8.59688 18.5137 12 18.5137C15.4031 18.5137 18.1641 15.7527 18.1641 12.3496C18.1641 8.94648 15.4031 6.18555 12 6.18555ZM12 16.348C9.79219 16.348 8.00156 14.5574 8.00156 12.3496C8.00156 10.1418 9.79219 8.35117 12 8.35117C14.2078 8.35117 15.9984 10.1418 15.9984 12.3496C15.9984 14.5574 14.2078 16.348 12 16.348Z" fill="currentColor"/>
<path d="M19.8469 5.94199C19.8469 6.73887 19.2 7.38106 18.4078 7.38106C17.6109 7.38106 16.9688 6.73418 16.9688 5.94199C16.9688 5.14512 17.6156 4.50293 18.4078 4.50293C19.2 4.50293 19.8469 5.14981 19.8469 5.94199Z" fill="currentColor"/>
</g>
<defs>
<clipPath id="clip0_2539_1656">
<rect width="24" height="24" fill="white" transform="translate(0 0.349609)"/>
</clipPath>
</defs>
</svg></div></a><a href="https://www.linkedin.com/company/payscale" target="_blank" class="w-inline-block"><div class="footer-social_icon w-embed"><svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_2539_1660)">
<path d="M22.2234 0.349609H1.77187C0.792187 0.349609 0 1.12305 0 2.0793V22.6152C0 23.5715 0.792187 24.3496 1.77187 24.3496H22.2234C23.2031 24.3496 24 23.5715 24 22.6199V2.0793C24 1.12305 23.2031 0.349609 22.2234 0.349609ZM7.12031 20.8012H3.55781V9.34492H7.12031V20.8012ZM5.33906 7.78398C4.19531 7.78398 3.27188 6.86055 3.27188 5.72148C3.27188 4.58242 4.19531 3.65898 5.33906 3.65898C6.47813 3.65898 7.40156 4.58242 7.40156 5.72148C7.40156 6.85586 6.47813 7.78398 5.33906 7.78398ZM20.4516 20.8012H16.8937V15.2324C16.8937 13.9059 16.8703 12.1949 15.0422 12.1949C13.1906 12.1949 12.9094 13.6434 12.9094 15.1387V20.8012H9.35625V9.34492H12.7687V10.9105H12.8156C13.2891 10.0105 14.4516 9.05898 16.1813 9.05898C19.7859 9.05898 20.4516 11.4309 20.4516 14.5152V20.8012Z" fill="currentColor"/>
</g>
<defs>
<clipPath id="clip0_2539_1660">
<rect width="24" height="24" fill="white" transform="translate(0 0.349609)"/>
</clipPath>
</defs>
</svg></div></a><a href="https://www.youtube.com/user/payscale" target="_blank" class="w-inline-block"><div class="footer-social_icon w-embed"><svg width="30" height="24" viewBox="0 0 30 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M29.1626 4.82817C28.8853 3.29744 27.5639 2.18271 26.0305 1.83469C23.7357 1.34802 19.4889 1 14.894 1C10.3018 1 5.98695 1.34802 3.68951 1.83469C2.15878 2.18271 0.834693 3.22675 0.557368 4.82817C0.277325 6.56824 0 9.00435 0 12.1365C0 15.2686 0.277325 17.7047 0.62534 19.4448C0.905383 20.9755 2.22675 22.0903 3.75748 22.4383C6.19358 22.925 10.3698 23.273 14.9647 23.273C19.5595 23.273 23.7357 22.925 26.1718 22.4383C27.7026 22.0903 29.0239 21.0462 29.304 19.4448C29.5813 17.7047 29.9293 15.1979 30 12.1365C29.8586 9.00435 29.5106 6.56824 29.1626 4.82817ZM11.1365 17.0087V7.26427L19.6275 12.1365L11.1365 17.0087Z" fill="currentColor"/>
</svg></div></a></div></div></div></div></div><div class="footer_bottom-group"><div>© 2025 Payscale, Inc. All rights reserved.</div><div class="footer-bottom_links"><a href="/" class="footer-bottom-link w-inline-block"><div>Home</div></a><a href="/about/privacy-policy" class="footer-bottom-link w-inline-block"><div>Privacy Statement</div></a><a href="/about/terms-of-use" class="footer-bottom-link w-inline-block"><div>Terms of Use</div></a><a href="/about/cookies-and-similar-technologies" class="footer-bottom-link w-inline-block"><div>Cookie Policy</div></a></div></div></div></div></section></div><script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.5.1.min.dc5e7f18c8.js?site=678b9f42ff433e48155d0586" type="text/javascript" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script><script src="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/js/payscale-staging.schunk.36b8fb49256177c8.js" type="text/javascript"></script><script src="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/js/payscale-staging.schunk.1105ba1ca29ac707.js" type="text/javascript"></script><script src="https://cdn.prod.website-files.com/678b9f42ff433e48155d0586/js/payscale-staging.92cb949b.d297ea93e9bde8db.js" type="text/javascript"></script><!-- Custom - URL Parameter Forwarder - START -->
<script>
(function (opts) {
  var current = {
      state: document.location.href,
      query: document.location.search.substring(1),
      time: new Date().getTime(),
    },
    storage = {
      area: window.localStorage,
      key: "last_utm_query",
    },
    restored = null,
    updated = {};

  // Parse query for tracking parameters
  var trackingRegex = /(^|&)(utm_|gclid|li_fat_id)/;
  var queryParams = current.query
    .split("&")
    .filter((param) => !param.startsWith("tk"))
    .filter((param) => !param.startsWith("restored"))
    .filter((param) => !param.startsWith("_topic"))
    .filter((param) => !param.startsWith("_type"))
    .filter((param) => !param.startsWith("_sort"))
    .filter((param) => !param.startsWith("_industry"))
    .filter((param) => !param.startsWith("_services"))
    .filter((param) => !param.startsWith("_company_size"))
    .filter((param) => trackingRegex.test(param))
    .join("&");

  // Restore previous params
  if (storage.area[storage.key]) {
    try {
      restored = JSON.parse(storage.area[storage.key]);
    } catch (e) {
      restored = null;
    }
  }

  // Helper: check parameter equivalence
  function paramsEqual(a, b) {
    return a === b;
  }

  // Overwrite logic:
  if (queryParams.length > 0) {
    var incomingIsNew = !restored || !paramsEqual(queryParams, restored.query);

    // Always overwrite on new parameters, or if we don't have restored ones
    if (incomingIsNew) {
      storage.area[storage.key] = JSON.stringify({
        time: current.time,
        query: queryParams,
      });
    }
    // If not new, only overwrite if not expired
    else if (restored && (current.time - restored.time > opts.expireDays * 864e5)) {
      // If parameters same as expired, do not overwrite or reactivate attribution
      // (Do nothing)
    }
  } else if (restored && current.time - restored.time <= opts.expireDays * 864e5) {
    // Restore active, not expired attribution to URL
    updated.state = document.createElement("a");
    updated.state.href = current.state;
    updated.state.search += (updated.state.search ? "&" : "") + restored.query;
    history.replaceState("", {}, updated.state);
  }
})({
  expireDays: 0.02083, // Parameters will persist for 30 minutes
});
</script>
<!-- Custom - URL Parameter Forwarder - END -->


<!-- Marketo Form Integration & GTM Tracking - Combined - START -->
<script>
  // Step 1: Always store GCLID on page load
  document.addEventListener('DOMContentLoaded', function() {
    var params = new URLSearchParams(window.location.search);
    var gclid = params.get('gclid');
    var gclsrc = params.get('gclsrc');
    var allow = !gclsrc || gclsrc.indexOf('aw') !== -1;
    if (gclid && allow) {
      var expiryObj = {
        value: gclid,
        expiryDate: (new Date).getTime() + 7776E6
      };
      localStorage.setItem('gclid', JSON.stringify(expiryObj));
    }
  });

  // Step 2: Marketo form logic, including GCLID + Optimizely population
  document.addEventListener('DOMContentLoaded', () => {
    const wrappers = document.querySelectorAll('.marketo-wrapper');
    if (wrappers.length === 0) return;
    const urlParams = new URLSearchParams(window.location.search);

    // --- Helper: extract UTM params, mapped to Marketo API field names ---
    function getUTMParams() {
      let utms = {};
      try {
        const stored = localStorage.getItem('last_utm_query');
        if (stored) {
          const { query } = JSON.parse(stored);
          const params = new URLSearchParams(query);
          utms = {
            utmsource: params.get('utm_source'),
            utmmedium: params.get('utm_medium'),
            utmcampaign: params.get('utm_campaign'),
            utmterm: params.get('utm_term'),
            utmcontent: params.get('utm_content')
          };
        }
      } catch (e) {
        console.error('Error reading stored UTMs:', e);
      }
      const currentParams = new URLSearchParams(window.location.search);
      utms = {
        ...utms,
        utmsource: utms.utmsource || currentParams.get('utm_source'),
        utmmedium: utms.utmmedium || currentParams.get('utm_medium'),
        utmcampaign: utms.utmcampaign || currentParams.get('utm_campaign'),
        utmterm: utms.utmterm || currentParams.get('utm_term'),
        utmcontent: utms.utmcontent || currentParams.get('utm_content')
      };
      // Remove empty values
      Object.keys(utms).forEach(key => {
        if (!utms[key]) delete utms[key];
      });
      return utms;
    }

    // --- Helper: populate GCLID field ---
    function handleGclidField(formElem) {
      var stored = JSON.parse(localStorage.getItem("gclid"));
      var gclidField = formElem.querySelector('input[name="GCLID__c"]');
      if (gclidField && stored && (new Date).getTime() < stored.expiryDate) {
        gclidField.value = stored.value;
        return true;
      }
      return false;
    }

    // --- Helper: get all active Optimizely experiment and variation names via API ---
    function getOptimizelyExperimentsData() {
      const data = {
        experimentNames: [],
        variationNames: []
      };
      if (window.optimizely && window.optimizely.get && typeof window.optimizely.get === 'function') {
        const state = window.optimizely.get('state');
        let activeExperimentIds = state.getActiveExperimentIds(); // Array of active experiment IDs

        if (activeExperimentIds && activeExperimentIds.length > 0) {
          let experiments = state.getExperimentStates();
          activeExperimentIds.forEach(function(experimentId) {
            let experiment = experiments[experimentId];
            if (experiment) {
              // Use experiment name or id as fallback
              let expName = (experiment.experimentName && experiment.id) ? experiment.experimentName + " (" + experiment.id + ")" : experiment.id || '';
              let varName = (experiment.variation.name && experiment.variation.id) ? experiment.variation.name + " (" + experiment.variation.id + ")" : experiment.variation.id || '';
              if (expName) data.experimentNames.push(expName);
              if (varName) data.variationNames.push(varName);
            }
          });
        }
      }
      // Return comma-separated string values suitable for hidden fields
      return {
        experimentName: data.experimentNames.join(', '),
        variationName: data.variationNames.join(', ')
      };
    }

    function initForms() {
      const utms = getUTMParams();
      wrappers.forEach(wrapper => {
        const formId = wrapper.id;
        if (!formId || isNaN(formId)) {
          console.warn(`Invalid or missing numeric ID for .marketo-wrapper:`, wrapper);
          return;
        }
        wrapper.innerHTML = '';
        MktoForms2.loadForm("//resources.payscale.com", "233-EVV-192", parseInt(formId), form => {
          wrapper.querySelectorAll('form').forEach(f => f.remove());
          const formElem = form.getFormElem()[0];
          wrapper.appendChild(formElem);
          
          // Fields to add if missing
          const fieldsToAdd = {};
          
          // Add UTMs to 'fieldsToAdd'
            for (var key in utms) {
              if (utms.hasOwnProperty(key) && utms[key]) {
                fieldsToAdd[key] = utms[key];
              }
          };
          
          // Get Optimizely experiment data and 
          const optlyData = getOptimizelyExperimentsData();

          // --- Add hidden fields if missing ---
          const hiddenFields = {
            // URL
            lastFormURL: window.location.href,
            referrerURL: document.referrer,
            // TK
            tKCategory: urlParams.get("tk_ctg") || formElem.querySelector('input[name="tKCategory"]')?.value,
            tKCTA: urlParams.get("tk_cta") || formElem.querySelector('input[name="tKCTA"]')?.value,
            // Advertizing
            GCLID__c: urlParams.get("gclid") || (JSON.parse(localStorage.getItem("gclid")) || {}).value,
            linkedInUserTrackingID: urlParams.get("li_fat_id"),
            // Form
            formName: formElem.querySelector('input[name="formName"]')?.value,
            formType: formElem.querySelector('input[name="formType"]')?.value,
            // Optimizely
            experimentName: optlyData.experimentName,
            variationName: optlyData.variationName
          };
          
          Object.entries(hiddenFields).forEach(([fieldName, fieldValue]) => {
            const existingField = formElem.querySelector(`input[name="${fieldName}"]`);
            if (!existingField || !existingField.value) {
              fieldsToAdd[fieldName] = fieldValue;
            }
          });
          
          // Add all missing fields as hidden
          if (Object.keys(fieldsToAdd).length > 0) {
            form.addHiddenFields(fieldsToAdd);
          }
          console.log("Fields added to form:", fieldsToAdd);
         
          // --- GCLID hidden field handling ---
          let populated = handleGclidField(formElem);
          if (!populated) {
            let populatedLater = false;
            const observer = new MutationObserver(function() {
              if (handleGclidField(formElem)) {
                observer.disconnect();
                populatedLater = true;
              }
            });
            observer.observe(formElem, { childList: true, subtree: true });
            setTimeout(() => {
              if (!populatedLater && !formElem.querySelector('input[name="GCLID__c"]')) {
                console.warn("'GCLID__c' field not found on Marketo form after waiting 5 seconds.");
                observer.disconnect();
              }
            }, 5000);
          }

          // --- ZoomInfo form shortening logic ---
          if (
            window._zi_fc?.utility?.formShortening &&
            typeof window._zi_fc.utility.formShortening.init === 'function'
          ) {
            window._zi_fc.utility.formShortening.init();
          }

          // --- Unhide Marketo form wrapper when ready ---
          wrapper.style.opacity = '1';

          // --- GTM push on successful submission ---
          form.onSuccess(function(values) {
            let dataLayerData = {
              event: "form-submission",
              platform: "Webflow",
              formID: form.getId(),
              formName: formElem.querySelector('input[name="formName"]')?.value,
              formType: formElem.querySelector('input[name="formType"]')?.value,
              inquiryType: values.inquiryType || undefined
            };
            const DL = window.dataLayer || [];
            DL.push(dataLayerData);
            console.log("dataLayer push:", dataLayerData);
            return true; // Allow normal Marketo behavior
          });
        });
      });
    }

    // --- Ensure MktoForms2 is loaded ---
    if (!window.MktoForms2) {
      const scriptTag = document.createElement('script');
      scriptTag.src = '//resources.payscale.com/js/forms2/js/forms2.min.js';
      scriptTag.onload = initForms;
      document.head.appendChild(scriptTag);
    } else {
      initForms();
    }
  });
</script>
<!-- Marketo Form Integration & GTM Tracking - Combined - END -->


<!-- ZoomInfo - Form Shortening Utility - START -->
<script type="text/javascript">
    /* FormComplete Snippet - Form Shortening Utility Logic Script v5*/
    window._zi_fc = window._zi_fc || {};
    window._zi_fc.utility = window._zi_fc.utility || {};
    window._zi_fc.utility.formShortening = (function() {

        /* Define console error message. */
        var messageError = 'FormComplete utility script encountered an error.';

        try {

            /* Store copy of onReady callback, if defined. */
            var onReadyCopy = window._zi_fc.onReady;

            /* Define new onReady callback to pass data to utility script. */
            window._zi_fc.onReady = function(data) {
                if (typeof onReadyCopy === 'function') {onReadyCopy(data)}
                window._zi_fc.utility.formShortening.onReady(data)
            }

            /* Get all contexts where forms may reside. */
            var contexts = [document];
            document.querySelectorAll('iframe:not([src]), iframe[src=""]').forEach(function(iframeNode){
                contexts.push(iframeNode.contentDocument || iframeNode.contentWindow.document)
            });

            /* Get current page URL domain + path. */
            var currentUrl = window.location.origin + window.location.pathname;

        } catch (e) {console.error(messageError, e)}

        function set(rule, settings) {

            /* Define object to hold configurations if not defined. */
            window._zi_fc.utility.formShortening.settings = window._zi_fc.utility.formShortening.settings || {};
            window._zi_fc.utility.formShortening.settings.defaultConfig = window._zi_fc.utility.formShortening.settings.defaultConfig || {};
            window._zi_fc.utility.formShortening.settings.pageConfig = window._zi_fc.utility.formShortening.settings.pageConfig || {};

            /* Store settings. */
            if (rule == 'defaultConfig') {window._zi_fc.utility.formShortening.settings[rule] = settings}
            else {

                /* Normalize URL for later comparison. */
                if (rule != '*') {
                    try {
                        var url = new URL(rule);
                        rule = url.origin + url.pathname;
                    } catch (e) {console.error(messageError, "Ensure the rule is either 'defaultConfig', '*', or a valid URL.")}
                }

                /* Define rule if not defined and push settings. */
                window._zi_fc.utility.formShortening.settings.pageConfig[rule] = window._zi_fc.utility.formShortening.settings.pageConfig[rule] || [];
                window._zi_fc.utility.formShortening.settings.pageConfig[rule].push(settings);

            }

        }

        function init() {

            try {

                /* Extract URL and configurations for each non-default config set. */
                for (var [url, configs] of Object.entries(window._zi_fc.utility.formShortening.settings.pageConfig)) {
                    if (url === '*' || url === currentUrl) {
                        configs.forEach(function(config) {

                            /* Assign variables from default and page configurations. */
                            var { fieldNames, fieldColumnSelector, formSelector, fallbackTimeout } = Object.assign({}, window._zi_fc.utility.formShortening.settings.defaultConfig, config);

                            /* Define fallbackTimeout if undefined. */
                            fallbackTimeout = fallbackTimeout || 4000;

                            /* Add Form Selector to Debug object and track initialization time. */
                            window._zi_fc.utility.formShortening.debug[formSelector] = {};
                            window._zi_fc.utility.formShortening.debug[formSelector].initialized = formatSeconds(performance.now());

                            /* Create Style element and inject it into each document context. */
                            contexts.forEach(function(context) {

                                var s = createStyle( formSelector, fieldColumnSelector, fieldNames );
                                context.head.appendChild(s)

                                /* Set fallback using setTimeout method to remove style element in case onReady does not occur. */
                                setTimeout(function(){

                                    /* Locate Style element. */
                                    var e = context.getElementById(s.id);
                                    if (!e) {return}

                                    /* Log and remove Style element. */
                                    window._zi_fc.utility.formShortening.debug[e.dataset.formSelector].clearedByTimeoutAt = formatSeconds(performance.now());
                                    e.parentNode.removeChild(e);

                                }, fallbackTimeout)

                            })

                        })
                    }
                }

            } catch (e) {console.error(messageError, e)}

        }

        function createStyle( formSelector, fieldColumnSelector, fieldNames ) {

            try {

                /* Create Style element and assign it a random ID prefixed with "ziFormShortening" and assign is a dataset attribute with the form selector. */
                var s = document.createElement('style');
                s.id = 'ziFormShortening' + Math.floor(10000 + Math.random() * 99999);
                s.dataset.formSelector = formSelector;

                /* If no form selector is defined OR if fieldNames is not an array, then output generic CSS rule only. */
                if (!formSelector || !Array.isArray(fieldNames)) {
                    s.innerHTML = '.fc-initial-hide {display:none !important}';
                    return s
                }
                /* Generate CSS rules for each field / field container (if defined). */
                fieldNames.forEach(function(fieldName){
                    if (fieldColumnSelector) {
                        s.innerHTML += formSelector + ' ' + fieldColumnSelector + ':has(input[name="' + fieldName + '"]),' + formSelector + ' ' + fieldColumnSelector + ':has(select[name="' + fieldName + '"]),'
                    }
                    s.innerHTML += formSelector + ' ' + "input[name='" + fieldName + "']," + formSelector + " select[name='" + fieldName + "'] {display:none !important}"
                })

                return s

            } catch (e) {console.error(messageError, e)}

        }

        function formatSeconds(p) {return (Math.floor(p / 10) / 100) + ' seconds since page load.'}

        function onReady(data) {

            try {

                /* Consolidate configurations to check against.  */
                var configs = []
                configs.push(window._zi_fc.utility.formShortening.settings.defaultConfig);
                configs.push.apply(configs, window._zi_fc.utility.formShortening.settings.pageConfig[currentUrl]);
                configs.push(window._zi_fc.utility.formShortening.settings.pageConfig['*']);

                /* Track if formSelector found for Style removal. */
                var formSelectorMatch = false;

                /* Iterate over each set configuration. */
                configs.forEach(function(settings){

                    /* If formSelectors differ, skip. */
                    if (!settings || settings.formSelector != data.formSelector) {return}
                    formSelectorMatch = true;

                    /* Iterate over each document context to search for Style element. */
                    contexts.forEach(function(context){
                        var styles = context.querySelectorAll('style[data-form-selector="' + settings.formSelector + '"]');
                        styles.forEach(function(s) {

                            /* Remove Style element and log it. */
                            s.parentNode.removeChild(s);
                            window._zi_fc.utility.formShortening.debug[settings.formSelector].clearedByReadyAt = formatSeconds(performance.now());

                        })

                    })

                });

            } catch (e) {console.error(messageError, e)}

        }

        return {
            version: 4,
            set,
            init,
            onReady,
            debug: {}
        }

    })();
</script>
<script>
    /* FormComplete - Form Shortening Utility Configuration Script v5*/

    // --- START MODIFICATION: hide/enrich split logic ---

    var shorteningFormIDs = [
        1658, 1445, 3603, 3285, 1439, 1662, 2595, 4156,
        2299, 2585, 2594, 2715, 2723, 2939, 2990, 1659, 1660,
        2951, 4755, 4228, 5258,
        5303, 5311, 5335, 5437,
        5787, 5929, 5940, 6243
        // hide and enrich
    ];

    var enrichOnlyFormIDs = [
        6366, 6385, 4693, 6226, 2414, 5591, 2943, 5300, 2415 // enrichment only, no hiding
    ];

    /* Define default configurations */
    window._zi_fc.utility.formShortening.set('defaultConfig', {
        'fieldColumnSelector': 'div[class *= "mktoFormCol"]',
        'fieldNames': [
            'FirstName',
            'LastName',
            'Phone',
            'Company',
            'Title',
            'NumberOfEmployees',
            'Country',
            'State',
            'PostalCode',
            'Job_Management_Level__c',
            'Job_Department__c',
            'jobFunction',
            'ZoomInfo_NeverBounce_Email_Status__c',
            'ZoomInfo_Industry_L__c',
            'ZoomInfo_SubIndustry_L__c',
            'zi_hr_budget'
        ],
        'fallbackTimeout': 6000
    });

    // Apply shortening + enrichment to the main group
    shorteningFormIDs.forEach(function(formID){
        window._zi_fc.utility.formShortening.set('*', {
            'formSelector': "form[id='mktoForm_" + formID + "']"
            // uses default fieldNames for hiding
        });
    });

    // Apply enrichment only (no hiding) to special group
    enrichOnlyFormIDs.forEach(function(formID){
        window._zi_fc.utility.formShortening.set('*', {
            'formSelector': "form[id='mktoForm_" + formID + "']",
            'fieldNames': [] // disables hiding, keeps enrichment
        });
    });
    // --- END MODIFICATION: hide/enrich split logic ---

    /* Initialize utility script. */
    window._zi_fc.utility.formShortening.init();
</script>
<!-- ZoomInfo - Form Shortening Utility - END -->

<!-- ZoomInfo - FormComplete / Websights - START -->
<script>
	window[
    	(function(_0d2,_jb){
          var _NW="";
          for(var _CT=0;_CT<_0d2.length;_CT++){
            var _fe=_0d2[_CT].charCodeAt();
            _fe-=_jb;
            _fe+=61;
            _jb>4;
            _NW==_NW;
            _fe%=94;
            _fe+=33;
            _fe!=_CT;
            _NW+=String.fromCharCode(_fe)
          }
          return _NW
        })
      (atob("ZVRbfXp1cG4hVnAm"),11)]="9c382beff31679926368";
  	  	var zi=document.createElement("script");
  			(zi.type="text/javascript"),
    		(zi.async=!0),
    		(zi.src=(function(_7nB,_Ib){
    		  var _3n="";
    		  for(var _ED=0;_ED<_7nB.length;_ED++){
          		_xE!=_ED;
          		_3n==_3n;
          		var _xE=_7nB[_ED].charCodeAt();
          		_Ib>3;
          		_xE-=_Ib;
          		_xE+=61;
          		_xE%=94;
          		_xE+=33;
          		_3n+=String.fromCharCode(_xE)
        	  }
			return _3n
            })
     (atob("LDg4NDdcUVEuN1A+LU83JzYtNDg3UCczMVE+LU84JStQLjc="),34)),document.head.appendChild(zi);
</script>
<!-- ZoomInfo - FormComplete / Websights - END -->


<!-- 6sense - Custom Competitor Redirect - START -->
<script id="6senseRedirect" type="text/javascript">
(function() {
  setTimeout(() => {
    function check6senseData() {
      try {
        const data = localStorage.getItem('_6senseCompanyDetails');
        if (data && data.includes('859023')) {
          window.location.href = 'https://jobs.jobvite.com/payscale/';
        }
      } catch (error) {
        console.error('Error checking _6senseCompanyDetails:', error);
      }
    }

    check6senseData();
  }, 1000);
})();
</script>
<!-- 6sense - Custom Competitor Redirect - END -->

<!-- Nav Scroll - START -->
<script>
  // Navigation on scroll
  function checkScroll() {
    var scroll = $(window).scrollTop();
    if (scroll > 0) {
      $("#header").addClass('scroll');
    } else {
      $("#header").removeClass('scroll');
    }
  }

  $(window).on('scroll', checkScroll);
  $(document).ready(checkScroll);
</script>
<!-- Nav Scroll - END -->

<!-- Nav Side Menu - START -->
<script>
document.addEventListener('DOMContentLoaded', () => {
  if (document.querySelector('.header-wr')) {

    let isMenuOpen = false;
    const menuButton = document.querySelector('.nav__menu-button');

    menuButton.addEventListener('click', () => {
      isMenuOpen = !isMenuOpen;

      if (!isMenuOpen && window.innerWidth < 922) {
        document.querySelectorAll('.nav-side_list-wr').forEach(el => {
          el.style.display = 'none';
        });
        document.querySelectorAll('.nav-layout-side, .nav-side_dd-option').forEach(el => {
          el.classList.remove('is-active');
        });
      }
    });

    document.querySelectorAll('[data-nav-back="main"]').forEach(backBtn => {
      backBtn.addEventListener('click', () => {
        const navLayout = backBtn.closest('.nav-layout-side');
        if (navLayout) {
          navLayout.classList.remove('is-active');
        }
      });
    });

    document.querySelectorAll('[data-nav-back="sub-nav"]').forEach(backBtn => {
      backBtn.addEventListener('click', () => {
        const subNavWrapper = backBtn.closest('.nav-side_list-wr');
        if (subNavWrapper) {
          subNavWrapper.style.display = 'none';
        }
      });
    });

    document.querySelectorAll('.nav-side_dd-option').forEach(ddOption => {
      ddOption.addEventListener('click', () => {
        const currentAttr = ddOption.getAttribute('data-side-nav-dd');

        document.querySelectorAll('.nav-side_dd-option').forEach(option => {
          option.classList.remove('is-active');
        });

        ddOption.classList.add('is-active');

        document.querySelectorAll('.nav-side_list-option').forEach(listOption => {
          listOption.style.display = 'none';
        });

        const matching = document.querySelector(`.nav-side_list-option[data-side-nav-dd="${currentAttr}"]`);
        if (matching) {
          matching.style.display = 'block';
        }

        const parentWrapper = ddOption.closest('.nav-side_dd-wr');
        const nextSibling = parentWrapper?.nextElementSibling;

        if (nextSibling?.classList.contains('nav-side_list-wr')) {
          nextSibling.style.display = 'block';
        }
      });
    });

    document.querySelectorAll('.nav-lk').forEach(link => {
      link.addEventListener('click', () => {
        const attrValue = link.getAttribute('data-nav-item');
        const target = document.querySelector(`.nav-layout-side[data-nav-item="${attrValue}"]`);
        const isOpen = link.getAttribute('data-side-menu-open') === 'true';

        if (window.innerWidth <= 922) {
          document.querySelectorAll('.nav-layout-side').forEach(item => {
            item.classList.remove('is-active');
          });
          document.querySelectorAll('.nav-lk').forEach(item => {
            item.setAttribute('data-side-menu-open', 'false');
          });

          if (target) {
            target.classList.add('is-active');
            link.setAttribute('data-side-menu-open', 'true');
          }

          return;
        }

        document.querySelectorAll('.nav-layout-side').forEach(item => {
          item.classList.remove('is-active');
        });
        document.querySelectorAll('.nav-lk').forEach(item => {
          item.setAttribute('data-side-menu-open', 'false');
        });

        if (isOpen) return;

        if (target) {
          target.classList.add('is-active');
          link.setAttribute('data-side-menu-open', 'true');

          if (window.innerWidth > 922) {
            const firstDdOption = target.querySelector('.nav-side_dd-option');
            if (firstDdOption && !firstDdOption.hasAttribute('href')) {
              firstDdOption.click();
            }
          }
        }
      });
    });

    document.querySelectorAll('.nav-layout-side').forEach(trigger => {
      trigger.addEventListener('mouseleave', () => {
        document.querySelectorAll('.nav-layout-side').forEach(item => {
          item.classList.remove('is-active');
        });
        document.querySelectorAll('.nav-lk').forEach(link => {
          link.setAttribute('data-side-menu-open', 'false');
        });
      });
    });

  }
});

</script>
<!-- Nav Side Menu - END -->

<!-- Mirror click on form submit button - START -->
<script>
  $(document).ready(function() {
    // Listen for clicks on elements with mirror-click="trigger"
    $('[mirror-click="trigger"]').on('click', function() {
      // Find the sibling with mirror-click="target" and trigger its click event
      $(this).siblings('[mirror-click="target"]').trigger('click');
    });
  });
</script>
<!-- Mirror click on form submit button - END --></body></html>