html.pd-cube-mounted,
html.pd-cube-mounted body {
  background: #f5f5f5 !important;
}

.pd-cube-page {
  --paper: #f5f5f5;
  --ink: #0a0a0a;
  --soft: #dededc;
  --mid: #949491;
  --light-line: rgba(10, 10, 10, 0.18);
  --dark-line: rgba(245, 245, 245, 0.2);
  width: 100%;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Inter Placeholder", sans-serif;
}

.pd-cube-page *,
.pd-cube-page *::before,
.pd-cube-page *::after {
  box-sizing: border-box;
}

.pd-cube-page h1,
.pd-cube-page h2,
.pd-cube-page h3,
.pd-cube-page p {
  margin: 0;
}

.pd-cube-shell {
  width: min(calc(100% - 48px), 1512px);
  margin: 0 auto;
}

.pd-cube-narrow {
  width: min(calc(100% - 48px), 1320px);
}

.pd-cube-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 29px;
  padding: 0 10px;
  border: 1px solid currentColor;
  border-radius: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
}

.pd-cube-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 49px;
  padding: 0 17px 0 21px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.pd-cube-button:hover {
  color: var(--paper);
  background: var(--ink);
}

.pd-cube-hero {
  padding: 112px 24px 24px;
  background: var(--paper);
}

.pd-cube-hero__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  min-height: 700px;
  color: var(--paper);
  background: var(--ink);
}

.pd-cube-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(36px, 5vw, 76px);
}

