#prime-v2-home {
  --p2-purple: #771abf;
  --p2-purple-deep: #26043f;
  --p2-purple-dark: #47116f;
  --p2-orange: #ff914d;
  --p2-orange-light: #ffbd91;
  --p2-cream: #fbf7f1;
  --p2-paper: #fffdf9;
  --p2-ink: #1d1721;
  --p2-muted: #706978;
  --p2-line: rgba(43, 23, 54, .13);
  --p2-shadow: 0 35px 90px rgba(63, 20, 92, .17);
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  position: relative;
  background: var(--p2-paper);
  color: var(--p2-ink);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  isolation: isolate;
}

#prime-v2-home *,
#prime-v2-home *::before,
#prime-v2-home *::after {
  box-sizing: border-box;
}

#prime-v2-home h1,
#prime-v2-home h2,
#prime-v2-home h3,
#prime-v2-home p,
#prime-v2-home ul,
#prime-v2-home blockquote {
  margin-top: 0;
}

#prime-v2-home a {
  color: inherit;
  text-decoration: none;
}

#prime-v2-home svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.p2-wrap {
  width: min(1200px, calc(100% - 50px));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.p2-section {
  padding: 120px 0;
  position: relative;
}

.p2-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

/* HERO */
.p2-hero {
  min-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: 125px 0 105px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.75)),
    var(--p2-cream);
}

.p2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image:
    linear-gradient(rgba(119,26,191,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119,26,191,.07) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to right, #000, transparent 70%);
  mask-image: linear-gradient(to right, #000, transparent 70%);
}

.p2-hero-shape {
  position: absolute;
  pointer-events: none;
}

.p2-shape-one {
  width: 620px;
  height: 760px;
  right: -90px;
  top: 20px;
  border-radius: 80px 0 0 80px;
  background: var(--p2-purple);
  transform: rotate(8deg);
}

.p2-shape-two {
  width: 380px;
  height: 380px;
  right: 17%;
  bottom: -210px;
  border-radius: 50%;
  background: var(--p2-orange);
  opacity: .8;
  filter: blur(2px);
}

.p2-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 70px;
  align-items: center;
}

.p2-topline {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 28px;
  color: var(--p2-purple-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.p2-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--p2-orange);
  box-shadow: 0 0 0 0 rgba(255,145,77,.6);
  animation: p2Pulse 2s infinite;
}

.p2-hero h1 {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--p2-ink);
  font-size: clamp(65px, 7.4vw, 110px);
  line-height: .88;
  letter-spacing: -.072em;
  font-weight: 900;
}

.p2-hero h1 span {
  display: block;
  color: var(--p2-purple);
  position: relative;
}

.p2-hero h1 span::after {
  content: "";
  width: .72em;
  height: .16em;
  position: absolute;
  right: .04em;
  bottom: -.01em;
  border-radius: 999px;
  background: var(--p2-orange);
  transform: rotate(-5deg);
}

.p2-hero-text {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--p2-muted);
  font-size: 17px;
}

.p2-audience-switch {
  max-width: 640px;
  overflow: hidden;
  border: 1px solid rgba(54,28,65,.12);
  border-radius: 21px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 60px rgba(43, 16, 60, .09);
  backdrop-filter: blur(14px);
}

.p2-switch-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 6px;
  border-bottom: 1px solid var(--p2-line);
  background: rgba(247,242,248,.85);
}

.p2-switch-tabs button {
  padding: 12px 15px;
  border: 0;
  border-radius: 13px;
  color: #766d7d;
  background: transparent;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, box-shadow .25s ease;
}

.p2-switch-tabs button.is-active {
  color: #fff;
  background: var(--p2-purple);
  box-shadow: 0 8px 22px rgba(119,26,191,.22);
}

.p2-switch-panel {
  min-height: 103px;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 21px 23px;
}

.p2-switch-panel.is-active {
  display: grid;
  animation: p2PanelIn .4s ease both;
}

.p2-switch-panel small,
.p2-switch-panel strong {
  display: block;
}

.p2-switch-panel small {
  color: #8b828f;
  font-size: 10px;
}

.p2-switch-panel strong {
  color: var(--p2-ink);
  font-size: 13px;
}

.p2-switch-panel > a {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border-radius: 12px;
  color: #fff !important;
  background: var(--p2-purple);
  font-size: 11px;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease;
}

.p2-switch-panel > a:hover {
  color: #fff !important;
  background: var(--p2-purple-dark);
  transform: translateY(-3px);
}

