.tool-page {
  background: var(--launch-canvas);
  color: var(--launch-ink);
}

.tool-page .tool-actions .pp-button {
  border-color: var(--launch-ink);
  border-radius: 5px;
  background: var(--launch-ink);
  color: #fff;
}

.tool-page .tool-commit .pp-button {
  border-color: #fff;
  border-radius: 5px;
  background: #fff;
  color: var(--launch-ink);
}

.tool-page h1,
.tool-page h2 {
  font-family: "Everett", var(--font-display);
  font-weight: 400;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.tool-shell {
  width: min(var(--launch-max), calc(100% - (2 * var(--launch-gutter))));
  margin-inline: auto;
}

.tool-hero {
  padding: clamp(64px, 7vw, 88px) 0 clamp(64px, 7vw, 88px);
  border-bottom: 1px solid var(--launch-line);
}

.tool-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: clamp(54px, 7vw, 100px);
  align-items: center;
}

/* CLO uses a portrait garment proof. Top alignment keeps the message on the
   same entry register as the rest of the integration family instead of
   centering it against the unusually tall media. */
@media (min-width: 1001px) {
  .clo-page .tool-hero-grid { align-items: start; }
}

.tool-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: var(--launch-muted);
  font-size: 12px;
}

.tool-breadcrumb a { text-decoration: none; }
.tool-breadcrumb a:hover { color: var(--launch-ink); }

.tool-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--launch-copy);
  font-size: 12px;
  font-weight: 500;
}

.tool-status::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--launch-orange);
}

.tool-hero h1 {
  max-width: 12ch;
  margin: 24px 0 24px;
  font-size: var(--launch-display-lg);
  line-height: .99;
  letter-spacing: -.035em;
}

.max-integration-page .tool-hero h1 {
  max-width: 16ch;
  text-wrap: balance;
}

.shapr3d-page .tool-hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(480px, .9fr);
  gap: 48px;
}

.shapr3d-page .tool-hero h1 {
  max-width: none;
}

.tool-hero-copy {
  max-width: 590px;
  margin: 0;
  color: var(--launch-copy);
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.55;
}

.tool-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.tool-text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--launch-ink);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.tool-note {
  margin-top: 22px;
  color: var(--launch-muted);
  font-size: 12px;
  line-height: 1.5;
}

.tool-hero-proof {
  overflow: hidden;
  border: 1px solid var(--launch-line);
  border-radius: var(--launch-radius);
  background: #f2f2f3;
  box-shadow: 0 24px 60px rgba(18,18,20,.07);
}

/* The integration proof follows the real model-detail hierarchy: the product
   is the surface, the transfer is one quiet state, and Create project is the
   single door forward. It is intentionally authored, not a screenshot. */
.tool-model-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(188px, .32fr);
  align-items: stretch;
  background: #f4f4f5;
}

.tool-model-canvas {
  position: relative;
  min-width: 0;
  min-height: 430px;
  overflow: hidden;
  border-right: 1px solid var(--launch-line);
  background: #dedee0;
}

.tool-model-canvas > img,
.tool-model-canvas > video {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
}

.tool-model-proof--contain .tool-model-canvas {
  background: #ededee;
}

.tool-model-proof--contain .tool-model-canvas > img {
  object-fit: contain;
  padding: 9%;
}

.tool-model-source,
.tool-model-transfer {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 5px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 28px -22px rgba(0,0,0,.5);
  backdrop-filter: blur(12px);
}

.tool-model-source {
  top: 16px;
  left: 16px;
  gap: 10px;
  padding: 8px 10px;
}

.tool-model-source small,
.tool-model-transfer small,
.tool-model-pane > small,
.tool-model-facts small {
  display: block;
  color: #8a8a90;
  font-size: 9px;
  font-weight: 560;
  letter-spacing: .045em;
  line-height: 1.1;
  text-transform: uppercase;
}

.tool-model-source strong {
  color: #343438;
  font-size: 11px;
  font-weight: 560;
}

.tool-model-transfer {
  left: 16px;
  bottom: 16px;
  gap: 9px;
  padding: 9px 11px 9px 9px;
}

.tool-model-transfer i {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #202023;
}

.tool-model-transfer i::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 7px;
  height: 4px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg);
}

.tool-model-transfer strong {
  display: block;
  margin-top: 3px;
  color: #343438;
  font-size: 11px;
  font-weight: 560;
}

.tool-model-pane {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 22px 18px 18px;
  background: rgba(255,255,255,.92);
}

.tool-model-pane h3 {
  margin: 8px 0 0;
  color: var(--launch-ink);
  font-size: 20px;
  font-weight: 560;
  letter-spacing: -.02em;
  line-height: 1.08;
}

.tool-model-pane > p {
  margin: 7px 0 0;
  color: #7c7c82;
  font-size: 10px;
  line-height: 1;
}

.tool-model-facts {
  display: grid;
  gap: 0;
  margin-top: auto;
  border-top: 1px solid var(--launch-line);
}

.tool-model-facts span {
  padding: 13px 0;
  border-bottom: 1px solid var(--launch-line);
}

