/* assets/css/pages/tool.css - shipped copy. Comments removed at build time by tools/strip-comments.mjs.
   Not minified: the names, the line breaks and the indentation are the author's own. */
.tool-band {
  position: relative;
  background: var(--ink);
}
.tool-band .wrap {
  padding-top: calc(var(--nav-h) + var(--head-gap));
  padding-bottom: var(--head-gap);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
}
.tool-band .band-kicker {
  color: var(--iv-faint);
  letter-spacing: var(--t-kicker-track, .18em);
}
.tool-band .band-h1 {
  margin: 16px 0 0;
  font-size: var(--t-display-size);
  font-weight: var(--t-display-weight);
  line-height: 1.02;
  letter-spacing: -.03em;
  color: rgba(243, 238, 228, var(--t-head-alpha, .92));
}
.tool-band .band-lede {
  margin: 16px 0 0;
  font-weight: 300;
  font-size: clamp(17px, 1.9vw, 20px);
  letter-spacing: -.008em;
  line-height: 1.55;
  max-width: 42ch;
  color: var(--iv-dim);
}

#tool-plate { display: block; }
#tool-plate .f-front { outline: var(--hair) solid var(--iv-hair); outline-offset: 0; }

.band-ticks-row {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  pointer-events: none;
}
.tool-band .band-ticks-row.wrap {
  display: block;
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.tool-band .band-ticks { display: flex; gap: 31px; align-items: flex-end; }
.tool-band .band-ticks span {
  width: 1px; height: 8px; background: var(--ivory); display: block;
}

.tool-sec { padding-top: 24px; padding-bottom: var(--sec-pad); }
.tool-sec .lbl { margin-top: 24px; }
.tool-sec h2 { margin-top: 16px; max-width: 22ch; }
.tool-sec .lede { margin-top: 16px; color: var(--ik-dim); max-width: 62ch; }
.tool-sec h3 { margin-top: var(--topic-gap); color: var(--ink); }
.tool-sec h3 + p { margin-top: 12px; color: var(--ik-dim); max-width: 62ch; }
.tool-sec p + p { margin-top: 16px; color: var(--ik-dim); max-width: 62ch; }
.tool-sec .honesty-caption { max-width: 66ch; }

.tool-bench { --strip-mt: 24px; --cap-mt: 12px; }

.bench-stage {
  position: relative;
  margin-top: var(--head-gap);
}
.bench-host {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.025em;
  color: var(--ink);
  max-width: 18ch;
}
.bench-host .l { display: block; }

.tool-bench .split-controls { max-width: 40rem; }

.bench-caption { margin-top: var(--cap-mt, 12px); }
.bench-stage + .honesty-caption { margin-top: var(--cap-mt, 12px); }
.bench-nojs { display: none; }
html:not(.js) .bench-nojs { display: block; }
html:not(.js) .bench-caption { display: none; }

.bench-buy {
  margin-top: 32px;
  border-top: var(--hair) solid var(--ik-hair);
  padding-top: var(--block-pad);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}
.bench-buy .card-price { margin-top: 0; }
.bench-buy .card-ctas { margin-top: 16px; }
.bench-buy .card-ctas + .honesty-caption { margin-top: var(--cap-mt, 12px); }
.bench-buy .bench-meta { display: grid; gap: 8px; justify-items: start; }
@media (min-width: 841px) {
  .bench-buy .bench-meta { justify-items: end; text-align: right; }
}

.bench-capture {
  margin-top: 32px;
  border-top: var(--hair) solid var(--ik-hair);
  padding-top: var(--block-pad);
}
.bench-capture .capture-form { max-width: 40rem; }
.bench-capture .card-price { margin-top: 0; margin-bottom: 16px; }
.bench-capture .capture-form .form-row + p { margin-top: 16px; }

.tool-plate-meta {
  margin-top: var(--topic-gap);
  display: grid;
  gap: 8px;
  border-top: var(--hair) solid var(--ik-hair);
  padding-top: var(--block-pad);
}

.install-sec[data-tool="breaktype"] { --acc: #D86341; }
.install-sec[data-tool="speaktype"] { --acc: #1D92AC; }
.install-sec[data-tool="easel"]     { --acc: #6E9141; }
.install-sec[data-tool="companion"] { --acc: #8D857A; }

.install-sec .sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.install-sec .os-switch {
  margin-top: var(--head-gap);
  display: flex;
  gap: 24px;
  border-bottom: var(--hair) solid var(--ik-hair);
}
html:not(.js) .install-sec .os-switch { display: none; }
.install-sec .os-switch button {
  position: relative;
  padding: 0 0 12px;
  border: 0;
  background: none;
  color: var(--ink);
  opacity: .64;
  cursor: pointer;
  transition: opacity var(--t-hover-out) var(--ease-mech);
}
.install-sec .os-switch button:hover,
.install-sec .os-switch button:focus-visible { opacity: 1; transition-duration: var(--t-hover-in); }
.install-sec .os-switch button[aria-checked="true"] { opacity: 1; }
.install-sec .os-switch button::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transition: transform var(--t-fade) var(--ease-mech);
}
.install-sec .os-switch button[aria-checked="true"]::after { transform: scaleX(1); }

html.js .install-sec[data-os="mac"] [data-plat="win"] { display: none; }
html.js .install-sec[data-os="win"] [data-plat="mac"] { display: none; }
html.js .install-sec .plat-tag { display: none; }
.install-sec .plat-tag { margin-top: var(--block-pad); }
html.js .install-sec .nojs-path { display: none; }
.install-sec .nojs-path {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ik-caption);
  overflow-wrap: anywhere;
  max-width: none;
}

.install-sec .stages { margin-top: 24px; }
.install-sec .stage {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 24px;
  border-top: var(--hair) solid var(--ik-hair);
  padding: 28px 0 36px;
}
html.js .install-sec .stage:first-child { border-top: 0; }
html:not(.js) .install-sec .stages { margin-top: var(--head-gap); }
.install-sec .stage:last-child { padding-bottom: 28px; }
.install-sec .stage-no { padding-top: 3px; }
.install-sec .stage-title {
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.005em;
}
.install-sec .stage-title + p { margin-top: 12px; color: var(--ik-dim); max-width: 62ch; }
.install-sec .stage-body p { max-width: 62ch; }
.install-sec .stage-cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: start;
}

.install-sec .journey {
  margin-top: var(--block-pad);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 0;
}
.install-sec .file-plate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--ivory);
  padding: 10px 14px 10px 11px;
  border-left: 3px solid var(--acc);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}