.pd-cube-hero h1 {
  max-width: 760px;
  font-size: clamp(55px, 5.7vw, 92px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.pd-cube-display {
  margin-top: 30px !important;
  color: #bdbdb9;
  font-size: clamp(20px, 2vw, 31px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.pd-cube-hero .pd-cube-button {
  margin-top: 46px;
}

.pd-cube-hero__geometry {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  background: var(--paper);
}

.pd-cube-hero__geometry i {
  position: relative;
  display: block;
  min-height: 0;
  background: var(--soft);
}

.pd-cube-hero__geometry i:nth-child(2) {
  background: var(--mid);
}

.pd-cube-hero__geometry i:nth-child(3) {
  background: #333331;
}

.pd-cube-hero__geometry i:nth-child(4) {
  background: var(--ink);
}

.pd-cube-hero__geometry i::after {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--ink);
  content: "SYSTEM / 01";
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.pd-cube-hero__geometry i:nth-child(2)::after {
  content: "SYSTEM / 02";
}

.pd-cube-hero__geometry i:nth-child(3)::after,
.pd-cube-hero__geometry i:nth-child(4)::after {
  color: var(--paper);
  content: "SYSTEM / 03";
}

.pd-cube-hero__geometry i:nth-child(4)::after {
  content: "SYSTEM / 04";
}

.pd-cube-hero__geometry b {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  font-size: 28px;
  font-weight: 400;
  transform: translate(-50%, -50%);
}

.pd-cube-section {
  padding: 132px 0;
}

.pd-cube-section h2 {
  max-width: 980px;
  font-size: clamp(47px, 5.25vw, 82px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.pd-cube-intro {
  max-width: 720px;
  color: rgba(10, 10, 10, 0.66);
  font-size: clamp(17px, 1.35vw, 21px);
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.pd-cube-problem > .pd-cube-shell,
.pd-cube-does > .pd-cube-shell,
.pd-cube-fit > .pd-cube-shell,
.pd-cube-faq > .pd-cube-shell {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 16px;
}

.pd-cube-problem .pd-cube-chip,
.pd-cube-does .pd-cube-chip,
.pd-cube-fit .pd-cube-chip,
.pd-cube-faq .pd-cube-chip {
  grid-column: 1 / 4;
  align-self: start;
}

.pd-cube-problem h2,
.pd-cube-does h2,
.pd-cube-fit h2,
.pd-cube-faq h2 {
  grid-column: 5 / -1;
}

.pd-cube-problem .pd-cube-intro,
.pd-cube-fit .pd-cube-intro {
  grid-column: 5 / 11;
  margin-top: 34px;
}

.pd-cube-problem-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 72px;
}

.pd-cube-problem-grid article {
  min-height: 300px;
  padding: 28px;
  color: var(--ink);
  background: var(--soft);
}

.pd-cube-problem-grid article:nth-child(even) {
  color: var(--paper);
  background: var(--ink);
}

.pd-cube-problem-grid span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.48;
}

.pd-cube-problem-grid h3 {
  margin-top: 54px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.pd-cube-problem-grid p {
  max-width: 350px;
  margin-top: 18px;
  font-size: 15px;
  letter-spacing: -0.02em;
  line-height: 1.43;
  opacity: 0.68;
}

.pd-cube-manifesto {
  padding: 138px 0;
  color: var(--paper);
  background: var(--ink);
}

.pd-cube-manifesto > .pd-cube-shell {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 16px;
}

.pd-cube-manifesto p {
  grid-column: 4 / -1;
  font-size: clamp(49px, 5vw, 78px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.96;
}

.pd-cube-manifesto span {
  grid-column: 4 / -1;
  margin-top: 36px;
  color: rgba(245, 245, 245, 0.56);
  font-size: 13px;
}

.pd-cube-does {
  background: var(--paper);
}

.pd-cube-does .pd-cube-chip {
  grid-row: 1 / span 4;
}

.pd-cube-copy-column h2 {
  margin: 0;
}

.pd-cube-copy-column > p:not(.pd-cube-chip) {
  grid-column: 5 / 11;
  margin-top: 34px;
  color: rgba(10, 10, 10, 0.67);
  font-size: 18px;
  letter-spacing: -0.025em;
  line-height: 1.5;
}

.pd-cube-works {
  color: var(--paper);
  background: var(--ink);
}

.pd-cube-works .pd-cube-chip {
  color: var(--paper);
}

.pd-cube-works h2 {
  margin-top: 30px;
}

.pd-cube-works .pd-cube-intro {
  margin-top: 30px;
  color: rgba(245, 245, 245, 0.62);
}

.pd-cube-step-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 68px;
}

.pd-cube-step-grid article {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  padding: 32px;
  color: var(--ink);
  background: var(--soft);
}

.pd-cube-step-grid article:nth-child(2),
.pd-cube-step-grid article:nth-child(3) {
  color: var(--paper);
  background: #242422;
}

.pd-cube-step-grid article > div {
  position: relative;
  z-index: 2;
}

.pd-cube-step-grid span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.52;
}

.pd-cube-step-grid h3 {
  max-width: 520px;
  margin-top: 35px;
  font-size: clamp(31px, 2.65vw, 42px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.pd-cube-step-grid p {
  max-width: 500px;
  margin-top: 23px;
  font-size: 15px;
  letter-spacing: -0.018em;
  line-height: 1.45;
  opacity: 0.66;
}

.pd-cube-step-grid img {
  position: absolute;
  right: -6%;
  bottom: -8%;
  width: 58%;
  max-height: 48%;
  object-fit: contain;
  object-position: right bottom;
  opacity: 0.82;
}

.pd-cube-step-grid article:nth-child(2) img,
.pd-cube-step-grid article:nth-child(3) img {
  filter: invert(1);
  opacity: 0.72;
}

.pd-cube-step-grid b {
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 400;
}

.pd-cube-proof {
  background: var(--paper);
}

.pd-cube-proof h2 {
  max-width: 900px;
  margin-top: 30px;
}

.pd-cube-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 68px;
}

.pd-cube-proof-grid article {
  padding: 12px 12px 24px;
  color: var(--paper);
  background: var(--ink);
}

.pd-cube-video-placeholder {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 9 / 12;
  padding: 18px;
  overflow: hidden;
  color: rgba(10, 10, 10, 0.58);
  background: var(--soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.pd-cube-proof-grid article:nth-child(3n + 2) .pd-cube-video-placeholder {
  color: rgba(245, 245, 245, 0.64);
  background: #333331;
}

.pd-cube-proof-grid article:nth-child(3n) .pd-cube-video-placeholder {
  color: rgba(10, 10, 10, 0.58);
  background: var(--mid);
}

.pd-cube-video-placeholder::before,
.pd-cube-video-placeholder::after {
  position: absolute;
  content: "";
  background: currentColor;
  opacity: 0.3;
}

.pd-cube-video-placeholder::before {
  top: 50%;
  right: 14%;
  left: 14%;
  height: 1px;
}

.pd-cube-video-placeholder::after {
  top: 14%;
  bottom: 14%;
  left: 50%;
  width: 1px;
}

.pd-cube-video-placeholder span {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-size: 13px;
  letter-spacing: 0;
  transform: translate(-50%, -50%);
}

.pd-cube-proof-grid h3 {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pd-cube-proof-grid p {
  min-height: 42px;
  margin-top: 9px;
  color: rgba(245, 245, 245, 0.62);
  font-size: 13px;
  line-height: 1.38;
}

.pd-cube-get {
  padding: 0 24px 24px;
  background: var(--paper);
}

.pd-cube-get > .pd-cube-shell {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 16px;
  padding: 96px 50px;
  color: var(--paper);
  background: var(--ink);
}

.pd-cube-get .pd-cube-chip {
  grid-column: 1 / 4;
}

.pd-cube-get p:last-child {
  grid-column: 5 / 11;
  font-size: clamp(27px, 2.6vw, 42px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.pd-cube-fit {
  background: var(--paper);
}

.pd-cube-fit-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 68px;
}

.pd-cube-fit-grid article {
  min-height: 480px;
  padding: 32px;
  background: var(--soft);
}

.pd-cube-fit-grid article:last-child {
  color: var(--paper);
  background: var(--ink);
}

.pd-cube-fit-grid h3 {
  padding-bottom: 22px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.62;
}

.pd-cube-fit-grid ul {
  display: grid;
  gap: 0;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.pd-cube-fit-grid li {
  position: relative;
  padding: 20px 0 20px 30px;
  border-bottom: 1px solid currentColor;
  font-size: 15px;
  line-height: 1.4;
  opacity: 0.66;
}

.pd-cube-fit-grid li::before {
  position: absolute;
  top: 20px;
  left: 0;
  content: "✓";
  font-weight: 700;
}

.pd-cube-fit-grid article:last-child li::before {
  content: "×";
}

.pd-cube-faq {
  padding-top: 40px;
  background: var(--paper);
}

.pd-cube-faq-list {
  grid-column: 1 / -1;
  margin-top: 68px;
  border-top: 1px solid var(--ink);
}

.pd-cube-faq-list article {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: 8.333%;
  padding: 27px 0;
  border-bottom: 1px solid var(--light-line);
}

.pd-cube-faq-list h3 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.pd-cube-faq-list p {
  max-width: 690px;
  color: rgba(10, 10, 10, 0.64);
  font-size: 15px;
  line-height: 1.48;
}

.pd-cube-final {
  padding: 24px;
  text-align: center;
  background: var(--paper);
}

.pd-cube-final > .pd-cube-shell {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
  color: var(--paper);
  background: var(--ink);
}

.pd-cube-final h2 {
  margin-top: 38px;
  font-size: clamp(64px, 7.5vw, 118px);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.pd-cube-final p:not(.pd-cube-chip) {
  max-width: 650px;
  margin-top: 30px;
  color: rgba(245, 245, 245, 0.62);
  font-size: 16px;
  line-height: 1.45;
}

.pd-cube-final .pd-cube-button {
  margin-top: 36px;
}

.pd-cube-footer {
  color: var(--ink);
  background: var(--paper);
}

.pd-cube-footer a {
  color: inherit;
  text-decoration: none;
}

.pd-cube-footer__top {
  display: grid;
  min-height: 700px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr auto;
  column-gap: 20px;
  padding: 64px 5vw 42px;
}

.pd-cube-footer__email {
  grid-column: 1 / span 5;
  align-self: start;
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 2px solid currentColor;
  font-size: clamp(24px, 2.15vw, 36px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.pd-cube-footer__email span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-size: 16px;
  line-height: 1;
}

.pd-cube-footer__nav {
  display: grid;
  grid-column: 7 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.pd-cube-footer__nav div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.pd-cube-footer__nav p {
  margin-bottom: 8px;
  color: rgba(10, 10, 10, 0.5);
  font-size: 14px;
}

.pd-cube-footer__nav a {
  font-size: clamp(20px, 1.65vw, 28px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.pd-cube-footer__nav a span {
  color: rgba(10, 10, 10, 0.34);
  font-size: 0.7em;
}

.pd-cube-footer__wordmark {
  display: flex;
  grid-column: 7 / -1;
  grid-row: 3;
  flex-direction: column;
  align-self: end;
  font-size: clamp(70px, 6.8vw, 118px);
  font-weight: 500;
  letter-spacing: -0.085em;
  line-height: 0.7;
}

.pd-cube-footer__bottom {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 5vw;
  color: var(--paper);
  background: var(--ink);
  font-size: 13px;
}

.pd-cube-footer__bottom nav {
  display: flex;
  gap: 36px;
}

@media (max-width: 1023.98px) {
  .pd-cube-hero__panel {
    grid-template-columns: 1fr 0.78fr;
    min-height: 640px;
  }

  .pd-cube-hero h1 {
    font-size: clamp(50px, 7vw, 70px);
  }

  .pd-cube-problem > .pd-cube-shell,
  .pd-cube-does > .pd-cube-shell,
  .pd-cube-fit > .pd-cube-shell,
  .pd-cube-faq > .pd-cube-shell {
    column-gap: 12px;
  }

  .pd-cube-problem-grid,
  .pd-cube-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pd-cube-step-grid article {
    min-height: 700px;
  }
}

@media (max-width: 809.98px) {
  .pd-cube-shell,
  .pd-cube-narrow {
    width: min(calc(100% - 32px), 620px);
  }

  .pd-cube-hero {
    padding: 86px 16px 16px;
  }

  .pd-cube-hero__panel {
    display: block;
    min-height: 0;
  }

  .pd-cube-hero__copy {
    min-height: 560px;
    padding: 30px 24px;
  }

  .pd-cube-hero h1 {
    font-size: clamp(46px, 13vw, 65px);
  }

  .pd-cube-hero__geometry {
    min-height: 430px;
  }

  .pd-cube-hero__geometry b {
    width: 60px;
    height: 60px;
  }

  .pd-cube-section {
    padding: 94px 0;
  }

  .pd-cube-section h2 {
    font-size: clamp(42px, 11.7vw, 59px);
  }

  .pd-cube-problem > .pd-cube-shell,
  .pd-cube-does > .pd-cube-shell,
  .pd-cube-fit > .pd-cube-shell,
  .pd-cube-faq > .pd-cube-shell,
  .pd-cube-manifesto > .pd-cube-shell,
  .pd-cube-get > .pd-cube-shell {
    display: block;
  }

  .pd-cube-problem h2,
  .pd-cube-does h2,
  .pd-cube-fit h2,
  .pd-cube-faq h2 {
    margin-top: 34px;
  }

  .pd-cube-problem .pd-cube-intro,
  .pd-cube-fit .pd-cube-intro {
    margin-top: 28px;
  }

  .pd-cube-problem-grid,
  .pd-cube-step-grid,
  .pd-cube-proof-grid,
  .pd-cube-fit-grid {
    grid-template-columns: 1fr;
  }

  .pd-cube-problem-grid,
  .pd-cube-step-grid,
  .pd-cube-proof-grid,
  .pd-cube-fit-grid,
  .pd-cube-faq-list {
    margin-top: 46px;
  }

  .pd-cube-problem-grid article {
    min-height: 270px;
  }

  .pd-cube-manifesto {
    padding: 92px 0;
  }

  .pd-cube-manifesto p {
    font-size: clamp(42px, 11vw, 56px);
  }

  .pd-cube-manifesto span {
    display: block;
    margin-top: 28px;
  }

  .pd-cube-copy-column > p:not(.pd-cube-chip) {
    margin-top: 27px;
    font-size: 16px;
  }

  .pd-cube-step-grid article {
    min-height: 630px;
    padding: 26px;
  }

  .pd-cube-step-grid h3 {
    font-size: 35px;
  }

  .pd-cube-step-grid img {
    width: 70%;
  }

  .pd-cube-proof-grid {
    gap: 8px;
  }

  .pd-cube-video-placeholder {
    aspect-ratio: 9 / 11;
  }

  .pd-cube-get {
    padding: 0 16px 16px;
  }

  .pd-cube-get > .pd-cube-shell {
    width: 100%;
    padding: 68px 24px;
  }

  .pd-cube-get p:last-child {
    margin-top: 34px;
    font-size: 31px;
  }

  .pd-cube-fit-grid article {
    min-height: 0;
    padding: 26px;
  }

  .pd-cube-faq {
    padding-top: 20px;
  }

  .pd-cube-faq-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pd-cube-final {
    padding: 16px;
  }

  .pd-cube-final > .pd-cube-shell {
    width: 100%;
    min-height: 560px;
    padding: 64px 22px;
  }

  .pd-cube-final h2 {
    font-size: clamp(58px, 16vw, 84px);
  }

  .pd-cube-footer {
    padding: 0;
  }

  .pd-cube-footer__top {
    min-height: 580px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .pd-cube-footer__email {
    grid-column: 1 / span 6;
  }

  .pd-cube-footer__nav,
  .pd-cube-footer__wordmark {
    grid-column: 7 / -1;
  }
}

/* Live Fabrica homepage and Studio alignment pass. */
.pd-cube-chip {
  min-height: 0;
  padding: 0;
  border: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.pd-cube-hero {
  padding: 60px 6px 6px;
}

.pd-cube-hero__panel {
  position: relative;
  display: block;
  min-height: 774px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--ink);
}

.pd-cube-hero__panel::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.46);
}

.pd-cube-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.pd-cube-hero__copy {
  position: relative;
  z-index: 3;
  min-height: 774px;
  justify-content: flex-end;
  padding: 64px 50px;
}

.pd-cube-hero h1 {
  max-width: 860px;
  font-size: clamp(58px, 5.5vw, 80px);
  line-height: 0.94;
}

.pd-cube-display {
  color: rgba(245, 245, 245, 0.72);
}

.pd-cube-hero__geometry {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  gap: 0;
  padding: 0;
  pointer-events: none;
  background: transparent;
}

.pd-cube-hero__geometry i,
.pd-cube-hero__geometry i:nth-child(2),
.pd-cube-hero__geometry i:nth-child(3),
.pd-cube-hero__geometry i:nth-child(4) {
  position: relative;
  background: transparent;
}

.pd-cube-hero__geometry i::after,
.pd-cube-hero__geometry i:nth-child(2)::after,
.pd-cube-hero__geometry i:nth-child(3)::after,
.pd-cube-hero__geometry i:nth-child(4)::after {
  top: 63%;
  left: 38px;
  color: rgba(245, 245, 245, 0.72);
  content: "+";
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0;
}

.pd-cube-hero__geometry b {
  display: none;
}

.pd-cube-section {
  padding: 158px 0;
}

.pd-cube-section h2 {
  font-size: clamp(48px, 4.2vw, 60px);
  letter-spacing: -0.07em;
  line-height: 1.03;
}

.pd-cube-problem-grid {
  gap: 0;
  margin-top: 110px;
  border-top: 1px solid var(--light-line);
}

.pd-cube-problem-grid article,
.pd-cube-problem-grid article:nth-child(even) {
  min-height: 350px;
  padding: 27px 28px 36px;
  border-right: 1px solid var(--light-line);
  border-bottom: 1px solid var(--light-line);
  color: var(--ink);
  background: transparent;
}

.pd-cube-problem-grid article:nth-child(3n) {
  border-right: 0;
}

.pd-cube-problem-grid span {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.07em;
  opacity: 0.22;
}

.pd-cube-problem-grid h3 {
  margin-top: 72px;
  font-size: 27px;
}

.pd-cube-problem-grid p {
  max-width: 330px;
  font-size: 14px;
}

.pd-cube-manifesto {
  margin: 6px;
  padding: 150px 0;
  overflow: hidden;
  border-radius: 28px;
}

.pd-cube-manifesto p {
  font-size: clamp(48px, 4.4vw, 64px);
  line-height: 1.02;
}

.pd-cube-does {
  min-height: 950px;
}

.pd-cube-works {
  margin: 6px;
  padding: 148px 0;
  overflow: hidden;
  border-radius: 28px;
}

.pd-cube-works h2 {
  max-width: none;
  margin-top: 50px;
  font-size: clamp(78px, 10vw, 144px);
  line-height: 0.92;
  text-align: center;
}

.pd-cube-works .pd-cube-intro {
  margin: 34px auto 0;
  text-align: center;
}

.pd-cube-step-grid {
  display: block;
  margin-top: 110px;
  border-top: 1px solid var(--dark-line);
}

.pd-cube-step-grid article,
.pd-cube-step-grid article:nth-child(2),
.pd-cube-step-grid article:nth-child(3) {
  position: relative;
  min-height: 0;
  padding: 34px 150px 34px 0;
  border-bottom: 1px solid var(--dark-line);
  color: var(--paper);
  background: transparent;
}

.pd-cube-step-grid article > div {
  display: grid;
  grid-template-columns: 90px minmax(270px, 0.9fr) minmax(340px, 1.2fr);
  gap: 34px;
  align-items: start;
}

.pd-cube-step-grid span,
.pd-cube-step-grid h3,
.pd-cube-step-grid p {
  margin: 0;
}

.pd-cube-step-grid h3 {
  font-size: clamp(28px, 2.3vw, 35px);
  line-height: 1;
}

.pd-cube-step-grid p {
  font-size: 14px;
  line-height: 1.5;
}

.pd-cube-step-grid img,
.pd-cube-step-grid article:nth-child(2) img,
.pd-cube-step-grid article:nth-child(3) img {
  top: 24px;
  right: 0;
  bottom: auto;
  width: 105px;
  height: 105px;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.58;
}

.pd-cube-step-grid b {
  display: none;
}

.pd-cube-proof {
  padding-top: 180px;
}

.pd-cube-proof-grid {
  gap: 16px;
  margin-top: 105px;
}

.pd-cube-proof-grid article {
  padding: 0;
  color: var(--ink);
  background: transparent;
}

.pd-cube-video-placeholder,
.pd-cube-proof-grid article:nth-child(3n + 2) .pd-cube-video-placeholder,
.pd-cube-proof-grid article:nth-child(3n) .pd-cube-video-placeholder {
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  color: rgba(10, 10, 10, 0.54);
  background: #e9e9e7;
}

.pd-cube-proof-grid article:nth-child(3n + 2) .pd-cube-video-placeholder {
  background: #d7d7d4;
}

.pd-cube-proof-grid article:nth-child(3n) .pd-cube-video-placeholder {
  background: #c5c5c1;
}

.pd-cube-proof-grid h3 {
  margin: 17px 18px 0;
}

.pd-cube-proof-grid p {
  min-height: 52px;
  margin: 8px 18px 28px;
  color: rgba(10, 10, 10, 0.58);
}

.pd-cube-get > .pd-cube-shell {
  padding: 120px 54px;
  border-radius: 28px;
}

.pd-cube-fit-grid {
  gap: 12px;
  margin-top: 100px;
}

.pd-cube-fit-grid article,
.pd-cube-fit-grid article:last-child {
  min-height: 0;
  padding: 30px;
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
}

.pd-cube-faq {
  padding: 170px 0;
}

.pd-cube-faq .pd-cube-chip {
  grid-column: 1 / 5;
}

.pd-cube-faq h2 {
  grid-column: 1 / 6;
  margin-top: 56px;
  font-size: clamp(58px, 6vw, 86px);
}

.pd-cube-faq-list {
  grid-column: 6 / -1;
  margin-top: 0;
  border-top: 0;
}

.pd-cube-faq-list article {
  position: relative;
  display: block;
  margin-bottom: 7px;
  padding: 28px 70px 28px 28px;
  border: 0;
  border-radius: 14px;
  background: #fff;
}

.pd-cube-faq-list article::after {
  position: absolute;
  top: 25px;
  right: 24px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  content: "+";
  font-size: 15px;
  line-height: 1;
}

.pd-cube-faq-list p {
  margin-top: 18px;
}

.pd-cube-final > .pd-cube-shell {
  border-radius: 28px;
}

@media (max-width: 1023.98px) {
  .pd-cube-hero h1 {
    font-size: clamp(54px, 7vw, 70px);
  }

  .pd-cube-step-grid article > div {
    grid-template-columns: 70px minmax(220px, 0.9fr) minmax(260px, 1.1fr);
    gap: 22px;
  }
}

@media (max-width: 809.98px) {
  .pd-cube-chip {
    font-size: 13px;
  }

  .pd-cube-hero {
    padding: 62px 4px 4px;
  }

  .pd-cube-hero__panel {
    min-height: 760px;
    border-radius: 20px;
  }

  .pd-cube-hero__copy {
    min-height: 760px;
    padding: 36px 22px 46px;
  }

  .pd-cube-hero h1 {
    font-size: clamp(43px, 12.5vw, 58px);
  }

  .pd-cube-hero__geometry {
    min-height: 0;
  }

  .pd-cube-hero__geometry i::after,
  .pd-cube-hero__geometry i:nth-child(2)::after,
  .pd-cube-hero__geometry i:nth-child(3)::after,
  .pd-cube-hero__geometry i:nth-child(4)::after {
    top: 49%;
    left: 12px;
    font-size: 20px;
  }

  .pd-cube-section {
    padding: 102px 0;
  }

  .pd-cube-section h2 {
    font-size: clamp(40px, 11vw, 53px);
  }

  .pd-cube-problem-grid {
    margin-top: 64px;
  }

  .pd-cube-problem-grid article,
  .pd-cube-problem-grid article:nth-child(even) {
    min-height: 310px;
    padding: 24px 0 32px;
    border-right: 0;
  }

  .pd-cube-problem-grid span {
    font-size: 40px;
  }

  .pd-cube-problem-grid h3 {
    margin-top: 60px;
  }

  .pd-cube-manifesto,
  .pd-cube-works {
    margin: 4px;
    border-radius: 20px;
  }

  .pd-cube-manifesto p {
    font-size: clamp(39px, 10.5vw, 50px);
  }

  .pd-cube-does {
    min-height: 0;
  }

  .pd-cube-works {
    padding: 96px 0;
  }

  .pd-cube-works h2 {
    margin-top: 36px;
    font-size: clamp(60px, 17vw, 82px);
    text-align: left;
  }

  .pd-cube-works .pd-cube-intro {
    margin: 28px 0 0;
    text-align: left;
  }

  .pd-cube-step-grid {
    margin-top: 64px;
  }

  .pd-cube-step-grid article,
  .pd-cube-step-grid article:nth-child(2),
  .pd-cube-step-grid article:nth-child(3) {
    min-height: 0;
    padding: 30px 0 132px;
  }

  .pd-cube-step-grid article > div {
    display: block;
    width: 100%;
  }

  .pd-cube-step-grid h3 {
    margin-top: 24px;
    font-size: 34px;
  }

  .pd-cube-step-grid p {
    margin-top: 20px;
  }

  .pd-cube-step-grid img,
  .pd-cube-step-grid article:nth-child(2) img,
  .pd-cube-step-grid article:nth-child(3) img {
    top: auto;
    right: 0;
    bottom: 18px;
    width: 100px;
    height: 100px;
  }

  .pd-cube-proof {
    padding-top: 110px;
  }

  .pd-cube-proof-grid {
    gap: 8px;
    margin-top: 66px;
  }

  .pd-cube-video-placeholder,
  .pd-cube-proof-grid article:nth-child(3n + 2) .pd-cube-video-placeholder,
  .pd-cube-proof-grid article:nth-child(3n) .pd-cube-video-placeholder {
    aspect-ratio: 9 / 11;
    border-radius: 16px;
  }

  .pd-cube-get > .pd-cube-shell {
    border-radius: 20px;
  }

  .pd-cube-fit-grid {
    margin-top: 62px;
  }

  .pd-cube-faq {
    padding: 108px 0;
  }

  .pd-cube-faq h2 {
    margin-top: 34px;
    font-size: clamp(46px, 12vw, 60px);
  }

  .pd-cube-faq-list {
    margin-top: 54px;
  }

  .pd-cube-final > .pd-cube-shell {
    border-radius: 20px;
  }

  .pd-cube-footer__top {
    display: flex;
    min-height: 620px;
    flex-direction: column;
    padding: 54px 20px 34px;
  }

  .pd-cube-footer__email {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    font-size: clamp(16px, 4.4vw, 18px);
  }

  .pd-cube-footer__email span {
    width: 18px;
    height: 18px;
    font-size: 14px;
  }

  .pd-cube-footer__nav {
    width: 100%;
    margin-top: 72px;
  }

  .pd-cube-footer__nav a {
    font-size: 22px;
  }

  .pd-cube-footer__wordmark {
    width: 100%;
    margin-top: auto;
    font-size: clamp(52px, 15.8vw, 66px);
    line-height: 0.74;
  }

  .pd-cube-footer__bottom {
    min-height: 138px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding: 28px 20px;
  }

  .pd-cube-footer__bottom nav {
    gap: 24px;
  }
}