.p2-switch-panel > a svg {
  width: 17px;
  height: 17px;
}

.p2-hero-proof {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.p2-hero-proof div {
  min-width: 78px;
}

.p2-hero-proof span,
.p2-hero-proof small {
  display: block;
}

.p2-hero-proof span {
  color: var(--p2-purple);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.p2-hero-proof small {
  margin-top: 5px;
  color: #8a828d;
  font-size: 9px;
  font-weight: 600;
}

.p2-hero-proof i {
  width: 1px;
  height: 30px;
  background: var(--p2-line);
}

.p2-hero-visual {
  min-height: 650px;
  display: grid;
  place-items: center;
  position: relative;
  perspective: 1200px;
}

.p2-visual-backdrop {
  width: 490px;
  height: 570px;
  position: absolute;
  right: 15px;
  top: 33px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 260px 260px 35px 35px;
  background: rgba(255,255,255,.11);
  transform: rotate(5deg);
}

.p2-main-photo {
  width: 430px;
  height: 570px;
  overflow: hidden;
  position: relative;
  border: 10px solid #fff;
  border-radius: 220px 220px 30px 30px;
  box-shadow: 0 40px 100px rgba(31, 7, 46, .32);
  transform: rotate(-3deg);
  transition: transform .15s ease-out;
}

.p2-main-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.p2-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(33,5,48,.84), transparent 48%),
    linear-gradient(135deg, rgba(119,26,191,.18), transparent);
}

.p2-photo-label {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 27px;
}

.p2-photo-label span,
.p2-photo-label strong {
  display: block;
}

.p2-photo-label span {
  color: rgba(255,255,255,.67);
  font-size: 11px;
  font-weight: 600;
}

.p2-photo-label strong {
  color: #fff;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.p2-logo-card {
  width: 215px;
  height: 94px;
  display: grid;
  place-items: center;
  position: absolute;
  right: -18px;
  top: 34px;
  z-index: 5;
  overflow: hidden;
  border: 5px solid rgba(255,255,255,.7);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(31,7,46,.24);
  transform: rotate(4deg);
  animation: p2Float 6s ease-in-out infinite;
}

.p2-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px 10px;
}

.p2-floating-card {
  min-width: 230px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 11px;
  align-items: center;
  position: absolute;
  z-index: 7;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 17px;
  color: var(--p2-ink) !important;
  background: rgba(255,255,255,.93);
  box-shadow: 0 22px 60px rgba(30,5,44,.24);
  backdrop-filter: blur(13px);
  transition: transform .25s ease, box-shadow .25s ease;
}

.p2-floating-card:hover {
  color: var(--p2-ink) !important;
  transform: translateY(-7px) !important;
  box-shadow: 0 28px 70px rgba(30,5,44,.3);
}

.p2-floating-card small,
.p2-floating-card strong {
  display: block;
}

.p2-floating-card small {
  color: #918895;
  font-size: 9px;
}

.p2-floating-card strong {
  font-size: 11px;
}

.p2-floating-card b {
  color: var(--p2-purple);
  font-size: 17px;
}

.p2-floating-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--p2-purple);
  background: rgba(119,26,191,.1);
}

.p2-floating-icon svg {
  width: 20px;
  height: 20px;
}

.p2-icon-orange {
  color: #a74711;
  background: rgba(255,145,77,.22);
}

.p2-card-jobs {
  left: -29px;
  top: 168px;
  animation: p2Float 5.8s .4s ease-in-out infinite;
}

.p2-card-hire {
  right: -45px;
  bottom: 112px;
  animation: p2Float 5.8s 1.1s ease-in-out infinite;
}

.p2-floating-seal {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  position: absolute;
  left: 5px;
  bottom: 15px;
  z-index: 6;
  border-radius: 50%;
  color: #fff;
  background: var(--p2-orange);
  box-shadow: 0 18px 38px rgba(255,145,77,.3);
}

.p2-floating-seal svg {
  width: 103px;
  height: 103px;
  position: absolute;
  inset: 4px;
  fill: currentColor;
  stroke: none;
  animation: p2Spin 18s linear infinite;
}

.p2-floating-seal text {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.25px;
}