.install-sec .file-plate .fp-ext { color: var(--iv-faint); font-weight: 500; }
.install-sec .journey-arrow {
  color: var(--ik-faint);
  font-size: 16px;
  line-height: 1;
  margin: 0 16px;
}
.install-sec .rail { display: contents; }
.install-sec .rail li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: var(--hair) solid var(--ik-hair);
  color: var(--ik-dim);
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
}
.install-sec .rail li + li { margin-left: 20px; position: relative; }
.install-sec .rail li + li::before {
  content: "\203A";
  position: absolute;
  left: -14px;
  color: var(--ik-faint);
}
.install-sec .rail .fo { width: 13px; height: 11px; flex: none; }
.install-sec .rail .fo path { fill: none; stroke: currentColor; stroke-width: 1.2; }
.install-sec .rail .dest {
  color: var(--ink);
  font-weight: 600;
  border-color: var(--ik-box);
  border-bottom: 2px solid var(--acc);
  padding-bottom: 8px;
}

.install-sec .copy-row {
  margin-top: var(--block-pad);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px 20px;
}
html:not(.js) .install-sec .copy-row { display: none; }
.install-sec .copy-btn {
  border: var(--hair) solid var(--ik-field);
  background: none;
  color: var(--ink);
  padding: 9px 14px;
  cursor: pointer;
  transition: background var(--t-hover-out) var(--ease-mech),
              color var(--t-hover-out) var(--ease-mech);
}
.install-sec .copy-btn:hover,
.install-sec .copy-btn:focus-visible {
  background: var(--ink);
  color: var(--ivory);
  transition-duration: var(--t-hover-in);
}
.install-sec .copy-btn.is-copied { background: var(--ink); color: var(--ivory); }
.install-sec .copy-tip {
  font-size: 12px;
  line-height: 1.6;
  color: var(--ik-caption);
  max-width: 52ch;
}

.install-sec .stage-note {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ik-caption);
  max-width: 62ch;
}

