body.is-pinch {
  --pp-paper: #f0e9dc;
  --pp-taupe: #8a7865;
  --pp-deep: #191612;
  --pp-cyan: #38bdf8;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(196, 164, 106, 0.1), transparent 27rem),
    var(--bg);
}

body.is-pinch .kpc-pp-hero {
  align-items: center;
  min-height: calc(100vh - 74px);
}

body.is-pinch .kpc-pp-hero-photo {
  position: relative;
  aspect-ratio: 16 / 11;
  background: #1c1a17;
}

body.is-pinch .kpc-pp-hero-photo img {
  min-height: 100%;
  max-height: none;
  object-position: center;
}

.kpc-pp-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 62%, rgba(5, 7, 8, 0.76)),
    linear-gradient(90deg, rgba(5, 7, 8, 0.2), transparent 30%);
}

.kpc-pp-hero-photo figcaption,
.kpc-pp-detail-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 15px;
  left: 18px;
  color: #fff6e7;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.kpc-pp-explainer {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: 22px;
  margin-top: 30px;
  align-items: stretch;
}

.kpc-pp-detail-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #3d352a;
  border-radius: 16px;
  background: #17191b;
}

.kpc-pp-detail-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(5, 7, 8, 0.74));
  pointer-events: none;
}

.kpc-pp-detail-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.kpc-pp-anatomy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0, rgba(196, 164, 106, 0.13), transparent 50%),
    #11171d;
}

.kpc-pp-pleat-top {
  position: relative;
  min-height: 184px;
  overflow: hidden;
  border: 1px solid #35414a;
  border-radius: 11px;
  background: #0b1014;
}

.kpc-pp-pleat-top::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 8, 10, 0.82));
  content: "";
  pointer-events: none;
}

.kpc-pp-pleat-top > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92) contrast(1.04);
}

.kpc-pp-master-badge {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  padding: 5px 7px;
  border: 1px solid rgba(196, 164, 106, 0.7);
  border-radius: 999px;
  background: rgba(7, 10, 12, 0.78);
  color: #f4dfb1;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.kpc-pp-view-label {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 10px;
  left: 12px;
  color: #bec8cf;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.kpc-pp-parts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  counter-reset: parts;
  list-style: none;
}

.kpc-pp-parts li {
  position: relative;
  min-width: 0;
  padding: 13px 12px 13px 39px;
  border: 1px solid #27333d;
  border-radius: 10px;
  background: rgba(16, 23, 29, 0.78);
}

.kpc-pp-parts li::before {
  position: absolute;
  top: 13px;
  left: 12px;
  width: 19px;
  height: 19px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-2);
  content: counter(parts);
  counter-increment: parts;
  font-size: 9px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
}

.kpc-pp-parts b,
.kpc-pp-parts span {
  display: block;
}

.kpc-pp-parts b {
  margin-bottom: 4px;
  color: #f2e5cb;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.kpc-pp-parts span {
  color: #aebac3;
  font-size: 12px;
  line-height: 1.4;
}

.kpc-pp-fabric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
  margin-top: 30px;
}

.kpc-pp-fabric-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #2d3943;
  border-radius: 17px;
  background: linear-gradient(180deg, #151c22, #10161b);
  transition: transform 180ms ease, border-color 180ms ease;
}

.kpc-pp-fabric-card:hover {
  transform: translateY(-4px);
  border-color: #5a4a2c;
}

.kpc-pp-fabric-card figure {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: #171a1d;
}

.kpc-pp-fabric-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(5, 7, 9, 0.58));
  pointer-events: none;
}

.kpc-pp-fabric-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.kpc-pp-fabric-card:hover img {
  transform: scale(1.025);
}

.kpc-pp-card-body {
  padding: 19px 18px 18px;
}

.kpc-pp-card-num {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.kpc-pp-card-body h3 {
  margin: 0 0 10px;
  color: #f8f1e6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.kpc-pp-card-body p {
  min-height: 112px;
  margin: 0;
  color: #bfc9d1;
  font-size: 14px;
  line-height: 1.55;
}

.kpc-pp-opening-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.kpc-pp-all-fabrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 21px;
  padding: 13px 15px;
  border: 1px solid rgba(196, 164, 106, 0.34);
  border-radius: 11px;
  background: rgba(196, 164, 106, 0.06);
}

.kpc-pp-all-fabrics > strong {
  color: #e9dfcc;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.kpc-pp-all-fabrics > div {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.kpc-pp-all-fabrics span {
  padding: 5px 8px;
  border: 1px solid #4b4231;
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.kpc-pp-opening-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #11171d;
}

.kpc-pp-opening-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}

.kpc-pp-opening-head > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-2);
  font-size: 9px;
  font-weight: 800;
}

