:root {
  --pc-ink: oklch(22% 0.035 247);
  --pc-ink-soft: oklch(42% 0.035 247);
  --pc-blue: oklch(48% 0.125 240);
  --pc-blue-deep: oklch(31% 0.09 244);
  --pc-blue-pale: oklch(95% 0.025 235);
  --pc-sky: oklch(91% 0.045 228);
  --pc-paper: oklch(98% 0.006 238);
  --pc-white: oklch(99.4% 0.004 238);
  --pc-line: oklch(86% 0.018 238);
  --pc-warm: oklch(78% 0.13 73);
  --pc-display: "Hanken Grotesk", sans-serif;
  --pc-body: "Source Sans 3", sans-serif;
  --pc-shell: 1280px;
  --pc-gutter: clamp(20px, 4vw, 64px);
  --pc-radius: 18px;
  --pc-shadow: 0 24px 70px -35px oklch(22% 0.05 245 / 0.34);
}

html {
  scroll-behavior: smooth;
}

body.purnell-staging-redesign {
  margin: 0;
  overflow-x: hidden;
  background: var(--pc-paper);
  color: var(--pc-ink);
  font-family: var(--pc-body);
  font-size: 18px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.purnell-staging-redesign *,
.purnell-staging-redesign *::before,
.purnell-staging-redesign *::after {
  box-sizing: border-box;
}

.purnell-staging-redesign a {
  color: inherit;
  text-decoration: none;
}

.purnell-staging-redesign img {
  display: block;
  max-width: 100%;
  height: auto;
}

.purnell-staging-redesign button,
.purnell-staging-redesign input {
  font: inherit;
}

.purnell-staging-redesign button,
.purnell-staging-redesign a {
  -webkit-tap-highlight-color: transparent;
}

.purnell-staging-redesign :focus-visible {
  outline: 3px solid var(--pc-warm);
  outline-offset: 4px;
}

.pc-shell {
  width: min(100%, var(--pc-shell));
  margin-inline: auto;
  padding-inline: var(--pc-gutter);
}

.pc-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.pc-skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--pc-ink);
  color: var(--pc-white);
  font-weight: 700;
}

.pc-skip-link:focus {
  top: 16px;
}

.pc-icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
}

.pc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 72px;
  background: oklch(99.4% 0.004 238 / 0.94);
  border-bottom: 1px solid oklch(86% 0.018 238 / 0.85);
  backdrop-filter: blur(16px);
}

.pc-header__inner {
  display: grid;
  grid-template-columns: 124px 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  min-height: 72px;
}

.pc-brand {
  display: inline-flex;
  align-items: center;
  width: 112px;
}

.pc-brand img {
  width: 100%;
  height: auto;
}

.pc-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
}

.pc-nav a,
.pc-phone {
  position: relative;
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
}

.pc-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--pc-blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms cubic-bezier(.22, 1, .36, 1);
}

.pc-nav a:hover::after,
.pc-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.pc-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pc-phone {
  color: var(--pc-blue-deep);
}

.pc-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--pc-blue);
  color: var(--pc-white) !important;
  border: 1px solid var(--pc-blue);
  border-radius: 8px;
  box-shadow: 0 14px 30px -18px oklch(35% 0.1 240 / .8);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms cubic-bezier(.22, 1, .36, 1), box-shadow 220ms ease;
}

.pc-button:hover {
  background: var(--pc-blue-deep);
  border-color: var(--pc-blue-deep);
  box-shadow: 0 18px 36px -18px oklch(30% 0.1 240 / .72);
  transform: translateY(-2px);
}

.pc-button--small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 14px;
}

.pc-button--light {
  background: var(--pc-white);
  color: var(--pc-blue-deep) !important;
  border-color: var(--pc-white);
}

.pc-button--light:hover {
  background: var(--pc-sky);
  border-color: var(--pc-sky);
}

.pc-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--pc-line);
  border-radius: 8px;
}

.pc-menu-toggle > span:not(.pc-sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--pc-ink);
  transition: transform 200ms ease, opacity 200ms ease;
}

.pc-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--pc-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pc-eyebrow > span {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: currentColor;
}