.p2-floating-seal > span {
  color: var(--p2-purple-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.p2-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 50%;
  bottom: 25px;
  z-index: 4;
  color: #817687 !important;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.p2-scroll span {
  width: 23px;
  height: 36px;
  position: relative;
  border: 1px solid rgba(71,17,111,.28);
  border-radius: 999px;
}

.p2-scroll span::after {
  content: "";
  width: 3px;
  height: 7px;
  position: absolute;
  left: 50%;
  top: 7px;
  border-radius: 4px;
  background: var(--p2-orange);
  transform: translateX(-50%);
  animation: p2Scroll 1.8s ease-in-out infinite;
}

/* MARQUEE */
.p2-marquee {
  overflow: hidden;
  color: #fff;
  background: var(--p2-purple-deep);
}

.p2-marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px 0;
  animation: p2Marquee 34s linear infinite;
}

.p2-marquee-track span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.p2-marquee-track i {
  color: var(--p2-orange);
  font-size: 11px;
  font-style: normal;
}

/* SHARED HEADINGS */
.p2-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--p2-purple);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.p2-kicker-light {
  color: var(--p2-orange-light);
}

.p2-section-number {
  color: var(--p2-orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
}

.p2-editorial-heading {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 25px;
  margin-bottom: 65px;
}

.p2-editorial-heading h2,
.p2-section-heading h2,
.p2-story h2,
.p2-standards h2,
.p2-testimonials h2,
.p2-worker h2,
.p2-final h2 {
  color: var(--p2-ink);
  font-size: clamp(43px, 5vw, 67px);
  line-height: 1.05;
  letter-spacing: -.052em;
  font-weight: 800;
}

.p2-editorial-heading h2 {
  margin-bottom: 0;
}

.p2-section-heading {
  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 55px;
}

.p2-section-heading p {
  margin-bottom: 4px;
  color: var(--p2-muted);
  font-size: 15px;
}

/* INTRO */
.p2-intro {
  background: var(--p2-paper);
}

.p2-intro-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 90px;
  padding-left: 115px;
}

.p2-intro-statement p {
  margin-bottom: 0;
  color: var(--p2-purple-dark);
  font-size: clamp(27px, 3.4vw, 45px);
  line-height: 1.34;
  letter-spacing: -.035em;
  font-weight: 600;
}

.p2-intro-copy p {
  color: var(--p2-muted);
  font-size: 14px;
}

.p2-intro-copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--p2-purple) !important;
  font-size: 12px;
  font-weight: 800;
}

.p2-intro-copy a svg {
  width: 18px;
  height: 18px;
  transition: transform .25s ease;
}

.p2-intro-copy a:hover svg {
  transform: translateX(5px);
}

/* PATHWAYS */
.p2-pathways {
  padding-top: 10px;
  background: var(--p2-paper);
}

.p2-pathway-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.p2-pathway-card {
  min-height: 610px;
  padding: 42px;
  overflow: hidden;
  position: relative;
  border-radius: 30px;
  transition: transform .35s ease, box-shadow .35s ease;
}

.p2-pathway-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--p2-shadow);
}

.p2-pathway-candidate {
  border: 1px solid var(--p2-line);
  background:
    radial-gradient(circle at 100% 0%, rgba(119,26,191,.12), transparent 31%),
    #fff;
}

.p2-pathway-employer {
  color: #fff;
  background:
    radial-gradient(circle at 95% 5%, rgba(255,145,77,.28), transparent 29%),
    linear-gradient(140deg, #25043e, #6c18aa);
}

.p2-pathway-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 55px;
}

.p2-pathway-top span {
  color: var(--p2-purple);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.p2-pathway-top b {
  color: rgba(119,26,191,.17);
  font-size: 25px;
}

.p2-pathway-employer .p2-pathway-top span {
  color: var(--p2-orange-light);
}

.p2-pathway-employer .p2-pathway-top b {
  color: rgba(255,255,255,.16);
}

.p2-pathway-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 21px;
  color: var(--p2-purple);
  background: rgba(119,26,191,.09);
}

.p2-pathway-employer .p2-pathway-icon {
  color: var(--p2-purple-deep);
  background: var(--p2-orange);
}

.p2-pathway-icon svg {
  width: 31px;
  height: 31px;
}

.p2-pathway-card h3 {
  max-width: 460px;
  margin-bottom: 17px;
  color: var(--p2-ink);
  font-size: 36px;
  line-height: 1.13;
  letter-spacing: -.04em;
  font-weight: 800;
}

.p2-pathway-employer h3 {
  color: #fff;
}

.p2-pathway-card > p {
  max-width: 470px;
  margin-bottom: 27px;
  color: var(--p2-muted);
  font-size: 13px;
}