.tool-model-facts b {
  display: block;
  margin-top: 5px;
  overflow: hidden;
  color: #3d3d42;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tool-model-action {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 0 12px;
  border-radius: 5px;
  background: #202023;
  color: #fff;
  font-size: 11px;
  font-weight: 560;
}

.tool-model-action b {
  font-size: 14px;
  font-weight: 400;
}

.tool-model-proof .tool-proof-foot {
  grid-column: 1 / -1;
  background: #fff;
}


























.tool-proof-foot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--launch-line);
}

.tool-proof-foot span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-left: 1px solid var(--launch-line);
  color: var(--launch-copy);
  font-size: 11px;
  line-height: 1.35;
}

.tool-proof-foot span:first-child { border-left: 0; }

.tool-section {
  padding: clamp(76px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--launch-line);
}

.tool-section--compact { padding: clamp(64px, 6vw, 80px) 0; }

.tool-section-head {
  display: grid;
  gap: 14px;
  max-width: 790px;
  margin: 0 0 48px;
}

.tool-section-head > .tool-section-label {
  width: fit-content;
  padding-left: 14px;
  position: relative;
}

.tool-section-head > .tool-section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 5px;
  height: 5px;
  background: var(--launch-orange);
}

.tool-section-head > div:last-child { display: grid; gap: 14px; }
.tool-section-head .tool-section-intro { margin-top: 2px; }

.tool-section-head--centered {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  justify-items: center;
  text-align: center;
}

.tool-section-head--centered > .tool-section-label { justify-self: center; }
.tool-section-head--centered h2 { max-width: 22ch; margin-right: auto; margin-left: auto; }
.tool-section-head--centered .tool-section-intro { max-width: 700px; margin-right: auto; margin-left: auto; }

.tool-section-head--split {
  max-width: none;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: end;
}

.tool-section-head--split .tool-section-title {
  display: grid;
  gap: 24px;
}

.tool-section-head--split .tool-section-label {
  width: fit-content;
  padding-left: 14px;
  position: relative;
}

.tool-section-head--split .tool-section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 5px;
  height: 5px;
  background: var(--launch-orange);
}

.tool-section-head--split .tool-section-intro {
  max-width: 58ch;
  margin: 0 0 3px;
}

.tool-section-lead {
  display: grid;
  gap: 14px;
  max-width: 790px;
  margin: 0 0 48px;
}

.tool-section-lead .tool-section-label {
  width: fit-content;
  padding-left: 14px;
  position: relative;
}

.tool-section-lead .tool-section-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 5px;
  height: 5px;
  background: var(--launch-orange);
}

.tool-section-lead .tool-section-intro { margin-top: 2px; }

.tool-section-label {
  color: var(--launch-muted);
  font-size: 12px;
}

.tool-section h2 {
  max-width: 19ch;
  margin: 0;
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1.08;
}

.tool-section-intro {
  max-width: 62ch;
  margin: 18px 0 0;
  color: var(--launch-copy);
  font-size: 17px;
  line-height: 1.6;
}

.tool-transfer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--launch-line);
  border-radius: var(--launch-radius);
  overflow: hidden;
}

.tool-transfer article {
  min-height: 238px;
  padding: 26px;
  border-left: 1px solid var(--launch-line);
  background: var(--launch-canvas);
}

.tool-transfer article:first-child { border-left: 0; }
.tool-transfer article:nth-child(2) { background: var(--launch-surface); }

.tool-transfer small {
  color: var(--launch-muted);
  font: 11px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.tool-transfer h3 {
  max-width: 15ch;
  margin: 68px 0 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.02em;
}

.tool-transfer p {
  max-width: 34ch;
  margin: 0;
  color: var(--launch-copy);
  font-size: 14px;
  line-height: 1.55;
}
























.tool-jobs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.tool-studio-placeholder-section {
  background: #f7f7f8;
}

.tool-studio-placeholder {
  overflow: hidden;
  border: 1px solid var(--launch-line);
  border-radius: var(--launch-radius);
  background: var(--launch-canvas);
  box-shadow: 0 18px 48px rgba(18,18,20,.045);
}

.tool-studio-placeholder-bar {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid var(--launch-line);
  background: rgba(255,255,255,.92);
}

.tool-studio-placeholder-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8d8db;
}

.tool-studio-placeholder-bar span {
  width: 118px;
  height: 7px;
  margin-left: 10px;
  border-radius: 4px;
  background: #e5e5e7;
}

.tool-studio-placeholder-body {
  min-height: 410px;
  display: grid;
  grid-template-columns: 92px minmax(0,1fr) 178px;
  gap: 10px;
  padding: 10px;
  background: #efeff1;
}

.tool-studio-placeholder-body aside {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 10px;
  border: 1px solid rgba(20,20,22,.07);
  border-radius: 5px;
  background: rgba(255,255,255,.84);
}

.tool-studio-placeholder-body aside b,
.tool-studio-placeholder-body aside i {
  display: block;
  height: 7px;
  border-radius: 4px;
  background: #d8d8db;
}

