:root {
  --agency-bg: #06080c;
  --agency-graphite: #0b0e13;
  --agency-panel: #0e1219;
  --agency-panel-soft: #111721;
  --agency-text: #f4f6f8;
  --agency-muted: #a4aab4;
  --agency-dim: #707783;
  --agency-line: rgba(255, 255, 255, 0.11);
  --agency-line-soft: rgba(255, 255, 255, 0.065);
  --agency-blue: #2f8fff;
  --agency-cyan: #62c7f5;
  --agency-shell: min(1600px, calc(100vw - 96px));
  --agency-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body.plm-agency-body {
  margin: 0;
  overflow-x: clip;
  background: var(--agency-bg);
  color: var(--agency-text);
  font-family: "Satoshi", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

.plm-agency-body *,
.plm-agency-body *::before,
.plm-agency-body *::after {
  box-sizing: border-box;
}

.plm-agency-body img {
  display: block;
  max-width: 100%;
}

.plm-agency-body a { color: inherit; }

.plm-agency-header.public-site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(6, 8, 12, 0.78);
  box-shadow: none;
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.plm-agency-header .public-header-inner {
  width: var(--agency-shell);
  max-width: none;
}

.plm-agency-header .public-primary-nav {
  gap: 3px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.plm-agency-header .public-primary-nav > a {
  border-radius: 4px;
  color: #bdc3cc;
}

.plm-agency-header .public-primary-nav > a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
}

.plm-agency-header .public-start-project {
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  background: #f2f4f6;
  color: #080b10;
  box-shadow: none;
}

.plm-agency-header .public-start-project:hover {
  border-color: #fff;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(47, 143, 255, 0.2), 0 10px 30px rgba(0, 0, 0, 0.2);
}

.plm-agency {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: linear-gradient(180deg, rgba(22, 34, 50, 0.13), transparent 18%), var(--agency-bg);
}

.plm-agency-shell {
  width: var(--agency-shell);
  margin-inline: auto;
}

.plm-agency-atmosphere {
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 1500px;
  overflow: hidden;
  pointer-events: none;
}

.plm-agency-atmosphere span {
  position: absolute;
  display: block;
  width: 82vw;
  height: 44vw;
  opacity: 0.2;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.plm-agency-atmosphere span:first-child {
  top: -31vw;
  right: -24vw;
  background: radial-gradient(ellipse at center, rgba(52, 145, 255, 0.5), rgba(20, 79, 150, 0.12) 42%, transparent 72%);
  animation: agency-light-one 34s var(--agency-ease) infinite alternate;
}

.plm-agency-atmosphere span:last-child {
  top: 30vw;
  left: -54vw;
  opacity: 0.12;
  background: radial-gradient(ellipse at center, rgba(61, 194, 239, 0.36), rgba(28, 70, 122, 0.08) 48%, transparent 72%);
  animation: agency-light-two 40s var(--agency-ease) infinite alternate;
}

.plm-agency.is-page-hidden .plm-agency-atmosphere span { animation-play-state: paused; }

@keyframes agency-light-one {
  to { transform: translate3d(-5vw, 4vw, 0); }
}

@keyframes agency-light-two {
  to { transform: translate3d(8vw, -3vw, 0); }
}

.plm-design-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  padding: clamp(88px, 9vh, 132px) 0 clamp(96px, 11vh, 150px);
  border-bottom: 1px solid var(--agency-line-soft);
}

.plm-design-hero-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(620px, 1.45fr);
  gap: clamp(60px, 6.5vw, 130px);
  align-items: center;
}

.plm-design-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 710px;
}

.plm-hero-eyebrow {
  margin: 0 0 24px;
  color: #b7bec8;
  font-size: 15px;
  font-weight: 620;
  letter-spacing: 0.02em;
}

.plm-design-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(58px, 5.4vw, 104px);
  font-weight: 520;
  line-height: 0.95;
  letter-spacing: -0.062em;
  text-wrap: balance;
}