.pc-eyebrow--light {
  color: var(--pc-sky);
}

.pc-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, oklch(91% 0.055 227 / .76), transparent 32%),
    linear-gradient(135deg, var(--pc-paper) 0%, var(--pc-white) 58%, var(--pc-blue-pale) 100%);
}

.pc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M80 0H0v80' fill='none' stroke='%23005688' stroke-opacity='.12'/%3E%3C/svg%3E");
}

.pc-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(440px, 1.07fr);
  align-items: center;
  gap: clamp(56px, 7vw, 112px);
  min-height: 720px;
  padding-block: clamp(76px, 8vw, 116px);
}

.pc-hero__copy {
  position: relative;
  z-index: 2;
}

.pc-hero h1 {
  max-width: 700px;
  margin: 0;
  font-family: var(--pc-display);
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 800;
  letter-spacing: -.052em;
  line-height: .94;
}

.pc-hero h1 > span {
  display: block;
}

.pc-hero h1 > span:last-child {
  color: var(--pc-blue);
}

.pc-hero__lede {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--pc-ink-soft);
  font-size: clamp(19px, 1.45vw, 21px);
  line-height: 1.52;
}

.pc-hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.pc-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--pc-blue-deep);
  font-size: 16px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: oklch(48% 0.125 240 / .3);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.pc-text-link:hover {
  color: var(--pc-blue);
  text-decoration-color: currentColor;
}

.pc-hero__assurance {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 500px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--pc-line);
}

.pc-trust-note__mark {
  display: grid;
  width: 50px;
  height: 50px;
  flex: none;
  place-items: center;
  background: var(--pc-blue-pale);
  color: var(--pc-blue);
  border-radius: 50%;
}

.pc-hero__assurance p {
  margin: 0;
  color: var(--pc-ink-soft);
  font-size: 15px;
  line-height: 1.45;
}

.pc-hero__assurance strong {
  color: var(--pc-ink);
}

.pc-hero__visual {
  position: relative;
  min-height: 590px;
  min-width: 0;
}

.pc-hero__card {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--pc-blue-deep);
  border: 1px solid oklch(38% 0.085 244);
  border-radius: 4px 4px 58px 4px;
  box-shadow: 0 36px 80px -38px oklch(22% 0.07 245 / .5);
}

.pc-hero__frame {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.pc-hero__frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: var(--pc-blue-deep);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: right center;
}

.pc-hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(20% 0.045 242 / .22), transparent 38%);
  pointer-events: none;
}

.pc-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.pc-hero__card-footer {
  display: grid;
  min-height: 138px;
  grid-template-columns: 172px minmax(0, 1fr);
  align-items: stretch;
  color: var(--pc-white);
}

.pc-hero__index {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border-right: 1px solid oklch(90% 0.02 235 / .2);
  color: var(--pc-sky);
}