.p2-pathway-employer > p {
  color: rgba(255,255,255,.65);
}

.p2-pathway-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.p2-pathway-card li {
  position: relative;
  padding-left: 27px;
  color: #625967;
  font-size: 12px;
}

.p2-pathway-card li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  position: absolute;
  left: 0;
  top: 2px;
  border-radius: 50%;
  color: #fff;
  background: var(--p2-purple);
  font-size: 9px;
  font-weight: 900;
}

.p2-pathway-employer li {
  color: rgba(255,255,255,.7);
}

.p2-pathway-employer li::before {
  color: var(--p2-purple-deep);
  background: var(--p2-orange);
}

.p2-pathway-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.p2-primary-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--p2-purple) !important;
  font-size: 12px;
  font-weight: 800;
}

.p2-primary-link svg {
  width: 18px;
  height: 18px;
  transition: transform .25s ease;
}

.p2-primary-link:hover svg {
  transform: translateX(5px);
}

.p2-pathway-actions > a:last-child {
  color: #817985 !important;
  font-size: 11px;
  font-weight: 700;
}

.p2-pathway-employer .p2-primary-link {
  color: var(--p2-orange) !important;
}

.p2-pathway-employer .p2-pathway-actions > a:last-child {
  color: rgba(255,255,255,.65) !important;
}

/* SECTORS */
.p2-sectors {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 6% 100%, rgba(255,145,77,.18), transparent 25%),
    var(--p2-purple-deep);
}

.p2-sectors::before {
  content: "";
  width: 620px;
  height: 620px;
  position: absolute;
  right: -250px;
  top: -330px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255,255,255,.02),
    0 0 0 140px rgba(255,255,255,.015);
}

.p2-sectors .p2-section-number {
  display: block;
  margin-bottom: 13px;
}

.p2-sectors .p2-section-heading h2 {
  color: #fff;
}

.p2-sectors .p2-section-heading p {
  color: rgba(255,255,255,.58);
}

.p2-sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.13);
  border-left: 1px solid rgba(255,255,255,.13);
}

.p2-sector-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 31px;
  position: relative;
  border-right: 1px solid rgba(255,255,255,.13);
  border-bottom: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.015);
  transition: background .3s ease, transform .3s ease;
}

.p2-sector-card::after {
  content: "";
  width: 0;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--p2-orange);
  transition: width .4s ease;
}

.p2-sector-card:hover {
  color: #fff !important;
  background: rgba(255,255,255,.07);
  transform: translateY(-5px);
}

.p2-sector-card:hover::after {
  width: 100%;
}

.p2-sector-index {
  position: absolute;
  right: 25px;
  top: 22px;
  color: rgba(255,255,255,.28);
  font-size: 10px;
  font-weight: 800;
}

.p2-sector-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 45px;
  border-radius: 50%;
  color: var(--p2-purple-deep);
  background: var(--p2-orange);
  font-size: 15px;
  font-weight: 900;
}

.p2-sector-card h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.p2-sector-card p {
  margin-bottom: 23px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

.p2-sector-card > span {
  margin-top: auto;
  color: var(--p2-orange-light);
  font-size: 10px;
  font-weight: 800;
}

.p2-sector-card > span b {
  display: inline-block;
  margin-left: 5px;
  transition: transform .25s ease;
}

.p2-sector-card:hover > span b {
  transform: translate(4px, -4px);
}

/* STORY */
.p2-story {
  background: var(--p2-cream);
}

.p2-story-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.p2-story-image {
  min-height: 650px;
  position: relative;
}

.p2-story-image::before {
  content: "";
  width: 78%;
  height: 90%;
  position: absolute;
  left: -25px;
  bottom: -25px;
  border-radius: 30px;
  background: var(--p2-orange);
  transform: rotate(-4deg);
}

.p2-story-image img {
  width: 100%;
  height: 650px;
  display: block;
  position: relative;
  z-index: 2;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--p2-shadow);
}

.p2-story-stamp {
  width: 185px;
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  right: -35px;
  bottom: 42px;
  z-index: 4;
  padding: 21px;
  border-radius: 20px;
  color: #fff;
  background: var(--p2-purple);
  box-shadow: 0 20px 50px rgba(50,12,76,.24);
}

.p2-story-stamp span {
  color: var(--p2-orange-light);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.p2-story-stamp strong {
  font-size: 19px;
  line-height: 1.25;
}

.p2-story h2 {
  margin-bottom: 21px;
}

.p2-story-copy > p {
  margin-bottom: 35px;
  color: var(--p2-muted);
}

.p2-feature-list {
  display: grid;
  margin-bottom: 32px;
  border-top: 1px solid var(--p2-line);
}

.p2-feature {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--p2-line);
}