.tool-studio-placeholder-body aside b { width: 58%; }
.tool-studio-placeholder-body aside i { height: 34px; background: #f0f0f2; }

.tool-studio-placeholder-body > div {
  min-width: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 28px;
  border: 1px solid rgba(20,20,22,.07);
  border-radius: 5px;
  background: #e4e4e6;
  text-align: center;
}

.tool-studio-placeholder-body > div span {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 1px solid #c5c5c9;
  border-radius: 50%;
}

.tool-studio-placeholder-body > div strong {
  color: #626268;
  font-size: 13px;
  font-weight: 600;
}

.tool-studio-placeholder-body > div small {
  margin-top: 7px;
  color: #929297;
  font-size: 10px;
}

.tool-job {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--launch-line);
  border-radius: var(--launch-radius);
  background: var(--launch-surface);
}

.tool-job:nth-child(even) {
  border-left: 1px solid var(--launch-line);
}

.tool-job-media {
  height: 190px;
  overflow: hidden;
  border-bottom: 1px solid var(--launch-line);
  background: #e9e9eb;
}

.tool-job-media img,
.tool-job-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.tool-job-media.is-contain img {
  object-fit: contain;
  padding: 8%;
}

.keyshot-output-proof {
  position: relative;
  background: #d4d4d7;
}

.keyshot-output-proof img {
  filter: saturate(.74) contrast(.97);
  transform: scale(1.02);
}

.keyshot-output-proof.is-pdp img { object-position: 55% 55%; }
.keyshot-output-proof.is-motion img { object-position: 42% 55%; }
.keyshot-output-proof.is-campaign img { object-position: 66% 55%; filter: saturate(.5) contrast(.94); }
.keyshot-output-proof.is-states img { object-position: 28% 55%; filter: hue-rotate(-18deg) saturate(.66) contrast(.96); }

.keyshot-proof-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 5px;
  background: rgba(255,255,255,.86);
  color: #4e4e53;
  font-size: 9px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.keyshot-motion-path {
  position: absolute;
  left: 58%;
  top: 29%;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255,255,255,.72);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-30deg);
}

.keyshot-motion-path::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 7px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(34deg);
}

.keyshot-crop-frame {
  position: absolute;
  inset: 20px 55px 20px 56px;
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 3px;
  box-shadow: 0 0 0 999px rgba(22,22,24,.12);
}

.keyshot-state-swatches {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 5px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 5px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
}

.keyshot-state-swatches i {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(20,20,22,.1);
  border-radius: 4px;
  background: #2b2b2e;
}

.keyshot-state-swatches i:nth-child(2) { background: #a74531; }
.keyshot-state-swatches i:nth-child(3) { background: #d4d0c8; }

/* Product proof, not a product screenshot. The real asset remains dominant;
   the reduced rail and saved-view strip preserve the Studio mental model. */
.tool-ui-evidence {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0,1fr);
  gap: 7px;
  padding: 9px 9px 34px;
  background: #f1f1f2;
}

.tool-ui-rail {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 9px 7px;
  border: 1px solid rgba(20,20,22,.08);
  border-radius: 5px;
  background: rgba(255,255,255,.88);
}

.tool-ui-rail b,
.tool-ui-rail i {
  display: block;
  height: 5px;
  border-radius: 3px;
  background: #d5d5d8;
}

.tool-ui-rail b { width: 72%; }
.tool-ui-rail i { height: 22px; border: 1px solid #e3e3e5; background: #f6f6f7; }

.tool-ui-canvas {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(20,20,22,.08);
  border-radius: 5px;
  background: #d8d8da;
}

.tool-ui-evidence .tool-ui-canvas img {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  object-fit: cover;
}

.tool-ui-canvas>span {
  position: absolute;
  left: 8px;
  top: 8px;
  padding: 5px 7px;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: 5px;
  background: rgba(255,255,255,.84);
  color: #4d4d52;
  font-size: 8px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.tool-ui-strip {
  position: absolute;
  left: 62px;
  right: 9px;
  bottom: 9px;
  height: 18px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 5px;
  border: 1px solid rgba(20,20,22,.08);
  border-radius: 5px;
  background: rgba(255,255,255,.9);
}

.tool-ui-strip i {
  width: 22px;
  height: 10px;
  border-radius: 3px;
  background: #dedee1;
}

.tool-ui-strip i:first-child {
  border: 1px solid #68686d;
  background: #c8c8cb;
}

.tool-job-body {
  min-height: 176px;
  padding: 20px;
}

.tool-job small {
  display: block;
  margin-bottom: 30px;
  color: var(--launch-muted);
  font-size: 11px;
}

.tool-job h3 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -.015em;
}

.tool-job p {
  max-width: 49ch;
  margin: 0;
  color: var(--launch-copy);
  font-size: 14px;
  line-height: 1.55;
}

.tool-truth {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--launch-line);
  border-radius: var(--launch-radius);
  background: var(--launch-line);
}

.tool-truth article {
  padding: 32px;
  background: var(--launch-canvas);
}

.tool-truth small {
  display: block;
  margin-bottom: 28px;
  color: var(--launch-muted);
  font-size: 11px;
}

.tool-truth h3 {
  margin: 0 0 13px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -.02em;
}

.tool-truth p,
.tool-truth li {
  color: var(--launch-copy);
  font-size: 14px;
  line-height: 1.6;
}

.tool-truth ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tool-truth li {
  padding-top: 9px;
  border-top: 1px solid var(--launch-line);
}















.keyshot-operating-section { background: #f7f7f8; }

.keyshot-operating-model {
  display: grid;
  grid-template-columns: minmax(0, .82fr) 54px minmax(0, 1.18fr);
  align-items: stretch;
  gap: 0;
}

.keyshot-layer {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--launch-line);
  border-radius: var(--launch-radius);
  background: var(--launch-canvas);
}

.keyshot-layer-source { opacity: .78; }
.keyshot-layer-glossi { background: #18181b; border-color: #18181b; color: #fff; }
.keyshot-layer-top { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 20px; border-bottom: 1px solid var(--launch-line); }
.keyshot-layer-glossi .keyshot-layer-top { border-color: rgba(255,255,255,.14); }
.keyshot-layer-top small { color: var(--launch-muted); font-size: 10px; letter-spacing: .03em; }
.keyshot-layer-glossi .keyshot-layer-top small { color: rgba(255,255,255,.52); }
.keyshot-layer-top strong { font-size: 22px; font-weight: 500; }
.keyshot-layer > img { width: 100%; height: 330px; display: block; object-fit: cover; filter: saturate(.7); }
.keyshot-layer-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--launch-line); }
.keyshot-layer-glossi .keyshot-layer-list { border-color: rgba(255,255,255,.14); }
.keyshot-layer-list span { min-height: 70px; display: flex; align-items: center; padding: 14px 15px; border-left: 1px solid var(--launch-line); color: var(--launch-copy); font-size: 12px; line-height: 1.4; }
.keyshot-layer-list span:first-child { border-left: 0; }
.keyshot-layer-glossi .keyshot-layer-list span { border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.72); }
.keyshot-layer-arrow { display: grid; place-items: center; color: var(--launch-muted); font-size: 23px; }