.pc-hero__index span:first-child {
  font-family: var(--pc-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
}

.pc-hero__index span:last-child {
  max-width: 14ch;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.pc-hero__image-note {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 24px clamp(24px, 3vw, 38px);
}

.pc-hero__image-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--pc-sky);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pc-hero__image-note strong {
  display: block;
  max-width: 30ch;
  color: var(--pc-white);
  font-family: var(--pc-display);
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.28;
}

.pc-hero__pathways {
  position: relative;
  z-index: 2;
  background: var(--pc-blue-deep);
  color: var(--pc-white);
}

.pc-pathway-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pc-pathway-row > a {
  display: grid;
  min-height: 130px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 26px clamp(18px, 2.5vw, 36px);
  border-right: 1px solid oklch(90% 0.02 235 / .22);
  transition: background-color 200ms ease;
}

.pc-pathway-row > a:first-child {
  padding-left: 0;
}

.pc-pathway-row > a:last-child {
  border-right: 0;
}

.pc-pathway-row > a:hover {
  background: oklch(42% 0.11 241);
}

.pc-pathway__number {
  color: var(--pc-sky);
  font-family: var(--pc-display);
  font-size: 12px;
  font-weight: 700;
}

.pc-pathway-row strong,
.pc-pathway-row small {
  display: block;
}

.pc-pathway-row strong {
  font-family: var(--pc-display);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.2;
}

.pc-pathway-row small {
  margin-top: 6px;
  color: var(--pc-sky);
  font-size: 13px;
  line-height: 1.3;
}

.pc-pathway-row .pc-icon {
  transition: transform 220ms cubic-bezier(.22, 1, .36, 1);
}

.pc-pathway-row > a:hover .pc-icon {
  transform: translateX(5px);
}

@media (prefers-reduced-motion: no-preference) {
  .pc-hero__copy .pc-eyebrow,
  .pc-hero h1 > span,
  .pc-hero__lede,
  .pc-hero__actions,
  .pc-hero__assurance,
  .pc-hero__index,
  .pc-hero__image-note,
  .pc-hero__pathways {
    opacity: 0;
    animation: pc-hero-rise 720ms cubic-bezier(.22, 1, .36, 1) forwards;
  }

  .pc-hero h1 > span:first-child {
    animation-delay: 60ms;
  }

  .pc-hero h1 > span:last-child {
    animation-delay: 110ms;
  }

  .pc-hero__lede {
    animation-delay: 170ms;
  }

  .pc-hero__actions {
    animation-delay: 220ms;
  }

  .pc-hero__assurance {
    animation-delay: 270ms;
  }

  .pc-hero__visual {
    animation: pc-hero-frame-in 900ms 100ms cubic-bezier(.22, 1, .36, 1) both;
  }

  .pc-hero__frame::before {
    animation: pc-hero-curtain 900ms 180ms cubic-bezier(.22, 1, .36, 1) both;
  }

  .pc-hero__frame img {
    animation: pc-hero-image-in 1000ms 130ms cubic-bezier(.22, 1, .36, 1) both;
  }

  .pc-hero__index {
    animation-delay: 360ms;
  }

  .pc-hero__image-note {
    animation-delay: 420ms;
  }

  .pc-hero__pathways {
    animation-delay: 480ms;
  }
}

@keyframes pc-hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pc-hero-frame-in {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pc-hero-curtain {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

@keyframes pc-hero-image-in {
  from {
    transform: scale(1.035);
  }

  to {
    transform: scale(1);
  }
}

.pc-section {
  padding-block: clamp(78px, 8.5vw, 124px);
}

.pc-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  align-items: end;
  gap: clamp(40px, 8vw, 130px);
  margin-bottom: clamp(50px, 6vw, 84px);
}

.pc-section-heading h2,
.pc-confidence h2,
.pc-about h2,
.pc-faq h2,
.pc-cta h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--pc-display);
  font-size: clamp(40px, 4.65vw, 62px);
  font-weight: 750;
  letter-spacing: -.04em;
  line-height: 1.04;
}

.pc-section-heading > p {
  max-width: 500px;
  margin: 0;
  color: var(--pc-ink-soft);
}

.pc-services {
  background: var(--pc-white);
}

.pc-service-list {
  border-top: 1px solid var(--pc-line);
}

.pc-service {
  display: grid;
  grid-template-columns: 64px 60px minmax(0, 1fr) 52px;
  align-items: center;
  gap: clamp(20px, 3.5vw, 48px);
  padding-block: 31px;
  border-bottom: 1px solid var(--pc-line);
  transition: background-color 220ms ease, padding 220ms cubic-bezier(.22, 1, .36, 1);
}

.pc-service:hover {
  padding-inline: 20px;
  background: var(--pc-blue-pale);
}

.pc-service__number {
  color: var(--pc-blue);
  font-family: var(--pc-display);
  font-size: 14px;
  font-weight: 800;
}

.pc-service__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--pc-blue);
  border: 1px solid var(--pc-line);
  border-radius: 50%;
}

.pc-service h3 {
  margin: 0 0 6px;
  font-family: var(--pc-display);
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -.025em;
}

.pc-service p {
  max-width: 760px;
  margin: 0;
  color: var(--pc-ink-soft);
  font-size: 16px;
}

.pc-service > a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--pc-blue);
  border: 1px solid var(--pc-line);
  border-radius: 50%;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.pc-service > a:hover {
  background: var(--pc-blue);
  color: var(--pc-white);
  transform: rotate(-12deg);
}