.kpc-pp-opening-head h3 {
  margin: 0;
  color: #f6efe4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
}

.kpc-pp-opening-photo {
  display: block;
  aspect-ratio: 4 / 3;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid #2b373f;
  border-radius: 10px;
  background: #16191a;
}

.kpc-pp-opening-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kpc-pp-opening-card p {
  min-height: 93px;
  margin: 14px 2px 0;
  color: #bdc8d0;
  font-size: 13px;
  line-height: 1.55;
}

.kpc-pp-route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 32px;
  margin-top: 10px;
  border-radius: 6px;
  background: rgba(56, 189, 248, 0.07);
  color: var(--pp-cyan);
}

.kpc-pp-route b {
  color: #d8eef7;
  font-size: 9px;
  letter-spacing: 0.13em;
}

.kpc-pp-route span {
  font-size: 19px;
  line-height: 1;
}

.kpc-pp-route.is-left {
  justify-content: flex-start;
  padding-left: 12px;
}

.kpc-pp-route.is-right {
  justify-content: flex-end;
  padding-right: 12px;
}

.kpc-pp-mini-demo {
  display: grid;
  gap: 8px;
  margin-top: 13px;
  padding: 8px;
  border: 1px solid #34414a;
  border-radius: 11px;
  background: #090e12;
}

.kpc-pp-mini-demo canvas {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #2d3942;
  border-radius: 8px;
  background: #151717;
}

.kpc-pp-mini-remote {
  padding: 8px;
  border: 1px solid #2c3740;
  border-radius: 8px;
  background: linear-gradient(180deg, #192128, #10161b);
}

.kpc-pp-mini-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 7px;
}

.kpc-pp-mini-title b {
  color: #f0e8dc;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.kpc-pp-mini-title output {
  color: #86dafa;
  font-size: 9px;
  font-weight: 800;
}

.kpc-pp-mini-fabrics,
.kpc-pp-mini-motion {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
}
.kpc-pp-mini-layers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}

.kpc-pp-mini-fabrics button,
.kpc-pp-mini-layers button {
  min-width: 0;
  min-height: 29px;
  padding: 3px 2px;
  border: 1px solid #35424b;
  border-radius: 5px;
  background: #0c1216;
  color: #c7d0d6;
  cursor: pointer;
  font-size: 7px;
  font-weight: 800;
}

.kpc-pp-mini-fabrics button[aria-pressed="true"],
.kpc-pp-mini-layers button[aria-pressed="true"] {
  border-color: #9f814b;
  background: linear-gradient(180deg, #d8bd7b, #aa8950);
  color: #171208;
}

.kpc-pp-mini-layer-field {
  margin-top: 6px;
  padding-top: 5px;
  border-top: 1px solid rgba(134, 218, 250, 0.14);
}

.kpc-pp-mini-layer-field[hidden] {
  display: none;
}

.kpc-pp-mini-layer-label {
  display: block;
  margin-bottom: 4px;
  color: #8ca0ad;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.kpc-pp-mini-motion {
  margin-top: 5px;
}

.kpc-pp-mini-motion button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 37px;
  padding: 4px 2px;
  border: 1px solid #42515b;
  border-radius: 6px;
  background: #11191f;
  color: #e8eef1;
  cursor: pointer;
}

.kpc-pp-mini-motion button:hover {
  border-color: var(--pp-cyan);
}

.kpc-pp-mini-motion button[aria-pressed="true"] {
  border-color: var(--pp-cyan);
  background: rgba(56, 189, 248, 0.13);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.18) inset;
}

.kpc-pp-mini-motion button span {
  color: var(--pp-cyan);
  font-size: 13px;
  line-height: 1;
}

.kpc-pp-mini-motion button b {
  margin-top: 2px;
  font-size: 6px;
  letter-spacing: 0.08em;
}

.kpc-pp-simulator-section {
  scroll-margin-top: 18px;
}

.kpc-pp-simulator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  margin-top: 29px;
  padding: 18px;
  border: 1px solid #2d3943;
  border-radius: 18px;
  background:
    radial-gradient(circle at 24% 0, rgba(196, 164, 106, 0.11), transparent 36rem),
    #0d1216;
}

.kpc-pp-stage {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #303b43;
  border-radius: 13px;
  background: #151717;
}

.kpc-pp-stage canvas {
  display: block;
  width: 100%;
  height: auto;
}

.kpc-pp-stage-badges {
  position: absolute;
  z-index: 3;
  top: 13px;
  left: 13px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  pointer-events: none;
}

.kpc-pp-stage-badges span {
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 10, 12, 0.82);
  color: #f6f0e7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.kpc-pp-stage-badges #kpc-pp-stage-opening {
  border-color: rgba(56, 189, 248, 0.5);
  color: #d9f4ff;
}