.install-sec .menu-vignette {
  width: 236px;
  border: var(--hair) solid var(--ik-hair);
  background: var(--ivory);
}
.install-sec .mv-title {
  padding: 10px 14px;
  border-bottom: var(--hair) solid var(--ik-hair);
  color: var(--ik-faint);
}
.install-sec .mv-list { padding: 14px; display: grid; gap: 12px; }
.install-sec .mv-skel { height: 8px; background: var(--ik-hair); }
.install-sec .mv-sep { height: var(--hair); background: var(--ik-hair); margin: 2px 0; }
.install-sec .mv-live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}
.install-sec .mv-live::before {
  content: "";
  width: 3px; height: 14px; flex: none;
  background: var(--acc);
}

.install-sec .rows-head { margin-top: var(--topic-gap); }
.install-sec .fact-rows { margin-top: var(--block-pad); }
.install-sec .fact-row {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 24px;
  border-top: var(--hair) solid var(--ik-hair);
  padding: 14px 0;
}
.install-sec .fact-row:last-child { border-bottom: var(--hair) solid var(--ik-hair); }
.install-sec .fact-row p { margin-top: 0; max-width: 62ch; }
.install-sec .fact-label { color: var(--ik-faint); padding-top: 4px; }

.install-sec .lede + .fact-rows { margin-top: var(--head-gap); }

html.js .install-sec .stages-led .stage:first-child {
  border-top: var(--hair) solid var(--ik-hair);
}
.install-sec .rows-head + p { margin-top: 12px; max-width: 62ch; }

.install-sec .fact-rows + .honesty-caption { margin-top: var(--block-pad); max-width: 62ch; }
.install-sec .support-head { margin-top: var(--topic-gap); }
.install-sec .support-head + p { margin-top: 12px; max-width: 62ch; }

@media (max-width: 840px) {
  .install-sec .stage { grid-template-columns: 1fr; gap: 10px; padding: 24px 0 32px; }
  .install-sec .stage-cols { grid-template-columns: 1fr; gap: 24px; }
  .install-sec .fact-row { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 600px) {
  .install-sec .journey { flex-direction: column; align-items: flex-start; gap: 10px; }
  .install-sec .journey-arrow { transform: rotate(90deg); margin: 0 0 0 22px; }
  .install-sec .rail li + li { margin-left: 0; }
  .install-sec .rail li + li::before { content: none; }
  .install-sec .rail li { position: relative; }
  .install-sec .rail li:nth-child(2) { margin-left: 18px; }
  .install-sec .rail li:nth-child(3) { margin-left: 36px; }
  .install-sec .rail li:nth-child(4) { margin-left: 54px; }
  .install-sec .rail li:nth-child(5) { margin-left: 72px; }
  .install-sec .rail li:nth-child(6) { margin-left: 90px; }
  .install-sec .rail li + li::after {
    content: "";
    position: absolute;
    left: -10px; top: -9px;
    width: 8px; height: 24px;
    border-left: var(--hair) solid var(--ik-box);
    border-bottom: var(--hair) solid var(--ik-box);
  }
  .install-sec .os-switch { margin-top: 40px; }
}

.pressing-grid {
  margin-top: var(--head-gap);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}
.pressing-grid img {
  width: 400px;
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-mask-image: linear-gradient(to right, #000 89.5%, transparent 100%),
                      linear-gradient(to bottom, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, #000 89.5%, transparent 100%),
              linear-gradient(to bottom, #000 90%, transparent 100%);
  mask-composite: intersect;
}
.pressing-grid .honesty-caption { max-width: 52ch; }
.pressing-grid .honesty-caption + .honesty-caption { margin-top: 16px; }
.pressing-grid--norender { grid-template-columns: 1fr; }
.pressing-grid .tool-plate-meta { margin-top: var(--topic-gap); max-width: 52ch; }

.doors-row {
  margin-top: var(--head-gap);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.doors-row .crate-card { display: block; }
.doors-row .card-title { margin-top: 8px; }

@media (max-width: 1024px) {
  .tool-band .wrap { gap: 40px; }
  .pressing-grid { gap: 32px; }
  .pressing-grid img { width: 320px; }
  .doors-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 840px) {
  .tool-band .wrap {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 32px;
    padding-top: calc(var(--nav-h) + 24px);
    padding-bottom: 24px;
  }
  .tool-band .band-plate { order: -1; }
  .bench-buy { grid-template-columns: 1fr; gap: 24px; }
  .pressing-grid { grid-template-columns: 1fr; }
  .doors-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .bench-host { max-width: none; }
  .tool-bench { --strip-mt: 16px; --cap-mt: 8px; }
  .pressing-grid img { width: 300px; }
}
