:root {
  --blue: #2563eb;
  --blue-dark: #174dcc;
  --ink: #16243d;
  --muted: #67758d;
  --border: #e1e7f0;
  --paper: #f6f8fc;
  --pale: #edf3ff;
  --green: #078a72;
  --orange: #a45c10;
  --radius: 14px;
  font-family: Inter, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
/* Editable examples distinguish source pixels, rebuilt backgrounds and text. */
.demo-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.demo-intro h3 {
  margin-top: 5px;
  font-size: 18px;
}
.demo-intro .btn {
  flex-shrink: 0;
}
.demo-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
}
.demo-pair figure {
  min-width: 0;
  margin: 0;
}
.demo-stage-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  margin-bottom: 10px;
}
.demo-stage-label b {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 7px;
  background: var(--pale);
  color: var(--blue);
}
.demo-stage-label span {
  color: var(--muted);
  margin-left: auto;
  font-size: 11px;
}
.demo-slide {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  container-type: inline-size;
  background: #fff;
}
.demo-slide > img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: fill;
}
.demo-text-layer {
  position: absolute;
  inset: 0;
}
.demo-textbox {
  position: absolute;
  display: block;
  resize: none;
  min-height: 0;
  margin: 0;
  padding: 0.2cqw;
  border: 1px dashed #548ce7;
  border-radius: 1px;
  line-height: 1.2;
  background: transparent;
  overflow: hidden;
  font-family: "Microsoft YaHei", "Segoe UI", sans-serif;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.demo-textbox:hover {
  border-style: solid;
  background: #f4f8ff44;
}
.demo-textbox:read-only {
  cursor: grab;
  touch-action: none;
  user-select: none;
}
.demo-textbox.is-selected {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  z-index: 2;
}
.demo-textbox:read-only:active {
  cursor: grabbing;
}
.demo-textbox:read-write {
  cursor: text;
  touch-action: auto;
}
.demo-textbox:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
  border-color: var(--blue);
  z-index: 2;
  background: #ffffffa3;
  box-shadow: 0 0 0 3px #2563eb12;
}
.demo-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}
.demo-controls .btn {
  min-height: 40px;
}
.demo-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--blue-dark);
}
.demo-legend i {
  width: 12px;
  height: 12px;
  border: 1px dashed var(--blue);
}
.demo-explanation {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}
.demo-disclosure {
  margin-top: 8px;
  font-size: 11px;
  color: var(--muted);
}
.demo-mobile-editor {
  display: none;
  padding: 15px;
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--paper);
}
.demo-mobile-editor textarea {
  min-height: 90px;
  font-size: 16px;
}
.workspace-example .demo-pair {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}
.workspace-example .demo-intro {
  margin: 0;
  height: 0;
}
.workspace-example .demo-intro > div,
.workspace-example .demo-stage-label span,
.workspace-example .demo-explanation,
.workspace-example .demo-disclosure {
  display: none;
}
.workspace-example .demo-stage-label {
  font-size: 12px;
  min-height: 28px;
  flex-wrap: nowrap;
  margin-bottom: 6px;
}
.workspace-example .demo-stage-label b {
  flex-shrink: 0;
}
.workspace-example .demo-controls {
  margin-top: 8px;
  gap: 4px 10px;
}
.workspace-example .demo-controls .btn {
  min-height: 36px;
  font-size: 12px;
}
.workspace-example-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4px 12px;
  color: var(--muted);
  font-size: 11px;
  margin-top: 4px;
}
.workspace-example .workspace-example-note a {
  margin: 0;
}
.example-dialog {
  width: min(1380px, calc(100vw - 40px));
  max-width: 1380px;
}
.example-dialog .demo-intro {
  display: none;
}
.example-dialog .demo-pair {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}
.demo-source-text {
  position: absolute;
  white-space: pre-wrap;
  line-height: 1.2;
  padding: 0.2cqw;
  border: 1px solid transparent;
}
.demo-source-layer {
  pointer-events: none;
  user-select: none;
}
[data-example="clean"] .demo-source-text,
[data-example="clean"] .demo-textbox {
  text-shadow:
    0 2px 8px #102711,
    0 1px 3px #102711;
}
[data-example="clean"] .demo-textbox {
  border-color: #87ceff;
  background: #09221d14;
}
[data-example="clean"] .demo-textbox:focus {
  background: #082921aa;
  outline-color: #88d9ff;
}
.demo-textbox:read-only:focus,
[data-example="clean"] .demo-textbox:read-only:focus {
  background: transparent;
}
.element-canvas {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #e9ede5;
  container-type: inline-size;
  isolation: isolate;
}
.element-object {
  position: absolute;
  display: block;
  margin: 0;
  padding: 0;
  min-width: 0;
  min-height: 0;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--element-color);
  font-family: inherit;
  font-size: var(--element-font);
  font-weight: var(--element-weight);
  line-height: 1.25;
  text-align: left;
  box-shadow: none;
  user-select: none;
  -webkit-user-select: none;
}
.element-canvas-editable .element-object {
  border: 1px dashed #55a3f6;
  cursor: pointer;
}
.element-canvas-editable .element-object {
  cursor: grab;
  touch-action: none;
}
.element-canvas-editable .element-object:active {
  cursor: grabbing;
}
.element-canvas-editable .element-object:hover {
  border-style: solid;
  border-color: #0064ed;
}
.element-canvas-editable .element-object.is-selected,
.element-canvas-editable .element-object:focus-visible {
  outline: 2px solid #1673ee;
  outline-offset: -1px;
}
.element-art,
.element-art > svg,
.element-art > .element-sky,
.element-art > .element-panel {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.element-text .element-art {
  white-space: pre-wrap;
  overflow: hidden;
}
[data-element="date"] .element-art,
.element-canvas-source .element-text:last-child .element-art {
  text-shadow:
    0 1px 5px #193b28,
    0 1px 2px #193b28;
}
.element-art > .element-sky {
  background: linear-gradient(155deg, #edf2d9, #cadfc9 58%, #97bba2);
}
.element-art > .element-panel {
  background: #153e32ed;
  border-radius: 1cqw;
  box-shadow: 0 1cqw 2cqw #243e3622;
}
.element-handle {
  display: none;
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 6px;
  height: 6px;
  border: 1px solid #1673ee;
  background: white;
  pointer-events: none;
}
.is-selected > .element-handle {
  display: block;
}
.element-workbench {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 252px;
  gap: 24px;
  align-items: start;
}
.element-main {
  min-width: 0;
}
.element-inspector {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.element-inspector .field {
  margin: 0;
  min-width: 0;
}
.element-inspector select {
  width: 100%;
}
.element-inspector textarea {
  min-height: 90px;
  font-size: 16px;
}
.element-inspector .btn {
  width: 100%;
  min-height: 44px;
}
.element-image-hint {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.element-position {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
}
.element-position output {
  font-variant-numeric: tabular-nums;
  color: var(--muted);
}
.element-original {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}
.element-original summary {
  cursor: pointer;
  padding: 10px 0;
}
.element-original .element-canvas {
  max-width: 380px;
  margin: 8px 0;
}
.element-live {
  min-height: 20px;
}
@media (max-width: 800px) {
  .element-workbench {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
  .element-inspector {
    padding: 14px;
  }
}
.free-feature-price {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
}
.free-feature-price s {
  color: var(--muted);
}
.free-feature-price strong {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}
.setting-row .pill:has(.free-feature-price) {
  background: transparent;
  padding: 0;
  border: 0;
}
.settings-free-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  margin-left: 7px;
  color: var(--green);
}
.free-thanks {
  display: flex;
  gap: 10px;
  padding: 14px;
  margin: 8px 0;
  background: #edf9f4;
  border: 1px solid #ceeadd;
  border-radius: 10px;
  color: #176247;
  font-size: 12px;
}
.free-thanks .icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.free-thanks p {
  margin-top: 3px;
  font-size: 11px;
}
.free-benefit-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 26px;
  background: #effaf5;
  border: 1px solid #cbe6d8;
  border-radius: var(--radius);
}
.free-benefit-card h2 {
  font-size: 19px;
}
.free-benefit-card p {
  font-size: 13px;
  color: #3c6a55;
  margin-top: 5px;
}
.free-benefit-prices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}
.upgrade-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.upgrade-options.single {
  grid-template-columns: 1fr;
}
.upgrade-option {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}
.upgrade-visual {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 16px 18px;
  background: #eef5fc;
  color: #1c5587;
  font-size: 12px;
  font-weight: 700;
}
.upgrade-visual.full {
  background: #f1f0ff;
  color: #61529a;
}
.upgrade-visual .icon {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
}
.upgrade-copy {
  padding: 18px;
}
.upgrade-copy h3 {
  font-size: 16px;
}
.upgrade-copy p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 9px;
}
.upgrade-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  margin: 16px 0 12px;
}
.upgrade-price strong {
  font-size: 23px;
}
.upgrade-price span,
.upgrade-price s {
  font-size: 11px;
  color: var(--muted);
}
.upgrade-guide .section-title {
  margin-bottom: 18px;
}
.upgrade-guide .section-title h2 {
  font-size: 21px;
}
.upgrade-source {
  padding: 14px;
  border-radius: 12px;
  background: var(--pale);
  overflow-wrap: anywhere;
}
.upgrade-context {
  scroll-margin-top: 92px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--pale);
  border: 1px solid #cedefe;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 24px;
}
.upgrade-context > div {
  display: flex;
  gap: 12px;
  align-items: center;
}
.upgrade-context p {
  font-size: 13px;
}
.upgrade-context small {
  color: var(--muted);
}
.upgrade-context > a {
  flex-shrink: 0;
}
.support-grid.single {
  grid-template-columns: 1fr;
}
@media (min-width: 1100px) and (max-width: 1350px) {
  .workspace-heading h1 {
    font-size: 28px;
  }
  .upgrade-options {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 800px) {
  .demo-mobile-editor:not([hidden]) {
    display: block;
  }
  .demo-pair,
  .example-dialog .demo-pair {
    grid-template-columns: 1fr;
  }
  .demo-intro {
    align-items: flex-start;
  }
  .demo-intro h3 {
    font-size: 16px;
  }
  .demo-intro .eyebrow {
    font-size: 10px;
  }
  .demo-intro .btn {
    padding: 7px 9px;
    min-height: 40px;
  }
  .demo-stage-label span {
    display: none;
  }
  .example-dialog {
    width: calc(100vw - 16px);
    max-height: 94dvh;
  }
  .example-dialog .dialog-body {
    padding: 14px;
  }
  .free-benefit-card {
    padding: 20px;
  }
  .upgrade-options {
    grid-template-columns: 1fr;
  }
  .upgrade-context {
    align-items: flex-start;
    flex-direction: column;
  }
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
a {
  color: var(--blue);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #80a9ff;
  outline-offset: 3px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  font-size: 36px;
  line-height: 1.3;
  letter-spacing: -1.1px;
  font-weight: 750;
}
h2 {
  font-size: 23px;
  line-height: 1.4;
  letter-spacing: -0.4px;
}
h3 {
  font-size: 17px;
  line-height: 1.45;
}
small,
.small {
  font-size: 12px;
  line-height: 1.6;
}
.muted {
  color: var(--muted);
}
.blue {
  color: var(--blue);
}
.green {
  color: var(--green);
}
.red {
  color: #be3434;
}
.strong {
  font-weight: 700;
}
.mono {
  font-family: "Cascadia Code", Consolas, monospace;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.narrow {
  max-width: 930px;
}
.page {
  padding-top: 36px;
  padding-bottom: 68px;
  min-height: 65vh;
}
.page-head {
  margin-bottom: 28px;
}
.page-head p {
  margin-top: 10px;
  color: var(--muted);
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 1.3px;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 14px;
}
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.stack {
  display: grid;
  gap: 18px;
}
.gap8 {
  gap: 8px;
}
.flex-wrap {
  flex-wrap: wrap;
}
.grow {
  flex: 1;
  min-width: 0;
}
.rule {
  height: 1px;
  background: var(--border);
  margin: 23px 0;
}
.mt {
  margin-top: 24px;
}
.mb {
  margin-bottom: 24px;
}
.mt8 {
  margin-top: 8px;
}
.mt16 {
  margin-top: 16px;
}
.span2 {
  grid-column: 1/-1;
}
.grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.grid4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.card-flat {
  padding: 20px;
}
.section {
  margin-top: 54px;
}
.section-title {
  margin-bottom: 22px;
}
.section-title p {
  color: var(--muted);
  margin-top: 7px;
}
.icon {
  width: 21px;
  height: 21px;
  object-fit: contain;
  user-select: none;
  flex-shrink: 0;
  vertical-align: middle;
}
.icon-lg {
  width: 36px;
  height: 36px;
}
.icon-circle {
  width: 49px;
  height: 49px;
  background: var(--pale);
  color: var(--blue);
  border-radius: 13px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 19px;
  border: 1px solid var(--border);
  background: white;
  color: var(--ink);
  border-radius: 8px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition:
    background 0.15s,
    border-color 0.15s,
    box-shadow 0.15s;
}
.btn:hover {
  background: #f6f8fc;
  border-color: #b8c7e0;
  text-decoration: none;
}
.btn.primary {
  color: white;
  background: var(--blue);
  border-color: var(--blue);
}
.btn.primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}
.btn.ghost {
  background: transparent;
  border-color: transparent;
  color: var(--blue);
}
.btn.small {
  font-size: 13px;
  min-height: 36px;
  padding: 8px 12px;
}
.btn.full {
  width: 100%;
}
.btn.large {
  min-height: 52px;
  font-size: 16px;
}
.btn.danger {
  color: #b93b3b;
  background: #fff5f4;
  border-color: #ffdedb;
}
.icon-btn {
  padding: 8px;
  min-width: 36px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
  font-size: 11px;
  line-height: 1.6;
  font-weight: 600;
  padding: 3px 8px;
  background: var(--pale);
  color: var(--blue);
  white-space: nowrap;
}
.pill.green {
  background: #e9f7f2;
  color: #087c63;
}
.pill.orange {
  background: #fff2de;
  color: #965414;
}
.pill.red {
  background: #fff0ef;
  color: #b83c38;
}
.pill.gray {
  background: #eef1f6;
  color: #66758b;
}
.link-button {
  background: none;
  border: 0;
  color: var(--blue);
  padding: 4px 0;
  cursor: pointer;
}
.link-button:hover {
  text-decoration: underline;
}
.notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-radius: 8px;
  padding: 13px 16px;
  background: var(--pale);
  color: #425d8a;
  font-size: 13px;
}
.notice .icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.notice.warn {
  background: #fff6e9;
  color: #926022;
}
.notice.error {
  background: #fff0ee;
  color: #aa3333;
}
.notice.success {
  background: #ebf8f3;
  color: #13775f;
}
.notice p + p {
  margin-top: 5px;
}
input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
textarea,
select {
  border: 1px solid #cfd8e6;
  background: white;
  color: var(--ink);
  border-radius: 7px;
  padding: 11px 12px;
  min-height: 44px;
  width: 100%;
  outline-offset: 2px;
}
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--blue);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
textarea {
  resize: vertical;
  min-height: 110px;
}
label.field {
  display: grid;
  gap: 7px;
  font-weight: 600;
  font-size: 13px;
}
label.field small {
  font-weight: 400;
  color: var(--muted);
}
.error-text {
  font-size: 13px;
  color: #b73535;
  margin: 8px 0;
}
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
}
.check-row input {
  margin-top: 5px;
}
.preview-bar {
  height: 29px;
  background: #142641;
  color: #ccdae9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.2px;
}
.preview-bar button {
  background: none;
  border: 0;
  color: white;
  font-size: 11px;
  text-decoration: underline;
}
.topbar {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 30;
}
.nav {
  height: 74px;
  display: flex;
  align-items: center;
  gap: 38px;
}
.brand {
  font-weight: 850;
  letter-spacing: -1.5px;
  font-size: 29px;
  color: var(--blue);
  line-height: 1;
}
.brand:hover {
  text-decoration: none;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 26px;
  height: 100%;
}
.navlinks a {
  display: flex;
  align-items: center;
  color: #40516b;
  height: 100%;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  font-weight: 550;
}
.navlinks a.active {
  border-color: var(--blue);
  color: var(--blue);
}
.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-right a {
  font-size: 13px;
  white-space: nowrap;
}
.lang {
  border: 0;
  border-left: 1px solid var(--border);
  padding: 0 0 0 18px;
  margin-left: 3px;
  background: none;
  color: var(--ink);
  font-size: 13px;
  min-height: 32px;
}
.mobile-menu {
  display: none;
}
.footer {
  border-top: 1px solid var(--border);
  background: white;
  padding: 32px 0 80px;
}
.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  max-width: 640px;
  justify-content: flex-end;
}
.footer-links a {
  font-size: 12px;
  color: var(--muted);
}
.footer .brand {
  font-size: 24px;
}
.footer p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}
.breadcrumb {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--muted);
}
.hero {
  text-align: center;
  padding: 46px 0 25px;
}
.hero h1 {
  font-size: 38px;
}
.hero p {
  font-size: 16px;
  color: var(--muted);
  margin-top: 13px;
}
.upload-hero {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 18px;
  margin-top: 6px;
}
.upload-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
}
.dropzone {
  border: 1.5px dashed #9ebefa;
  border-radius: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 34px 18px;
  width: 100%;
  background: #fbfdff;
  min-height: 310px;
  transition: background 0.15s;
}
.dropzone.drag-over {
  background: #e8f0ff;
  border-color: var(--blue);
}
.upload-symbol {
  width: 48px;
  height: 48px;
  color: var(--blue);
  margin-bottom: 16px;
}
.dropzone h2 {
  font-size: 24px;
}
.dropzone .btn {
  min-width: 230px;
  margin-top: 23px;
}
.dropzone p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 9px;
}
.dropzone .small {
  margin-top: 7px;
}
.examples-card {
  padding: 18px 20px;
}
.segmented {
  display: flex;
  gap: 3px;
  background: #f0f3f8;
  padding: 4px;
  border-radius: 8px;
  max-width: max-content;
}
.segmented button {
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #63738a;
  font-size: 12px;
  line-height: 1.4;
  padding: 8px 13px;
  min-height: 34px;
}
.segmented button.active {
  background: white;
  color: var(--blue);
  box-shadow: 0 1px 5px #162f5a10;
  font-weight: 700;
}
.examples-card .segmented {
  margin-bottom: 19px;
  max-width: 100%;
}
.examples-card .segmented button {
  flex: 1;
}
.comparison {
  display: grid;
  grid-template-columns: 1fr 23px 1fr;
  align-items: center;
  gap: 7px;
}
.comparison figure {
  margin: 0;
  min-width: 0;
}
.comparison img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: contain;
  background: #f5f7fb;
  border: 1px solid var(--border);
  border-radius: 5px;
}
.comparison figcaption {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 7px;
}
.comparison .arrow {
  color: var(--blue);
  font-size: 22px;
}
.image-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: var(--pale);
  color: #385887;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.examples-note {
  font-size: 12px;
  color: #536680;
  margin-top: 16px;
  min-height: 39px;
}
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 25px 0 31px;
  font-size: 13px;
}
.step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #7b879b;
}
.step b {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #c7d2e4;
  display: grid;
  place-items: center;
  font-size: 12px;
  background: white;
}
.step.active {
  color: var(--blue);
  font-weight: 700;
}
.step.active b,
.step.done b {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.step.done {
  color: var(--ink);
}
.step-sep {
  height: 1px;
  width: 65px;
  background: #ced9ea;
}
.capability {
  display: flex;
  gap: 16px;
  padding: 23px 20px;
}
.capability h3 {
  font-size: 16px;
}
.capability p {
  font-size: 12px;
  color: var(--muted);
  margin: 6px 0 11px;
}
.capability strong {
  font-size: 12px;
}
.tool-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}
.tool-strip a {
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 13px 18px;
  background: white;
  color: var(--ink);
  font-size: 13px;
}
.tool-strip span {
  color: var(--muted);
  font-size: 12px;
}
.tool-strip .icon {
  color: var(--blue);
}
.sub-entry {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 26px;
  font-size: 12px;
}
.sub-entry a {
  display: flex;
  gap: 8px;
  align-items: center;
}
.home-bottom {
  background: white;
  border-top: 1px solid var(--border);
  padding: 45px 0 60px;
  margin-top: 35px;
}
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faq summary:after {
  content: "+";
  color: var(--blue);
  font-size: 18px;
}
.faq details[open] summary:after {
  content: "−";
}
.faq details p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.9;
}
.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 332px;
  gap: 24px;
  align-items: start;
}
.summary-card {
  position: sticky;
  top: 98px;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 13px;
  margin: 14px 0;
}
.summary-line span {
  color: var(--muted);
}
.total {
  font-size: 32px;
  font-weight: 750;
  color: var(--blue);
  line-height: 1.3;
}
.file-list {
  display: grid;
  gap: 10px;
}
.file-row {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 15px 17px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
}
.file-row h3 {
  font-size: 14px;
  overflow-wrap: anywhere;
}
.file-row p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
.file-thumb {
  width: 64px;
  height: 47px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 5px;
}
.file-badge {
  width: 43px;
  height: 49px;
  background: #eff4ff;
  color: var(--blue);
  border: 1px solid #d5e2fb;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 750;
  flex-shrink: 0;
}
.file-badge.pdf {
  color: #d15151;
  background: #fff4f2;
  border-color: #ffdfd8;
}
.file-actions {
  display: flex;
  gap: 3px;
}
.file-actions .btn {
  color: var(--muted);
}
.choice {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  padding: 22px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--ink);
  cursor: pointer;
}
.choice + .choice {
  margin-top: 12px;
}
.choice.active {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
  background: #f7faff;
}
.radio-dot {
  height: 21px;
  width: 21px;
  border: 1.5px solid #b2bfd2;
  border-radius: 50%;
  flex-shrink: 0;
}
.choice.active .radio-dot {
  border: 6px solid var(--blue);
  background: white;
}
.choice h3 {
  font-size: 16px;
}
.choice p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 5px;
}
.choice strong.price {
  font-size: 14px;
  display: block;
  margin-top: 8px;
}
.choice img {
  width: 120px;
  height: 76px;
  object-fit: contain;
  margin-left: auto;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.choice .pill {
  margin-left: 7px;
}
.accordion {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 17px 20px;
}
.accordion summary {
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
}
.accordion > div {
  padding-top: 16px;
}
.setting-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid #eef1f6;
}
.setting-row:last-child {
  border: 0;
}
.setting-row h3 {
  font-size: 13px;
}
.setting-row p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
}
.switch {
  position: relative;
  width: 38px;
  height: 22px;
  flex-shrink: 0;
}
.switch input {
  opacity: 0;
  position: absolute;
}
.switch span {
  display: block;
  width: 38px;
  height: 22px;
  background: #c4cddc;
  border-radius: 20px;
  pointer-events: none;
}
.switch span:after {
  content: "";
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  transition: transform 0.15s;
}
.switch input:checked + span {
  background: var(--blue);
}
.switch input:checked + span:after {
  transform: translateX(16px);
}
.switch:has(input:focus-visible) {
  outline: 3px solid #80a9ff;
  outline-offset: 3px;
  border-radius: 20px;
}
.inline-form {
  display: flex;
  gap: 8px;
}
.inline-form input {
  min-width: 0;
}
.inline-form .btn {
  white-space: nowrap;
}
.code-state {
  background: #edf8f4;
  border: 1px solid #cce9dd;
  padding: 13px;
  border-radius: 7px;
  margin-top: 12px;
  color: #186d54;
}
.code-state strong {
  display: block;
  font-size: 13px;
}
.code-state p {
  font-size: 12px;
  margin-top: 4px;
}
.pack {
  position: relative;
  text-align: left;
  padding: 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.pack.recommended {
  border-color: #81aaff;
}
.pack .amount {
  font-size: 36px;
  font-weight: 750;
  margin-top: 19px;
  line-height: 1.3;
}
.pack .amount small {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}
.pack p {
  color: var(--muted);
  font-size: 12px;
  margin: 9px 0;
}
.pack .tag {
  position: absolute;
  right: 14px;
  top: 17px;
}
.pack .btn {
  margin-top: 18px;
}
.benefit-list {
  display: grid;
  gap: 9px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 15px;
}
.payment-methods {
  display: flex;
  gap: 12px;
}
.method {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 13px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
}
.method.selected {
  border-color: var(--blue);
  background: var(--pale);
  color: var(--blue);
}
.method img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
.qr-shell {
  width: 204px;
  height: 204px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin: 22px auto;
  background: white;
  display: grid;
  place-items: center;
  position: relative;
}
.qr-shell svg {
  width: 155px;
  height: 155px;
  opacity: 0.45;
}
.qr-label {
  position: absolute;
  background: white;
  box-shadow: 0 0 0 8px white;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 4px 7px;
  font-weight: 700;
  color: #445775;
  font-size: 12px;
  transform: rotate(-8deg);
}
.cashier {
  max-width: 490px;
  margin: auto;
  text-align: center;
}
.cashier .amount {
  font-size: 43px;
  font-weight: 750;
  margin: 12px 0 24px;
}
.cashier h2 {
  font-size: 21px;
}
.state-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  background: #e8f7f2;
  color: var(--green);
  border-radius: 50%;
  margin: 0 auto 18px;
}
.state-icon .icon {
  width: 30px;
  height: 30px;
}
.state-icon.pending {
  background: var(--pale);
  color: var(--blue);
}
.state-icon.failed {
  background: #fff0ee;
  color: #bc4545;
}
.spinner {
  width: 43px;
  height: 43px;
  border: 5px solid #dbe7ff;
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 1.3s linear infinite;
  margin: 0 auto 22px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.result-card {
  padding: 34px 38px;
}
.result-title {
  text-align: center;
  margin-bottom: 30px;
}
.result-title h1 {
  font-size: 30px;
}
.result-title p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 9px;
}
.stage-line {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin: 30px 0 28px;
}
.stage-item {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: #7b8aa0;
  position: relative;
}
.stage-item:before {
  content: "";
  height: 2px;
  background: #dce4f0;
  position: absolute;
  left: -50%;
  right: 50%;
  top: 13px;
}
.stage-item:first-child:before {
  display: none;
}
.stage-item b {
  position: relative;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 2px solid #c4cfe1;
  border-radius: 50%;
  margin: 0 auto 9px;
  background: white;
  color: white;
}
.stage-item.done b {
  background: var(--blue);
  border-color: var(--blue);
}
.stage-item.done:before {
  background: var(--blue);
}
.stage-item.active {
  color: var(--blue);
  font-weight: 700;
}
.stage-item.active b {
  border: 7px solid var(--blue);
}
.progress-track {
  height: 10px;
  border-radius: 8px;
  background: #e8eef8;
  overflow: hidden;
  margin: 10px 0;
}
.progress-track span {
  display: block;
  background: var(--blue);
  height: 100%;
  border-radius: 8px;
  transition: width 0.4s;
}
.delivery {
  padding: 23px;
  border: 1px solid var(--border);
  border-radius: 11px;
  margin-top: 20px;
}
.delivery h3 {
  font-size: 18px;
  overflow-wrap: anywhere;
}
.delivery .download {
  margin-top: 24px;
  min-height: 51px;
  font-size: 16px;
}
.code-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 15px 17px;
  background: #f4f6fa;
  border-radius: 8px;
  margin-top: 18px;
  font-size: 13px;
}
.code-bar code {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-left: 14px;
  overflow-wrap: anywhere;
}
.share-strip {
  padding: 16px 20px;
  background: #fff6e8;
  border: 1px solid #fae9cd;
  border-radius: 10px;
  color: #956021;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  margin-top: 22px;
}
.stars {
  display: flex;
  gap: 7px;
}
.star {
  font-size: 27px;
  border: 0;
  padding: 0 4px;
  background: none;
  color: #cad3e1;
  line-height: 1.5;
}
.star.selected {
  color: #eda92f;
}
.table-wrap {
  overflow: auto;
}
.data-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}
.data-table th {
  text-align: left;
  background: #f7f9fc;
  color: #76849a;
  font-size: 12px;
  font-weight: 500;
}
.data-table th,
.data-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--border);
}
.data-table td:first-child {
  font-weight: 550;
  max-width: 300px;
  overflow-wrap: anywhere;
}
.data-table tr:last-child td {
  border: 0;
}
.data-table .actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.stat {
  padding: 20px;
}
.stat strong {
  font-size: 28px;
  font-weight: 750;
}
.stat span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.preview-panel {
  position: fixed;
  right: 20px;
  bottom: 19px;
  z-index: 45;
}
.preview-toggle {
  border: 1px solid #233b5c;
  box-shadow: 0 4px 16px #213b6020;
  border-radius: 9px;
  background: #1a2e4a;
  color: white;
  padding: 10px 16px;
  font-size: 12px;
  min-height: 42px;
}
.preview-menu {
  position: absolute;
  bottom: 51px;
  right: 0;
  width: 330px;
  max-height: 75vh;
  overflow: auto;
  border: 1px solid var(--border);
  padding: 20px;
  background: white;
  box-shadow: 0 15px 70px #13274426;
  border-radius: 12px;
}
.preview-menu h3 {
  font-size: 14px;
}
.preview-menu p {
  font-size: 11px;
  color: var(--muted);
  margin: 7px 0 13px;
}
.preview-menu .buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.preview-menu .btn {
  font-size: 11px;
  padding: 9px 8px;
}
.preview-menu label {
  margin-bottom: 8px;
}
.empty {
  padding: 60px 30px;
  text-align: center;
}
.empty .icon-circle {
  margin: 0 auto 18px;
}
.empty p {
  color: var(--muted);
  font-size: 13px;
  margin: 10px 0 24px;
}
.search {
  max-width: 540px;
  margin: 25px auto;
}
.blog-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #edf2f9;
  border-bottom: 1px solid var(--border);
}
.blog-card .body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card h3 {
  font-size: 17px;
  color: var(--ink);
}
.blog-card p {
  font-size: 12px;
  color: var(--muted);
  margin: 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card small {
  margin-top: auto;
  color: var(--muted);
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 35px;
  align-items: start;
}
.article-content {
  min-width: 0;
  overflow-wrap: anywhere;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}
.article-content h1 {
  font-size: 30px;
  margin-bottom: 15px;
}
.article-content h2 {
  font-size: 22px;
  margin: 35px 0 14px;
}
.article-content h3 {
  font-size: 17px;
  margin: 23px 0 10px;
}
.article-content p {
  line-height: 1.95;
  margin: 13px 0;
  color: #4e5d72;
}
.article-content ul,
.article-content ol {
  padding-left: 24px;
  color: #4e5d72;
  line-height: 1.95;
}
.article-content img {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin: 12px 0;
}
.article-content figure {
  margin: 22px 0;
}
.article-content figcaption {
  font-size: 12px;
  color: var(--muted);
}
.article-content table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  overflow: auto;
  font-size: 13px;
}
.article-content td,
.article-content th {
  padding: 12px;
  border: 1px solid var(--border);
}
.article-content blockquote {
  margin: 20px 0;
  padding: 14px 20px;
  border-left: 3px solid var(--blue);
  background: var(--pale);
}
.article-content .blog-meta {
  font-size: 12px;
  color: var(--muted);
}
.article-content .blog-cta,
.article-content .callout,
.article-content .article-cta {
  padding: 20px;
  background: var(--pale);
  border-radius: 9px;
}
.article-aside {
  position: sticky;
  top: 98px;
  font-size: 12px;
}
.article-aside a {
  display: block;
  margin: 12px 0;
  color: var(--muted);
}
.article-aside .btn {
  color: white;
}
.growth-log-entry {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px;
  margin-bottom: 19px;
}
.growth-log-entry h2,
.growth-log-entry h3 {
  font-size: 20px;
  margin: 9px 0;
}
.growth-log-entry p {
  margin: 10px 0;
  color: var(--muted);
}
.growth-log-entry li {
  color: var(--muted);
  margin: 5px 0;
}
.growth-log-entry time,
.growth-log-type-pill,
.growth-log-date {
  font-size: 12px;
  color: var(--blue);
}
.growth-log-entry a {
  overflow-wrap: anywhere;
}
.growth-log-entry img {
  max-width: 100%;
}
.growth-log-meta,
.growth-log-head {
  display: flex;
  gap: 16px;
  align-items: center;
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.qr-image {
  width: 150px;
  max-height: 180px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.gallery img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: white;
}
.gallery figure {
  margin: 0;
}
.gallery figcaption {
  font-size: 13px;
  color: var(--muted);
  padding: 10px 0;
}
.editor-layout {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr) 230px;
  gap: 18px;
  align-items: start;
}
.editor-thumbs {
  max-height: 650px;
  overflow: auto;
}
.editor-thumb {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  margin-bottom: 12px;
  width: 100%;
  color: var(--muted);
  font-size: 11px;
}
.editor-thumb.active {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}
.editor-thumb img {
  width: 100%;
  margin-bottom: 6px;
}
.editor-stage {
  aspect-ratio: 16/9;
  background: white;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  touch-action: none;
  user-select: none;
}
.editor-stage > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
}
.text-box {
  position: absolute;
  border: 1px solid #638ce3;
  background: #6f98f408;
  cursor: move;
  touch-action: none;
  transform-origin: center;
  padding: 0;
  color: transparent;
  border-radius: 0;
  min-height: 0;
}
.text-box.selected {
  border: 2px solid var(--blue);
  background: #628ff529;
}
.text-box .box-label {
  position: absolute;
  bottom: 100%;
  left: 0;
  font-size: 10px;
  background: var(--blue);
  color: white;
  padding: 1px 4px;
  white-space: nowrap;
  pointer-events: none;
}
.text-box .handle {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 9px;
  height: 9px;
  background: white;
  border: 1px solid var(--blue);
  cursor: nwse-resize;
}
.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 13px;
}
.editor-toolbar .btn {
  font-size: 11px;
  min-height: 35px;
  padding: 8px 9px;
}
.editor-properties {
  padding: 18px;
}
.editor-properties label {
  margin-bottom: 12px;
}
.editor-properties .grid2 {
  gap: 9px;
}
.editor-properties h3 {
  font-size: 14px;
  margin-bottom: 15px;
}
.editor-save {
  font-size: 11px;
  color: var(--green);
  margin-top: 13px;
}
.selection-rect {
  position: absolute;
  border: 1px dashed var(--blue);
  background: #2563eb1a;
  pointer-events: none;
}
.layer-control {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12px;
  margin-bottom: 14px;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 30px;
}
.route-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.route-map a {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: white;
  color: var(--ink);
  font-size: 13px;
}
.route-map a small {
  display: block;
  color: var(--muted);
  margin-top: 5px;
}
.toast-error {
  background: #9a3030 !important;
}
#toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #192e4c;
  color: white;
  border-radius: 8px;
  padding: 12px 22px;
  max-width: min(540px, 90vw);
  font-size: 13px;
  box-shadow: 0 6px 25px #0c1c3626;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