.pc-confidence {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 760px;
  overflow: hidden;
  background: var(--pc-blue-deep);
  color: var(--pc-white);
}

.pc-confidence__image {
  min-height: 650px;
  overflow: hidden;
}

.pc-confidence__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.8) contrast(1.02);
}

.pc-confidence__content {
  display: flex;
  max-width: 700px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 126px) clamp(48px, 5vw, 84px);
}

.pc-confidence h2 {
  font-size: clamp(42px, 4.5vw, 64px);
}

.pc-check-list {
  display: grid;
  gap: 18px;
  margin: 40px 0 54px;
  padding: 0;
  list-style: none;
}

.pc-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--pc-sky);
  font-size: 16px;
}

.pc-check-list .pc-icon {
  margin-top: 3px;
  color: var(--pc-warm);
}

.pc-check-list strong {
  color: var(--pc-white);
}

.pc-quote {
  position: relative;
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
  background: oklch(35% 0.075 244);
  border: 1px solid oklch(92% 0.02 235 / .2);
  border-radius: 10px;
  box-shadow: 0 24px 60px -42px oklch(8% 0.04 244 / .8);
  transition: opacity 180ms ease, transform 180ms ease;
}

.pc-quote blockquote {
  max-width: 620px;
  margin: 34px 0 0;
  font-family: var(--pc-display);
  font-size: clamp(22px, 2.2vw, 29px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.38;
}

.pc-quote figcaption {
  display: flex;
  flex-direction: column;
  margin-top: 22px;
  color: var(--pc-sky);
  font-size: 13px;
  text-transform: uppercase;
}

.pc-quote figcaption span:first-child {
  color: var(--pc-white);
  font-size: 15px;
  font-weight: 700;
}

.pc-quote__story {
  opacity: 1;
  transform: translateX(0);
  transition:
    opacity 240ms cubic-bezier(.22, 1, .36, 1),
    transform 240ms cubic-bezier(.25, 1, .5, 1);
}

.pc-quote.is-leaving .pc-quote__story {
  opacity: 0;
  transition-duration: 120ms;
}

.pc-quote.is-leaving[data-direction="next"] .pc-quote__story {
  transform: translateX(-14px);
}

.pc-quote.is-leaving[data-direction="previous"] .pc-quote__story {
  transform: translateX(14px);
}

.pc-quote.is-entering .pc-quote__story {
  opacity: 0;
}

.pc-quote.is-entering[data-direction="next"] .pc-quote__story {
  transform: translateX(14px);
}

.pc-quote.is-entering[data-direction="previous"] .pc-quote__story {
  transform: translateX(-14px);
}

.pc-quote__controls {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.pc-quote__controls button {
  display: inline-flex;
  min-width: 112px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 16px;
  background: transparent;
  color: var(--pc-white);
  border: 1px solid oklch(92% 0.02 235 / .35);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.pc-quote__controls button:last-child {
  justify-self: stretch;
}

.pc-quote__controls button:hover {
  background: var(--pc-white);
  color: var(--pc-blue-deep);
  border-color: var(--pc-white);
  transform: translateY(-1px);
}

.pc-quote__controls button:last-child {
  background: var(--pc-warm);
  color: var(--pc-ink);
  border-color: var(--pc-warm);
}

.pc-quote__controls button:last-child:hover {
  background: var(--pc-white);
  border-color: var(--pc-white);
}

.pc-quote__controls button:active {
  transform: scale(.97);
}

.pc-quote__controls > span {
  color: var(--pc-white);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.pc-quote__header {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid oklch(92% 0.02 235 / .2);
}

.pc-quote__header > p {
  display: flex;
  margin: 0;
  align-items: baseline;
  flex-direction: row;
  gap: 10px;
  color: var(--pc-sky);
  font-size: 13px;
  line-height: 1.4;
}

.pc-quote__header > p span {
  color: var(--pc-white);
  font-family: var(--pc-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.pc-quote__progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.pc-quote__progress span {
  height: 2px;
  background: var(--pc-sky);
  opacity: .24;
  transform: scaleX(.55);
  transform-origin: left;
  transition:
    opacity 240ms ease,
    transform 240ms cubic-bezier(.25, 1, .5, 1);
}

.pc-quote__progress span.is-current {
  opacity: 1;
  transform: scaleX(1);
}

.pc-process {
  position: relative;
  overflow: hidden;
  background: var(--pc-blue-pale);
}

.pc-process::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -130px;
  width: 420px;
  height: 420px;
  border: 1px solid oklch(48% 0.125 240 / .13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px oklch(48% 0.125 240 / .045), 0 0 0 140px oklch(48% 0.125 240 / .03);
}

.pc-section-heading--compact {
  position: relative;
  z-index: 1;
}

.pc-process__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.pc-process__list::before {
  content: "";
  position: absolute;
  top: 33px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: var(--pc-blue);
}

.pc-process__list li {
  position: relative;
  padding-right: clamp(22px, 3vw, 46px);
}

.pc-process__list li > span {
  display: grid;
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  place-items: center;
  background: var(--pc-blue-pale);
  color: var(--pc-blue);
  border: 1px solid var(--pc-blue);
  border-radius: 50%;
  font-family: var(--pc-display);
  font-size: 15px;
  font-weight: 800;
}

.pc-process__list h3 {
  margin: 30px 0 10px;
  font-family: var(--pc-display);
  font-size: 24px;
  letter-spacing: -.02em;
}

.pc-process__list p {
  margin: 0;
  color: var(--pc-ink-soft);
  font-size: 16px;
}

.pc-about {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--pc-blue-pale) 0 35%, var(--pc-white) 35% 100%);
}

.pc-about::after {
  content: "P&C";
  position: absolute;
  right: -25px;
  bottom: -80px;
  color: oklch(48% 0.125 240 / .045);
  font-family: var(--pc-display);
  font-size: clamp(180px, 23vw, 360px);
  font-weight: 800;
  letter-spacing: -.08em;
  line-height: .7;
  pointer-events: none;
}

.pc-about__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(380px, .88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(58px, 8vw, 118px);
}

.pc-about__portrait {
  position: relative;
  max-width: 520px;
}

.pc-about__portrait::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  bottom: 32px;
  left: 32px;
  background: var(--pc-blue);
  border-radius: 120px 8px 8px 8px;
  opacity: .16;
}

.pc-about__portrait > img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
  border-radius: 120px 8px 8px 8px;
  filter: saturate(.88) contrast(1.02);
  box-shadow: var(--pc-shadow);
}

.pc-about__portrait > div {
  position: absolute;
  right: -20px;
  bottom: 22px;
  display: flex;
  min-width: 190px;
  flex-direction: column;
  padding: 19px 24px;
  background: var(--pc-blue-deep);
  color: var(--pc-white);
}

.pc-about__portrait strong {
  font-family: var(--pc-display);
  font-size: 27px;
  line-height: 1.1;
}

.pc-about__portrait span {
  color: var(--pc-sky);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pc-about__copy {
  max-width: 680px;
  padding-block: 22px;
}

.pc-about__copy > p {
  color: var(--pc-ink-soft);
}

.pc-about__copy .pc-about__lead {
  margin: 28px 0;
  color: var(--pc-blue-deep);
  font-family: var(--pc-display);
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.35;
}

.pc-about__credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--pc-line);
  border-bottom: 1px solid var(--pc-line);
}

.pc-about__credentials > div {
  display: flex;
  min-height: 108px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 26px 20px 0;
}

.pc-about__credentials > div + div {
  padding-left: 26px;
  border-left: 1px solid var(--pc-line);
}

.pc-about__credentials span {
  color: var(--pc-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pc-about__credentials strong {
  margin-top: 5px;
  color: var(--pc-ink);
  font-family: var(--pc-display);
  font-size: 18px;
  line-height: 1.3;
}

.pc-about__copy .pc-text-link {
  margin-top: 30px;
}

.pc-faq {
  background: var(--pc-paper);
}

.pc-faq__grid {
  display: grid;
  grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
}

.pc-faq__intro {
  position: sticky;
  top: 130px;
}

.pc-faq__intro > p:not(.pc-eyebrow) {
  max-width: 480px;
  color: var(--pc-ink-soft);
}

.pc-phone-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--pc-line);
}

.pc-phone-card > .pc-icon {
  width: 30px;
  height: 30px;
  color: var(--pc-blue);
}

.pc-phone-card span {
  display: flex;
  flex-direction: column;
}

.pc-phone-card small {
  color: var(--pc-ink-soft);
  font-size: 13px;
  text-transform: uppercase;
}

.pc-phone-card strong {
  color: var(--pc-blue-deep);
  font-family: var(--pc-display);
  font-size: 24px;
}

.pc-accordion {
  border-top: 1px solid var(--pc-line);
}

.pc-accordion__item {
  border-bottom: 1px solid var(--pc-line);
}

.pc-accordion h3 {
  margin: 0;
}

.pc-accordion button {
  display: flex;
  width: 100%;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: transparent;
  color: var(--pc-ink);
  border: 0;
  cursor: pointer;
  text-align: left;
}

.pc-accordion button > span:first-child {
  font-family: var(--pc-display);
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 650;
  letter-spacing: -.02em;
}

.pc-accordion button > span:last-child {
  display: grid;
  width: 40px;
  height: 40px;
  flex: none;
  place-items: center;
  color: var(--pc-blue);
  border: 1px solid var(--pc-line);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 300;
  transition: background-color 200ms ease, color 200ms ease, transform 260ms cubic-bezier(.22, 1, .36, 1);
}

.pc-accordion button[aria-expanded="true"] > span:last-child {
  background: var(--pc-blue);
  color: var(--pc-white);
  transform: rotate(45deg);
}

.pc-accordion [role="region"] {
  padding: 0 62px 27px 0;
}

.pc-accordion [role="region"] p {
  margin: 0;
  color: var(--pc-ink-soft);
}

.pc-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(75px, 9vw, 120px);
  background: var(--pc-blue);
  color: var(--pc-white);
}