.kpc-pp-stage-badges #kpc-pp-stage-order {
  border-color: rgba(196, 164, 106, 0.58);
  color: #f2dfb2;
}

.kpc-pp-stage-note {
  position: absolute;
  z-index: 3;
  right: 13px;
  bottom: 10px;
  left: 13px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

.kpc-pp-control {
  min-width: 0;
  padding: 16px;
  border: 1px solid #46525b;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 34%),
    linear-gradient(180deg, #1a2229, #10161b);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

.kpc-pp-control-brand {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid #2e3942;
}

.kpc-pp-control-brand small {
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.kpc-pp-control-brand strong {
  color: #f5efe6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 500;
}

.kpc-pp-control fieldset {
  min-width: 0;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
}

.kpc-pp-control legend {
  display: block;
  width: 100%;
  margin-bottom: 7px;
  color: #9fadb7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.kpc-pp-segment {
  display: grid;
  gap: 5px;
  padding: 4px;
  border: 1px solid #2d3942;
  border-radius: 10px;
  background: #0c1115;
}

.kpc-pp-segment.is-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.kpc-pp-segment.is-four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kpc-pp-segment.is-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kpc-pp-segment button,
.kpc-pp-opening-buttons button {
  min-width: 0;
  min-height: 36px;
  padding: 6px 4px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: #c3cdd4;
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.kpc-pp-segment button[aria-pressed="true"],
.kpc-pp-opening-buttons button[aria-pressed="true"] {
  border-color: #7e693e;
  background: linear-gradient(180deg, #d8bd7b, #aa8950);
  color: #171208;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
}

.kpc-pp-segment button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.kpc-pp-segment button small {
  display: inline-block;
  margin-top: 3px;
  font-size: 7px;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0.78;
}

.kpc-pp-opening-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
}

.kpc-pp-opening-buttons button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 57px;
  border-color: #2d3942;
  background: #0c1115;
}

.kpc-pp-opening-buttons button b {
  margin-bottom: 2px;
  color: var(--pp-cyan);
  font-size: 17px;
  line-height: 1;
}

.kpc-pp-opening-buttons button[aria-pressed="true"] b {
  color: #171208;
}

.kpc-pp-motion {
  display: grid;
  grid-template-columns: 1fr 0.78fr 1fr;
  gap: 6px;
  margin: 16px 0;
}

.kpc-pp-motion button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 55px;
  border: 1px solid #58646c;
  border-radius: 10px;
  background: linear-gradient(180deg, #232e36, #11181d);
  color: #eef2f4;
  cursor: pointer;
}

.kpc-pp-motion button:hover {
  border-color: var(--pp-cyan);
}

.kpc-pp-motion button[aria-pressed="true"] {
  border-color: var(--pp-cyan);
  background: rgba(56, 189, 248, 0.13);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.2) inset;
}

.kpc-pp-motion button span {
  color: var(--pp-cyan);
  font-size: 20px;
  line-height: 1;
}

.kpc-pp-motion button b {
  margin-top: 3px;
  font-size: 8px;
  letter-spacing: 0.11em;
}

.kpc-pp-motion button.is-stop {
  border-color: #8f6f42;
  color: #f5dba9;
}

.kpc-pp-motion button.is-stop span {
  color: #e3b665;
  font-size: 13px;
}

.kpc-pp-position-panel {
  display: grid;
  gap: 11px;
  padding: 13px;
  border: 1px solid #2d3942;
  border-radius: 11px;
  background: rgba(7, 11, 14, 0.72);
}

.kpc-pp-position-panel [data-rf-row] {
  display: block;
  min-width: 0;
}

.kpc-pp-position-panel [data-rf-row].is-hidden {
  display: none;
}

.kpc-pp-position-panel [data-rf-row] > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.kpc-pp-position-panel label {
  color: #e5ecf0;
  font-size: 10px;
  font-weight: 700;
}

.kpc-pp-position-panel output {
  color: #8ddcff;
  font-size: 9px;
}

.kpc-pp-position-panel input {
  width: 100%;
  margin: 8px 0 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.kpc-pp-control-tip {
  display: grid;
  grid-template-columns: 9px 1fr;
  gap: 8px;
  align-items: start;
  margin-top: 12px;
}

.kpc-pp-control-tip p {
  margin: 0;
  color: #9eabb4;
  font-size: 10px;
  line-height: 1.45;
}

.kpc-pp-live-dot {
  width: 7px;
  height: 7px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--pp-cyan);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.9);
  animation: kpc-pp-live 1.6s ease-in-out infinite;
}

@keyframes kpc-pp-live {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

.kpc-pp-decision-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 27px;
}

.kpc-pp-decision-grid article {
  min-width: 0;
  padding: 18px 16px;
  border-top: 2px solid #675634;
  border-radius: 0 0 12px 12px;
  background: #11171d;
}

.kpc-pp-decision-grid article > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.kpc-pp-decision-grid h3 {
  margin: 9px 0 8px;
  color: #f1e9dc;
  font-size: 15px;
}

.kpc-pp-decision-grid p {
  margin: 0;
  color: #aebac3;
  font-size: 13px;
  line-height: 1.5;
}

.kpc-pp-measure-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 15px;
  padding: 16px 18px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.06);
}