.p2-feature > span {
  color: var(--p2-orange);
  font-size: 10px;
  font-weight: 900;
}

.p2-feature h3 {
  margin-bottom: 5px;
  color: var(--p2-ink);
  font-size: 17px;
  font-weight: 700;
}

.p2-feature p {
  margin-bottom: 0;
  color: var(--p2-muted);
  font-size: 11px;
}

.p2-outline-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 20px;
  border: 1px solid var(--p2-purple);
  border-radius: 13px;
  color: var(--p2-purple) !important;
  font-size: 11px;
  font-weight: 800;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.p2-outline-button svg {
  width: 18px;
  height: 18px;
}

.p2-outline-button:hover {
  color: #fff !important;
  background: var(--p2-purple);
  transform: translateY(-3px);
}

/* PROCESS */
.p2-process {
  background: #fff;
}

.p2-process-heading {
  align-items: center;
}

.p2-process-heading .p2-section-number {
  display: block;
  margin-bottom: 13px;
}

.p2-process-tabs {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.p2-process-tabs button {
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid var(--p2-line);
  border-radius: 999px;
  color: #7e7483;
  background: #fff;
  font-family: inherit;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, border-color .25s ease;
}

.p2-process-tabs button.is-active {
  color: #fff;
  border-color: var(--p2-purple);
  background: var(--p2-purple);
}

.p2-process-panel {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--p2-line);
  border-left: 1px solid var(--p2-line);
}

.p2-process-panel.is-active {
  display: grid;
  animation: p2PanelIn .45s ease both;
}

.p2-process-panel article {
  min-height: 300px;
  padding: 31px;
  border-right: 1px solid var(--p2-line);
  border-bottom: 1px solid var(--p2-line);
  transition: background .3s ease, transform .3s ease;
}

.p2-process-panel article:hover {
  background: var(--p2-cream);
  transform: translateY(-5px);
}

.p2-process-panel article > span {
  display: block;
  margin-bottom: 80px;
  color: var(--p2-orange);
  font-size: 11px;
  font-weight: 900;
}

.p2-process-panel h3 {
  margin-bottom: 11px;
  color: var(--p2-ink);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
}

.p2-process-panel p {
  margin-bottom: 0;
  color: var(--p2-muted);
  font-size: 11px;
}

.p2-process-cta {
  display: flex;
  justify-content: center;
  gap: 19px;
  margin-top: 35px;
  color: #a39ba6;
  font-size: 11px;
}

.p2-process-cta a {
  color: var(--p2-purple) !important;
  font-weight: 800;
}

.p2-process-cta a:hover {
  text-decoration: underline;
}

/* STANDARDS */
.p2-standards {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 0%, rgba(255,145,77,.22), transparent 28%),
    linear-gradient(135deg, #511180, #771abf);
}

.p2-standards::before {
  content: "PRIME";
  position: absolute;
  right: -20px;
  bottom: -85px;
  color: rgba(255,255,255,.045);
  font-size: 280px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.08em;
}

.p2-standards-head {
  max-width: 770px;
  margin-bottom: 50px;
}

.p2-standards h2 {
  margin-bottom: 18px;
  color: #fff;
}

.p2-standards-head p {
  color: rgba(255,255,255,.62);
}

.p2-badge-track {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.p2-badge-track span {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.p2-badge-track span:hover {
  color: var(--p2-purple-deep);
  background: var(--p2-orange);
  transform: translateY(-5px);
}

/* TESTIMONIALS */
.p2-testimonials {
  background: var(--p2-cream);
}

.p2-testimonial-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 75px;
  align-items: center;
}

.p2-testimonial-title .p2-section-number {
  display: block;
  margin-bottom: 14px;
}

.p2-testimonials h2 {
  margin-bottom: 20px;
}

.p2-testimonial-title > p {
  color: var(--p2-muted);
}

.p2-testimonial-controls {
  display: flex;
  gap: 9px;
  margin-top: 31px;
}

.p2-testimonial-controls button {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border: 1px solid var(--p2-line);
  border-radius: 50%;
  color: var(--p2-purple);
  background: #fff;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.p2-testimonial-controls button:hover {
  color: #fff;
  background: var(--p2-purple);
  transform: translateY(-3px);
}

.p2-testimonial-controls svg {
  width: 18px;
  height: 18px;
}

.p2-testimonial-card {
  min-height: 440px;
  padding: 65px 58px 45px;
  overflow: hidden;
  position: relative;
  border-radius: 31px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,145,77,.33), transparent 30%),
    linear-gradient(140deg, #25043d, #771abf);
  box-shadow: var(--p2-shadow);
}