.pc-cta::before,
.pc-cta::after {
  content: "";
  position: absolute;
  border: 1px solid oklch(96% 0.02 235 / .22);
  border-radius: 50%;
}

.pc-cta::before {
  top: -190px;
  right: -100px;
  width: 500px;
  height: 500px;
}

.pc-cta::after {
  right: 230px;
  bottom: -260px;
  width: 420px;
  height: 420px;
}

.pc-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  align-items: end;
  gap: clamp(60px, 10vw, 150px);
}

.pc-cta h2 {
  font-size: clamp(46px, 6vw, 76px);
}

.pc-cta__inner > div:last-child p {
  margin: 0 0 28px;
  color: var(--pc-sky);
}

.pc-footer {
  padding-top: clamp(70px, 8vw, 110px);
  background: var(--pc-ink);
  color: var(--pc-white);
}

.pc-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .6fr 1.15fr;
  gap: clamp(50px, 8vw, 120px);
  padding-bottom: 70px;
}

.pc-footer__brand > a {
  display: block;
  width: min(270px, 100%);
  padding: 10px;
  background: var(--pc-white);
}

.pc-footer__brand > p {
  max-width: 390px;
  color: oklch(80% 0.015 238);
}

.pc-social {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.pc-social a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid oklch(90% 0.015 238 / .28);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.pc-social a:hover {
  background: var(--pc-blue);
  border-color: var(--pc-blue);
}

.pc-footer__grid > div:not(.pc-footer__brand) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pc-footer h2 {
  margin: 0 0 12px;
  color: var(--pc-sky);
  font-family: var(--pc-display);
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pc-footer__grid > div:not(.pc-footer__brand) a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: oklch(82% 0.014 238);
  font-size: 15px;
}

.pc-footer__grid > div:not(.pc-footer__brand) a:hover {
  color: var(--pc-white);
}

.pc-footer__grid .pc-icon {
  margin-top: 3px;
  color: var(--pc-sky);
}

.pc-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 25px;
  color: oklch(72% 0.012 238);
  border-top: 1px solid oklch(90% 0.015 238 / .18);
  font-size: 13px;
}