.keyshot-browser-proof { padding: 16px; }
.keyshot-browser-bar { height: 42px; display: flex; align-items: center; gap: 9px; padding: 0 12px; border: 1px solid rgba(255,255,255,.14); border-bottom: 0; border-radius: 5px 5px 0 0; background: #f7f7f8; color: #28282b; }
.keyshot-browser-bar i { width: 8px; height: 8px; border-radius: 50%; background: #d1d1d5; }
.keyshot-browser-bar b { font-size: 12px; font-weight: 600; }
.keyshot-browser-bar span { margin-left: auto; color: #8a8a90; font-size: 10px; }
.keyshot-browser-body { position: relative; height: 288px; display: grid; grid-template-columns: 54px minmax(0,1fr); gap: 8px; padding: 8px; border: 1px solid rgba(255,255,255,.14); border-radius: 0 0 5px 5px; background: #efeff1; }
.keyshot-browser-body aside { display: flex; flex-direction: column; gap: 9px; padding: 9px 7px; border: 1px solid rgba(20,20,22,.07); border-radius: 4px; background: rgba(255,255,255,.7); }
.keyshot-browser-body aside i { height: 18px; border-radius: 3px; background: #dedee1; }
.keyshot-browser-body aside i:first-child { background: #b7b7bc; }
.keyshot-browser-body > img { width: 100%; height: 100%; display: block; object-fit: cover; border-radius: 4px; }
.keyshot-output-stack { position: absolute; right: 18px; bottom: 18px; display: flex; gap: 5px; }
.keyshot-output-stack span { padding: 7px 8px; border: 1px solid rgba(24,24,27,.09); border-radius: 4px; background: rgba(255,255,255,.88); color: #55555a; font-size: 9px; backdrop-filter: blur(8px); }

.keyshot-rollout-section { background: var(--launch-canvas); }
.keyshot-rollout-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--launch-line);
  border-bottom: 1px solid var(--launch-line);
}

.keyshot-rollout-grid article {
  min-height: 210px;
  padding: 24px 26px 28px;
  border-left: 1px solid var(--launch-line);
}

.keyshot-rollout-grid article:first-child { border-left: 0; }
.keyshot-rollout-grid span { color: var(--launch-muted); font: 10px/1.5 ui-monospace, SFMono-Regular, Menlo, monospace; }
.keyshot-rollout-grid h3 { margin: 64px 0 9px; font-size: 20px; font-weight: 500; letter-spacing: -.015em; }
.keyshot-rollout-grid p { max-width: 38ch; margin: 0; color: var(--launch-copy); font-size: 14px; line-height: 1.55; }







.tool-faq {
  display: grid;
  grid-template-columns: minmax(240px, 4fr) minmax(0, 8fr);
  gap: 64px;
  align-items: start;
}

.tool-faq .tool-section-lead { margin: 0; }

@media (max-width: 820px) {
  .tool-section-lead { margin-bottom: 32px; }




  .keyshot-operating-model { grid-template-columns: 1fr; gap: 14px; }
  .keyshot-layer-arrow { min-height: 24px; transform: rotate(90deg); }
  .keyshot-layer > img { height: 270px; }
  .keyshot-browser-body { height: 250px; }
  .keyshot-layer-list { grid-template-columns: 1fr; }
  .keyshot-layer-list span { min-height: 48px; border-left: 0; border-top: 1px solid var(--launch-line); }
  .keyshot-layer-list span:first-child { border-top: 0; }
  .keyshot-layer-glossi .keyshot-layer-list span { border-color: rgba(255,255,255,.14); }
  .keyshot-rollout-grid { grid-template-columns: 1fr; }
  .keyshot-rollout-grid article { min-height: 175px; border-left: 0; border-top: 1px solid var(--launch-line); }
  .keyshot-rollout-grid article:first-child { border-top: 0; }
  .keyshot-rollout-grid h3 { margin-top: 38px; }
}

.tool-faq-list { border-top: 1px solid var(--launch-line); }
.tool-faq details { border-bottom: 1px solid var(--launch-line); }
.tool-faq summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 0;
  list-style: none;
  font-size: 16px;
  font-weight: 500;
}
.tool-faq summary::-webkit-details-marker { display: none; }
.tool-faq summary::after { content: "+"; color: var(--launch-muted); font-weight: 400; }
.tool-faq details[open] summary::after { content: "−"; }
.tool-faq details p {
  max-width: 68ch;
  margin: 0;
  padding: 0 40px 22px 0;
  color: var(--launch-copy);
  font-size: 14px;
  line-height: 1.6;
}

.tool-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--launch-line);
}

.tool-related-grid a {
  min-height: 166px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-rows: auto 38px auto;
  column-gap: 12px;
  align-content: start;
  padding: 24px 22px;
  border-right: 1px solid var(--launch-line);
  text-decoration: none;
}

.tool-related-grid a:first-child { padding-left: 0; }
.tool-related-grid a:last-child { border-right: 0; }
.tool-related-grid small {
  grid-column: 1 / -1;
  color: var(--launch-muted);
  font-size: 10px;
}

.tool-related-grid a::before {
  content: "";
  grid-column: 1;
  grid-row: 2;
  width: 30px;
  height: 30px;
  align-self: end;
  display: block;
  border: 1px solid var(--launch-line);
  border-radius: 5px;
  background-color: #f7f7f8;
  background-image: var(--tool-related-logo);
  background-position: center;
  background-repeat: no-repeat;
  background-size: var(--tool-related-logo-size, 19px 19px);
}

.tool-related-grid a[href$="/blender.html"] {
  --tool-related-logo: url("../images/integrations/glossi-logo-blender.svg");
}

.tool-related-grid a[href$="/keyshot.html"] {
  --tool-related-logo: url("../images/integrations/glossi-logo-keyshot.png");
  --tool-related-logo-size: 80px auto;
}

.tool-related-grid a[href$="/keyshot.html"]::before {
  background-position: left center;
}

.tool-related-grid a[href$="/3ds-max.html"] {
  --tool-related-logo: url("../images/integrations/glossi-icon-3dsmax.svg");
}

.tool-related-grid a[href$="/clo.html"] {
  --tool-related-logo: url("../images/integrations/glossi-icon-clo.png");
}

.tool-related-grid a[href$="/solidworks.html"] {
  --tool-related-logo: url("../images/integrations/glossi-logo-solidworks.svg");
  --tool-related-logo-size: 26px auto;
}

.tool-related-grid a[href$="/shapr3d.html"] {
  --tool-related-logo: url("../images/integrations/glossi-icon-shapr3d.svg");
  --tool-related-logo-size: 17px 20px;
}

.tool-related-grid strong {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  display: block;
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 500;
}

.tool-related-grid span {
  grid-column: 1 / -1;
  display: block;
  margin-top: 10px;
  color: var(--launch-copy);
  font-size: 13px;
  line-height: 1.45;
}

.tool-commit {
  padding: clamp(72px, 8vw, 104px) 0;
  background: var(--launch-dark);
  color: #fff;
}

.tool-commit-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 56px;
}

.tool-commit h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.04;
}