.plm-design-hero-copy > p:last-of-type {
  max-width: 600px;
  margin: 32px 0 0;
  color: var(--agency-muted);
  font-size: clamp(18px, 1.28vw, 22px);
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.plm-agency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.plm-agency-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.plm-agency-button-primary {
  border-color: rgba(255, 255, 255, 0.88);
  background: #f3f5f7;
  color: #070a0f;
}

.plm-agency-body .plm-agency-button-primary { color: #070a0f; }

.plm-agency-button-primary:hover {
  border-color: #fff;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(47, 143, 255, 0.25), 0 14px 34px rgba(0, 0, 0, 0.25);
}

.plm-agency-button-secondary {
  border-color: var(--agency-line);
  background: rgba(255, 255, 255, 0.035);
  color: #e7eaf0;
}

.plm-agency-button-secondary:hover {
  border-color: rgba(72, 159, 255, 0.48);
  background: rgba(47, 143, 255, 0.08);
  color: #fff;
}

.plm-hero-work {
  position: relative;
  width: min(100%, 980px);
  margin: 0;
  justify-self: end;
  filter: drop-shadow(0 38px 80px rgba(0, 0, 0, 0.42));
}

.plm-hero-work::before {
  position: absolute;
  z-index: -1;
  inset: -14% -10% -12%;
  content: "";
  background: radial-gradient(ellipse at 54% 42%, rgba(47, 143, 255, 0.24), transparent 62%);
}

.plm-hero-work-desktop {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: #111;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5), inset 0 1px rgba(255, 255, 255, 0.07);
  transition: border-color 150ms ease, filter 150ms ease;
}

.plm-hero-work-desktop:hover {
  border-color: rgba(76, 163, 255, 0.52);
  filter: brightness(1.035);
}

.plm-hero-work-desktop img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.plm-hero-work-mobile {
  position: absolute;
  right: -5%;
  bottom: 7%;
  display: block;
  width: clamp(118px, 15vw, 210px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background: #10141a;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.58);
}

.plm-hero-work-mobile img {
  width: 100%;
  height: auto;
  aspect-ratio: 430 / 820;
}

.plm-hero-work figcaption {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding: 16px 3px 0;
  color: var(--agency-dim);
  font-size: 13px;
}

.plm-hero-work figcaption strong {
  color: #e4e8ed;
  font-size: 15px;
  font-weight: 620;
}

.plm-hero-work figcaption a {
  color: #c5cad2;
  text-decoration: none;
  transition: color 150ms ease;
}

.plm-hero-work figcaption a:hover { color: #fff; }

.plm-design-hero-copy > *,
.plm-hero-work {
  animation: hero-settle 600ms var(--agency-ease) both;
}

.plm-design-hero-copy > :nth-child(2) { animation-delay: 45ms; }
.plm-design-hero-copy > :nth-child(3) { animation-delay: 90ms; }
.plm-design-hero-copy > :nth-child(4) { animation-delay: 125ms; }
.plm-hero-work { animation-delay: 105ms; }

@keyframes hero-settle {
  from { opacity: 0; transform: translate3d(0, 9px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.plm-work-section,
.plm-viewpoint,
.plm-case-study,
.plm-design-process,
.plm-after-launch,
.plm-studio-section {
  position: relative;
  padding: clamp(112px, 12vw, 220px) 0;
}

.plm-section-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(52px, 6vw, 94px);
}

.plm-section-intro h2,
.plm-viewpoint h2,
.plm-case-heading h2,
.plm-after-launch h2,
.plm-studio-statement h2,
.plm-final-cta h2 {
  margin: 0;
  font-size: clamp(50px, 5.5vw, 94px);
  font-weight: 520;
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.plm-section-intro p {
  max-width: 470px;
  margin: 0 0 8px;
  color: var(--agency-muted);
  font-size: 18px;
  line-height: 1.5;
}

.plm-work-section { border-bottom: 1px solid var(--agency-line-soft); }

.plm-stage {
  --stage-light: 225 154 46;
  --stage-secondary: 97 162 94;
  position: relative;
  padding: clamp(26px, 3vw, 48px);
  overflow: hidden;
  border: 1px solid var(--agency-line);
  border-radius: 9px;
  background: linear-gradient(150deg, rgba(var(--stage-light), 0.055), rgba(255, 255, 255, 0.018) 38%, rgba(0, 0, 0, 0.08)), #0a0d12;
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.32), inset 0 1px rgba(255, 255, 255, 0.035);
  transition: background-color 340ms ease;
}

.plm-stage-ambient {
  position: absolute;
  inset: -25% -15% 14%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 22% 24%, rgba(var(--stage-light), 0.21), transparent 42%),
    radial-gradient(ellipse at 84% 18%, rgba(var(--stage-secondary), 0.12), transparent 38%);
  opacity: 0.72;
  transition: background 340ms ease, opacity 340ms ease;
}

.plm-stage-projects {
  position: relative;
  z-index: 1;
  display: grid;
}

.plm-stage-project {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.31fr);
  grid-area: 1 / 1;
  gap: clamp(42px, 4vw, 74px);
  align-items: end;
}

.is-stage-ready .plm-stage-project {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(10px, 0, 0);
  transition: opacity 320ms var(--agency-ease), transform 320ms var(--agency-ease), visibility 0s linear 320ms;
}

.is-stage-ready .plm-stage-project.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

.plm-stage-visuals {
  position: relative;
  padding-right: clamp(42px, 6vw, 90px);
  padding-bottom: clamp(22px, 3vw, 50px);
}

.plm-stage-desktop {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  background: #111;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.44);
  transition: border-color 150ms ease, filter 150ms ease;
}

.plm-stage-desktop:hover {
  border-color: rgba(var(--stage-light), 0.66);
  filter: brightness(1.025);
}

.plm-stage-desktop img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.plm-stage-mobile {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: clamp(112px, 13vw, 190px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: #111;
  box-shadow: 0 28px 66px rgba(0, 0, 0, 0.58);
}

.plm-stage-mobile img {
  width: 100%;
  height: auto;
  aspect-ratio: 430 / 820;
}

.plm-stage-info { padding-bottom: clamp(32px, 4vw, 64px); }

.plm-stage-info > p:first-child {
  margin: 0 0 18px;
  color: rgba(var(--stage-light), 0.95);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.plm-stage-info h3 {
  margin: 0;
  font-size: clamp(34px, 3.4vw, 58px);
  font-weight: 540;
  line-height: 1;
  letter-spacing: -0.05em;
}

.plm-stage-info h3 + p {
  margin: 22px 0 0;
  color: #afb5bf;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.55;
}

.plm-stage-info a,
.plm-case-notes a,
.plm-after-launch-links a,
.plm-studio-copy > a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 28px;
  color: #eff2f6;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color 150ms ease;
}

.plm-stage-info a:hover,
.plm-case-notes a:hover,
.plm-after-launch-links a:hover,
.plm-studio-copy > a:hover {
  color: rgb(var(--stage-light));
}

.plm-stage-controls {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding-top: clamp(24px, 3vw, 40px);
  border-top: 1px solid rgba(255, 255, 255, 0.085);
}

.plm-stage-project-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.plm-stage-project-tabs button {
  min-height: 52px;
  padding: 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #777e89;
  font: inherit;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease;
}

.plm-stage-project-tabs button span {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
}

.plm-stage-project-tabs button:hover {
  color: #dfe3e9;
  border-color: rgba(255, 255, 255, 0.24);
}

.plm-stage-project-tabs button[aria-selected="true"] {
  color: #fff;
  border-color: rgba(var(--stage-light), 0.9);
}

.plm-stage-arrows {
  display: flex;
  gap: 12px;
  align-items: center;
}

.plm-stage-arrows > span {
  min-width: 64px;
  color: #717883;
  font-size: 12px;
  text-align: center;
}

.plm-stage-arrows b {
  color: #e3e6eb;
  font-weight: 650;
}

.plm-stage-arrows button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  color: #e8ebef;
  font: inherit;
  font-size: 18px;
  cursor: pointer;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.plm-stage-arrows button:hover {
  border-color: rgba(var(--stage-light), 0.62);
  background: rgba(var(--stage-light), 0.085);
  color: #fff;
}

.plm-viewpoint { background: #080b10; }

.plm-viewpoint-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.5fr);
  gap: 90px;
  align-items: end;
  margin-bottom: clamp(90px, 10vw, 170px);
}

.plm-viewpoint-lead h2 { max-width: 1040px; }

.plm-viewpoint-lead p {
  margin: 0 0 10px;
  color: var(--agency-muted);
  font-size: 18px;
  line-height: 1.55;
}

.plm-principles {
  display: grid;
  gap: 0;
}

.plm-principle {
  display: grid;
  grid-template-columns: 58px minmax(270px, 0.6fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
  min-height: 290px;
  padding: 42px 0;
  border-top: 1px solid var(--agency-line);
}

.plm-principle:last-child { border-bottom: 1px solid var(--agency-line); }

.plm-principle > span {
  align-self: start;
  color: #59616d;
  font-size: 12px;
}

.plm-principle h3 {
  margin: 0;
  font-size: clamp(34px, 3.3vw, 58px);
  font-weight: 520;
  line-height: 1;
  letter-spacing: -0.045em;
}

.plm-principle p {
  max-width: 440px;
  margin: 18px 0 0;
  color: var(--agency-muted);
  font-size: 18px;
  line-height: 1.55;
}

.plm-principle figure {
  height: 218px;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.plm-principle figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plm-principle-recognizable figure img { object-position: center 34%; }
.plm-principle-clear figure { margin-left: 9%; }
.plm-principle-clear figure img { object-position: center 26%; }

.plm-principle-considered figure {
  width: min(310px, 72%);
  height: 310px;
  margin-left: auto;
}

.plm-principle-considered figure img { object-position: center top; }

.plm-case-study { background: #0b0e13; }

.plm-case-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1.15fr);
  gap: 60px;
  align-items: start;
  margin-bottom: clamp(60px, 8vw, 126px);
}

.plm-case-heading > p {
  margin: 12px 0 0;
  color: #858c97;
  font-size: 14px;
}

.plm-case-heading h2 { max-width: 1100px; }

.plm-case-visual {
  position: relative;
  max-width: 1380px;
  margin-left: auto;
  padding-right: clamp(42px, 7vw, 112px);
  padding-bottom: clamp(42px, 6vw, 96px);
}

.plm-case-visual::before {
  position: absolute;
  z-index: 0;
  inset: -13% -7% 0 4%;
  content: "";
  background: radial-gradient(ellipse at center, rgba(195, 125, 29, 0.13), transparent 63%);
  pointer-events: none;
}

.plm-case-visual figure {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  background: #111;
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.45);
}

.plm-case-desktop {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 5px;
}

.plm-case-desktop img {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.plm-case-mobile {
  position: absolute !important;
  right: 0;
  bottom: 0;
  width: clamp(130px, 16vw, 230px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
}

.plm-case-mobile img {
  width: 100%;
  aspect-ratio: 430 / 820;
}

.plm-case-notes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(72px, 8vw, 128px);
  border-top: 1px solid var(--agency-line);
  border-bottom: 1px solid var(--agency-line);
}

.plm-case-notes article {
  min-height: 290px;
  padding: 34px clamp(22px, 2.5vw, 42px) 38px 0;
}

.plm-case-notes article + article {
  padding-left: clamp(22px, 2.5vw, 42px);
  border-left: 1px solid var(--agency-line);
}

.plm-case-notes p {
  margin: 0 0 48px;
  color: #7f8691;
  font-size: 13px;
}

.plm-case-notes h3 {
  margin: 0;
  color: #dfe3e9;
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.018em;
}

.plm-design-process { background: #07090d; }

.plm-design-process .plm-agency-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(450px, 0.75fr);
  gap: clamp(70px, 10vw, 180px);
}

.plm-design-process h2 {
  position: sticky;
  top: 130px;
  align-self: start;
  margin: 0;
  font-size: clamp(54px, 5.7vw, 96px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.plm-design-process ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plm-design-process li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 28px;
  padding: 42px 0 52px;
  border-top: 1px solid var(--agency-line);
}

.plm-design-process li:last-child { border-bottom: 1px solid var(--agency-line); }

.plm-design-process li > span {
  color: #5f6671;
  font-size: 12px;
}

.plm-design-process h3 {
  margin: -5px 0 14px;
  font-size: clamp(26px, 2.2vw, 38px);
  font-weight: 520;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.plm-design-process li p {
  max-width: 500px;
  margin: 0;
  color: var(--agency-muted);
  font-size: 17px;
  line-height: 1.6;
}

.plm-after-launch {
  border-top: 1px solid var(--agency-line-soft);
  border-bottom: 1px solid var(--agency-line-soft);
  background: linear-gradient(135deg, rgba(38, 90, 149, 0.07), transparent 46%), #090c11;
}

.plm-after-launch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(390px, 0.68fr);
  gap: clamp(80px, 10vw, 180px);
  align-items: center;
}

.plm-after-launch h2 { max-width: 900px; }

.plm-after-launch-copy > p {
  max-width: 730px;
  margin: 30px 0 0;
  color: var(--agency-muted);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.6;
}

.plm-after-launch-copy > p + p {
  margin-top: 12px;
  color: #7f8793;
  font-size: 15px;
}

.plm-after-launch-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.plm-provider-line {
  margin-top: 56px !important;
  color: #626a76 !important;
  font-size: 13px !important;
}

.plm-care-states {
  margin: 0;
  padding: 8px 0;
  border-top: 1px solid var(--agency-line);
  border-bottom: 1px solid var(--agency-line);
}

.plm-care-states > div {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 4px;
  border-bottom: 1px solid var(--agency-line-soft);
}

.plm-care-states > div:last-child { border-bottom: 0; }

.plm-care-states dt {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #aeb4bd;
  font-size: 15px;
}

.plm-care-states dt i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #55c995;
  box-shadow: 0 0 16px rgba(85, 201, 149, 0.4);
}

.plm-care-states dd {
  margin: 0;
  color: #eff2f5;
  font-size: 16px;
  font-weight: 650;
}

.plm-studio-section { background: #07090d; }

.plm-studio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.58fr);
  gap: clamp(90px, 12vw, 210px);
  align-items: start;
}

.plm-studio-statement > p {
  margin: 0 0 clamp(48px, 8vw, 120px);
  color: #737b87;
  font-size: 14px;
}

.plm-studio-statement h2 { max-width: 1000px; }
.plm-studio-copy { padding-top: clamp(74px, 12vw, 170px); }

.plm-studio-copy > p {
  margin: 0;
  color: #c5cad1;
  font-size: clamp(20px, 1.7vw, 27px);
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.plm-studio-copy ul {
  display: grid;
  gap: 0;
  margin: 48px 0 0;
  padding: 0;
  border-top: 1px solid var(--agency-line);
  list-style: none;
}

.plm-studio-copy li {
  padding: 18px 0;
  border-bottom: 1px solid var(--agency-line-soft);
  color: #8f96a1;
  font-size: 14px;
}

.plm-home-auth-disclosure {
  margin-top: 72px;
  padding-top: 24px;
  border-top: 1px solid var(--agency-line-soft);
}

.plm-home-auth-disclosure p {
  margin: 0;
  color: #686f7a;
  font-size: 12px;
  line-height: 1.55;
}

.plm-home-auth-disclosure a {
  color: #969da8;
  text-decoration: none;
}

.plm-home-auth-disclosure a:hover { color: #fff; }

.plm-home-auth-disclosure nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  font-size: 12px;
}

.plm-final-cta {
  position: relative;
  min-height: min(840px, 84vh);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid var(--agency-line-soft);
  background: #070a0f;
  text-align: center;
}

.plm-final-cta .plm-agency-shell {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  padding: 140px 0;
}

.plm-final-light {
  position: absolute;
  top: -54%;
  left: 50%;
  width: 1050px;
  height: 800px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(46, 139, 247, 0.2), rgba(26, 68, 123, 0.055) 45%, transparent 70%);
  pointer-events: none;
}

.plm-final-cta h2 { font-size: clamp(56px, 6.6vw, 112px); }

.plm-final-cta p {
  max-width: 690px;
  margin: 32px auto 0;
  color: var(--agency-muted);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.6;
}

.plm-final-cta .plm-agency-actions { justify-content: center; }

.plm-agency-body .footer-main {
  border-top-color: rgba(255, 255, 255, 0.07);
  background: #05070a;
}

.plm-visually-hidden {
  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;
}

.plm-agency a:focus-visible,
.plm-agency button:focus-visible,
.plm-agency-header a:focus-visible,
.plm-agency-header button:focus-visible {
  outline: 2px solid #69b8ff;
  outline-offset: 4px;
}

.home-agency-motion [data-home-reveal] {
  opacity: 0.8;
  transform: translate3d(0, 12px, 0);
  transition: opacity 300ms var(--agency-ease), transform 300ms var(--agency-ease);
}

.home-agency-motion [data-home-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1280px) {
  :root { --agency-shell: min(1180px, calc(100vw - 64px)); }

  .plm-design-hero-layout {
    grid-template-columns: minmax(370px, 0.82fr) minmax(520px, 1.18fr);
    gap: 56px;
  }

  .plm-design-hero h1 { font-size: clamp(58px, 5.8vw, 76px); }

  .plm-stage-project {
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.35fr);
    gap: 42px;
  }

  .plm-stage-project-tabs button { font-size: 12px; }
}

@media (max-width: 1020px) {
  :root { --agency-shell: min(920px, calc(100vw - 48px)); }

  .plm-design-hero {
    min-height: auto;
    padding-top: 94px;
  }

  .plm-design-hero-layout,
  .plm-viewpoint-lead,
  .plm-case-heading,
  .plm-design-process .plm-agency-shell,
  .plm-after-launch-layout,
  .plm-studio-layout {
    grid-template-columns: 1fr;
  }

  .plm-design-hero-layout { gap: 72px; }
  .plm-design-hero-copy { max-width: 760px; }

  .plm-design-hero h1 {
    max-width: 820px;
    font-size: clamp(64px, 9.3vw, 88px);
  }

  .plm-hero-work {
    width: 94%;
    justify-self: start;
  }

  .plm-stage-project {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .plm-stage-info {
    max-width: 680px;
    padding-bottom: 34px;
  }

  .plm-stage-info h3 { max-width: 700px; }
  .plm-stage-controls { grid-template-columns: 1fr; }
  .plm-stage-arrows { justify-content: flex-end; }
  .plm-viewpoint-lead { gap: 34px; }
  .plm-viewpoint-lead p { max-width: 540px; }

  .plm-principle {
    grid-template-columns: 44px minmax(230px, 0.6fr) minmax(0, 1fr);
    gap: 28px;
  }

  .plm-case-heading { gap: 28px; }
  .plm-case-notes { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .plm-case-notes article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--agency-line);
  }

  .plm-case-notes article:nth-child(4) { border-top: 1px solid var(--agency-line); }
  .plm-design-process .plm-agency-shell { gap: 74px; }

  .plm-design-process h2 {
    position: static;
    max-width: 900px;
  }

  .plm-after-launch-layout,
  .plm-studio-layout { gap: 76px; }

  .plm-care-states { max-width: 620px; }

  .plm-studio-copy {
    max-width: 680px;
    padding-top: 0;
  }
}

@media (max-width: 900px) {
  :root { --agency-shell: min(760px, calc(100vw - 40px)); }

  .plm-agency-header .public-header-inner { width: calc(100vw - 32px); }
  .plm-agency-header .public-start-project { display: none; }

  .plm-work-section,
  .plm-viewpoint,
  .plm-case-study,
  .plm-design-process,
  .plm-after-launch,
  .plm-studio-section {
    padding: 124px 0;
  }

  .plm-principle { grid-template-columns: 36px minmax(0, 1fr); }

  .plm-principle figure {
    grid-column: 2;
    width: 100%;
    margin-left: 0;
  }

  .plm-principle-considered figure {
    width: min(340px, 80%);
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  :root { --agency-shell: calc(100vw - 32px); }
  html { scroll-padding-top: 72px; }
  .plm-agency-atmosphere { height: 880px; }
  .plm-agency-atmosphere span { opacity: 0.11; }

  .plm-design-hero { padding: 72px 0 84px; }
  .plm-design-hero-layout { gap: 52px; }

  .plm-hero-eyebrow {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .plm-design-hero h1 {
    font-size: clamp(46px, 13.2vw, 62px);
    line-height: 0.98;
    letter-spacing: -0.057em;
  }

  .plm-design-hero-copy > p:last-of-type {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.55;
  }

  .plm-agency-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .plm-agency-button {
    width: 100%;
    min-height: 52px;
  }

  .plm-hero-work {
    width: 100%;
    filter: none;
  }

  .plm-hero-work-mobile { display: none; }
  .plm-hero-work figcaption { grid-template-columns: 1fr auto; }
  .plm-hero-work figcaption > span { display: none; }

  .plm-work-section,
  .plm-viewpoint,
  .plm-case-study,
  .plm-design-process,
  .plm-after-launch,
  .plm-studio-section {
    padding: 96px 0;
  }

  .plm-section-intro {
    display: block;
    margin-bottom: 48px;
  }

  .plm-section-intro h2,
  .plm-viewpoint h2,
  .plm-case-heading h2,
  .plm-after-launch h2,
  .plm-studio-statement h2,
  .plm-final-cta h2 {
    font-size: clamp(44px, 13vw, 62px);
    line-height: 1;
  }

  .plm-section-intro p {
    margin-top: 18px;
    font-size: 16px;
  }

  .plm-stage {
    margin-inline: -16px;
    padding: 32px 16px;
    overflow: visible;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    background: #090c11;
  }

  .plm-stage-ambient,
  .plm-stage-controls { display: none; }

  .plm-stage-projects {
    display: grid;
    gap: 72px;
  }

  .is-stage-ready .plm-stage-project,
  .is-stage-ready .plm-stage-project.is-active,
  .plm-stage-project {
    position: static;
    inset: auto;
    display: grid;
    grid-area: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .plm-stage-visuals { padding: 0; }
  .plm-stage-mobile { display: none; }
  .plm-stage-info { padding: 24px 0 0; }
  .plm-stage-info > p:first-child { margin-bottom: 12px; }
  .plm-stage-info h3 { font-size: 36px; }

  .plm-stage-info h3 + p {
    margin-top: 14px;
    font-size: 16px;
  }

  .plm-stage-info a { margin-top: 18px; }
  .plm-viewpoint-lead { margin-bottom: 70px; }

  .plm-principle {
    grid-template-columns: 30px minmax(0, 1fr);
    min-height: auto;
    padding: 32px 0;
  }

  .plm-principle h3 { font-size: 34px; }

  .plm-principle p {
    margin-top: 12px;
    font-size: 16px;
  }

  .plm-principle figure { height: 180px; }

  .plm-principle-considered figure {
    width: 62%;
    height: 260px;
  }

  .plm-case-heading { margin-bottom: 52px; }
  .plm-case-heading > p { margin: 0; }

  .plm-case-visual {
    margin-inline: -16px;
    padding: 0 16px 64px 0;
  }

  .plm-case-mobile {
    width: 27%;
    border-radius: 14px;
  }

  .plm-case-notes {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .plm-case-notes article,
  .plm-case-notes article + article {
    min-height: 0;
    padding: 28px 0 34px;
    border-left: 0;
    border-top: 1px solid var(--agency-line);
  }

  .plm-case-notes article:first-child { border-top: 0; }
  .plm-case-notes p { margin-bottom: 22px; }
  .plm-design-process .plm-agency-shell { gap: 56px; }

  .plm-design-process h2 {
    font-size: clamp(46px, 12.6vw, 60px);
    line-height: 1.03;
  }

  .plm-design-process li {
    grid-template-columns: 30px 1fr;
    gap: 18px;
    padding: 30px 0 36px;
  }

  .plm-design-process h3 { font-size: 28px; }
  .plm-design-process li p { font-size: 16px; }

  .plm-after-launch-layout,
  .plm-studio-layout { gap: 58px; }

  .plm-after-launch-copy > p {
    margin-top: 22px;
    font-size: 17px;
  }

  .plm-after-launch-links {
    display: grid;
    gap: 0;
    margin-top: 22px;
  }

  .plm-provider-line { margin-top: 44px !important; }
  .plm-care-states > div { min-height: 68px; }
  .plm-studio-statement > p { margin-bottom: 34px; }
  .plm-studio-copy > p { font-size: 20px; }
  .plm-home-auth-disclosure { margin-top: 58px; }
  .plm-final-cta { min-height: 690px; }
  .plm-final-cta .plm-agency-shell { padding: 110px 0; }

  .plm-final-cta p {
    margin-top: 24px;
    font-size: 16px;
  }
}

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

  .plm-agency-atmosphere span,
  .plm-design-hero-copy > *,
  .plm-hero-work {
    animation: none !important;
  }

  .home-agency-motion [data-home-reveal],
  .is-stage-ready .plm-stage-project,
  .is-stage-ready .plm-stage-project.is-active {
    opacity: 1;
    transform: none;
    transition-duration: 1ms !important;
  }
}