.pc-footer__bottom p {
  margin: 0;
}

.pc-footer__bottom div {
  display: flex;
  gap: 28px;
}

.pc-motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.22, 1, .36, 1), transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.pc-motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pc-motion-ready [data-reveal="client-image"] {
  opacity: 0;
  transform: scale(1.025);
  transform-origin: center;
}

.pc-motion-ready [data-reveal="client-image"].is-visible {
  opacity: 1;
  transform: scale(1);
}

.pc-motion-ready [data-reveal="client-content"] {
  opacity: 0;
  transform: translateX(24px);
}

.pc-motion-ready [data-reveal="client-content"].is-visible {
  opacity: 1;
  transform: translateX(0);
}

.pc-motion-ready [data-reveal="client-content"] .pc-check-list li,
.pc-motion-ready [data-reveal="client-content"] .pc-quote {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 320ms cubic-bezier(.22, 1, .36, 1),
    transform 320ms cubic-bezier(.22, 1, .36, 1);
}

.pc-motion-ready [data-reveal="client-content"].is-visible .pc-check-list li,
.pc-motion-ready [data-reveal="client-content"].is-visible .pc-quote {
  opacity: 1;
  transform: translateY(0);
}

.pc-motion-ready [data-reveal="client-content"].is-visible .pc-check-list li:nth-child(1) {
  transition-delay: 50ms;
}