.tool-commit p {
  max-width: 50ch;
  margin: 18px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.55;
}

.tool-commit .pp-button {
  flex: 0 0 auto;
  min-height: 48px;
  border-color: #fff;
  background: #fff;
  color: var(--launch-ink);
}

/* Header graphics explain the page thesis at a glance. This handoff graphic
   shows the real Shapr3D value chain: approved model in, reusable content out. */
.tool-header-graphic {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--launch-line);
  border-radius: 5px;
  background: var(--launch-surface);
}

.shapr-hero-flow {
  height: 504px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 126px 28px minmax(0, 1fr) 42px;
  gap: 8px;
  padding: 12px;
}

.shapr-hero-source,
.shapr-hero-output figure {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(20,20,22,.08);
  border-radius: 5px;
  background: #dedee0;
}

.shapr-hero-source {
  grid-column: 1;
  grid-row: 1;
  isolation: isolate;
  background: #e9e9eb;
}

.shapr-hero-source::before,
.shapr-hero-source::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.shapr-hero-source::before {
  inset: 0;
  opacity: .58;
  background-image:
    linear-gradient(rgba(45,45,50,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,45,50,.09) 1px, transparent 1px);
  background-size: 20px 20px;
  mix-blend-mode: multiply;
}

.shapr-hero-source::after {
  inset: 15px 13%;
  border: 1px solid rgba(42,42,47,.28);
  border-top-color: rgba(42,42,47,.16);
  border-bottom-color: rgba(42,42,47,.16);
}