.kpc-pp-measure-note strong {
  color: #dff6ff;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kpc-pp-measure-note p {
  max-width: none;
  margin: 0;
  color: #b9cad3;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1040px) {
  .kpc-pp-fabric-grid,
  .kpc-pp-opening-grid {
    grid-template-columns: 1fr;
  }

  .kpc-pp-fabric-card {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(270px, 1.1fr);
  }

  .kpc-pp-fabric-card figure {
    height: 100%;
    aspect-ratio: auto;
  }

  .kpc-pp-card-body p,
  .kpc-pp-opening-card p {
    min-height: 0;
  }

  .kpc-pp-opening-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(260px, 1.1fr);
    column-gap: 18px;
  }

  .kpc-pp-opening-head,
  .kpc-pp-opening-photo {
    grid-column: 1;
  }

  .kpc-pp-opening-card p,
  .kpc-pp-route,
  .kpc-pp-opening-card > button {
    grid-column: 2;
  }

  .kpc-pp-opening-card p {
    grid-row: 1 / span 2;
    align-self: center;
    margin: 0;
  }

  .kpc-pp-mini-demo {
    grid-column: 1 / -1;
    grid-template-columns: minmax(300px, 1fr) 250px;
    align-items: center;
  }

  .kpc-pp-simulator {
    grid-template-columns: 1fr;
  }

  .kpc-pp-control {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
  }

  .kpc-pp-control-brand,
  .kpc-pp-motion,
  .kpc-pp-position-panel,
  .kpc-pp-control-tip {
    grid-column: 1 / -1;
    margin: 0;
  }

  .kpc-pp-control fieldset {
    margin: 0;
  }
}

@media (max-width: 820px) {
  .kpc-pp-explainer {
    grid-template-columns: 1fr;
  }

  .kpc-pp-detail-photo img {
    min-height: 300px;
  }

  .kpc-pp-decision-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  body.is-pinch .kpc-page {
    padding-right: 16px;
    padding-left: 16px;
  }

  body.is-pinch .kpc-top {
    align-items: flex-start;
    padding-right: 16px;
    padding-left: 16px;
  }

  body.is-pinch .kpc-top-actions {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  body.is-pinch .kpc-top-actions .kpc-ghost {
    flex-basis: 100%;
    height: 31px;
    padding: 0 10px;
    font-size: 11px;
    text-align: center;
  }

  body.is-pinch .kpc-pp-hero {
    min-height: 0;
  }

  .kpc-pp-fabric-card,
  .kpc-pp-opening-card {
    display: block;
  }

  .kpc-pp-fabric-card figure {
    aspect-ratio: 4 / 3;
  }

  .kpc-pp-opening-card p,
  .kpc-pp-route,
  .kpc-pp-opening-card > button {
    margin-top: 13px;
  }

  .kpc-pp-control {
    display: block;
    padding: 13px;
  }

  .kpc-pp-mini-demo {
    grid-template-columns: 1fr;
  }

  .kpc-pp-control fieldset {
    margin-bottom: 13px;
  }

  .kpc-pp-control-brand {
    margin-bottom: 13px;
  }

  .kpc-pp-motion,
  .kpc-pp-position-panel,
  .kpc-pp-control-tip {
    margin-top: 13px;
  }

  .kpc-pp-simulator {
    padding: 9px;
  }

  .kpc-pp-stage-badges {
    top: 7px;
    left: 7px;
  }

  .kpc-pp-stage-badges span {
    padding: 4px 6px;
    font-size: 7px;
  }

  .kpc-pp-stage-note {
    right: 7px;
    bottom: 5px;
    left: 7px;
    font-size: 7px;
  }

  .kpc-pp-parts,
  .kpc-pp-decision-grid {
    grid-template-columns: 1fr;
  }

  .kpc-pp-measure-note {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .kpc-pp-all-fabrics {
    align-items: flex-start;
    flex-direction: column;
  }

  .kpc-pp-all-fabrics > div {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kpc-pp-live-dot,
  body.is-pinch .kpc-home-blink {
    animation: none;
  }

  .kpc-pp-fabric-card,
  .kpc-pp-fabric-card img {
    transition: none;
  }
}