.p2-testimonial-card::after {
  content: "";
  width: 310px;
  height: 310px;
  position: absolute;
  right: -175px;
  bottom: -190px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(255,255,255,.025),
    0 0 0 90px rgba(255,255,255,.018);
}

.p2-quote {
  position: absolute;
  left: 38px;
  top: 10px;
  color: var(--p2-orange);
  font-family: Georgia, serif;
  font-size: 105px;
  line-height: 1;
}

.p2-testimonial-slide {
  display: none;
  position: relative;
  z-index: 2;
}

.p2-testimonial-slide.is-active {
  display: block;
  animation: p2SlideIn .5s ease both;
}

.p2-testimonial-slide blockquote {
  margin-bottom: 46px;
  color: #fff;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.36;
  letter-spacing: -.035em;
  font-weight: 600;
}

.p2-testimonial-slide strong,
.p2-testimonial-slide span {
  display: block;
}

.p2-testimonial-slide strong {
  color: var(--p2-orange-light);
  font-size: 13px;
}

.p2-testimonial-slide span {
  color: rgba(255,255,255,.52);
  font-size: 10px;
}

.p2-testimonial-dots {
  display: flex;
  gap: 7px;
  position: absolute;
  left: 58px;
  bottom: 26px;
  z-index: 3;
}

.p2-testimonial-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
  transition: width .25s ease, background .25s ease;
}

.p2-testimonial-dots span.is-active {
  width: 28px;
  background: var(--p2-orange);
}

/* WORKER */
.p2-worker {
  padding-top: 20px;
  background: var(--p2-cream);
}

.p2-worker-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 65px;
  align-items: center;
  padding: 60px;
  overflow: hidden;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 2% 100%, rgba(255,145,77,.24), transparent 28%),
    var(--p2-purple-deep);
}

.p2-worker-card::after {
  content: "";
  width: 420px;
  height: 420px;
  position: absolute;
  right: -240px;
  top: -240px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.p2-worker-visual {
  display: grid;
  place-items: center;
}

.p2-dashboard {
  width: min(420px, 100%);
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.12);
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(0,0,0,.25);
  transform: rotate(-3deg);
  transition: transform .35s ease;
}

.p2-worker-card:hover .p2-dashboard {
  transform: rotate(0) translateY(-7px);
}

.p2-dashboard-head {
  height: 35px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  background: #eee7f3;
}

.p2-dashboard-head span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b9adc1;
}

.p2-dashboard-head span:first-child {
  background: var(--p2-orange);
}

.p2-dashboard-body {
  height: 255px;
  display: grid;
  grid-template-columns: 72px 1fr;
}

.p2-dashboard-sidebar {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 25px 17px;
  background: var(--p2-purple);
}

.p2-dashboard-sidebar i {
  height: 8px;
  border-radius: 8px;
  background: rgba(255,255,255,.25);
}

.p2-dashboard-sidebar i:first-child {
  background: var(--p2-orange);
}

.p2-dashboard-content {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 27px;
  background: #faf8fb;
}

.p2-dashboard-content b {
  width: 53%;
  height: 15px;
  border-radius: 8px;
  background: #3d2b48;
}

.p2-dashboard-content > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}

.p2-dashboard-content > div span {
  height: 65px;
  border-radius: 10px;
  background: #eee5f3;
}

.p2-dashboard-content > div span:last-child {
  background: #fff0e7;
}

.p2-dashboard-content em {
  height: 10px;
  border-radius: 8px;
  background: #e7e0ea;
}

.p2-dashboard-content em:last-child {
  width: 73%;
}

.p2-worker h2 {
  margin-bottom: 20px;
  color: #fff;
}

.p2-worker-copy > p {
  margin-bottom: 31px;
  color: rgba(255,255,255,.62);
}

.p2-worker-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.p2-worker-actions a:first-child {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 19px;
  border-radius: 13px;
  color: var(--p2-purple-deep) !important;
  background: var(--p2-orange);
  font-size: 11px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease;
}

.p2-worker-actions a:first-child:hover {
  color: var(--p2-purple-deep) !important;
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(255,145,77,.24);
}