.pc-motion-ready [data-reveal="client-content"].is-visible .pc-check-list li:nth-child(2) {
  transition-delay: 90ms;
}

.pc-motion-ready [data-reveal="client-content"].is-visible .pc-check-list li:nth-child(3) {
  transition-delay: 130ms;
}

.pc-motion-ready [data-reveal="client-content"].is-visible .pc-quote {
  transition-delay: 180ms;
}

@media (hover: hover) and (pointer: fine) {
  .pc-quote__controls button span {
    transition: transform 180ms cubic-bezier(.22, 1, .36, 1);
  }

  .pc-quote__controls button:first-child:hover span {
    transform: translateX(-3px);
  }

  .pc-quote__controls button:last-child:hover span {
    transform: translateX(3px);
  }
}

.pc-service:nth-child(2),
.pc-process__list li:nth-child(2) {
  transition-delay: 70ms;
}

.pc-service:nth-child(3),
.pc-process__list li:nth-child(3) {
  transition-delay: 140ms;
}

.pc-process__list li:nth-child(4) {
  transition-delay: 210ms;
}

@media (max-width: 1180px) {
  .pc-header__inner {
    grid-template-columns: 116px 1fr auto;
  }

  .pc-brand {
    width: 104px;
  }

  .pc-phone {
    display: none;
  }

  .pc-nav {
    gap: 19px;
  }

  .pc-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, .9fr);
    gap: 50px;
  }

  .pc-confidence__content {
    padding: 70px 55px;
  }
}