dialog {
  width: min(580px, calc(100vw - 32px));
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 0;
  color: var(--ink);
  box-shadow: 0 24px 100px #16253d25;
  max-height: 85vh;
}
dialog::backdrop {
  background: #14253d70;
  backdrop-filter: blur(3px);
}
.dialog-head {
  padding: 22px 25px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dialog-head h2 {
  font-size: 20px;
}
.dialog-body {
  padding: 25px;
}
.dialog-body p {
  font-size: 13px;
  color: var(--muted);
  margin: 10px 0;
}
.dialog-foot {
  padding: 17px 25px;
  background: #f8fafc;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.skip {
  position: fixed;
  left: 10px;
  top: -100px;
  background: var(--blue);
  color: white;
  z-index: 100;
  padding: 10px;
}
.skip:focus {
  top: 8px;
}
[hidden] {
  display: none !important;
}
@media (min-width: 1500px) {
  .wrap {
    max-width: 1290px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .dropzone {
    min-height: 330px;
  }
}
@media (max-width: 1000px) {
  .nav {
    gap: 25px;
  }
  .navlinks {
    gap: 17px;
  }
  .workflow-grid {
    grid-template-columns: minmax(0, 1fr) 290px;
  }
  .grid4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .choice img {
    width: 85px;
  }
  .choice {
    padding: 18px;
  }
  .editor-layout {
    grid-template-columns: 110px minmax(0, 1fr);
  }
  .editor-properties {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-aside {
    position: static;
    display: none;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 14px;
  }
  .wrap {
    padding: 0 18px;
  }
  .preview-bar {
    font-size: 9px;
    gap: 7px;
    height: 27px;
  }
  .nav {
    height: 62px;
    gap: 15px;
    flex-wrap: wrap;
  }
  .brand {
    font-size: 26px;
  }
  .navlinks {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 62px;
    height: auto;
    padding: 16px 20px;
    background: white;
    border-bottom: 1px solid var(--border);
    gap: 18px;
    flex-wrap: wrap;
  }
  .navlinks.open {
    display: flex;
  }
  .navlinks a {
    min-height: 40px;
    font-size: 13px;
  }
  .nav-right {
    gap: 8px;
  }
  .nav-right > a {
    font-size: 0;
  }
  .nav-right > a .icon {
    width: 22px;
  }
  .lang {
    font-size: 11px;
    padding-left: 11px;
  }
  .mobile-menu {
    display: inline-flex;
    border: 0;
    background: transparent;
    min-height: 40px;
    padding: 8px;
    color: var(--ink);
  }
  .hero {
    padding: 32px 5px 22px;
  }
  .hero h1 {
    font-size: 28px;
    letter-spacing: -0.7px;
  }
  .hero p {
    font-size: 13px;
    margin-top: 12px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .upload-hero {
    grid-template-columns: 1fr;
  }
  .dropzone {
    min-height: 262px;
    padding: 25px 16px;
  }
  .dropzone h2 {
    font-size: 21px;
  }
  .examples-card {
    padding: 16px;
  }
  .examples-note {
    min-height: 0;
  }
  .steps {
    gap: 10px;
    font-size: 11px;
    margin: 22px 0;
  }
  .step {
    gap: 7px;
  }
  .step b {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
  .step-sep {
    width: 20px;
  }
  .grid3 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .capability {
    padding: 19px;
  }
  .capability .icon-circle {
    width: 42px;
    height: 42px;
  }
  .capability p {
    margin-bottom: 7px;
  }
  .tool-strip {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .tool-strip a {
    padding: 13px;
  }
  .sub-entry {
    gap: 14px;
    flex-wrap: wrap;
    font-size: 11px;
  }
  .section {
    margin-top: 35px;
  }
  .section-title h2 {
    font-size: 21px;
  }
  .home-bottom {
    margin-top: 25px;
    padding-top: 30px;
  }
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .summary-card {
    position: static;
  }
  .page {
    padding-top: 25px;
    padding-bottom: 40px;
  }
  .page-head {
    margin-bottom: 22px;
  }
  h1 {
    font-size: 27px;
  }
  .page-head p {
    font-size: 13px;
  }
  .card {
    padding: 20px;
  }
  .choice {
    gap: 11px;
    padding: 17px;
  }
  .choice h3 {
    font-size: 14px;
  }
  .choice .pill {
    font-size: 9px;
    margin-left: 3px;
  }
  .choice img {
    display: none;
  }
  .choice p {
    font-size: 12px;
  }
  .file-row {
    gap: 10px;
    padding: 12px;
  }
  .file-actions {
    gap: 1px;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 76px;
  }
  .file-actions .icon-btn {
    min-width: 29px;
    padding: 6px;
  }
  .file-row h3 {
    font-size: 12px;
  }
  .file-thumb {
    width: 48px;
    height: 37px;
  }
  .grid2 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .grid4 {
    gap: 12px;
  }
  .pack {
    padding: 19px;
  }
  .pack .amount {
    font-size: 29px;
  }
  .pack h3 {
    font-size: 15px;
  }
  .pack .tag {
    position: static;
    margin-bottom: 8px;
  }
  .total {
    font-size: 29px;
  }
  .summary-card .btn.large {
    position: relative;
  }
  .footer-grid {
    display: block;
  }
  .footer-links {
    justify-content: flex-start;
    gap: 12px 22px;
    margin-top: 24px;
  }
  .result-card {
    padding: 23px 18px;
  }
  .result-title h1 {
    font-size: 25px;
  }
  .result-title {
    margin-bottom: 20px;
  }
  .delivery {
    padding: 17px;
  }
  .delivery h3 {
    font-size: 15px;
  }
  .code-bar {
    flex-wrap: wrap;
    gap: 8px;
    padding: 13px;
  }
  .code-bar code {
    margin-left: 6px;
    font-size: 14px;
  }
  .share-strip {
    font-size: 12px;
    padding: 15px;
  }
  .stage-line {
    margin: 26px 0;
  }
  .stage-item {
    font-size: 10px;
  }
  .stage-item b {
    width: 24px;
    height: 24px;
  }
  .table-wrap {
    margin: 0 -8px;
  }
  .data-table {
    font-size: 11px;
  }
  .data-table th,
  .data-table td {
    padding: 13px 10px;
  }
  .data-table .actions {
    min-width: 85px;
  }
  .data-table td .btn {
    font-size: 11px;
    padding: 7px 8px;
  }
  .stat {
    padding: 15px;
  }
  .stat strong {
    font-size: 24px;
  }
  .stat span {
    font-size: 11px;
  }
  .preview-panel {
    right: 12px;
    bottom: 12px;
  }
  .preview-toggle {
    font-size: 11px;
    padding: 9px 13px;
  }
  .preview-menu {
    width: min(330px, calc(100vw - 24px));
  }
  .article-content {
    padding: 24px 20px;
  }
  .article-content h1 {
    font-size: 25px;
  }
  .article-content h2 {
    font-size: 20px;
  }
  .article-content p {
    font-size: 14px;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .route-map {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }
  .route-map a {
    font-size: 12px;
    padding: 15px;
  }
  .editor-layout {
    grid-template-columns: 1fr;
  }
  .editor-thumbs {
    display: flex;
    gap: 8px;
    max-height: none;
    overflow: auto;
  }
  .editor-thumb {
    min-width: 95px;
    width: 95px;
    margin: 0;
  }
  .editor-stage {
    min-height: 195px;
  }
  .editor-properties {
    grid-column: auto;
    padding: 16px;
  }
  .editor-properties .grid2 {
    grid-template-columns: 1fr 1fr;
  }
  .editor-toolbar {
    gap: 5px;
  }
  .editor-toolbar .btn {
    font-size: 10px;
    padding: 7px;
  }
  .between.mobile-stack {
    align-items: flex-start;
    flex-direction: column;
  }
  .layer-control {
    font-size: 11px;
  }
  .notice {
    font-size: 12px;
    padding: 12px;
  }
  .breadcrumb {
    font-size: 11px;
    margin-bottom: 20px;
  }
  .growth-log-entry {
    padding: 21px;
  }
  .growth-log-entry h2,
  .growth-log-entry h3 {
    font-size: 18px;
  }
  .qr-shell {
    width: 190px;
    height: 190px;
  }
  .comparison img {
    aspect-ratio: 16/10;
  }
}
.image-open {
  padding: 0;
  border: 0;
  background: transparent;
  width: 100%;
  cursor: zoom-in;
}
.image-open img {
  display: block;
}
.growth-log-content {
  overflow-wrap: anywhere;
}
.article-content [id] {
  scroll-margin-top: 100px;
}
.capability {
  color: var(--ink);
}
.capability:hover {
  text-decoration: none;
  border-color: #a5bfee;
}
.image-open:focus-visible {
  outline: 3px solid #80a9ff;
}
.editor-stage:focus {
  outline-offset: 3px;
}
.conversion-home {
  padding: 32px 0 50px;
}
.workspace-mobile-action {
  display: none;
}
.workspace-results {
  scroll-margin-top: 96px;
}
.workspace-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 5px 0 28px;
}
.workspace-heading .eyebrow {
  display: block;
  margin-bottom: 10px;
}
.workspace-heading h1 {
  font-size: 31px;
  letter-spacing: -0.8px;
  text-wrap: balance;
}
.workspace-heading p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 9px;
}
.workspace-heading > a {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}
.workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
}
.workspace-grid-idle {
  align-items: stretch;
}
.workspace-grid-idle > .workspace-content {
  display: flex;
  flex-direction: column;
}
.workspace-grid-idle .workspace-example {
  flex: 1;
}
.workspace-grid-idle > .workspace-options {
  position: static;
  align-self: start;
  display: flex;
  flex-direction: column;
}
.workspace-content {
  display: grid;
  gap: 18px;
  min-width: 0;
}
.workspace-upload h2,
.workspace-options h2,
.workspace-results h2 {
  font-size: 20px;
}
.workspace-upload {
  padding: 24px;
}
.workspace-upload .dropzone {
  min-height: 220px;
  padding: 16px 20px;
}
.workspace-upload .upload-symbol {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
}
.workspace-upload .mb {
  margin-bottom: 18px;
}
.workspace-upload .dropzone h2 {
  font-size: 22px;
}
.workspace-upload .dropzone .btn {
  min-height: 46px;
  margin-top: 14px;
}
.workspace-upload .dropzone p {
  margin-top: 8px;
}
.workspace-file-list {
  max-height: clamp(180px, calc(100dvh - 440px), 380px);
  overflow: auto;
  padding: 2px;
}
.workspace-file-list .file-row {
  padding: 12px;
}
.workspace-file-list .file-actions .btn {
  min-width: 34px;
  min-height: 38px;
  padding: 7px;
}
.workspace-add {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  border-radius: 8px;
}
.workspace-add.drag-over {
  background: var(--pale);
}
.workspace-add span {
  font-size: 12px;
  color: var(--muted);
}
.workspace-merge {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: 20px;
}
.workspace-merge h3 {
  font-size: 14px;
  margin-bottom: 12px;
}
.workspace-merge .grid2 {
  gap: 10px;
}
.workspace-output {
  display: flex;
  text-align: left;
  align-items: flex-start;
  gap: 9px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 11px;
  color: var(--ink);
  font-size: 12px;
  min-height: 72px;
}
.workspace-output.active {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--pale);
}
.workspace-output small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 3px;
}
.workspace-options {
  padding: 23px;
  position: sticky;
  top: 94px;
}
.workspace-modes {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}
.workspace-mode {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  border: 1px solid var(--border);
  padding: 13px 12px;
  border-radius: 9px;
  background: white;
  color: var(--ink);
  min-height: 76px;
}
.workspace-mode.active {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
  background: #f6f9ff;
}
.workspace-mode.active .radio-dot {
  border: 6px solid var(--blue);
}
.workspace-mode .radio-dot {
  width: 18px;
  height: 18px;
}
.workspace-mode strong {
  display: block;
  font-size: 14px;
}
.workspace-mode small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
.workspace-mode b {
  font-size: 12px;
  white-space: nowrap;
  color: var(--blue);
}
.workspace-tools {
  margin: 14px 0;
  font-size: 12px;
}
.workspace-tools summary,
.workspace-faq > summary {
  cursor: pointer;
}
.workspace-scope {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  margin: 12px 0 18px;
}
.workspace-options .accordion {
  padding: 13px 0;
  border: 0;
  border-top: 1px solid var(--border);
  border-radius: 0;
}
.workspace-options .accordion summary {
  font-size: 12px;
}
.workspace-options .setting-row select {
  max-width: 125px !important;
}
.workspace-options .setting-row h3 {
  font-size: 12px;
}
.workspace-code {
  padding: 13px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.workspace-code summary {
  font-size: 12px;
  cursor: pointer;
}
.workspace-total {
  display: flex;
  align-items: center;
  gap: 18px;
}
.workspace-total > div {
  text-align: right;
}
.workspace-total > div span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.workspace-total > div strong {
  display: block;
  font-size: 29px;
  color: var(--blue);
  line-height: 1.3;
}
.workspace-file-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.workspace-file-footer .workspace-add { flex: 1; justify-content: flex-start; }
.workspace-file-footer .workspace-total { margin-left: auto; }
.workspace-total > .btn { min-height: 48px; flex-shrink: 0; }
.workspace-quote-details {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  text-align: right;
}
.workspace-action-note {
  font-size: 11px;
  line-height: 1.6;
  text-align: right;
  color: var(--muted);
  margin: 9px 0 0;
}
.workspace-example {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
}
.workspace-example > h2 {
  font-weight: 600;
  font-size: 14px;
  padding: 4px 0;
}
.demo-hint-mobile { display: none; }
.workspace-example > div {
  padding-top: 10px;
}
.workspace-example .comparison img {
  aspect-ratio: 16/9;
}
.workspace-example .comparison figure {
  min-width: 0;
}
.workspace-example a {
  display: inline-block;
  margin-top: 8px;
}
.workspace-faq {
  margin-top: 30px;
  padding: 22px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.workspace-faq > summary {
  font-weight: 600;
}
.workspace-task-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.workspace-task {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
}
.workspace-task h3 {
  font-size: 14px;
  overflow-wrap: anywhere;
}
.workspace-task .row p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.workspace-task .icon-circle {
  width: 38px;
  height: 43px;
  border-radius: 8px;
}
.workspace-task .progress-track {
  margin: 19px 0 10px;
  height: 7px;
}
.workspace-results > .between {
  align-items: flex-start;
  flex-wrap: wrap;
}
.workspace-payment {
  text-align: center;
}
.workspace-payment > p:first-child {
  margin-top: 0;
}
.workspace-pay-amount {
  font-size: 38px;
  font-weight: 750;
  color: var(--ink);
  margin: 10px 0 20px;
}
.workspace-pay-promise {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--green) !important;
  font-weight: 600;
  margin: 14px 0 !important;
}
.workspace-checkout {
  width: min(500px, calc(100vw - 28px));
}
.workspace-checkout .dialog-body {
  padding: 22px 28px;
}
.workspace-checkout .qr-shell {
  margin: 20px auto;
  width: 175px;
  height: 175px;
}
.workspace-checkout .qr-shell svg {
  width: 140px;
  height: 140px;
}
.workspace-detail-dialog {
  width: min(850px, calc(100vw - 28px));
}
@media (max-width: 1100px) {
  .workspace-grid {
    grid-template-columns: minmax(0, 1fr) 355px;
    gap: 18px;
  }
  .workspace-heading h1 {
    font-size: 28px;
  }
  .workspace-heading > a {
    display: none;
  }
  .workspace-options {
    padding: 20px;
  }
  .workspace-upload {
    padding: 20px;
  }
  .workspace-file-list .file-actions {
    flex-wrap: wrap;
    max-width: 75px;
  }
}
@media (max-width: 800px) {
  body:has(.workspace-mobile-action) .conversion-home {
    padding-bottom: 125px;
  }
  body:has(.workspace-mobile-action) .preview-panel {
    bottom: 97px;
  }
  .workspace-mobile-action {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 35;
    background: white;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 22px #20395b0b;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 18px max(12px, env(safe-area-inset-bottom));
  }
  .workspace-mobile-action small {
    display: block;
    font-size: 11px;
    color: var(--muted);
  }
  .workspace-mobile-action strong {
    display: block;
    font-size: 23px;
    line-height: 1.3;
    color: var(--blue);
  }
  .workspace-mobile-action .btn {
    min-height: 48px;
    min-width: 164px;
  }
  .workspace-file-footer .workspace-add { flex-basis: 100%; }
  .workspace-file-footer .workspace-total { width: 100%; justify-content: space-between; gap: 12px; }
  .workspace-total > div, .workspace-quote-details, .workspace-action-note { text-align: left; }
  .workspace-total > .btn { white-space: normal; flex-shrink: 1; min-width: 0; max-width: 65%; }
  .conversion-home {
    padding-top: 24px;
  }
  .workspace-heading {
    margin: 0 0 22px;
  }
  .workspace-heading h1 {
    font-size: 27px;
  }
  .workspace-heading p {
    font-size: 13px;
  }
  .workspace-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .workspace-content {
    display: contents;
  }
  .workspace-grid-idle > .workspace-content {
    display: contents;
  }
  .workspace-example .demo-pair {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: auto;
  }
  .workspace-example .demo-stage-label {
    min-height: 25px;
  }
  .workspace-upload,
  .workspace-results {
    order: 1;
    width: 100%;
  }
  .workspace-options {
    order: 2;
    width: 100%;
    position: static;
  }
  .workspace-example {
    order: 3;
    width: 100%;
  }
  .workspace-upload .dropzone {
    min-height: 220px;
    padding: 20px 12px;
  }
  .workspace-upload .dropzone .upload-symbol {
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
  }
  .workspace-upload .dropzone .btn {
    min-width: 190px;
  }
  .workspace-upload .mb {
    margin-bottom: 17px;
  }
  .workspace-upload h2,
  .workspace-options h2,
  .workspace-results h2 {
    font-size: 18px;
  }
  .workspace-file-list {
    max-height: 260px;
  }
  .workspace-example {
    padding: 18px;
  }
  .demo-hint-mobile { display: inline; }
  .demo-hint-desktop {
    display: none;
  }
  .workspace-task {
    padding: 15px;
  }
  .workspace-task > .row {
    flex-wrap: wrap;
  }
  .workspace-task .pill {
    font-size: 10px;
  }
  .workspace-mode strong {
    font-size: 15px;
  }
  .workspace-mode small {
    font-size: 12px;
  }
  .workspace-merge .grid2 {
    grid-template-columns: 1fr;
  }
  .workspace-run-summary .notice {
    display: none;
  }
  .workspace-checkout .dialog-body {
    padding: 20px;
  }
  .workspace-detail-dialog .dialog-body {
    padding: 14px;
  }
  .workspace-detail-dialog .result-card {
    padding: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
/* Results keep the prototype's milestones, with actual API state only. */
.result-steps{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;list-style:none;padding:24px 0;margin:0;border-bottom:1px solid var(--line,#e2e8f0)}
.result-steps li{display:flex;align-items:center;gap:8px;color:#64748b;font-size:13px}
.result-steps li>span{display:grid;place-items:center;width:28px;height:28px;flex-shrink:0;border-radius:50%;background:#edf1f7;font-weight:700}
.result-steps .done{color:#17784a}.result-steps .done>span{background:#e5f6ee}
.result-steps .current{color:#2258d9;font-weight:700}.result-steps .current>span{background:#e8efff}
.result-steps .stopped{color:#a64b19}.result-steps .stopped>span{background:#fff0e1}
.task-progress{width:100%;height:6px;margin:16px 0 4px;accent-color:#376cf6}
.batch-summary{padding:14px;background:#f5f8ff;border-radius:14px;overflow-wrap:anywhere}
.history-filters{padding-bottom:14px;border-bottom:1px solid #e4eaf2}
.copy-fallback{width:100%;min-width:0;padding:12px;border:1px solid #cad5e5;border-radius:8px}
@media(max-width:600px){.result-steps{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px 10px}}