.p2-worker-actions svg {
  width: 18px;
  height: 18px;
}

.p2-worker-actions a:last-child {
  color: rgba(255,255,255,.75) !important;
  font-size: 11px;
  font-weight: 700;
}

/* FINAL */
.p2-final {
  min-height: 730px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: 110px 0 60px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 115%, rgba(255,145,77,.4), transparent 32%),
    linear-gradient(135deg, #771abf, #47116f 48%, #26043f);
}

.p2-final::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .15;
  background-image:
    linear-gradient(30deg, rgba(255,255,255,.15) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.15) 87.5%),
    linear-gradient(150deg, rgba(255,255,255,.15) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.15) 87.5%);
  background-size: 48px 84px;
}

.p2-final-orbit {
  width: 740px;
  height: 740px;
  position: absolute;
  left: 50%;
  top: 48%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.p2-final-orbit::before,
.p2-final-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: inherit;
  inset: 75px;
}

.p2-final-orbit::after {
  inset: 155px;
}

.p2-final-inner {
  max-width: 980px;
}

.p2-logo-final {
  width: 190px;
  height: 84px;
  display: grid;
  place-items: center;
  margin: 0 auto 27px;
  overflow: hidden;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(0,0,0,.2);
}

.p2-logo-final img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px 10px;
}

.p2-final-inner > span {
  display: block;
  margin-bottom: 16px;
  color: var(--p2-orange-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.p2-final h2 {
  max-width: 900px;
  margin: 0 auto 21px;
  color: #fff;
  font-size: clamp(49px, 6vw, 82px);
}

.p2-final-inner > p {
  max-width: 650px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,.66);
  font-size: 16px;
}

.p2-final-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
}

.p2-final-buttons a {
  min-height: 57px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 23px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.p2-final-buttons svg {
  width: 18px;
  height: 18px;
}

.p2-final-primary {
  color: var(--p2-purple-deep) !important;
  background: #fff;
}

.p2-final-primary:hover {
  color: var(--p2-purple-deep) !important;
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0,0,0,.2);
}

.p2-final-secondary {
  color: var(--p2-purple-deep) !important;
  background: var(--p2-orange);
}

.p2-final-secondary:hover {
  color: var(--p2-purple-deep) !important;
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(255,145,77,.25);
}

.p2-contact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 72px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.p2-contact-row a,
.p2-contact-row span {
  color: rgba(255,255,255,.62) !important;
  font-size: 9px;
  font-weight: 600;
}

.p2-contact-row a:hover {
  color: #fff !important;
}

.p2-contact-row i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--p2-orange);
}

/* REVEALS */
.p2-reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity .75s cubic-bezier(.2,.8,.2,1),
    transform .75s cubic-bezier(.2,.8,.2,1);
}

html.p2-js #prime-v2-home .p2-reveal {
  opacity: 0;
  transform: translateY(30px);
}

html.p2-js #prime-v2-home .p2-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.p2-delay-1 { transition-delay: .1s; }
.p2-delay-2 { transition-delay: .2s; }
.p2-delay-3 { transition-delay: .3s; }
.p2-delay-4 { transition-delay: .4s; }

/* KEYFRAMES */
@keyframes p2Pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,145,77,.6); }
  70% { box-shadow: 0 0 0 9px rgba(255,145,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,145,77,0); }
}

@keyframes p2Float {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-12px) rotate(-1deg); }
}

@keyframes p2Spin {
  to { transform: rotate(360deg); }
}

@keyframes p2Scroll {
  0% { transform: translate(-50%, 0); opacity: 0; }
  25% { opacity: 1; }
  75% { opacity: 1; }
  100% { transform: translate(-50%, 13px); opacity: 0; }
}

@keyframes p2Marquee {
  to { transform: translateX(-50%); }
}

@keyframes p2PanelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes p2SlideIn {
  from { opacity: 0; transform: translateX(25px); }
  to { opacity: 1; transform: translateX(0); }
}

/* RESPONSIVE */
@media (max-width: 1120px) {
  .p2-hero-grid {
    grid-template-columns: 1fr 470px;
    gap: 35px;
  }

  .p2-main-photo {
    width: 390px;
    height: 535px;
  }

  .p2-visual-backdrop {
    width: 440px;
    height: 540px;
  }

  .p2-card-jobs { left: -15px; }
  .p2-card-hire { right: -20px; }
}