@media (max-width: 960px) {
  body.pc-menu-open {
    overflow: hidden;
  }

  .pc-header__inner {
    grid-template-columns: 1fr auto auto;
  }

  .pc-menu-toggle {
    display: block;
    order: 3;
  }

  .pc-menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .pc-menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .pc-menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .pc-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100dvh - 72px);
    padding: 42px var(--pc-gutter);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    background: var(--pc-white);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms cubic-bezier(.22, 1, .36, 1), visibility 220ms;
  }

  .pc-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .pc-nav a {
    width: 100%;
    padding-block: 18px;
    border-bottom: 1px solid var(--pc-line);
    font-family: var(--pc-display);
    font-size: 28px;
  }

  .pc-nav a::after {
    display: none;
  }

  .pc-hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 85px;
  }

  .pc-hero__copy {
    max-width: 760px;
  }

  .pc-hero__visual {
    width: min(100%, 720px);
    min-height: 0;
  }

  .pc-hero__frame {
    height: 480px;
  }

  .pc-pathway-row > a:first-child {
    padding-left: clamp(18px, 2.5vw, 36px);
  }

  .pc-section-heading,
  .pc-cta__inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

  .pc-confidence {
    grid-template-columns: 1fr;
  }

  .pc-confidence__image {
    min-height: 520px;
  }

  .pc-confidence__content {
    max-width: none;
    padding: 80px var(--pc-gutter);
  }

  .pc-process__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 55px 30px;
  }

  .pc-process__list::before {
    display: none;
  }

  .pc-about__grid,
  .pc-faq__grid {
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .pc-about__portrait {
    width: min(620px, 90%);
  }

  .pc-about {
    background:
      linear-gradient(180deg, var(--pc-blue-pale) 0 38%, var(--pc-white) 38% 100%);
  }

  .pc-faq__intro {
    position: static;
  }

  .pc-footer__grid {
    grid-template-columns: 1.1fr .7fr;
  }

  .pc-footer__grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body.purnell-staging-redesign {
    font-size: 17px;
  }

  .pc-header,
  .pc-header__inner {
    min-height: 68px;
  }

  .pc-brand {
    width: 96px;
  }

  .pc-header__actions {
    display: none;
  }

  .pc-header__inner {
    grid-template-columns: 1fr auto;
  }

  .pc-menu-toggle {
    order: initial;
  }

  .pc-nav {
    top: 68px;
    height: calc(100dvh - 68px);
  }

  .pc-hero__grid {
    gap: 45px;
    padding-block: 65px;
  }

  .pc-hero h1 {
    font-size: clamp(45px, 14vw, 62px);
  }

  .pc-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pc-hero__actions .pc-text-link {
    align-self: flex-start;
  }

  .pc-hero__assurance {
    margin-top: 38px;
  }

  .pc-hero__visual {
    min-height: 0;
    padding: 0;
  }

  .pc-hero__frame {
    height: clamp(320px, 92vw, 410px);
  }

  .pc-hero__card {
    border-radius: 4px 4px 38px 4px;
  }

  .pc-hero__card-footer {
    min-height: 132px;
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .pc-hero__index {
    padding: 20px 16px;
  }

  .pc-hero__index span:first-child {
    font-size: 24px;
  }

  .pc-hero__image-note {
    padding: 20px;
  }

  .pc-hero__image-note strong {
    font-size: 18px;
  }

  .pc-pathway-row {
    grid-template-columns: 1fr;
  }

  .pc-pathway-row > a {
    min-height: 104px;
    padding: 21px 0;
    border-right: 0;
    border-bottom: 1px solid oklch(90% 0.02 235 / .22);
  }

  .pc-pathway-row > a:first-child {
    padding-left: 0;
  }

  .pc-pathway-row > a:last-child {
    border-bottom: 0;
  }

  .pc-section-heading h2,
  .pc-confidence h2,
  .pc-about h2,
  .pc-faq h2,
  .pc-cta h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .pc-service {
    grid-template-columns: 42px minmax(0, 1fr) 44px;
    gap: 18px;
  }

  .pc-service__icon {
    display: none;
  }

  .pc-service p {
    font-size: 15px;
  }

  .pc-service > a {
    width: 42px;
    height: 42px;
  }

  .pc-confidence__image {
    min-height: 380px;
  }

  .pc-confidence__content {
    padding-block: 70px;
  }

  .pc-quote {
    padding: 22px;
  }

  .pc-quote__header {
    gap: 18px;
  }

  .pc-quote__controls {
    gap: 8px;
  }

  .pc-quote__controls button {
    min-width: 0;
    padding-inline: 10px;
  }

  .pc-quote__header > p {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .pc-process__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pc-process__list li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;
    padding-right: 0;
  }

  .pc-process__list li > span {
    width: 58px;
    height: 58px;
  }

  .pc-process__list h3 {
    margin-top: 0;
  }

  .pc-about__portrait {
    width: calc(100% - 20px);
  }

  .pc-about__portrait > div {
    right: -20px;
  }

  .pc-about__credentials {
    grid-template-columns: 1fr;
  }

  .pc-about__credentials > div {
    min-height: 86px;
  }

  .pc-about__credentials > div + div {
    padding-left: 0;
    border-top: 1px solid var(--pc-line);
    border-left: 0;
  }

  .pc-accordion button {
    min-height: 76px;
  }

  .pc-accordion button > span:first-child {
    font-size: 20px;
  }

  .pc-footer__grid {
    grid-template-columns: 1fr;
  }

  .pc-footer__grid > div:last-child {
    grid-column: auto;
  }

  .pc-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .purnell-staging-redesign *,
  .purnell-staging-redesign *::before,
  .purnell-staging-redesign *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
