:root {
      --ink: #090909;
      --muted: #a3a29d;
      --surface: #ffffff;
      --dark: #181818;
      --dark-text: #f0f0f0;
    }

    ::selection {
      background: #121212;
      color: #f2f2f2;
    }

    ::-moz-selection {
      background: #121212;
      color: #f2f2f2;
    }

    * {
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent;
    }

    body {
      margin: 0;
      background: #ffffff;
      color: var(--ink);
      font-family: 'Google Sans Flex', sans-serif;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    body.is-loading {
      overflow: hidden;
    }

    #home-loader-overlay {
      position: fixed;
      inset: 0;
      z-index: 1000000;
      background: #212121;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    html.show-home-loader #home-loader-overlay {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    #home-loader-overlay.is-hidden {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    #home-loader-overlay iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }


    .pxm-hero {
      --pxm-hero-x: 50%;
      --pxm-hero-y: 50%;
      --pxm-hero-grid-size: 4.5rem;
      --pxm-hero-header-space: 5.5rem;
      position: relative;
      min-height: auto;
      padding: calc(var(--pxm-hero-header-space) + clamp(2.6rem, 4vw, 4rem)) clamp(1rem, 4vw, 4rem) clamp(3rem, 6vw, 4.8rem);
      background:
        radial-gradient(circle at var(--pxm-hero-x) var(--pxm-hero-y), rgba(193, 57, 43, 0.18), transparent 0 22rem),
        radial-gradient(circle at 82% 16%, rgba(230, 54, 54, 0.14), transparent 0 18rem),
        linear-gradient(140deg, #fffefb 0%, #f5ede6 44%, #ffffff 100%);
      overflow: clip;
      isolation: isolate;
    }

    .pxm-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(9, 9, 9, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(9, 9, 9, 0.05) 1px, transparent 1px);
      background-size: var(--pxm-hero-grid-size) var(--pxm-hero-grid-size);
      background-position: 0 0, 0 0;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.12));
      pointer-events: none;
      z-index: -3;
      opacity: 0;
      transform: translate(calc(var(--pxm-hero-grid-size) * -1), calc(var(--pxm-hero-grid-size) * -1));
      will-change: transform, opacity, background-position;
    }

    .pxm-hero::after {
      content: "";
      position: absolute;
      right: clamp(-8rem, -5vw, -3rem);
      top: 50%;
      width: clamp(18rem, 35vw, 35rem);
      aspect-ratio: 1;
      border-radius: 50%;
      background: conic-gradient(from 0deg, rgba(255, 255, 255, 0) 0deg, rgba(193, 57, 43, 0.52) 60deg, rgba(244, 179, 92, 0.36) 140deg, rgba(255, 255, 255, 0) 240deg, rgba(193, 57, 43, 0.52) 320deg, rgba(255, 255, 255, 0) 360deg);
      filter: blur(24px);
      opacity: 0.68;
      transform: translate3d(0, -50%, 0);
      animation: pxmHeroHaloSpin 18s linear infinite;
      z-index: -2;
      pointer-events: none;
    }

    .pxm-hero__ambient {
      position: absolute;
      inset: auto auto 8% 6%;
      width: clamp(13rem, 22vw, 22rem);
      aspect-ratio: 1;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 70%);
      filter: blur(10px);
      opacity: 0.95;
      animation: pxmHeroDrift 8s ease-in-out infinite alternate;
      z-index: -1;
      pointer-events: none;
    }

    .pxm-hero__wrap {
      position: relative;
      max-width: 84rem;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      place-items: center;
      text-align: center;
      min-height: inherit;
    }

    .pxm-hero__content {
      width: min(100%, 58rem);
      display: grid;
      justify-items: center;
      align-content: center;
      opacity: 0;
      transform: translateY(28px);
      transition:
        opacity 0.9s cubic-bezier(0.2, 0.68, 0.2, 1),
        transform 0.9s cubic-bezier(0.2, 0.68, 0.2, 1);
    }

    .pxm-hero.is-ready .pxm-hero__content {
      opacity: 1;
      transform: translateY(0);
    }

    .pxm-hero.is-ready::before {
      animation: pxmHeroGridTravel 8.8s cubic-bezier(0.2, 0.68, 0.2, 1) forwards;
    }

    /* Animatable gradient stops (modern @property — interpolates colors smoothly) */
    @property --pxm-hero-blue-deep {
      syntax: '<color>';
      inherits: false;
      initial-value: rgba(127, 158, 215, 0);
    }
    @property --pxm-hero-blue-soft {
      syntax: '<color>';
      inherits: false;
      initial-value: rgba(127, 158, 215, 0);
    }
    @property --pxm-hero-cream {
      syntax: '<color>';
      inherits: false;
      initial-value: #ffffff;
    }
    @property --pxm-hero-veil {
      syntax: '<color>';
      inherits: false;
      initial-value: rgba(250, 249, 247, 0);
    }
    @property --pxm-hero-bg-drop {
      syntax: '<percentage>';
      inherits: false;
      initial-value: -22%;
    }

    /* Ready-state hero background — soft drop-in blend */
    .pxm-hero.is-ready {
      --pxm-hero-blue-deep: #7F9ED7;
      --pxm-hero-blue-soft: rgba(127, 158, 215, 0.56);
      --pxm-hero-cream: #FAF9F7;
      --pxm-hero-veil: rgba(250, 249, 247, 0.70);
      --pxm-hero-bg-drop: 0%;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0) 68%, #ffffff 100%),
        radial-gradient(42.4% 36.95% at 50% 50%, var(--pxm-hero-veil) 0%, rgba(250, 249, 247, 0.00) 100%),
        radial-gradient(97.22% 78.13% at 50% calc(-17.36% + var(--pxm-hero-bg-drop)), var(--pxm-hero-blue-deep) 22.39%, var(--pxm-hero-blue-soft) 58.43%, rgba(250, 249, 247, 0.00) 85.73%),
        radial-gradient(79.49% 72.21% at 50% var(--pxm-hero-bg-drop), var(--pxm-hero-blue-deep) 0%, rgba(127, 158, 215, 0.00) 100%),
        linear-gradient(180deg, var(--pxm-hero-blue-deep) -26.16%, var(--pxm-hero-cream) 23.98%);
      transition:
        --pxm-hero-blue-deep 1.4s ease-out,
        --pxm-hero-blue-soft 1.4s ease-out,
        --pxm-hero-cream 1.2s ease-out,
        --pxm-hero-veil 1.6s ease-out 0.1s,
        --pxm-hero-bg-drop 1.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    @media (prefers-reduced-motion: reduce) {
      .pxm-hero.is-ready { transition: none; }
    }

    .pxm-hero.is-ready::before,
    .pxm-hero.is-ready::after,
    .pxm-hero.is-ready .pxm-hero__ambient {
      opacity: 0;
      animation: none;
    }

    .pxm-hero__quote {
      margin: clamp(0.8rem, 1.8vw, 1.5rem) auto clamp(1rem, 2.2vw, 1.8rem);
      max-width: 20ch;
      text-align: center;
      font-family: 'Nebulica', sans-serif;
      text-transform: capitalize;
      font-size: clamp(1.8rem, 4.2vw, 3.4rem);
      line-height: 1;
      letter-spacing: -0.04em;
      font-weight: 500;
      color: #090909;
    }

    .pxm-hero__quote-stack {
      display: grid;
      grid-template-areas: "s";
      position: relative;
    }

    .pxm-hero__quote-layer {
      grid-area: s;
      display: block;
      opacity: 0;
      pointer-events: none;
      animation-duration: 8800ms;
      animation-timing-function: cubic-bezier(0.45, 0, 0.15, 1);
      animation-iteration-count: infinite;
      transform: translateZ(0);
      will-change: opacity;
    }

    .pxm-hero__quote-layer--thin {
      font-weight: 100;
      opacity: 1;
      animation-name: pxmQuoteWeight100;
    }

    .pxm-hero__quote-layer--extra-light {
      font-weight: 200;
      animation-name: pxmQuoteWeight200;
    }

    .pxm-hero__quote-layer--light {
      font-weight: 300;
      animation-name: pxmQuoteWeight300;
    }

    .pxm-hero__quote-layer--regular {
      font-weight: 400;
      animation-name: pxmQuoteWeight400;
    }

    .pxm-hero__quote-layer--full {
      font-weight: 500;
      animation-name: pxmQuoteWeight500;
    }

    @keyframes pxmQuoteWeight100 {
      0%, 10%, 90%, 100% { opacity: 1; }
      26%, 74% { opacity: 0.18; }
      42%, 58% { opacity: 0; }
    }

    @keyframes pxmQuoteWeight200 {
      0%, 100% { opacity: 0; }
      12%, 88% { opacity: 0.28; }
      24%, 76% { opacity: 0.78; }
      38% { opacity: 0.18; }
      50% { opacity: 0; }
    }

    @keyframes pxmQuoteWeight300 {
      0%, 14%, 86%, 100% { opacity: 0; }
      32%, 68% { opacity: 0.82; }
      44%, 56% { opacity: 0.26; }
      50% { opacity: 0; }
    }

    @keyframes pxmQuoteWeight400 {
      0%, 26%, 74%, 100% { opacity: 0; }
      42%, 58% { opacity: 0.72; }
      50% { opacity: 0.34; }
    }

    @keyframes pxmQuoteWeight500 {
      0%, 38%, 62%, 100% { opacity: 0; }
      50% { opacity: 0.9; }
    }

    .pxm-hero__quote-mobile-break {
      display: none;
    }

    .pxm-hero__quote-trusted-break {
      display: none;
    }

    .pxm-hero__quote-intro-word {
      display: inline-block;
      opacity: 1;
      overflow: hidden;
      vertical-align: baseline;
      transform: translate3d(0, 1.05em, 0);
      transform-origin: 50% 100%;
      clip-path: inset(0 0 100% 0);
      animation: pxmQuoteWordReveal 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
      animation-delay: var(--pxm-quote-word-delay, 0ms);
      will-change: transform, clip-path;
    }

    html.show-home-loader .pxm-hero__quote-intro-word,
    body.is-loading .pxm-hero__quote-intro-word {
      animation-play-state: paused;
    }

    .pxm-hero__quote-stack.is-intro-complete .pxm-hero__quote-intro-word {
      animation: none;
      overflow: hidden;
      transform: translate3d(0, 0, 0);
      clip-path: inset(0 0 0 0);
      will-change: auto;
    }

    @keyframes pxmQuoteWordReveal {
      0% {
        transform: translate3d(0, 1.05em, 0);
        clip-path: inset(0 0 100% 0);
      }

      100% {
        transform: translate3d(0, 0, 0);
        clip-path: inset(0 0 0 0);
      }
    }

    .pxm-hero__quote-word-loop {
      position: relative;
      display: inline-block;
      line-height: 1;
      vertical-align: baseline;
      white-space: nowrap;
      font-variant-ligatures: none;
    }

    .pxm-hero__quote-letter {
      display: inline-block;
      text-transform: none;
      transition:
        opacity 460ms cubic-bezier(0.55, 0.05, 0.2, 1),
        color 460ms cubic-bezier(0.55, 0.05, 0.2, 1),
        filter 620ms cubic-bezier(0.55, 0.05, 0.2, 1);
      will-change: contents, opacity, filter;
    }

    .pxm-hero__quote-letter[data-state="scrambling"] {
      opacity: 0.6;
      color: rgba(9, 9, 9, 0.72);
      filter: blur(0.5px);
    }

    .pxm-hero__quote-letter[data-state="settling"] {
      opacity: 1;
      color: #c1392b;
      filter: blur(0.1px);
    }

    .pxm-hero__quote-letter[data-state="settled"] {
      opacity: 1;
      color: inherit;
      filter: none;
    }

    .pxm-hero__subtext {
      --pxm-hero-filter-intro-delay: 0ms;
      --pxm-hero-filter-intro-duration: 700ms;
      max-width: 36rem;
      margin: clamp(0.15rem, 0.8vw, 0.45rem) auto clamp(1.25rem, 2.4vw, 2rem);
      color: rgba(9, 9, 9, 0.68);
      font-size: clamp(0.95rem, 1.35vw, 1.15rem);
      font-weight: 500;
      line-height: 1.5;
      letter-spacing: 0;
      text-align: center;
      animation: pxmHeroFiltersSentenceIntro var(--pxm-hero-filter-intro-duration) ease-out var(--pxm-hero-filter-intro-delay) 1 both;
    }

    .pxm-hero__subtext.is-revealed {
      line-height: 1.35;
    }

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

    @property --pxm-hero-filter-angle {
      syntax: "<angle>";
      inherits: false;
      initial-value: 90deg;
    }

    .pxm-hero-filters {
      margin-top: clamp(1rem, 2.2vw, 1.6rem);
      width: fit-content;
      max-width: 100%;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      opacity: 1;
      z-index: 2;
      border-radius: 0.5rem;
      isolation: isolate;
    }

    .pxm-hero-filters::before,
    .pxm-hero-filters::after {
      content: "";
      position: absolute;
      border-radius: inherit;
      pointer-events: none;
      opacity: 0;
    }

    .pxm-hero-filters::before {
      inset: -1px;
      background: conic-gradient(
        from var(--pxm-hero-filter-angle),
        transparent 0deg 10deg,
        #6a8fc0 30deg,
        #1f4a9b 70deg,
        #243c4f 110deg,
        #c0392b 150deg,
        #d4521a 185deg,
        #f0921a 210deg,
        transparent 240deg 360deg
      );
      filter: blur(15px);
      --pxm-hero-filter-glow-opacity: 0.75;
      animation: pxmHeroFiltersGlowSpin 3.5s linear var(--pxm-hero-filter-glow-start) 1 forwards, pxmHeroFiltersGlowIn 0.45s ease-out var(--pxm-hero-filter-glow-start) 1 forwards, pxmHeroFiltersGlowOut 0.9s ease var(--pxm-hero-filter-glow-fade-delay) 1 forwards;
      z-index: 0;
    }

    .pxm-hero-filters::after {
      inset: 0;
      padding: 1px;
      background: conic-gradient(
        from var(--pxm-hero-filter-angle),
        transparent 0deg 10deg,
        #6a8fc0 30deg,
        #1f4a9b 70deg,
        #243c4f 110deg,
        #c0392b 150deg,
        #d4521a 185deg,
        #f0921a 210deg,
        transparent 240deg 360deg
      );
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      --pxm-hero-filter-glow-opacity: 1;
      animation: pxmHeroFiltersGlowSpin 3.5s linear var(--pxm-hero-filter-glow-start) 1 forwards, pxmHeroFiltersGlowIn 0.45s ease-out var(--pxm-hero-filter-glow-start) 1 forwards, pxmHeroFiltersGlowOut 0.9s ease var(--pxm-hero-filter-glow-fade-delay) 1 forwards;
      z-index: 2;
    }

    .pxm-hero-filters__panel {
      --pxm-hero-filter-border-size: 1px;
      --pxm-hero-filter-intro-delay: 0ms;
      --pxm-hero-filter-intro-duration: 700ms;
      --pxm-hero-filter-glow-start: calc(var(--pxm-hero-filter-intro-delay) + var(--pxm-hero-filter-intro-duration) - 500ms);
      --pxm-hero-filter-glow-fade-delay: calc(var(--pxm-hero-filter-glow-start) + 1s);
      --pxm-hero-filter-pad-x: clamp(1rem, 1.5vw, 1.25rem);
      position: relative;
      width: auto;
      padding: clamp(0.65rem, 1vw, 0.9rem) var(--pxm-hero-filter-pad-x);
      background: #e9faff;
      backdrop-filter: blur(8px) saturate(120%);
      -webkit-backdrop-filter: blur(8px) saturate(120%);
      border: 0.2px solid rgb(16 18 20 / 10%);
      box-shadow:
        0 12px 36px rgba(16, 18, 20, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
      border-radius: 0.5rem;
      text-align: center;
      isolation: isolate;
      overflow: visible;
      animation: pxmHeroFiltersPanelIntro var(--pxm-hero-filter-intro-duration) ease-out var(--pxm-hero-filter-intro-delay) 1 both;

    }

    .pxm-hero-filters__panel::before,
    .pxm-hero-filters__panel::after {
      content: "";
      position: absolute;
      border-radius: inherit;
      pointer-events: none;
      opacity: 0;
    }

    .pxm-hero-filters__panel::before {
      inset: 0;
      padding: var(--pxm-hero-filter-border-size);
      background: conic-gradient(
        from var(--pxm-hero-filter-angle),
        transparent 0deg 10deg,
        #6a8fc0 30deg,
        #1f4a9b 70deg,
        #243c4f 110deg,
        #c0392b 150deg,
        #d4521a 185deg,
        #f0921a 210deg,
        transparent 240deg 360deg
      );
      -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      filter: blur(8px);
      --pxm-hero-filter-glow-opacity: 0.6;
      animation: pxmHeroFiltersGlowSpin 3.5s linear var(--pxm-hero-filter-glow-start) 1 forwards, pxmHeroFiltersGlowIn 0.45s ease-out var(--pxm-hero-filter-glow-start) 1 forwards, pxmHeroFiltersGlowOut 0.9s ease var(--pxm-hero-filter-glow-fade-delay) 1 forwards;
      z-index: 0;
    }

    .pxm-hero-filters__panel::after {
      inset: 0;
      background: conic-gradient(
        from var(--pxm-hero-filter-angle),
        transparent 0deg 10deg,
        #6a8fc0 30deg,
        #1f4a9b 70deg,
        #243c4f 110deg,
        #c0392b 150deg,
        #d4521a 185deg,
        #f0921a 210deg,
        transparent 240deg 360deg
      );
      filter: blur(14px);
      -webkit-mask: radial-gradient(ellipse at center, transparent 55%, black 100%);
      mask: radial-gradient(ellipse at center, transparent 55%, black 100%);
      --pxm-hero-filter-glow-opacity: 0.45;
      animation: pxmHeroFiltersGlowSpin 3.5s linear var(--pxm-hero-filter-glow-start) 1 forwards, pxmHeroFiltersGlowIn 0.45s ease-out var(--pxm-hero-filter-glow-start) 1 forwards, pxmHeroFiltersGlowOut 0.9s ease var(--pxm-hero-filter-glow-fade-delay) 1 forwards;
      z-index: 0;
      pointer-events: none;
    }

    .pxm-hero-filters__panel::after {
      inset: 0;
      padding: var(--pxm-hero-filter-border-size);
      background: conic-gradient(
        from var(--pxm-hero-filter-angle),
        transparent 0deg 10deg,
        #6a8fc0 30deg,
        #1f4a9b 70deg,
        #243c4f 110deg,
        #c0392b 150deg,
        #d4521a 185deg,
        #f0921a 210deg,
        transparent 240deg 360deg
      );
      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      --pxm-hero-filter-glow-opacity: 1;
      animation: pxmHeroFiltersGlowSpin 3.5s linear var(--pxm-hero-filter-glow-start) 1 forwards, pxmHeroFiltersGlowIn 0.45s ease-out var(--pxm-hero-filter-glow-start) 1 forwards, pxmHeroFiltersGlowOut 0.9s ease var(--pxm-hero-filter-glow-fade-delay) 1 forwards;
      z-index: 2;
    }

    .pxm-hero-filters__sentence {
      position: relative;
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: center;
      row-gap: 0;
      column-gap: 0.45rem;
      font-size: clamp(0.74rem, 0.95vw, 0.92rem);
      line-height: 1.15;
      letter-spacing: -0.02em;
      color: rgba(9, 9, 9, 0.86);
      overflow: hidden;
      animation: pxmHeroFiltersSentenceIntro var(--pxm-hero-filter-intro-duration) ease-out var(--pxm-hero-filter-intro-delay) 1 both;
      z-index: 1;
    }

    .pxm-hero-filters__sentence-line {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      width: max-content;
      max-width: 100%;
      white-space: nowrap;
    }

    .pxm-hero-filters__sentence-line > span[aria-hidden="true"] {
      white-space: nowrap;
    }

    .pxm-hero-filters__picker {
      border: 0;
      background: transparent;
      color: #090909;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.28rem;
      padding: 0;
      font: inherit;
      font-weight: 500;
      cursor: pointer;
      white-space: nowrap;
    }

    .pxm-hero-filters__picker:hover,
    .pxm-hero-filters__picker:focus-visible {
      color: #c1392b;
      outline: none;
    }

    .pxm-hero-filters__picker-window,
    .pxm-hero-filters__picker-window--sector {
      position: relative;
      display: inline-block;
      overflow: hidden;
      height: 1.1em;
      min-width: 0;
      width: var(--pxm-hero-filter-width, auto);
      vertical-align: middle;
      transition: width 0.42s cubic-bezier(0.2, 0.68, 0.2, 1);
    }

    .pxm-hero-filters__picker-track {
      display: grid;
      grid-auto-rows: 1.1em;
      transform: translateY(var(--pxm-hero-filter-shift, 0));
      transition: transform 0.55s cubic-bezier(0.2, 0.68, 0.2, 1);
      text-align: left;
      justify-content: start;
      justify-items: start;
    }
    .pxm-hero-filters__picker-item {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: max-content;
      height: 1.1em;
      white-space: nowrap;
    }

    .pxm-hero-filters__chevron {
      width: 0.74rem;
      height: 0.74rem;
      flex: none;
      margin-top: 0.05rem;
      stroke: currentColor;
      stroke-width: 1.4;
      fill: none;
      opacity: 0.72;
    }

    html.show-home-loader .pxm-hero-filters__panel,
    html.show-home-loader .pxm-hero-filters__panel::before,
    html.show-home-loader .pxm-hero-filters__panel::after,
    html.show-home-loader .pxm-hero__subtext,
    html.show-home-loader .pxm-hero-filters__sentence,
    body.is-loading .pxm-hero-filters__panel,
    body.is-loading .pxm-hero-filters__panel::before,
    body.is-loading .pxm-hero-filters__panel::after,
    body.is-loading .pxm-hero__subtext,
    body.is-loading .pxm-hero-filters__sentence,
    .pxm-hero__subtext:not(.is-revealed),
    .pxm-hero-filters:not(.is-revealed) .pxm-hero-filters__panel,
    .pxm-hero-filters:not(.is-revealed) .pxm-hero-filters__panel::before,
    .pxm-hero-filters:not(.is-revealed) .pxm-hero-filters__panel::after,
    .pxm-hero-filters:not(.is-revealed) .pxm-hero-filters__sentence {
      animation-play-state: paused;
    }

    .pxm-hero-filters:not(.is-revealed)::before,
    .pxm-hero-filters:not(.is-revealed)::after {
      animation-play-state: paused;
    }

    @keyframes pxmHeroFiltersPanelIntro {
      0% {
        opacity: 0;
        filter: blur(12px);
        transform: scale(0.97);
      }
      100% {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
      }
    }

    @keyframes pxmHeroFiltersSentenceIntro {
      0% {
        opacity: 0;
        filter: blur(8px);
      }
      100% {
        opacity: 1;
        filter: blur(0);
      }
    }

    @keyframes pxmHeroFiltersGlowSpin {
      from { --pxm-hero-filter-angle: -45deg; }
      to { --pxm-hero-filter-angle: 600deg; }
    }

    @keyframes pxmHeroFiltersGlowIn {
      from { opacity: 0; }
      to { opacity: var(--pxm-hero-filter-glow-opacity, 1); }
    }

    @keyframes pxmHeroFiltersGlowOut {
      to { opacity: 0; }
    }

    @keyframes pxmHeroHaloSpin {
      from {
        transform: translate3d(0, -50%, 0) rotate(0deg);
      }

      to {
        transform: translate3d(0, -50%, 0) rotate(360deg);
      }
    }

    @keyframes pxmHeroDrift {
      from {
        transform: translate3d(0, 0, 0) scale(1);
      }

      to {
        transform: translate3d(1.6rem, -1.2rem, 0) scale(1.1);
      }
    }

    @keyframes pxmHeroGridTravel {
      0% {
        opacity: 0;
        transform: translate(calc(var(--pxm-hero-grid-size) * -1), calc(var(--pxm-hero-grid-size) * -1));
        background-position: 0 0, 0 0;
      }
      16% {
        opacity: 1;
      }
      100% {
        opacity: 1;
        transform: translate(0, 0);
        background-position:
          var(--pxm-hero-grid-size) var(--pxm-hero-grid-size),
          var(--pxm-hero-grid-size) var(--pxm-hero-grid-size);
      }
    }

    .latest-projects-section {
      background: var(--surface);
      padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 4rem) clamp(2.5rem, 6vw, 5rem);
    }

    .latest-projects-wrap {
      max-width: 98rem;
      margin: 0 auto;
    }

    .latest-projects-header {
      z-index: 2;
      margin-bottom: clamp(1.4rem, 2.8vw, 2.4rem);
      font-family: 'Google Sans Flex', sans-serif;
    }

    .latest-projects-header h3 {
      font-family: inherit;
      font-weight: 500;
      font-size: 2.25rem;
      margin: 0 0 0.8rem 0;
      letter-spacing: -0.03em;
      line-height: 1;
      color: #000;
    }

    .latest-projects-header p {
      font-family: inherit;
      font-weight: 400;
      font-size: 1rem;
      color: rgba(0, 0, 0, 0.72);
      margin: 0;
      line-height: 1.5;
    }

    .latest-projects-header a {
      color: #000;
      text-decoration: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.35);
      transition: color 0.3s, border-color 0.3s;
    }

    .latest-projects-header a:hover,
    .latest-projects-header a:focus-visible {
      color: #000;
      border-color: #000;
    }

    .work-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      column-gap: clamp(1rem, 2vw, 2rem);
      row-gap: clamp(2.5rem, 4vw, 3rem);
      width: 100%;
      margin-bottom: 0;
      align-items: start;
    }

    .work-item {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
      position: relative;
      min-width: 0;
    }

    .work-item[hidden] {
      display: none !important;
    }

    .work-media {
      position: relative;
      width: 100%;
      margin-bottom: 0.9rem;
      overflow: hidden;
      border-radius: 0;
      background-color: #e0e0e0;
      aspect-ratio: 16 / 9;
      height: auto;
    }

    .work-media img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .work-media > img,
    .work-media > picture {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .work-media > picture {
      display: block;
    }

    .work-item:hover .work-media img,
    .work-item:focus-visible .work-media img {
      transform: scale(1.025);
    }

    .work-item:focus-visible {
      outline: 2px solid #000;
      outline-offset: 4px;
    }

    .work-info {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      grid-template-areas:
        "title tags"
        "description description";
      align-items: start;
      column-gap: 1rem;
      row-gap: 0.55rem;
    }

    .work-info h2 {
      grid-area: title;
      font-family: 'Google Sans Flex', sans-serif;
      font-weight: 500;
      font-size: clamp(1.25rem, 1.2vw, 1.5rem);
      color: #0b0b0b;
      margin: 0;
      letter-spacing: -0.02em;
      line-height: 1.15;
    }

    .work-info p {
      grid-area: description;
      font-family: 'Google Sans Flex', sans-serif;
      font-weight: 400;
      font-size: clamp(0.875rem, 0.8vw, 1rem);
      color: rgba(0, 0, 0, 0.6);
      margin: 0;
      line-height: 1.45;
      max-width: 38rem;
    }

    .work-categories {
      grid-area: tags;
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 0.35rem;
    }

    .category-tag {
      font-family: 'Google Sans Flex', sans-serif;
      font-weight: 400;
      font-size: clamp(0.65rem, 0.58vw, 0.75rem);
      line-height: 1.2;
      background-color: rgba(0, 0, 0, 0.06);
      padding: 0.3rem 0.55rem;
      border-radius: 4px;
      color: rgba(0, 0, 0, 0.64);
      white-space: nowrap;
    }

    .all-projects-link {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      margin-top: clamp(3rem, 5vw, 4.25rem);
      padding-bottom: 0.4rem;
      border-bottom: 2px solid currentColor;
      color: #0b0b0b;
      font-family: 'Google Sans Flex', sans-serif;
      font-size: clamp(0.95rem, 1vw, 1.1rem);
      font-weight: 500;
      line-height: 1;
      text-decoration: none;
    }

    .all-projects-link span {
      font-size: 1.25em;
      line-height: 0.8;
      transition: transform 0.25s ease;
    }

    .all-projects-link:hover span,
    .all-projects-link:focus-visible span {
      transform: translate(0.12rem, -0.12rem);
    }

    .pxm-journal-section {
      --pxm-journal-gutter: clamp(1.25rem, 3.5vw, 4rem);
      width: 100%;
      overflow: hidden;
      padding: clamp(4.5rem, 7vw, 8rem) 0 clamp(4.5rem, 7vw, 7.5rem);
      background: #050505;
      color: #f5f5f2;
      font-family: 'Google Sans Flex', sans-serif;
    }

    .pxm-journal-section__inner {
      width: 100%;
    }

    .pxm-journal-section__header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 2rem;
      padding: 0 var(--pxm-journal-gutter);
      margin-bottom: clamp(2.5rem, 4.5vw, 5rem);
    }

    .pxm-journal-section__eyebrow {
      margin: 0 0 0.85rem;
      color: rgba(255, 255, 255, 0.58);
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      line-height: 1;
      text-transform: uppercase;
    }

    .pxm-journal-section__title {
      max-width: 14ch;
      margin: 0;
      color: #fff;
      font-family: inherit;
      font-size: clamp(2.6rem, 4.8vw, 5.3rem);
      font-weight: 500;
      letter-spacing: -0.04em;
      line-height: 0.96;
    }

    .pxm-journal-section__controls {
      display: flex;
      flex: none;
      align-items: center;
      gap: clamp(0.75rem, 1vw, 1.1rem);
    }

    .pxm-journal-section__control {
      width: auto;
      min-height: auto;
      display: inline-flex;
      align-items: center;
      padding: 0 0 0.45rem;
      border: 0;
      border-bottom: 1px solid currentColor;
      border-radius: 0;
      background: transparent;
      color: #fff;
      cursor: pointer;
      font: inherit;
      font-size: clamp(0.8rem, 0.85vw, 0.95rem);
      font-weight: 500;
      line-height: 1;
      transition: opacity 0.25s ease;
    }

    .pxm-journal-section__control:hover,
    .pxm-journal-section__control:focus-visible {
      opacity: 0.7;
    }
    .pxm-journal-section__control:disabled {
      opacity: 0.28;
      cursor: default;
    }

    .pxm-journal-section__posts {
      display: flex;
      gap: clamp(1.25rem, 2vw, 2.25rem);
      width: 100%;
      overflow-x: auto;
      overflow-y: hidden;
      padding: 0 var(--pxm-journal-gutter) 1.5rem;
      scroll-padding-inline: var(--pxm-journal-gutter);
      scroll-snap-type: x mandatory;
      overscroll-behavior-x: contain;
      scrollbar-width: none;
      cursor: grab;
      touch-action: pan-x pan-y;
    }

    .pxm-journal-section__posts::-webkit-scrollbar {
      display: none;
    }

    .pxm-journal-section__posts.is-dragging {
      cursor: grabbing;
      scroll-snap-type: none;
      user-select: none;
    }

    .pxm-journal-card {
      flex: 0 0 clamp(22rem, 32vw, 38rem);
      min-width: 0;
      scroll-snap-align: start;
    }

    .pxm-journal-card__media {
      position: relative;
      display: block;
      width: 100%;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: #111;
      color: inherit;
      text-decoration: none;
    }

    .pxm-journal-card__media img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1);
      transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
    }

    .pxm-journal-card__media:hover img,
    .pxm-journal-card__media:focus-visible img {
      transform: scale(1.025);
      opacity: 0.9;
    }

    @media (min-width: 769px) {
      .pxm-journal-card:nth-child(1) .pxm-journal-card__media {
        aspect-ratio: 1.24 / 1;
      }

      .pxm-journal-card:nth-child(2) .pxm-journal-card__media {
        aspect-ratio: 1.85 / 1;
      }

      .pxm-journal-card:nth-child(3) .pxm-journal-card__media {
        aspect-ratio: 1.58 / 1;
      }

      .pxm-journal-card:nth-child(4) .pxm-journal-card__media {
        aspect-ratio: 1.85 / 1;
      }
    }
    .pxm-journal-card__content {
      display: flex;
      min-height: 13.5rem;
      flex-direction: column;
      align-items: flex-start;
      padding-top: 1.35rem;
    }

    .pxm-journal-card__title {
      display: inline-block;
      color: #fff;
      font-family: inherit;
      font-size: clamp(1.25rem, 1.35vw, 1.6rem);
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1.15;
      text-decoration: none;
    }

    .pxm-journal-card__title:hover,
    .pxm-journal-card__title:focus-visible {
      text-decoration: underline;
      text-underline-offset: 0.18em;
    }

    .pxm-journal-card__excerpt {
      max-width: 44rem;
      margin: 0.55rem 0 0;
      color: rgba(255, 255, 255, 0.58);
      font-size: clamp(0.98rem, 1.05vw, 1.2rem);
      font-weight: 400;
      line-height: 1.38;
    }

    .pxm-journal-card__more {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      margin-top: auto;
      padding: 0 0 0.45rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.78);
      color: #fff;
      font-family: inherit;
      font-size: 1rem;
      font-weight: 500;
      line-height: 1;
      text-decoration: none;
    }

    .pxm-journal-card__more span {
      font-size: 1.2em;
      transition: transform 0.25s ease;
    }

    .pxm-journal-card__more:hover span,
    .pxm-journal-card__more:focus-visible span {
      transform: translate(0.12rem, -0.12rem);
    }

    .pxm-journal-section__progress {
      position: relative;
      height: 1px;
      margin: clamp(2rem, 3vw, 3.25rem) var(--pxm-journal-gutter) 0;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.18);
    }

    .pxm-journal-section__progress span {
      position: absolute;
      inset: 0 auto 0 0;
      width: 25%;
      background: #fff;
      transform: translateX(0);
      transform-origin: left center;
      transition: width 0.2s ease;
    }

    @media (max-width: 768px) {
      .pxm-journal-section {
        --pxm-journal-gutter: 1rem;
        padding: 4rem 0 4.5rem;
      }

      .pxm-journal-section__header {
        align-items: flex-start;
        margin-bottom: 2.75rem;
      }

      .pxm-journal-section__title {
        max-width: 11ch;
        font-size: clamp(2.35rem, 12vw, 4rem);
      }

      .pxm-journal-section__controls {
        padding-top: 1.6rem;
      }

      .pxm-journal-section__control {
        width: auto;
      }

      .pxm-journal-card {
        flex-basis: min(86vw, 30rem);
      }

      .pxm-journal-card__media {
        aspect-ratio: 4 / 3;
      }

      .pxm-journal-card__content {
        min-height: 12.5rem;
      }

      .pxm-journal-card__excerpt {
        font-size: 0.96rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .pxm-journal-section__posts {
        scroll-behavior: auto;
      }

      .pxm-journal-card__media img,
      .pxm-journal-card__more span {
        transition: none;
      }
    }

    .decade-text {
      flex: 1;
      z-index: 2;
    }

    .decade-text h3 {
      font-family: 'Google Sans Flex', sans-serif;
      font-weight: 500;
      font-size: 2.25rem;
      margin: 0 0 0.8rem 0;
      letter-spacing: -0.03em;
      line-height: 1;
      color: #fff;
    }

    .decade-text p {
      font-family: 'Google Sans Flex', sans-serif;
      font-weight: 400;
      font-size: 1rem;
      color: #fff;
      margin: 0;
      line-height: 1.5;
    }

    .decade-text a {
      color: #fff;
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.4);
      transition: color 0.3s, border-color 0.3s;
    }

    .decade-text a:hover {
      color: #fff;
      border-color: #fff;
    }

    .carousel-wrapper {
      flex: 1;
      overflow: hidden;
      position: relative;
      mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
      -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%, rgba(0,0,0,1) 90%, rgba(0,0,0,0) 100%);
    }

    .carousel-wrapper::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(to right, #181818 0%, rgba(24, 24, 24, 0) 12%, rgba(24, 24, 24, 0) 88%, #181818 100%);
      z-index: 1;
    }
    .carousel-track {
      display: flex;
      gap: 16px;
      width: 100%;
      animation: scrollLoop 40s linear infinite;
      will-change: transform;
    }

    .carousel-item {
      aspect-ratio: 1.52427 / 1;
      height: var(--framer-aspect-ratio-supported, 131px);
      position: relative;
      width: 200px;
      flex-shrink: 0;
      border-radius: 0;
      overflow: hidden;
      background: #eee;
    }

    .carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    @keyframes scrollLoop {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .carousel-track:hover {
      animation-play-state: paused;
    }

    @media (min-width: 768px) {
      .work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (min-width: 1024px) {
      .work-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .work-item:nth-child(1) {
        grid-column: span 2;
      }

      .work-item:nth-child(2) {
        grid-column: span 1;
      }

      .work-item:nth-child(1) .work-media {
        height: clamp(24rem, 38vw, 32rem);
        aspect-ratio: auto;
      }

      .work-item:nth-child(n + 2) .work-media {
        height: auto;
        aspect-ratio: 16 / 9;
      }
    }

    @media (min-width: 1024px) {
      .work-info h2 {
        font-size: clamp(1.1rem, 1vw, 1.3rem);
      }

      .work-info p {
        font-size: clamp(0.72rem, 0.62vw, 0.8rem);
      }
    }

    @media (min-width: 1024px) {
      .work-item:nth-child(1) .work-info p {
        max-width: 30rem;
      }
    }

    @media (min-width: 1024px) {
      .work-item:not(:nth-child(1)) .work-info p {
        max-width: 80%;
      }
    }

    @media (min-width: 1181px) {
      .latest-projects-section {
        padding-left: clamp(1.5rem, 3.6vw, 2.75rem);
        padding-right: clamp(1.5rem, 3.6vw, 2.75rem);
      }

      .latest-projects-wrap {
        width: 100%;
        max-width: min(100%, 1700px);
      }
    }

    @media (min-width: 768px) and (max-width: 1180px) {
      .latest-projects-section {
        padding-left: 1rem;
        padding-right: 1rem;
      }

      .work-grid {
        column-gap: clamp(1rem, 2vw, 2rem);
        row-gap: 3rem;
      }
    }

    #header-container {
      width: 100%;
      position: relative;
      z-index: 999;
    }

    .home-page {
      width: 100%;
      padding-top: 0;
    }

    .reveal {
      opacity: 0;
      filter: blur(8px);
      transform: translateY(20px);
      animation: sectionReveal 0.9s cubic-bezier(0.2, 0.68, 0.2, 1) forwards;
    }

    @keyframes sectionReveal {
      to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
      }
    }

    .quote-wrap {
      max-width: 78rem;
      margin: 0 auto;
      display: flex;
      justify-content: center;
    }

    .quote-copy {
      width: min(100%, 54rem);
    }

    .quote-text {
      margin: 0;
      font-size: clamp(1.8rem, 3.8vw, 3.4rem);
      line-height: 1.12;
      letter-spacing: -0.025em;
      font-weight: 600;
    }

      .quote-author {
      margin: clamp(1.2rem, 2vw, 1.8rem) 0 0;
      font-size: clamp(1.05rem, 1.2vw, 1.7rem);
      font-weight: 600;
      line-height: 1.1;
      letter-spacing: -0.01em;
    }
    .pxm-manifesto {
      background: #040a12;
      color: #f5f7fa;
      padding: clamp(0.75rem, 1.25vw, 1.1rem) clamp(0.9rem, 1.7vw, 1.6rem) clamp(0.85rem, 1.4vw, 1.2rem);
      box-shadow: 0 1px 0 0 #040a12, 0 -1px 0 0 #040a12;
      overflow: hidden;
    }

    .pxm-manifesto__inner {
      width: 100%;
      max-width: 130rem;
      margin: 0 auto;
    }

    .pxm-manifesto__ticker {
      display: grid;
      row-gap: 0;
    }

    .pxm-manifesto__row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: clamp(0.6rem, 1.4vw, 1.8rem);
      width: 100%;
    }

    .pxm-manifesto__word {
      display: inline-block;
      vertical-align: baseline;
      font-family: 'Google Sans Flex', sans-serif;
      font-size: clamp(0.72rem, 0.95vw, 1.16rem);
      font-weight: 600;
      line-height: 1;
      letter-spacing: 0.035em;
      text-transform: uppercase;
      white-space: nowrap;
      overflow: hidden;
      transform: translate3d(0, 1.05em, 0);
      transform-origin: 50% 100%;
      clip-path: inset(0 0 100% 0);
      will-change: transform, clip-path;
    }

    .pxm-manifesto__row--top .pxm-manifesto__word {
      font-size: clamp(0.66rem, 0.86vw, 1.02rem);
      font-weight: 500;
      color: rgba(245, 247, 250, 0.92);
      padding-bottom: 0.02rem;
    }

    .pxm-manifesto__row--bottom .pxm-manifesto__word {
      border-bottom: 1px solid rgba(245, 247, 250, 0.46);
      padding-bottom: 0.12rem;
    }

    .pxm-manifesto.pxm-manifesto--inview .pxm-manifesto__word {
      animation: pxmManifestoWordReveal 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
      animation-delay: calc(var(--pxm-word-seed, 0) * 60ms + 40ms);
    }

    @keyframes pxmManifestoWordReveal {
      0% {
        transform: translate3d(0, 1.05em, 0);
        clip-path: inset(0 0 100% 0);
      }
      100% {
        transform: translate3d(0, 0, 0);
        clip-path: inset(0 0 0 0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .pxm-manifesto__word {
        animation: none !important;
        transform: none;
        clip-path: inset(0 0 0 0);
      }
    }

    .pxm-manifesto--gated {
      visibility: hidden;
      opacity: 0;
      filter: blur(22px);
      animation: none !important;
      transition: opacity 1.1s ease, filter 1.1s ease;
    }

    .pxm-manifesto--gated.pxm-manifesto--revealed {
      visibility: visible;
      opacity: 1;
      filter: blur(0);
    }
    .pxm-needs {
      --pxm-needs-bg: #ffffff;
      --pxm-needs-text: #0e0e0e;
      --pxm-needs-mask-bg: #D4D4D4;
      background: var(--pxm-needs-bg);
      color: var(--pxm-needs-text);
      width: 100%;
      padding: clamp(2.75rem, 4.8vw, 4.4rem) clamp(1rem, 2.2vw, 2.5rem) clamp(4.2rem, 9vw, 10rem);
      position: relative;
      z-index: 1;
      font-family: 'Google Sans Flex', sans-serif;
    }

    .pxm-needs__inner {
      width: 100%;
      max-width: min(100%, 1700px);
      margin: 0 auto;
    }

    .pxm-needs__grid {
      display: flex;
      flex-wrap: wrap;
      column-gap: clamp(1rem, 2vw, 2.5rem);
      row-gap: clamp(1.4rem, 2.8vw, 2.75rem);
      align-items: flex-start;
    }

    .pxm-needs__headline-wrap {
      flex: 1 1 100%;
      max-width: 100%;
      margin-bottom: clamp(0.2rem, 0.7vw, 0.8rem);
    }

    .pxm-needs__highlight {
      position: relative;
      width: 100%;
    }

    .pxm-needs__headline {
      margin: 0;
      font-family: 'Google Sans Flex', sans-serif;
      font-size: clamp(2rem, 2.08vw + 1.38rem, 3.25rem);
      font-weight: 500;
      line-height: 1.04;
      letter-spacing: -0.04em;
      color: #D4D4D4;
    }

    .pxm-needs__headline-line {
      --pxm-needs-line-fill: 0%;
      display: block;
      width: fit-content;
      max-width: 100%;
      color: transparent;
      background-image: linear-gradient(
        90deg,
        #000000 0%,
        #000000 var(--pxm-needs-line-fill),
        #D4D4D4 var(--pxm-needs-line-fill),
        #D4D4D4 100%
      );
      background-clip: text;
      -webkit-background-clip: text;
    }

    .pxm-needs__headline-word {
      display: inline-block;
    }
.pxm-needs__masks {
      display: none;
    }

    .pxm-needs__mask {
      display: none;
    }

    .pxm-needs__kicker-wrap {
      flex: 1 1 min(100%, 30rem);
      max-width: 38rem;
      margin-bottom: 0;
    }

    .pxm-needs__kicker {
      margin: 0;
      font-family: 'Google Sans Flex', sans-serif;
      font-size: clamp(0.84rem, 0.36vw + 0.77rem, 1rem);
      font-weight: 600;
      line-height: 1.1;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #0f0f0f;
    }

    .pxm-needs__support-wrap {
      flex: 1 1 min(100%, 24rem);
      max-width: 31rem;
    }

    .pxm-needs__support {
      margin: 0;
      font-family: 'Google Sans Flex', sans-serif;
      font-size: clamp(1.13rem, 0.63vw + 0.94rem, 1.5rem);
      font-weight: 500;
      line-height: 1.16;
      letter-spacing: -0.02em;
      color: #0f0f0f;
    }

    .pxm-services-grid {
      --pxm-services-line: rgba(0, 0, 0, 0.08);
      --pxm-services-card: #f0f0ef;
      background: #ffffff;
      color: #000000;
      width: 100%;
      margin: 0;
      padding: 0 clamp(1.5rem, 3.6vw, 2.75rem) clamp(4rem, 7vw, 7.5rem);
      font-family: 'Google Sans Flex', sans-serif;
    }

    .pxm-services-grid__inner {
      width: 100%;
      max-width: min(100%, 1700px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(12, minmax(0, 1fr));
      column-gap: clamp(1rem, 1.8vw, 2rem);
      row-gap: clamp(1.25rem, 2.4vw, 2.35rem);
    }

    .pxm-services-grid__separator {
      grid-column: 1 / -1;
      width: 100%;
      height: 1px;
      margin: 0;
      border: 0;
      background: var(--pxm-services-line);
    }

    .pxm-services-grid__headline {
      grid-column: 1 / span 8;
      margin: clamp(0.75rem, 1.5vw, 1.55rem) 0 clamp(7rem, 14vw, 14rem);
      max-width: 27ch;
      font-family: 'Google Sans Flex', sans-serif;
      font-size: clamp(2rem, 2.1vw, 3rem);
      font-weight: 400;
      line-height: 1.05;
      letter-spacing: -0.045em;
    }

    .pxm-services-grid__headline--primary {
      margin-bottom: 0;
      font-family: 'Google Sans Flex', sans-serif;
    }

    .pxm-services-grid__cta {
      grid-column: 9 / span 4;
      justify-self: end;
      align-self: start;
      width: clamp(14rem, 16.5vw, 21rem);
      min-height: clamp(2.55rem, 2.45vw, 3.1rem);
      margin-top: clamp(0.95rem, 1.7vw, 1.95rem);
      padding: 0.46rem 1.05rem 0.42rem 1.25rem;
      border: 0;
      border-radius: 5px;
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: clamp(1rem, 2vw, 2.2rem);
      text-decoration: none;
      background: #000000;
      color: #ffffff;
      font-family: 'Google Sans Flex', sans-serif;
      font-size: clamp(0.84rem, 0.45vw + 0.76rem, 1rem);
      font-weight: 600;
      line-height: 0.9;
      letter-spacing: -0.03em;
      word-spacing: 0.32em;
      text-transform: uppercase;
      white-space: normal;
      transition: opacity 0.2s ease;
    }

    .pxm-services-grid__cta[hidden] {
      display: none !important;
    }

    .pxm-services-grid__cta::after {
      content: "\25BA";
      flex: none;
      font-size: 0.72em;
      line-height: 1;
    }

    .pxm-services-grid__cta:hover,
    .pxm-services-grid__cta:focus-visible {
      opacity: 0.82;
    }

    @media (min-width: 769px) {
      .pxm-services-grid__headline,
      .pxm-services-grid__cta {
        grid-row: 2;
      }

      .pxm-services-grid__cards {
        grid-row: 3;
      }
    }

    .pxm-services-grid__cards {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 2px;
    }

    .pxm-offering-card {
      position: relative;
      min-height: clamp(22rem, 23vw, 28.75rem);
      padding: clamp(1.5rem, 1.8vw, 2rem);
      border-radius: 0.65rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: var(--pxm-services-card);
      color: #000000;
    }

    .pxm-offering-card__title {
      margin: 0;
      font-family: 'Google Sans Flex', sans-serif;
      font-size: clamp(1.25rem, 1.18vw, 1.55rem);
      font-weight: 400;
      line-height: 1;
      letter-spacing: -0.035em;
    }

    .pxm-offering-card__content {
      margin-top: auto;
      max-width: 100%;
      font-family: 'Google Sans Flex', sans-serif;
      font-size: clamp(0.9rem, 0.42vw + 0.74rem, 1.04rem);
      font-weight: 400;
      line-height: 1.38;
      letter-spacing: -0.02em;
      color: rgba(0, 0, 0, 0.66);
    }

    .pxm-offering-card__cta {
      margin-top: clamp(1.5rem, 2vw, 2.2rem);
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      color: rgba(0, 0, 0, 0.68);
      font-family: 'Google Sans Flex', sans-serif;
      font-size: clamp(0.78rem, 0.38vw + 0.7rem, 0.95rem);
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0;
      word-spacing: 0.32em;
      text-transform: uppercase;
    }

    .pxm-offering-card__icon {
      font-style: normal;
      line-height: 1;
      transform: translateY(-0.03em);
    }

    .pxm-offering-card__link {
      position: absolute;
      inset: 0;
      z-index: 1;
      border-radius: 0.2rem;
    }

    .pxm-offering-card:hover .pxm-offering-card__cta,
    .pxm-offering-card:focus-within .pxm-offering-card__cta {
      text-decoration: underline;
      text-underline-offset: 0.18em;
    }
    .work-title {
      margin: 0;
      font-size: clamp(3rem, 6vw, 6.2rem);
      line-height: 0.9;
      letter-spacing: -0.045em;
      font-weight: 700;
      max-width: 6.4ch;
    }

    .work-viewall {
      margin-top: clamp(0.2rem, 0.8vw, 0.55rem);
      font-size: clamp(1.2rem, 1.45vw, 2rem);
      text-decoration: none;
      color: var(--muted);
      font-weight: 600;
      line-height: 1;
    }

    .work-viewall:hover,
    .work-viewall:focus-visible {
      color: var(--ink);
    }

    .industry-wrap {
      justify-self: end;
      display: grid;
      grid-template-columns: auto auto;
      gap: clamp(0.6rem, 1.6vw, 1.6rem);
      align-items: start;
    }

    .industry-label {
      margin: clamp(0.1rem, 0.6vw, 0.4rem) 0 0;
      font-size: clamp(1.2rem, 1.55vw, 2rem);
      font-weight: 700;
      line-height: 1;
      letter-spacing: -0.02em;
    }

    .industry-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 0.05rem;
    }

    .industry-list li {
      font-size: clamp(1.7rem, 2.4vw, 3rem);
      line-height: 0.92;
      letter-spacing: -0.04em;
      font-weight: 700;
      color: var(--muted);
    }

    .work-stage {
      margin-top: clamp(2.2rem, 5vw, 4rem);
      border-top: 1px solid rgba(8, 8, 8, 0.13);
      padding-top: clamp(2rem, 4.4vw, 3.3rem);
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
    }

    #pxm-content-transition {
      position: relative;
      display: grid;
      place-items: center;
      flex-direction: column;
      align-self: stretch;
      justify-self: stretch;
      margin: 0;
      width: 100vw;
      min-height: clamp(15rem, 30vw, 24rem);
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      overflow: hidden;
      z-index: 0;
      --bg: 255, 255, 255;
      --alpha-bg: 0;
      background-color: rgba(var(--bg), var(--alpha-bg));
    }

    #pxm-content-transition > .pxm-content-transition__container,
    #pxm-content-transition > .pxm-manifesto {
      grid-area: 1 / 1;
    }

    #pxm-content-transition .pxm-content-transition__bg-layers,
    #pxm-content-transition .pxm-content-transition__underlay,
    #pxm-content-transition .pxm-content-transition__bg-media {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    #pxm-content-transition .pxm-content-transition__underlay {
      background: #faf9f7;
    }

    #pxm-content-transition .pxm-content-transition__container {
      width: 100%;
      max-width: none;
      margin: 0 auto;
      min-height: inherit;
      padding: 0;
      position: relative;
      z-index: 1;
    }

    #pxm-content-transition > .pxm-content-transition__container {
      align-self: stretch;
      justify-self: stretch;
    }

    #pxm-content-transition > .pxm-manifesto {
      position: relative;
      z-index: 2;
      width: min(100%, 130rem);
      padding: 0;
      align-self: center;
      justify-self: center;
    }

    #pxm-content-transition .pxm-content-transition__gradient {
      width: 100%;
      min-height: inherit;
      background: transparent;
    }

    #pxm-content-transition .pxm-content-transition__surface {
      width: 100%;
      min-height: inherit;
      background:
        linear-gradient(180deg, #faf9f7 0%, rgba(250, 249, 247, 0.92) 12%, rgba(250, 249, 247, 0) 34%),
        radial-gradient(68% 48% at 50% 100%, #faf9f7 0%, rgba(250, 249, 247, 0) 100%),
        linear-gradient(180deg, rgba(251, 250, 248, 0) 0%, rgba(255, 224, 224, 0.28) 18.28%, #ff4d4d 43.58%, #e63636 55.6%, rgba(255, 77, 77, 0) 80.7%),
        linear-gradient(180deg, rgba(250, 249, 247, 0) 2.46%, #ffe3e3 23.04%, #ff4d4d 54.09%, rgba(255, 77, 77, 0) 93.84%);
      filter: blur(10px);
      will-change: mask-size, opacity, filter;
      opacity: 0;
      mask-image: radial-gradient(ellipse 50% 60% at center, #000 35%, rgba(0, 0, 0, 0.85) 55%, rgba(0, 0, 0, 0.4) 75%, rgba(0, 0, 0, 0) 100%);
      -webkit-mask-image: radial-gradient(ellipse 50% 60% at center, #000 35%, rgba(0, 0, 0, 0.85) 55%, rgba(0, 0, 0, 0.4) 75%, rgba(0, 0, 0, 0) 100%);
      mask-size: 6% 24%;
      -webkit-mask-size: 6% 24%;
      mask-position: center;
      -webkit-mask-position: center;
      mask-repeat: no-repeat;
      -webkit-mask-repeat: no-repeat;
      animation: pxmContentTransitionBloom 5.5s cubic-bezier(0.22, 1, 0.36, 1) 1.6s forwards;
    }

    @keyframes pxmContentTransitionBloom {
      0% {
        opacity: 0;
        mask-size: 6% 24%;
        -webkit-mask-size: 6% 24%;
        filter: blur(18px);
      }
      22% {
        opacity: 1;
      }
      73% {
        opacity: 1;
        mask-size: 360% 320%;
        -webkit-mask-size: 360% 320%;
        filter: blur(8px);
      }
      95% {
        opacity: 1;
        mask-size: 360% 1%;
        -webkit-mask-size: 360% 1%;
        filter: blur(14px);
      }
      100% {
        opacity: 0;
        mask-size: 360% 1%;
        -webkit-mask-size: 360% 1%;
        filter: blur(14px);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      #pxm-content-transition .pxm-content-transition__surface {
        animation: none;
        opacity: 1;
        mask-image: none;
        -webkit-mask-image: none;
        filter: blur(8px);
      }
    }

    .pxm-showcase-slider {
      position: relative;
      width: 100%;
      min-height: clamp(26rem, 46vw, 50rem);
      background: var(--surface);
      background-image: radial-gradient(circle at center, #dec2de 1.6px, transparent 1.6px);
      background-size: 146px 146px;
      overflow: hidden;
      padding: clamp(1.6rem, 3vw, 2.4rem) 0 clamp(2.8rem, 5.5vw, 4.2rem);
    }

    .pxm-showcase-slider__legend {
      width: min(100%, 43rem);
      margin: 0 auto;
      display: grid;
      grid-template-columns: auto minmax(5rem, 1fr) auto;
      align-items: center;
      column-gap: clamp(0.8rem, 2.4vw, 1.7rem);
      padding: 0 0.9rem;
    }

    .pxm-showcase-slider__line {
      height: 2px;
      background: #d7d3cf;
    }

    .pxm-showcase-slider__pill {
      margin: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: clamp(0.5rem, 0.9vw, 0.72rem) clamp(1.05rem, 1.8vw, 1.45rem);
      border-radius: 999px;
      font-size: clamp(0.95rem, 1.35vw, 1.35rem);
      font-weight: 500;
      letter-spacing: -0.02em;
      color: #111;
      line-height: 1;
      white-space: nowrap;
    }

    .pxm-showcase-slider__pill--prompt {
      background: #d8d4cf;
    }

    .pxm-showcase-slider__pill--application {
      background: linear-gradient(90deg, #f7b75d 0%, #deb8ea 56%, #d8d5d0 100%);
      border-radius: 3px;
    }

    .pxm-showcase-slider__viewport {
      width: 100%;
      margin-top: clamp(2.2rem, 4.8vw, 4.2rem);
      overflow: hidden;
      pointer-events: none;
    }

    .pxm-showcase-slider__track {
      display: flex;
      width: 100%;
      animation: pxmSliderLoop 34s linear infinite;
      animation-delay: -8s;
      will-change: transform;
    }

    .pxm-showcase-slider__set {
      display: flex;
      align-items: stretch;
      gap: 0;
      flex: none;
    }

    .pxm-showcase-slider__card {
      height: clamp(14rem, 27vw, 30rem);
      border: 1px solid rgba(10, 10, 10, 0.16);
      border-radius: 0.8rem;
      overflow: hidden;
      background: #efefef;
      flex: none;
      position: relative;
      z-index: 1;
      transform-origin: center center;
      transform: scale(var(--pxm-card-scale, 1));
      will-change: transform;
    }

    .pxm-showcase-slider__card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      user-select: none;
      pointer-events: none;
    }

    .pxm-showcase-slider__card--streaming {
      width: clamp(13rem, 18.5vw, 22rem);
    }

    .pxm-showcase-slider__card--finance {
      width: clamp(17rem, 28.5vw, 34rem);
    }

    .pxm-showcase-slider__card--mountain {
      width: clamp(19rem, 31vw, 37rem);
      border: 4px solid #9c2016;
      border-radius: 0.72rem;
      z-index: 2;
    }

    .pxm-showcase-slider__card--meal {
      width: clamp(18rem, 27.5vw, 33rem);
    }

    .pxm-showcase-slider__card--learning {
      width: clamp(15rem, 21.5vw, 26rem);
    }

    .pxm-showcase-slider__card--learning img {
      object-position: left center;
    }

    @keyframes pxmSliderLoop {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-50%);
      }
    }
    @media (max-width: 1180px) and (min-width: 769px) {
      .pxm-services-grid__headline {
        grid-column: 1 / span 9;
        margin-bottom: clamp(7rem, 11vw, 9rem);
      }

      .pxm-services-grid__headline--primary {
        margin-bottom: 0;
      }

      .pxm-services-grid__cta {
        grid-column: 10 / span 3;
      }

      .pxm-services-grid__cards {
        grid-template-columns: repeat(6, minmax(0, 1fr));
      }

      .pxm-offering-card {
        grid-column: span 2;
        min-height: clamp(20rem, 31vw, 24rem);
      }

      .pxm-offering-card:nth-child(4),
      .pxm-offering-card:nth-child(5) {
        grid-column: span 3;
      }
    }

        @media (max-width: 1024px) and (min-width: 769px) {
      .pxm-needs {
        padding: 2.5rem 1rem 7.5rem;
      }

      .pxm-needs__headline {
        font-size: clamp(1.85rem, 2.15vw, 2.5rem);
        line-height: 1.06;
      }

      .pxm-needs__kicker-wrap {
        flex-basis: 58%;
      }

      .pxm-needs__support-wrap {
        flex-basis: 40%;
      }

      .pxm-services-grid {
        padding: 0 1.7rem 5.5rem;
      }

      .pxm-services-grid__headline {
        grid-column: 1 / span 9;
        font-size: clamp(1.85rem, 3vw, 2.25rem);
      }

      .pxm-services-grid__cta {
        grid-column: 10 / span 3;
      }

      .pxm-offering-card {
        padding: 1.35rem;
      }
    }

      
    @media (max-width: 980px) {
      .pxm-hero {
        min-height: auto;
        padding-top: calc(var(--pxm-hero-header-space) + 2.2rem);
      }

    .pxm-hero__quote {
      margin: clamp(0.8rem, 1.8vw, 1.5rem) auto clamp(1rem, 2.2vw, 1.8rem);
      max-width: 20ch;
      text-align: center;
      font-family: 'Nebulica', sans-serif;
      text-transform: capitalize;
      font-size: clamp(1.8rem, 4.2vw, 3.4rem);
      line-height: 1;
      letter-spacing: -0.04em;
      font-weight: 500;
      color: #090909;
    }

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

    .pxm-hero-filters {
        width: min(100%, 48rem);
      }
      .quote-wrap {
        justify-content: flex-start;
      }

      .quote-copy {
        width: 100%;
      }


      .work-viewall {
        margin-top: 0;
      }

      .industry-wrap {
        justify-self: start;
      }

      .pxm-showcase-slider {
        background-size: 112px 112px;
      }

      .pxm-showcase-slider__legend {
        width: min(100%, 35rem);
      }

      .pxm-showcase-slider__pill {
        font-size: clamp(1.05rem, 2.7vw, 1.5rem);
      }

      .pxm-showcase-slider__card {
        height: clamp(13rem, 35vw, 21rem);
      }

      .pxm-showcase-slider__card--streaming {
        width: clamp(9rem, 22vw, 12rem);
      }

      .pxm-showcase-slider__card--finance {
        width: clamp(12rem, 32vw, 19rem);
      }

      .pxm-showcase-slider__card--mountain {
        width: clamp(13rem, 34vw, 20rem);
      }

      .pxm-showcase-slider__card--meal {
        width: clamp(12rem, 30vw, 18rem);
      }

      .pxm-showcase-slider__card--learning {
        width: clamp(10rem, 24vw, 14rem);
      }
    }

    @media (max-width: 768px) {
      .home-page {
        padding-top: 0;
      }

      .pxm-hero {
        --pxm-hero-grid-size: 2.8rem;
        --pxm-hero-header-space: 4.9rem;
        min-height: auto;
        padding: calc(var(--pxm-hero-header-space) + 1.45rem) 0.9rem 2.4rem;
      }

      .pxm-hero::after {
        right: -7rem;
        top: 22%;
        width: 16rem;
      }

      .pxm-hero__ambient {
        left: auto;
        right: -3rem;
        bottom: 12%;
        width: 11rem;
      }

    .pxm-hero__quote {
      margin: clamp(0.8rem, 1.8vw, 1.5rem) auto clamp(1rem, 2.2vw, 1.8rem);
      max-width: calc(100vw - 2rem);
      text-align: center;
      font-family: 'Nebulica', sans-serif;
      text-transform: capitalize;
      font-size: clamp(1.25rem, 6.3vw, 1.8rem);
      line-height: 1;
      letter-spacing: -0.04em;
      font-weight: 500;
      color: #090909;
    }

    .pxm-hero__quote-layer {
      white-space: nowrap;
    }

    .pxm-hero__quote-mobile-break {
      display: none;
    }

    .pxm-hero__quote-trusted-break {
      display: block;
    }

    .pxm-hero__quote-word-loop {
      display: inline-block;
      width: auto;
      margin: 0;
      vertical-align: baseline;
    }

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

    .pxm-hero-filters {
        width: 100%;
        margin-top: 0.9rem;
      }

      .pxm-hero-filters__panel {
        --pxm-hero-filter-pad-x: 0.85rem;
        width: 100%;
        border-radius: 0.5rem;
        padding: 0.65rem 0.85rem;
      }

      .pxm-hero-filters__sentence {
        flex-direction: column;
        font-size: clamp(0.94rem, 4.2vw, 1.1rem);
        row-gap: 0.1rem;
      }

      .pxm-hero-filters__sentence-line {
        gap: 0.3rem;
      }

      .pxm-hero-filters__picker-window,
      .pxm-hero-filters__picker-window--sector {
        min-width: 0;
      }

      .quote-text {
        font-size: clamp(1.6rem, 7.2vw, 2.15rem);
        line-height: 1.14;
      }
    .quote-author {
        margin-top: 1rem;
        font-size: clamp(0.92rem, 4vw, 1.15rem);
      }
      .pxm-manifesto {
        padding: 0.22rem 0.5rem 0.2rem;
      }

      .pxm-manifesto__inner {
        overflow: hidden;
      }

      .pxm-manifesto__ticker {
        row-gap: 0.45rem;
      }

      .pxm-manifesto__row--top {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0.45rem 0.7rem;
      }

      .pxm-manifesto__row--bottom {
        display: none;
      }

      .pxm-manifesto__word {
        font-size: 0.64rem;
        white-space: nowrap;
      }

      .pxm-manifesto__row--top .pxm-manifesto__word {
        font-size: 0.62rem;
      }
      .pxm-needs {
        padding: 2.8rem 0.9rem 3.4rem;
      }

      .pxm-needs__grid {
        row-gap: 1.45rem;
      }

      .pxm-needs__headline {
        font-size: clamp(1.6rem, 7.4vw, 2.3rem);
        line-height: 1.08;
        letter-spacing: -0.032em;
      }

      .pxm-needs__kicker-wrap,
      .pxm-needs__support-wrap {
        flex-basis: 100%;
        max-width: 100%;
      }

      .pxm-needs__kicker {
        font-size: clamp(0.78rem, 3.8vw, 0.94rem);
      }

      .pxm-needs__support {
        font-size: clamp(1rem, 4.6vw, 1.24rem);
        line-height: 1.2;
      }

      .pxm-services-grid {
        padding-top: 0;
        padding-bottom: 3.4rem;
      }

      .pxm-services-grid__inner {
        grid-template-columns: 1fr;
        row-gap: 0;
      }

      .pxm-services-grid__headline,
      .pxm-services-grid__cta,
      .pxm-services-grid__cards {
        grid-column: 1;
      }

      .pxm-services-grid__separator {
        order: 1;
      }

      .pxm-services-grid__headline {
        order: 2;
        max-width: 100%;
        margin: 1.45rem 0 9.8rem;
        font-size: clamp(2rem, 8.4vw, 3.2rem);
        line-height: 1.03;
      }

      .pxm-services-grid__headline--primary {
        margin-bottom: 0;
        margin-top: 0;
        margin-bottom: 9.8rem;
      }

      .pxm-services-grid__cta {
        order: 4;
        justify-self: start;
        width: 100%;
        min-height: 3.55rem;
        margin-top: 4.15rem;
        padding: 0.5rem 1.55rem;
        font-size: clamp(1rem, 4.4vw, 1.32rem);
      }

      .pxm-services-grid__cards {
        order: 3;
        grid-template-columns: 1fr;
        gap: 4px;
      }

      .pxm-offering-card {
        grid-column: 1;
        min-height: 0;
        padding: clamp(1.4rem, 5.5vw, 1.9rem);
        border-radius: 1rem;
        justify-content: flex-start;
        gap: clamp(3.25rem, 11vw, 5rem);
      }

      .pxm-offering-card__title {
        font-size: clamp(1.45rem, 5.8vw, 1.9rem);
      }

      .pxm-offering-card__content {
        margin-top: 0;
        font-size: clamp(1rem, 3.6vw, 1.18rem);
        line-height: 1.28;
      }

      .pxm-offering-card__cta {
        margin-top: clamp(1.7rem, 7vw, 2.5rem);
        font-size: clamp(1rem, 4vw, 1.25rem);
      }
      .work-title {
        font-size: clamp(2.7rem, 15vw, 4rem);
        max-width: 7ch;
      }

      .work-viewall {
        font-size: clamp(1.05rem, 4.5vw, 1.4rem);
      }

      #pxm-content-transition .pxm-content-transition__container {
        min-height: clamp(12.2rem, 52vw, 15.2rem);
      }

      .industry-wrap {
        grid-template-columns: 1fr;
        gap: 0.45rem;
      }

      .industry-label {
        margin: 0;
        font-size: clamp(1.05rem, 5vw, 1.35rem);
      }

      .industry-list li {
        font-size: clamp(1.8rem, 10.2vw, 2.9rem);
      }

      .pxm-showcase-slider {
        min-height: auto;
        padding: 1.55rem 0 1.9rem;
        background-size: 74px 74px;
      }

      .pxm-showcase-slider__legend {
        width: min(100%, 21.2rem);
        column-gap: 0.6rem;
      }

      .pxm-showcase-slider__line {
        min-width: clamp(3.8rem, 30vw, 6.1rem);
      }

      .pxm-showcase-slider__pill {
        font-size: clamp(0.95rem, 4.2vw, 1.2rem);
        padding: 0.52rem 0.9rem;
      }

      .pxm-showcase-slider__viewport {
        margin-top: 1.25rem;
      }

      .pxm-showcase-slider__card {
        height: clamp(10.5rem, 56vw, 15rem);
      }

      .pxm-showcase-slider__card--streaming {
        width: 7.6rem;
      }

      .pxm-showcase-slider__card--finance {
        width: 10.2rem;
      }

      .pxm-showcase-slider__card--mountain {
        width: 11rem;
      }

      .pxm-showcase-slider__card--meal {
        width: 10rem;
      }

      .pxm-showcase-slider__card--learning {
        width: 8.6rem;
      }
    }

    @media (max-width: 486px) {
      .pxm-hero-filters__panel {
        width: 90%;
      }

      .pxm-services-grid__headline {
        font-size: 5.5vw;
      }

      .pxm-offering-card__content {
        font-size: clamp(0.95rem, 3.7vw, 1.06rem);
      }
    }

    @media (min-width: 1181px) {
      .pxm-services-grid__headline {
        font-size: 1.86vw;
      }

      .pxm-offering-card__content {
        font-size: clamp(0.92rem, 0.78vw, 1.05rem);
      }
    }

    @media (max-width: 1180px) and (min-width: 1025px) {
      .pxm-services-grid__headline {
        font-size: 2.61vw;
      }

      .pxm-offering-card__content {
        font-size: clamp(0.96rem, 1.32vw, 1.08rem);
      }
    }

    @media (max-width: 1024px) and (min-width: 769px) {
      .pxm-services-grid__headline {
        font-size: 3.48vw;
      }

      .pxm-offering-card__content {
        font-size: clamp(0.96rem, 1.5vw, 1.08rem);
      }
    }

    @media (max-width: 768px) {
      .latest-projects-header h3 {
        font-size: 2rem;
      }

      .work-grid {
        gap: 3rem;
      }

      .all-projects-link {
        margin-top: 2.5rem;
      }

      .work-info {
        grid-template-columns: minmax(0, 46%) minmax(0, 54%);
        grid-template-areas:
          "title tags"
          "description description";
        column-gap: 0.75rem;
        row-gap: 0.6rem;
      }

      .work-categories {
        justify-content: flex-end;
        align-self: start;
        min-width: 0;
        text-align: right;
      }

      .decade-text {
        flex: auto;
        width: 100%;
        margin-bottom: 1rem;
      }

      .decade-text h3 {
        font-size: 2rem;
      }

      #pxm-content-transition .pxm-content-transition__surface {
        background: linear-gradient(180deg, #FAF9F7 0%, rgba(250, 249, 247, 0.92) 14%, rgba(250, 249, 247, 0) 38%), radial-gradient(62.52% 42.11% at 50% 100%, #FAF9F7 0%, rgba(250, 249, 247, 0) 100%), linear-gradient(180deg, rgba(251, 250, 248, 0) 0%, rgba(255, 224, 224, 0.28) 18.28%, #FF4D4D 43.58%, #E63636 55.6%, rgba(255, 77, 77, 0) 80.7%), linear-gradient(180deg, rgba(250, 249, 247, 0) 2.46%, #FFE3E3 23.04%, #FF4D4D 54.09%, rgba(255, 77, 77, 0) 93.84%);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .pxm-hero::before,
      .pxm-hero::after,
      .pxm-hero__ambient {
        animation: none;
      }

      .pxm-hero::before {
        opacity: 1;
        transform: none;
      }

      .pxm-hero__content {
        transition: none;
      }

      .pxm-hero__quote-layer {
        animation: none;
        opacity: 0;
      }

      .pxm-hero__quote-layer--thin {
        font-weight: 100;
        opacity: 1;
      }

      .pxm-hero__quote-intro-word {
        animation: none;
        opacity: 1;
        transform: none;
        clip-path: none;
        filter: none;
      }

      .pxm-hero__quote-letter {
        opacity: 1;
        transform: none;
        color: inherit;
        transition: none;
      }

      .pxm-hero-filters__panel,
      .pxm-hero-filters__panel::before,
      .pxm-hero-filters__panel::after,
      .pxm-hero__subtext,
      .pxm-hero-filters__sentence {
        animation: none;
      }

      .pxm-hero-filters__panel {
        opacity: 1;
        transform: none;
      }

      .pxm-hero-filters__sentence {
        max-width: none;
        opacity: 1;
        transform: none;
      }

      .pxm-hero__subtext {
        opacity: 1;
        filter: none;
      }
    }


    @media (max-width: 767px) {
      main > .page-inner,
      main > .contact-inner {
        padding-left: 0 !important;
        padding-right: 0 !important;
      }

      main section {
        padding-left: 0.65rem !important;
        padding-right: 0.65rem !important;
        box-sizing: border-box;
      }

      main section#pxm-content-transition {
        padding-left: 0 !important;
        padding-right: 0 !important;
      }

      main #pxm-content-transition > .pxm-manifesto {
        padding: 0 !important;
      }
    }

    #pxm-content-transition {
      display: none !important;
    }