.shapr-hero-source > img,
.shapr-hero-output figure > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.shapr-hero-source > img {
  filter: grayscale(1) contrast(.82) brightness(1.08);
  object-position: 50% 44%;
}

.shapr-hero-source figcaption,
.shapr-hero-output figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 5px;
  background: rgba(255,255,255,.92);
  color: #3f3f43;
}

.shapr-hero-source figcaption {
  right: auto;
  z-index: 2;
  min-width: 174px;
  gap: 8px;
  padding: 8px;
}

.shapr-hero-source figcaption > img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.shapr-hero-source figcaption span,
.shapr-hero-source figcaption small,
.shapr-hero-source figcaption strong {
  display: block;
}

.shapr-hero-source figcaption small {
  color: var(--launch-muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .055em;
}

.shapr-hero-source figcaption strong {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
}

.shapr-hero-transfer {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--launch-muted);
}

.shapr-hero-transfer span {
  width: 34px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--launch-line-strong);
  border-radius: 5px;
  background: #fff;
  color: var(--launch-copy);
  font-size: 10px;
  font-weight: 650;
}

.shapr-hero-transfer i {
  font-size: 18px;
  font-style: normal;
  line-height: 1;
  transform: rotate(90deg);
}

.shapr-hero-output {
  grid-column: 1;
  grid-row: 3;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  grid-template-rows: minmax(0,1.55fr) minmax(0,.72fr);
  gap: 8px;
}

.shapr-hero-output-main {
  grid-column: 1 / -1;
}

.shapr-hero-output-main img {
  object-position: 50% 60%;
}

.shapr-hero-output-motion > img {
  object-position: 72% 54%;
  transform: scale(1.12);
}

.shapr-hero-output figure:last-child {
  display: grid;
  place-items: center;
  background: #dedbd6;
}

.shapr-hero-output figure:last-child > img {
  width: auto;
  height: 86%;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 3px;
  object-position: 50% 50%;
}

.shapr-hero-output figure:not(.shapr-hero-output-main) figcaption {
  left: 7px;
  bottom: 7px;
  padding: 5px 6px;
  z-index: 2;
  font-size: 10px;
  font-weight: 600;
}

.shapr-hero-output-motion > i {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  background: rgba(255,255,255,.9);
}

.shapr-hero-output-motion > i::before,
.shapr-hero-output-motion > i::after {
  content: "";
  position: absolute;
}

.shapr-hero-output-motion > i::before {
  inset: 5px;
  border: 1px solid #55555a;
  border-left-color: transparent;
  border-radius: 50%;
}

.shapr-hero-output-motion > i::after {
  top: 4px;
  right: 4px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #55555a;
  border-right: 1px solid #55555a;
}

.shapr-hero-output-main figcaption {
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 600;
}

.shapr-hero-caption {
  grid-column: 1 / -1;
  grid-row: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 4px;
  color: var(--launch-muted);
  font-size: 11px;
}

.shapr-hero-caption::before {
  content: "";
  height: 1px;
  flex: 1;
  order: 2;
  background: var(--launch-line);
}

.shapr-hero-caption span { order: 1; }
.shapr-hero-caption strong {
  order: 3;
  color: var(--launch-copy);
  font-weight: 600;
}

.shapr-workflow-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  overflow: hidden;
  border: 1px solid var(--launch-line);
  border-radius: 5px;
  background: var(--launch-surface);
}

.shapr3d-page #workflow .tool-section-lead { max-width: 1040px; }
.shapr3d-page #workflow .tool-section-lead h2 { max-width: none; }
.shapr3d-page #workflow .tool-section-lead h2 span { display: block; }

.shapr-workflow-grid article {
  min-height: 286px;
  padding: 24px;
  border-left: 1px solid var(--launch-line);
  background: var(--launch-canvas);
}

.shapr-workflow-grid article:first-child { border-left: 0; }
.shapr-workflow-grid article:nth-child(even) { background: var(--launch-surface); }
.shapr-workflow-grid article > span { color: var(--launch-muted); font: 10px/1.5 ui-monospace, SFMono-Regular, Menlo, monospace; }
.shapr-workflow-grid small { display: block; margin-top: 12px; color: var(--launch-muted); font-size: 9px; letter-spacing: .06em; }
.shapr-workflow-grid h3 { max-width: 16ch; margin: 68px 0 10px; font-size: 21px; font-weight: 500; line-height: 1.16; letter-spacing: -.02em; }
.shapr-workflow-grid p { max-width: 33ch; margin: 0; color: var(--launch-copy); font-size: 13px; line-height: 1.55; }