@media (max-width: 950px) {
  .p2-section {
    padding: 90px 0;
  }

  .p2-hero {
    min-height: auto;
    padding: 100px 0 90px;
  }

  .p2-hero-grid,
  .p2-story-grid,
  .p2-testimonial-grid,
  .p2-worker-card {
    grid-template-columns: 1fr;
  }

  .p2-hero-grid {
    gap: 70px;
  }

  .p2-hero-copy {
    max-width: 760px;
  }

  .p2-hero-visual {
    min-height: 650px;
  }

  .p2-shape-one {
    width: 78%;
    height: 700px;
    right: -27%;
    top: auto;
    bottom: -30px;
  }

  .p2-editorial-heading,
  .p2-intro-grid {
    padding-left: 0;
  }

  .p2-intro-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .p2-sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .p2-process-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .p2-story-grid,
  .p2-testimonial-grid,
  .p2-worker-card {
    gap: 55px;
  }

  .p2-worker-card {
    padding: 48px;
  }
}

@media (max-width: 680px) {
  .p2-wrap {
    width: min(100% - 30px, 1200px);
  }

  .p2-section {
    padding: 75px 0;
  }

  .p2-hero {
    padding: 78px 0 70px;
  }

  .p2-hero h1 {
    font-size: clamp(58px, 18vw, 82px);
  }

  .p2-hero-text {
    font-size: 14px;
  }

  .p2-switch-panel {
    grid-template-columns: 1fr;
  }

  .p2-switch-panel > a {
    justify-content: center;
  }

  .p2-hero-proof {
    gap: 14px;
  }

  .p2-hero-visual {
    min-height: 560px;
  }

  .p2-main-photo {
    width: 84%;
    height: 485px;
    border-width: 7px;
    transform: none !important;
  }

  .p2-visual-backdrop {
    width: 88%;
    height: 490px;
    right: 2%;
  }

  .p2-logo-card {
    width: 170px;
    height: 75px;
    right: -5px;
    top: 25px;
  }

  .p2-floating-card {
    min-width: 190px;
    padding: 10px 12px;
  }

  .p2-card-jobs {
    left: -4px;
    top: 155px;
  }

  .p2-card-hire {
    right: -4px;
    bottom: 72px;
  }

  .p2-floating-seal {
    width: 90px;
    height: 90px;
    left: 0;
    bottom: 18px;
  }

  .p2-floating-seal svg {
    width: 82px;
    height: 82px;
  }

  .p2-floating-seal text {
    font-size: 7px;
  }

  .p2-scroll {
    display: none;
  }

  .p2-editorial-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .p2-editorial-heading h2,
  .p2-section-heading h2,
  .p2-story h2,
  .p2-standards h2,
  .p2-testimonials h2,
  .p2-worker h2 {
    font-size: 38px;
  }

  .p2-section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .p2-pathway-grid,
  .p2-sector-grid,
  .p2-process-panel {
    grid-template-columns: 1fr;
  }

  .p2-pathway-card {
    min-height: auto;
    padding: 29px;
    border-radius: 24px;
  }

  .p2-pathway-card h3 {
    font-size: 29px;
  }

  .p2-story-image {
    min-height: 500px;
  }

  .p2-story-image img {
    height: 500px;
  }

  .p2-story-stamp {
    right: -3px;
    bottom: 25px;
  }

  .p2-process-heading {
    margin-bottom: 35px;
  }

  .p2-process-tabs {
    justify-content: flex-start;
  }

  .p2-process-panel article {
    min-height: 250px;
  }

  .p2-process-panel article > span {
    margin-bottom: 55px;
  }

  .p2-testimonial-card {
    min-height: 480px;
    padding: 60px 27px 48px;
  }

  .p2-testimonial-slide blockquote {
    font-size: 23px;
  }

  .p2-testimonial-dots {
    left: 27px;
  }

  .p2-worker-card {
    padding: 31px 22px;
    border-radius: 25px;
  }

  .p2-worker-actions a:first-child {
    width: 100%;
    justify-content: center;
  }

  .p2-final {
    min-height: auto;
    padding: 95px 0 45px;
  }

  .p2-final h2 {
    font-size: 45px;
  }

  .p2-final-buttons a {
    width: 100%;
    justify-content: center;
  }

  .p2-contact-row {
    flex-direction: column;
    gap: 8px;
    margin-top: 53px;
  }

  .p2-contact-row i {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  #prime-v2-home *,
  #prime-v2-home *::before,
  #prime-v2-home *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .p2-reveal {
    opacity: 1;
    transform: none;
  }
}