.shapr-production-proof { display: grid; grid-template-columns: minmax(0,1fr) 52px minmax(0,1fr); align-items: center; margin-top: 28px; }
.shapr-production-stage { position: relative; min-width: 0; min-height: 390px; overflow: hidden; border: 1px solid var(--launch-line); border-radius: 5px; background: #e6e6e8; }
.shapr-production-stage > img { width: 100%; height: 390px; display: block; object-fit: cover; filter: saturate(.78) contrast(.98); }
.shapr-production-stage.is-glossi { background: #18181b; border-color: #18181b; }
.shapr-production-arrow { color: var(--launch-muted); font-size: 22px; text-align: center; }
.shapr-source-label { position: absolute; left: 14px; bottom: 14px; min-width: 160px; padding: 11px 12px; border: 1px solid rgba(255,255,255,.5); border-radius: 5px; background: rgba(255,255,255,.88); backdrop-filter: blur(10px) saturate(1.45); }
.shapr-source-label small, .shapr-source-label strong, .shapr-source-label span { display: block; }
.shapr-source-label small { color: var(--launch-muted); font-size: 8px; letter-spacing: .05em; }
.shapr-source-label strong { margin-top: 4px; font-size: 12px; font-weight: 600; }
.shapr-source-label span { margin-top: 3px; color: var(--launch-copy); font-size: 9px; }
.shapr-stage-skeleton { position: absolute; top: 14px; right: 14px; width: 110px; display: grid; gap: 7px; padding: 10px; border: 1px solid rgba(255,255,255,.5); border-radius: 5px; background: rgba(255,255,255,.88); backdrop-filter: blur(10px) saturate(1.45); }
.shapr-stage-skeleton i { display: block; height: 18px; border: 1px solid var(--launch-line); border-radius: 4px; background: #f4f4f5; }

.shapr-output-proof { position: relative; background: #dddde0; }
.shapr-output-proof img { filter: saturate(.8) contrast(.98); }
.shapr-output-badge { position: absolute; left: 12px; bottom: 12px; padding: 7px 9px; border: 1px solid rgba(255,255,255,.55); border-radius: 5px; background: rgba(255,255,255,.88); color: #4d4d52; font-size: 9px; font-weight: 600; backdrop-filter: blur(8px) saturate(1.45); }
.shapr-swatches { position: absolute; right: 12px; bottom: 12px; display: flex; gap: 5px; padding: 6px; border: 1px solid rgba(255,255,255,.55); border-radius: 5px; background: rgba(255,255,255,.88); backdrop-filter: blur(8px) saturate(1.45); }
.shapr-swatches i { width: 18px; height: 18px; border: 1px solid rgba(20,20,22,.1); border-radius: 4px; background: #9c7453; }
.shapr-swatches i:nth-child(2) { background: #3d352f; }
.shapr-swatches i:nth-child(3) { background: #d4c3a4; }
.shapr-motion-path { position: absolute; left: 56%; top: 27%; width: 66px; height: 66px; border: 1px solid rgba(255,255,255,.8); border-left-color: transparent; border-radius: 50%; transform: rotate(-32deg); }
.shapr-motion-path::after { content: ""; position: absolute; right: -2px; top: 7px; width: 6px; height: 6px; border-top: 1px solid #fff; border-right: 1px solid #fff; transform: rotate(34deg); }
.shapr-crop-frame { position: absolute; inset: 16px 52px; border: 1px solid rgba(255,255,255,.82); border-radius: 3px; box-shadow: 0 0 0 999px rgba(22,22,24,.14); }

.shapr-file-truth article { display: flex; flex-direction: column; }
.shapr-file-truth .tool-text-link { width: fit-content; margin-top: 20px; }
.shapr-history-note { margin: 18px 0 0; color: var(--launch-muted); font-size: 12px; line-height: 1.55; }
.shapr-history-note a { color: var(--launch-ink); text-decoration: none; }
.tool-related-section .tool-section-lead { margin-bottom: 32px; }

@media (max-width: 1100px) {
  .shapr-workflow-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .shapr-workflow-grid article:nth-child(3) { border-left: 0; border-top: 1px solid var(--launch-line); }
  .shapr-workflow-grid article:nth-child(4) { border-top: 1px solid var(--launch-line); }
}

@media (max-width: 980px) {
  .tool-hero-grid,
  .tool-faq { grid-template-columns: 1fr; }
  .shapr3d-page .tool-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .tool-hero-grid { gap: 48px; }

  .tool-faq { gap: 30px; }
  .tool-section-head--split { grid-template-columns: 1fr; gap: 24px; }
  .tool-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tool-related-grid a:nth-child(2) { border-right: 0; }
  .tool-related-grid a:nth-child(n+3) { border-top: 1px solid var(--launch-line); }
  .tool-related-grid a:nth-child(3) { padding-left: 0; }
  .shapr3d-page #workflow .tool-section-lead { max-width: 790px; }
  .shapr3d-page #workflow .tool-section-lead h2 { max-width: 19ch; }
  .shapr3d-page #workflow .tool-section-lead h2 span { display: inline; }
  .shapr3d-page #workflow .tool-section-lead h2 span + span::before { content: " "; }
}

@media (max-width: 720px) {
  .tool-hero { padding-top: 58px; }
  .tool-section { padding: 64px 0; }
  .tool-section--compact { padding: 56px 0; }
  .tool-hero-grid > div { min-width: 0; width: 100%; }
  .tool-hero h1,
  .max-integration-page .tool-hero h1,
  .shapr3d-page .tool-hero h1 {
    max-width: none;
    font-size: clamp(40px, 11vw, 44px);
    line-height: 1.02;
  }
  .tool-hero-copy,
  .tool-note { max-width: 100%; overflow-wrap: anywhere; }
  .tool-actions { align-items: stretch; flex-direction: column; }
  .tool-actions .pp-button { width: 100%; min-height: 46px; }








  .tool-proof-foot { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tool-proof-foot span { min-height: 54px; padding: 10px; border-top: 0; font-size: 9px; }
  .tool-model-proof { grid-template-columns: 1fr; }
  .tool-model-canvas { min-height: 300px; border-right: 0; border-bottom: 1px solid var(--launch-line); }
  .tool-model-canvas > img,
  .tool-model-canvas > video { min-height: 300px; }
  .tool-model-pane { min-height: 218px; padding: 18px 16px 16px; }
  .tool-model-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 24px; }
  .tool-model-facts span { min-width: 0; padding: 11px 0; }
  .tool-model-facts span + span { padding-left: 12px; border-left: 1px solid var(--launch-line); }
  .tool-model-source { top: 12px; left: 12px; }
  .tool-model-transfer { left: 12px; bottom: 12px; }
  .tool-transfer { grid-template-columns: 1fr; }



  .tool-transfer article { min-height: 0; border-left: 0; border-top: 1px solid var(--launch-line); }
  .tool-transfer article:first-child { border-top: 0; }
  .tool-transfer h3 { margin-top: 36px; }
  .tool-studio-placeholder-body { min-height: 300px; grid-template-columns: 46px minmax(0,1fr); padding: 7px; }
  .tool-studio-placeholder-body aside { gap: 7px; padding: 8px 6px; }
  .tool-studio-placeholder-body aside:last-child { display: none; }
  .tool-studio-placeholder-body > div { padding: 18px; }
  .tool-studio-placeholder-body > div small { max-width: 18ch; line-height: 1.4; }
  .tool-jobs { display: flex; gap: 10px; overflow-x: auto; margin-right: calc(-1 * var(--launch-gutter)); padding-right: var(--launch-gutter); scroll-snap-type: x mandatory; scrollbar-width: none; }
  .tool-jobs::-webkit-scrollbar { display: none; }
  .tool-truth { grid-template-columns: 1fr; }
  .tool-job,
  .tool-job:nth-child(even) { min-width: 82%; border-left: 1px solid var(--launch-line); scroll-snap-align: start; }
  .tool-job-media { height: 210px; }
  .tool-job-body { min-height: 168px; }
  .tool-job small { margin-bottom: 24px; }
  .tool-truth article { padding: 24px; }
  .tool-related-grid { grid-template-columns: 1fr; }
  .tool-related-grid a,
  .tool-related-grid a:first-child,
  .tool-related-grid a:nth-child(3) { min-height: 132px; padding: 22px 0; border-right: 0; border-top: 1px solid var(--launch-line); }
  .tool-related-grid a:first-child { border-top: 0; }
  .tool-related-grid a { grid-template-rows: auto 34px auto; }
  .tool-related-grid a::before { width: 30px; height: 30px; }
  .tool-related-grid strong { margin-bottom: 4px; }
  .tool-commit-inner { align-items: flex-start; flex-direction: column; }
  .tool-commit .pp-button { width: 100%; }
  .shapr-hero-flow {
    height: 430px;
    grid-template-columns: 1fr;
    grid-template-rows: 104px 24px minmax(0,1fr) 36px;
    gap: 7px;
    padding: 9px;
  }
  .shapr-hero-transfer span { width: 30px; height: 20px; font-size: 10px; }
  .shapr-hero-transfer i { font-size: 15px; }
  .shapr-hero-output { gap: 6px; }
  .shapr-hero-source figcaption { left: 7px; right: auto; bottom: 7px; padding: 6px; }
  .shapr-hero-source figcaption > img { width: 18px; height: 18px; }
  .shapr-hero-source figcaption small { font-size: 8px; }
  .shapr-hero-source figcaption strong { font-size: 10px; }
  .shapr-hero-output figure:not(.shapr-hero-output-main) figcaption { font-size: 10px; }
  .shapr-hero-output-main figcaption { font-size: 10px; }
  .shapr-workflow-grid { grid-template-columns: 1fr; }
  .shapr-workflow-grid article,
  .shapr-workflow-grid article:nth-child(3),
  .shapr-workflow-grid article:nth-child(4) { min-height: 218px; border-left: 0; border-top: 1px solid var(--launch-line); }
  .shapr-workflow-grid article:first-child { border-top: 0; }
  .shapr-workflow-grid h3 { margin-top: 40px; }
  .shapr-production-proof { grid-template-columns: 1fr; gap: 12px; }
  .shapr-production-arrow { min-height: 22px; transform: rotate(90deg); }
  .shapr-production-stage,
  .shapr-production-stage > img { min-height: 290px; height: 290px; }
  .shapr-stage-skeleton { width: 94px; }
  .shapr-source-label { left: 10px; bottom: 10px; min-width: 148px; }
  .shapr-crop-frame { inset: 16px 42px; }
}

@media (max-width: 520px) {
  .shapr-hero-flow {
    height: 420px;
    grid-template-rows: 100px 22px minmax(0,1fr) 34px;
  }
  .shapr-hero-source > img { object-position: 50% 56%; }
  .shapr-hero-source figcaption { min-width: 158px; }
  .shapr-hero-caption { font-size: 10px; }
}
