:root {
  --lab-bg: #f6f7f8;
  --lab-panel: #ffffff;
  --lab-panel-strong: #f9fafb;
  --lab-border: #dfe3e8;
  --lab-trace: transparent;
  --lab-cyan: #52789d;
  --lab-green: #52789d;
  --lab-amber: #52789d;
  --lab-muted: #68717d;
  --lab-shadow: 0 1px 2px rgba(18, 24, 32, 0.04);
  --lab-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --lab-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

[data-theme='dark'] {
  --global-bg: #0f1115;
  --card-bg: #15181d;
  --font-color: #b8c0ca;
  --text-highlight-color: #edf0f3;
  --blockquote-bg: rgba(104, 143, 181, 0.1);
  --lab-bg: #0f1115;
  --lab-panel: #15181d;
  --lab-panel-strong: #191d23;
  --lab-border: #292f38;
  --lab-trace: transparent;
  --lab-cyan: #6f96bc;
  --lab-green: #6f96bc;
  --lab-amber: #6f96bc;
  --lab-muted: #89929e;
  --lab-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

html,
body {
  background: var(--lab-bg);
  font-family: var(--lab-sans);
  letter-spacing: 0;
}

body::before {
  display: none;
}

#body-wrap {
  position: relative;
  z-index: 1;
}

::selection {
  color: var(--text-highlight-color);
  background: rgba(82, 120, 157, 0.34);
}

html.me0w-booting,
html.me0w-booting body {
  overflow: hidden;
}

#me0w-boot {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  color: #aeb7c2;
  background: #0f1115;
  opacity: 1;
  transition: opacity 320ms ease, visibility 320ms ease;
}

[data-theme='light'] #me0w-boot {
  color: #5e6874;
  background: #f6f7f8;
}

#me0w-boot.is-done {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.me0w-boot-console {
  width: min(420px, calc(100vw - 48px));
  font-family: var(--lab-mono);
}

.me0w-boot-kicker {
  margin-bottom: 13px;
  color: var(--lab-cyan);
  font-size: 11px;
  line-height: 1;
}

.me0w-boot-wordmark {
  color: #edf0f3;
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 650;
  line-height: 1;
}

[data-theme='light'] .me0w-boot-wordmark {
  color: #20262e;
}

.me0w-boot-cursor {
  color: var(--lab-cyan);
  animation: me0w-cursor 700ms steps(1, end) infinite;
}

.me0w-boot-log {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  color: var(--lab-muted);
  font-size: 12px;
  line-height: 1.4;
}

.me0w-boot-log span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  opacity: 0;
  transform: translateY(4px);
  animation: me0w-log-in 240ms ease forwards;
}

.me0w-boot-log span:nth-child(2) {
  animation-delay: 180ms;
}

.me0w-boot-log b {
  color: var(--lab-cyan);
  font-weight: 600;
}

.me0w-boot-progress {
  position: relative;
  margin-top: 18px;
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: var(--lab-border);
}

.me0w-boot-progress::after {
  position: absolute;
  inset: 0;
  background: var(--lab-cyan);
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  animation: me0w-progress 950ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes me0w-cursor {
  50% {
    opacity: 0;
  }
}

@keyframes me0w-log-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes me0w-progress {
  to {
    transform: scaleX(1);
  }
}

#page-header.full_page {
  height: 420px;
  min-height: 360px;
  background-position: center 42%;
}

#page-header.full_page::before {
  background: rgba(11, 14, 18, 0.7);
}

#page-header.full_page #site-info {
  top: 48%;
}

#page-header.full_page #site-info::before {
  display: none;
}

#page-header #site-title,
#page-header .post-title,
#page-header #page-site-info .site-title {
  font-family: var(--lab-sans);
  letter-spacing: 0;
}

#page-header.full_page #site-title::after {
  display: none;
}

#nav {
  font-family: var(--lab-sans);
}

#nav .site-page,
#nav .nav-site-title {
  letter-spacing: 0;
}

.layout > div:first-child:not(.recent-posts),
#recent-posts > .recent-post-items .recent-post-item,
#aside-content .card-widget {
  border: 1px solid var(--lab-border);
  border-radius: 6px;
  background: var(--lab-panel);
  box-shadow: var(--lab-shadow);
}

#recent-posts > .recent-post-items .recent-post-item,
#aside-content .card-widget {
  position: relative;
}

#recent-posts > .recent-post-items .recent-post-item::before,
#aside-content .card-widget::before {
  display: none;
}

#recent-posts .article-title,
#aside-content .item-headline,
.container h1,
.container h2,
.container h3 {
  letter-spacing: 0;
}

#recent-posts .article-title,
#aside-content .item-headline {
  font-family: var(--lab-sans);
}

#page .flink {
  margin-bottom: 34px;
}

#page .flink > h2:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--text-highlight-color);
  font-family: var(--lab-mono);
  font-size: 20px;
}

#page .flink > h2:first-child::after {
  padding: 4px 7px;
  border: 1px solid rgba(82, 120, 157, 0.4);
  border-radius: 3px;
  color: var(--lab-green);
  background: rgba(82, 120, 157, 0.1);
  content: 'PEER NODES';
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
}

#page .flink .flink-desc {
  margin: 8px 0 22px;
  color: var(--lab-muted);
  font-size: 14px;
}

#page .flink .flink-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
  padding: 0;
  text-align: left;
}

#page .flink .flink-list > .flink-list-item {
  float: none;
  margin: 0;
  width: auto;
  height: 84px;
  border: 1px solid var(--lab-border);
  border-radius: 4px;
  background: var(--lab-panel-strong);
  transform: none;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

#page .flink .flink-list > .flink-list-item::before {
  top: 0;
  right: auto;
  width: 2px;
  background: var(--lab-cyan);
  opacity: 0;
  transform: none;
  transition: opacity 160ms ease;
}

#page .flink .flink-list > .flink-list-item:hover,
#page .flink .flink-list > .flink-list-item:focus-within {
  border-color: var(--lab-cyan);
  background: var(--lab-panel);
  transform: translateY(-2px);
}

#page .flink .flink-list > .flink-list-item:hover::before,
#page .flink .flink-list > .flink-list-item:focus-within::before {
  opacity: 1;
}

#page .flink .flink-list-item > a {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  column-gap: 12px;
  align-items: end;
  width: 100%;
  height: 100%;
  padding: 12px;
}

#page .flink .flink-list-item > a:focus-visible {
  outline: 2px solid var(--lab-cyan);
  outline-offset: 2px;
}

#page .flink .flink-item-icon {
  grid-row: 1 / 3;
  float: none;
  margin: 0;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border: 1px solid var(--lab-border);
  border-radius: 3px;
  transition: none;
}

#page .flink .flink-list-item:hover .flink-item-icon {
  margin-left: 0;
  width: 52px;
}

#page .flink .flink-item-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#page .flink .flink-item-name,
#page .flink .flink-item-desc {
  min-width: 0;
  height: auto;
  overflow: hidden;
  padding: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#page .flink .flink-item-name {
  align-self: end;
  color: var(--text-highlight-color);
  font-size: 14px;
  line-height: 1.5;
}

.raw-tool {
  --raw-sidebar-width: 230px;
  letter-spacing: 0;
}

.raw-tool [hidden] {
  display: none !important;
}

.raw-tool__header,
.raw-tool__actions,
.raw-filter-bar,
.raw-details__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.raw-tool__header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.watermark-tool__header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.watermark-tool__header-actions .raw-command-button {
  min-height: 30px;
  color: var(--font-color);
  font-size: 11px;
  text-decoration: none;
}

.raw-tool__header-actions .raw-command-button {
  min-height: 30px;
  color: var(--font-color);
  font-size: 11px;
  text-decoration: none;
}

.raw-tool__header {
  margin-bottom: 18px;
}

.raw-tool__eyebrow,
.raw-tool__status,
.raw-summary span,
.raw-file-list__label,
.raw-details__header p,
.raw-tag-group,
.raw-tag-table th {
  color: var(--lab-muted);
  font-family: var(--lab-mono);
  font-size: 10px;
  line-height: 1.4;
}

.raw-tool__eyebrow {
  margin-bottom: 5px;
  color: var(--lab-cyan);
}

/* Tools directory */
.tools-directory {
  letter-spacing: 0;
}

.tools-directory__header {
  margin-bottom: 24px;
}

.tools-directory__eyebrow {
  margin-bottom: 5px;
  color: var(--lab-cyan);
  font-family: var(--lab-mono);
  font-size: 10px;
}

.tools-directory__header h2 {
  margin: 0;
  color: var(--text-highlight-color);
  font-family: var(--lab-mono);
  font-size: 22px;
  letter-spacing: 0;
}

.tools-directory__header p {
  margin: 8px 0 0;
  color: var(--lab-muted);
  font-size: 13px;
}

.tools-directory__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tools-directory__item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 14px;
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--lab-border);
  border-radius: 4px;
  color: var(--font-color);
  background: var(--lab-panel);
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.tools-directory__item:hover,
.tools-directory__item:focus-visible {
  border-color: var(--lab-cyan);
  color: var(--font-color);
  background: var(--lab-panel-strong);
}

.tools-directory__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--lab-border);
  border-radius: 4px;
  color: var(--lab-cyan);
  background: var(--lab-panel-strong);
  font-size: 17px;
}

.tools-directory__copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.tools-directory__copy strong {
  color: var(--text-highlight-color);
  font-family: var(--lab-mono);
  font-size: 15px;
}

.tools-directory__copy small {
  color: var(--lab-cyan);
  font-size: 12px;
}

.tools-directory__copy > span {
  margin-top: 5px;
  color: var(--lab-muted);
  font-size: 12px;
  line-height: 1.65;
}

.tools-directory__arrow {
  color: var(--lab-muted);
  font-size: 12px;
}

.tools-directory__item:hover .tools-directory__arrow,
.tools-directory__item:focus-visible .tools-directory__arrow {
  color: var(--lab-cyan);
}

/* Photo watermark generator */
.watermark-tool {
  letter-spacing: 0;
}

.watermark-tool [hidden] {
  display: none !important;
}

.watermark-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.watermark-tool__header,
.watermark-export-bar,
.watermark-colors {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.watermark-tool__header {
  margin-bottom: 18px;
}

.watermark-tool__eyebrow,
.watermark-tool__status,
.watermark-fieldset legend,
.watermark-resolution {
  color: var(--lab-muted);
  font-family: var(--lab-mono);
  font-size: 10px;
  line-height: 1.4;
}

.watermark-tool__eyebrow {
  margin-bottom: 5px;
  color: var(--lab-cyan);
}

.watermark-tool__header h2 {
  margin: 0;
  color: var(--text-highlight-color);
  font-family: var(--lab-mono);
  font-size: 20px;
  letter-spacing: 0;
}

.watermark-tool__status {
  flex: 0 0 auto;
  max-width: 190px;
  padding: 6px 8px;
  overflow: hidden;
  border: 1px solid rgba(82, 120, 157, 0.4);
  border-radius: 3px;
  color: var(--lab-green);
  background: rgba(82, 120, 157, 0.1);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.watermark-tool__status[data-state='busy'] {
  color: var(--lab-amber);
}

.watermark-tool__status[data-state='error'] {
  color: #cf6464;
}

.watermark-layout {
  display: grid;
  grid-template-columns: minmax(280px, 350px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.watermark-controls {
  min-width: 0;
  border: 1px solid var(--lab-border);
  border-radius: 4px;
  background: var(--lab-panel-strong);
}

.watermark-drop {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 14px;
  border-bottom: 1px dashed var(--lab-border);
  cursor: pointer;
  transition: background-color 160ms ease;
}

.watermark-drop:hover,
.watermark-drop[data-dragging='true'] {
  background: rgba(82, 120, 157, 0.09);
}

.watermark-drop > i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--lab-border);
  border-radius: 3px;
  color: var(--lab-cyan);
}

.watermark-drop strong,
.watermark-drop small {
  display: block;
}

.watermark-drop strong {
  color: var(--text-highlight-color);
  font-size: 12px;
  line-height: 1.4;
}

.watermark-drop small {
  margin-top: 3px;
  color: var(--lab-muted);
  font-family: var(--lab-mono);
  font-size: 9px;
}

.watermark-fieldset {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 0;
  border-bottom: 1px solid var(--lab-border);
}

.watermark-fieldset:last-child {
  border-bottom: 0;
}

.watermark-fieldset legend {
  padding: 14px 0 0;
}

.watermark-input,
.watermark-svg-upload,
.watermark-control {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.watermark-parameters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.watermark-parameters .watermark-input input {
  padding-inline: 6px;
  font-family: var(--lab-mono);
  font-size: 10px;
}

.watermark-input > span,
.watermark-svg-upload > span,
.watermark-control > span,
.watermark-colors label > span {
  color: var(--lab-muted);
  font-size: 10px;
  line-height: 1.4;
}

.watermark-tool input,
.watermark-tool select,
.watermark-tool button {
  font: inherit;
}

.watermark-input input,
.watermark-input select,
.watermark-svg-upload input {
  width: 100%;
  min-width: 0;
  min-height: 36px;
  padding: 0 9px;
  border: 1px solid var(--lab-border);
  border-radius: 3px;
  outline: 0;
  color: var(--font-color);
  background: var(--lab-panel);
  font-size: 11px;
}

.watermark-svg-upload input {
  padding: 6px;
}

.watermark-input input:focus,
.watermark-input select:focus,
.watermark-svg-upload input:focus {
  border-color: var(--lab-cyan);
}

.watermark-segments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 2px;
  border: 1px solid var(--lab-border);
  border-radius: 4px;
  background: var(--lab-border);
}

.watermark-segments label {
  min-width: 0;
}

.watermark-segments input {
  position: absolute;
  opacity: 0;
}

.watermark-segments span {
  display: grid;
  place-items: center;
  min-height: 30px;
  padding: 0 5px;
  color: var(--lab-muted);
  background: var(--lab-panel-strong);
  font-size: 10px;
  cursor: pointer;
}

.watermark-segments input:checked + span {
  color: var(--text-highlight-color);
  background: var(--lab-panel);
  box-shadow: var(--lab-shadow);
}

.watermark-segments input:focus-visible + span {
  outline: 1px solid var(--lab-cyan);
  outline-offset: -1px;
}

.watermark-control input[type='range'] {
  width: 100%;
  accent-color: var(--lab-cyan);
}

.watermark-control > span {
  display: flex;
  justify-content: space-between;
}

.watermark-control output {
  color: var(--text-highlight-color);
  font-family: var(--lab-mono);
}

.watermark-colors {
  justify-content: flex-start;
}

.watermark-colors label {
  display: grid;
  gap: 5px;
}

.watermark-colors input[type='color'] {
  width: 48px;
  height: 34px;
  padding: 3px;
  border: 1px solid var(--lab-border);
  border-radius: 3px;
  background: var(--lab-panel);
  cursor: pointer;
}

.watermark-colors button {
  align-self: end;
  width: 34px;
  height: 34px;
  border: 1px solid var(--lab-border);
  border-radius: 3px;
  color: var(--font-color);
  background: var(--lab-panel);
  cursor: pointer;
}

.watermark-preview {
  min-width: 0;
}

.watermark-canvas-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--lab-border);
  border-radius: 4px 4px 0 0;
  background-color: #111317;
  background-image: linear-gradient(45deg, #181b20 25%, transparent 25%), linear-gradient(-45deg, #181b20 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #181b20 75%), linear-gradient(-45deg, transparent 75%, #181b20 75%);
  background-position: 0 0, 0 8px, 8px -8px, -8px 0;
  background-size: 16px 16px;
}

.watermark-canvas-wrap canvas {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(68vh, 760px);
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
  transform: translate(var(--watermark-pan-x, 0), var(--watermark-pan-y, 0)) scale(var(--watermark-preview-zoom, 1));
  transform-origin: center;
  transition: transform 120ms ease-out;
  will-change: transform;
  user-select: none;
}

.watermark-canvas-wrap[data-empty='false'] canvas {
  cursor: grab;
}

.watermark-canvas-wrap[data-panning='true'] canvas {
  cursor: grabbing;
  transition: none;
}

.watermark-zoom-toolbar {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  display: grid;
  grid-template-columns: 32px 54px 32px 32px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #f4f6f8;
  background: rgba(17, 19, 23, 0.88);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.24);
}

.watermark-zoom-toolbar button,
.watermark-zoom-toolbar output {
  display: grid;
  place-items: center;
  width: 100%;
  height: 32px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  color: inherit;
  background: transparent;
  font-size: 12px;
}

.watermark-zoom-toolbar button:first-child {
  border-left: 0;
}

.watermark-zoom-toolbar button {
  cursor: pointer;
}

.watermark-zoom-toolbar button:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
}

.watermark-zoom-toolbar button:disabled {
  color: #717983;
  cursor: not-allowed;
}

.watermark-zoom-toolbar output {
  font-family: var(--lab-mono);
  font-variant-numeric: tabular-nums;
}

.watermark-canvas-wrap[data-empty='true'] canvas {
  width: 100%;
  max-height: 520px;
  opacity: 0.72;
}

.watermark-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 7px;
  color: #97a1ad;
  pointer-events: none;
}

.watermark-placeholder i {
  margin-bottom: 5px;
  color: #6f96bc;
  font-size: 26px;
}

.watermark-placeholder strong {
  font-family: var(--lab-mono);
  font-size: 13px;
  letter-spacing: 0;
}

.watermark-placeholder span {
  font-size: 11px;
}

.watermark-export-bar {
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid var(--lab-border);
  border-top: 0;
  border-radius: 0 0 4px 4px;
  background: var(--lab-panel-strong);
}

.watermark-segments--format {
  flex: 0 0 112px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.watermark-resolution {
  min-width: 0;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.watermark-download {
  display: inline-grid;
  grid-auto-flow: column;
  place-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--lab-cyan);
  border-radius: 3px;
  color: #ffffff;
  background: var(--lab-cyan);
  cursor: pointer;
}

.watermark-download:disabled {
  border-color: var(--lab-border);
  color: var(--lab-muted);
  background: var(--lab-panel);
  cursor: not-allowed;
}

@media screen and (min-width: 1320px) {
  .layout:has(.watermark-tool) {
    max-width: 1540px;
    padding: 20px 20px 34px;
  }

  #page:has(.watermark-tool) {
    padding: 24px 28px;
  }
}

@media screen and (max-width: 900px) {
  .tools-directory__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .watermark-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .watermark-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .watermark-drop {
    grid-column: 1 / -1;
  }

  .watermark-fieldset {
    border-right: 1px solid var(--lab-border);
  }

  .watermark-fieldset--style {
    grid-column: 1 / -1;
    border-right: 0;
  }
}

@media screen and (max-width: 560px) {
  .tools-directory__item {
    grid-template-columns: 38px minmax(0, 1fr) 14px;
    gap: 11px;
    min-height: 112px;
    padding: 14px;
  }

  .tools-directory__icon {
    width: 38px;
    height: 38px;
  }

  .watermark-tool__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .watermark-tool__header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .watermark-layout {
    gap: 14px;
  }

  .watermark-controls {
    display: block;
  }

  .watermark-fieldset {
    border-right: 0;
  }

  .watermark-parameters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .watermark-canvas-wrap {
    min-height: 280px;
  }

  .watermark-export-bar {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .watermark-download {
    grid-column: 1 / -1;
    width: 100%;
  }

  .watermark-resolution {
    text-align: right;
  }
}

.raw-tool__header h2,
.raw-details__header h3 {
  margin: 0;
  color: var(--text-highlight-color);
  font-family: var(--lab-mono);
  letter-spacing: 0;
}

.raw-tool__header h2 {
  font-size: 20px;
}

.raw-tool__intro {
  max-width: 920px;
  margin: -8px 0 18px;
  color: var(--lab-muted);
  font-size: 12px;
  line-height: 1.75;
}

.raw-tool__status {
  flex: 0 0 auto;
  padding: 6px 8px;
  border: 1px solid rgba(82, 120, 157, 0.4);
  border-radius: 3px;
  color: var(--lab-green);
  background: rgba(82, 120, 157, 0.1);
}

.raw-tool__status[data-state='busy'] {
  border-color: rgba(82, 120, 157, 0.4);
  color: var(--lab-amber);
  background: rgba(82, 120, 157, 0.1);
}

.raw-tool__status[data-state='error'] {
  border-color: rgba(82, 120, 157, 0.4);
  color: var(--lab-cyan);
  background: rgba(82, 120, 157, 0.1);
}

.raw-drop-zone {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 18px;
  border: 1px dashed var(--lab-border);
  border-radius: 4px;
  background: var(--lab-panel-strong);
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.raw-drop-zone:hover,
.raw-drop-zone:focus-within,
.raw-drop-zone[data-dragging='true'] {
  border-color: var(--lab-cyan);
  background: var(--lab-panel);
}

.raw-drop-zone__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--lab-border);
  border-radius: 3px;
  color: var(--lab-cyan);
  background: var(--lab-panel);
  font-size: 20px;
}

.raw-drop-zone__copy strong,
.raw-drop-zone__copy small {
  display: block;
}

.raw-drop-zone__copy strong {
  color: var(--text-highlight-color);
  font-size: 15px;
}

.raw-drop-zone__copy small,
.raw-drop-zone__privacy,
.raw-summary small,
.raw-file-list__copy small {
  color: var(--lab-muted);
  font-size: 11px;
}

.raw-drop-zone__copy small {
  margin-top: 4px;
  font-family: var(--lab-mono);
}

.raw-drop-zone__privacy {
  font-family: var(--lab-mono);
  white-space: nowrap;
}

.raw-shutter-settings {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid var(--lab-border);
  border-radius: 3px;
  background: var(--lab-panel-strong);
}

.raw-shutter-settings label span,
.raw-shutter-settings label small {
  display: block;
}

.raw-shutter-settings label span {
  color: var(--text-highlight-color);
  font-family: var(--lab-mono);
  font-size: 11px;
}

.raw-shutter-settings label small {
  margin-top: 3px;
  color: var(--lab-muted);
  font-size: 10px;
}

.raw-shutter-settings input {
  flex: 0 0 150px;
  width: 150px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--lab-border);
  border-radius: 3px;
  outline: 0;
  color: var(--text-highlight-color);
  background: var(--lab-panel);
  font-family: var(--lab-mono);
}

.raw-shutter-settings input:focus {
  border-color: var(--lab-cyan);
}

.raw-tool__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.raw-progress {
  height: 2px;
  overflow: hidden;
  background: var(--lab-border);
}

.raw-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--lab-cyan);
  transition: width 180ms ease;
}

.raw-tool__actions {
  justify-content: flex-end;
  margin-top: 12px;
}

.raw-tool button,
.raw-tool input,
.raw-tool select {
  font: inherit;
}

.raw-icon-button,
.raw-command-button {
  display: inline-grid;
  place-items: center;
  min-height: 36px;
  border: 1px solid var(--lab-border);
  border-radius: 3px;
  color: var(--font-color);
  background: var(--lab-panel-strong);
  cursor: pointer;
}

.raw-icon-button {
  width: 36px;
}

.raw-command-button {
  grid-auto-flow: column;
  gap: 7px;
  padding: 0 12px;
}

.raw-icon-button:hover,
.raw-icon-button:focus-visible,
.raw-command-button:hover,
.raw-command-button:focus-visible {
  border-color: var(--lab-cyan);
  color: var(--lab-cyan);
}

.raw-summary {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 1fr;
  margin-top: 24px;
  border-block: 1px solid var(--lab-border);
}

.raw-summary > div {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 16px;
  border-right: 1px solid var(--lab-border);
}

.raw-summary > div:last-child {
  border-right: 0;
}

.raw-summary strong {
  overflow: hidden;
  color: var(--text-highlight-color);
  font-family: var(--lab-mono);
  font-size: 22px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.raw-summary__shutter strong,
.raw-summary__grade strong {
  color: var(--lab-green);
}

.raw-summary__grade[data-grade='b'] strong {
  color: var(--lab-cyan);
}

.raw-summary__grade[data-grade='c'] strong {
  color: var(--lab-amber);
}

.raw-summary__grade[data-grade='d'] strong {
  color: #e07171;
}

.raw-workspace {
  display: grid;
  grid-template-columns: var(--raw-sidebar-width) minmax(0, 1fr);
  margin-top: 24px;
  border: 1px solid var(--lab-border);
  border-radius: 4px;
  background: var(--lab-panel-strong);
}

.raw-file-list {
  min-width: 0;
  padding: 14px 0;
  border-right: 1px solid var(--lab-border);
}

.raw-file-list__label {
  padding: 0 14px 10px;
}

.raw-file-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.raw-file-list__button {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 55px;
  padding: 9px 14px;
  border: 0;
  border-left: 2px solid transparent;
  color: var(--font-color);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.raw-file-list__button:hover,
.raw-file-list__button:focus-visible,
.raw-file-list__button[data-selected='true'] {
  border-left-color: var(--lab-cyan);
  color: var(--font-color);
  background: rgba(82, 120, 157, 0.1);
}

.raw-file-list__button > i {
  color: var(--lab-cyan);
  text-align: center;
}

.raw-file-list__copy,
.raw-file-list__copy strong,
.raw-file-list__copy small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.raw-file-list__copy strong {
  color: var(--text-highlight-color);
  font-size: 12px;
  font-weight: 600;
}

.raw-details {
  min-width: 0;
  padding: 20px;
}

.raw-details__header h3 {
  max-width: 100%;
  overflow: hidden;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.raw-details__header p {
  margin: 4px 0 0;
}

.raw-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--lab-border);
  background: var(--lab-border);
}

.raw-overview__item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  background: var(--lab-panel);
}

.raw-overview__item span {
  color: var(--lab-muted);
  font-size: 11px;
}

.raw-overview__item strong {
  overflow: hidden;
  color: var(--text-highlight-color);
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.raw-tool__error {
  display: flex;
  grid-column: 1 / -1;
  gap: 10px;
  padding: 14px;
  color: var(--lab-cyan);
  background: var(--lab-panel);
}

.raw-filter-bar {
  margin-top: 18px;
}

.raw-search {
  display: grid;
  flex: 1 1 auto;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--lab-border);
  border-radius: 3px;
  background: var(--lab-panel);
}

.raw-search i {
  color: var(--lab-muted);
  font-size: 11px;
}

.raw-search input,
.raw-filter-bar select {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--font-color);
  background: transparent;
}

.raw-filter-bar select {
  flex: 0 0 140px;
  min-height: 38px;
  padding: 0 9px;
  border: 1px solid var(--lab-border);
  border-radius: 3px;
  background: var(--lab-panel);
}

.raw-tag-table-wrap {
  margin-top: 12px;
  max-height: 430px;
  overflow: auto;
  border: 1px solid var(--lab-border);
}

.raw-tag-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

.raw-tag-table th,
.raw-tag-table td {
  padding: 9px 11px;
  border: 0;
  border-bottom: 1px solid var(--lab-border);
  text-align: left;
  vertical-align: top;
}

.raw-tag-table th:first-child,
.raw-tag-table td:first-child {
  width: 42%;
}

.raw-tag-table thead {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--lab-panel-strong);
}

.raw-tag-table td {
  overflow-wrap: anywhere;
  color: var(--font-color);
  font-family: var(--lab-mono);
  font-size: 11px;
}

.raw-tag-group,
.raw-tag-name {
  display: block;
}

.raw-tag-group {
  color: var(--lab-cyan);
}

.raw-tag-name {
  margin-top: 2px;
  color: var(--text-highlight-color);
}

.raw-empty-tags {
  margin: 0;
  padding: 28px;
  color: var(--lab-muted);
  text-align: center;
}

#page .flink .flink-item-desc {
  align-self: start;
  color: var(--lab-muted);
  font-family: var(--lab-mono);
  font-size: 10px;
  line-height: 1.5;
}

#recent-posts .article-meta-wrap,
#aside-content time,
#aside-content .site-data,
#aside-content .webinfo {
  color: var(--lab-muted);
  font-family: var(--lab-mono);
}

#aside-content #card-info-btn {
  border: 1px solid rgba(82, 120, 157, 0.4);
  border-radius: 3px;
  color: var(--lab-green);
  background: rgba(82, 120, 157, 0.1);
  font-family: var(--lab-sans);
}

#aside-content #card-info-btn:hover {
  color: #fff;
  background: var(--lab-green);
}

[data-theme='dark'] #site_social_icons .fa-github,
[data-theme='dark'] .card-info-social-icons .fa-github {
  color: var(--lab-green) !important;
}

[data-theme='dark'] #site_social_icons .fa-envelope,
[data-theme='dark'] .card-info-social-icons .fa-envelope {
  color: var(--lab-cyan) !important;
}

.container blockquote {
  border-left-color: var(--lab-cyan);
  border-radius: 0 3px 3px 0;
}

.container code,
.container pre,
.container figure.highlight,
kbd {
  font-family: var(--lab-mono);
}

.container figure.highlight,
.container pre {
  border: 1px solid var(--lab-border);
  border-radius: 4px;
  box-shadow: none;
}

.pixelui-docs-nav {
  border-bottom-color: var(--lab-border);
}

.pixelui-docs-nav a {
  border-color: var(--lab-border);
  border-radius: 3px;
  font-family: var(--lab-mono);
}

.pixelui-docs-nav a:hover,
.pixelui-docs-nav a:focus-visible {
  border-color: var(--lab-cyan);
  color: var(--lab-cyan);
}

.pixelui-language-switch span[aria-current='page'] {
  color: #fff;
  background: var(--lab-green);
}

#footer {
  border-top: 1px solid var(--lab-border);
  background: var(--lab-panel);
  font-family: var(--lab-sans);
}

#rightside > div > button {
  border: 1px solid var(--lab-border);
  border-radius: 3px;
  background: var(--lab-panel-strong);
}

[data-theme='light'] #rightside > div > button {
  color: #5e6874;
  background: #fff;
  box-shadow: var(--lab-shadow);
}

[data-theme='light'] #rightside > div > button:hover {
  border-color: var(--lab-cyan);
  color: #fff;
  background: var(--lab-cyan);
}

[data-theme='light'] #rightside > div > button:focus-visible {
  outline: 2px solid var(--lab-cyan);
  outline-offset: 2px;
}

@media screen and (max-width: 768px) {
  #page-header.full_page {
    height: 300px;
    min-height: 300px;
    background-attachment: scroll;
  }

  #page-header.full_page #site-info::before {
    max-width: calc(100vw - 40px);
    font-size: 10px;
    white-space: nowrap;
  }

  #page .flink .flink-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .raw-workspace {
    grid-template-columns: minmax(0, 1fr);
  }

  .raw-file-list {
    border-right: 0;
    border-bottom: 1px solid var(--lab-border);
  }

  .raw-file-list ul {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 0 12px 4px;
  }

  .raw-file-list__item {
    flex: 0 0 190px;
  }

  .raw-file-list__button {
    border-bottom: 2px solid transparent;
    border-left: 0;
  }

  .raw-file-list__button:hover,
  .raw-file-list__button:focus-visible,
  .raw-file-list__button[data-selected='true'] {
    border-bottom-color: var(--lab-cyan);
  }

  .raw-summary {
    grid-template-columns: 1fr 1fr;
  }

  .raw-summary__shutter {
    grid-column: 1 / -1;
    border-top: 1px solid var(--lab-border);
  }

  .raw-summary__grade {
    grid-column: 1 / -1;
    border-top: 1px solid var(--lab-border);
  }
}

@media screen and (max-width: 520px) {
  #page .flink > h2:first-child {
    align-items: flex-start;
    flex-direction: column;
  }

  #page .flink .flink-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .raw-tool__header {
    align-items: stretch;
    flex-direction: column;
  }

  .raw-tool__header-actions {
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .raw-tool__status {
    align-self: flex-start;
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .raw-tool__intro {
    margin-top: 0;
  }

  .raw-drop-zone {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .raw-drop-zone__icon {
    width: 42px;
    height: 42px;
  }

  .raw-drop-zone__privacy {
    grid-column: 2;
    white-space: normal;
  }

  .raw-shutter-settings {
    align-items: stretch;
    flex-direction: column;
  }

  .raw-shutter-settings input {
    flex-basis: auto;
    width: 100%;
  }

  .raw-summary > div {
    padding: 13px;
  }

  .raw-details {
    padding: 14px;
  }

  .raw-overview {
    grid-template-columns: minmax(0, 1fr);
  }

  .raw-filter-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .raw-filter-bar select {
    flex-basis: auto;
  }

  .raw-tag-table th:first-child,
  .raw-tag-table td:first-child {
    width: 46%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  #me0w-boot {
    display: none;
  }
}

/* Restrained product-style theme layer. */
a {
  transition: color 140ms ease, border-color 140ms ease, background-color 140ms ease;
}

#nav {
  padding: 0 28px;
}

#nav .menus_items .menus_item .site-page {
  padding: 8px 9px;
  font-size: 14px;
  font-weight: 500;
}

#nav .site-page:hover,
#nav .site-page:focus-visible {
  color: #9db8d2;
}

#page-header.nav-fixed > #nav,
#page-header.not-top-img > #nav {
  border-bottom: 1px solid var(--lab-border);
  background: var(--lab-panel);
  box-shadow: none;
}

#page-header.full_page #site-title {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 650;
}

#page-header.full_page #site-subtitle {
  margin-top: 10px;
  color: rgba(232, 237, 242, 0.78);
  font-size: 15px;
}

.layout {
  max-width: 1180px;
  padding: 26px 18px 42px;
}

.layout > div:first-child:not(.recent-posts),
#post,
#page {
  padding: 30px 34px;
}

#recent-posts > .recent-post-items .recent-post-item {
  min-height: 220px;
  overflow: hidden;
}

#recent-posts > .recent-post-items .recent-post-item::before,
#page .flink > h2:first-child::after {
  display: none;
}

#recent-posts > .recent-post-items .recent-post-item:hover,
#page .flink .flink-list > .flink-list-item:hover,
#page .flink .flink-list > .flink-list-item:focus-within {
  border-color: #3b4652;
  box-shadow: var(--lab-shadow);
  transform: none;
}

#recent-posts .recent-post-info {
  padding: 24px 28px;
}

#recent-posts .article-title {
  font-family: var(--lab-sans);
  font-size: 20px;
  font-weight: 620;
  line-height: 1.35;
}

#recent-posts .content {
  margin-top: 12px;
  color: var(--font-color);
  font-size: 14px;
  line-height: 1.7;
}

#recent-posts .article-meta-wrap,
#aside-content time,
#aside-content .site-data,
#aside-content .webinfo {
  font-family: var(--lab-sans);
  font-size: 12px;
}

#aside-content .card-widget {
  padding: 20px;
}

#aside-content .item-headline {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
}

#aside-content .card-info .author-info__name {
  font-size: 17px;
  font-weight: 620;
}

#aside-content .card-info .author-info__description {
  color: var(--lab-muted);
  font-size: 13px;
  line-height: 1.6;
}

#aside-content #card-info-btn {
  min-height: 34px;
  border-radius: 4px;
}

.container h1,
.container h2,
.container h3,
.container h4 {
  font-family: var(--lab-sans);
  font-weight: 650;
}

.container h1 {
  font-size: 28px;
}

.container h2 {
  margin-top: 1.7em;
  font-size: 22px;
}

.container h3 {
  font-size: 18px;
}

.container p,
.container li {
  line-height: 1.75;
}

.container img {
  border-radius: 4px;
}

.container blockquote {
  padding: 12px 16px;
  background: rgba(82, 120, 157, 0.08);
}

.pixelui-docs-nav {
  gap: 6px;
  margin-bottom: 20px;
  padding-bottom: 12px;
}

.pixelui-docs-nav a,
.pixelui-language-switch a,
.pixelui-language-switch span {
  padding: 6px 9px;
  font-family: var(--lab-sans);
  font-size: 13px;
}

.pixelui-language-switch span[aria-current='page'] {
  background: var(--lab-cyan);
}

.pagination .page-number,
.pagination .extend {
  border-radius: 4px;
}

#footer {
  padding: 0;
  color: var(--lab-muted);
  font-size: 12px;
}

#footer .footer-other {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2px 12px;
  padding: 14px 20px;
  line-height: 1.6;
}

#footer .footer-copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 10px;
}

#footer .footer-copyright .framework-info {
  display: inline;
}

#footer .footer_custom_text {
  margin: 0;
}

#footer .footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media screen and (min-width: 1320px) {
  .layout:has(.raw-tool) {
    max-width: 1680px;
    padding: 20px 20px 34px;
  }

  #page:has(.raw-tool) {
    padding: 24px 28px;
  }

  .raw-tool {
    --raw-sidebar-width: 250px;
  }

  .raw-tool__header {
    margin-bottom: 12px;
  }

  .raw-drop-zone {
    min-height: 76px;
    padding: 12px 16px;
  }

  .raw-drop-zone__icon {
    width: 42px;
    height: 42px;
  }

  .raw-tool__actions {
    margin-top: 8px;
  }

  .raw-summary,
  .raw-workspace {
    margin-top: 16px;
  }

  .raw-summary > div {
    padding: 12px 16px;
  }

  .raw-file-list {
    max-height: 620px;
    overflow-y: auto;
  }

  .raw-details {
    display: grid;
    grid-template-areas:
      'header header'
      'overview filters'
      'overview tags';
    grid-template-columns: minmax(460px, 1.15fr) minmax(420px, 0.85fr);
    grid-template-rows: auto auto minmax(0, 1fr);
    column-gap: 18px;
    padding: 16px 18px 18px;
  }

  .raw-details__header {
    grid-area: header;
  }

  .raw-overview {
    grid-area: overview;
    margin-top: 14px;
  }

  .raw-filter-bar {
    grid-area: filters;
    margin-top: 14px;
  }

  .raw-tag-table-wrap {
    grid-area: tags;
    max-height: 510px;
  }
}

#rightside > div > button {
  border-radius: 4px;
  box-shadow: var(--lab-shadow);
}

.raw-tool__eyebrow,
.raw-tool__status,
.raw-summary span,
.raw-file-list__label,
.raw-details__header p,
.raw-tag-group,
.raw-tag-table th {
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  #nav {
    padding: 0 16px;
  }

  .layout {
    padding: 16px 10px 30px;
  }

  .layout > div:first-child:not(.recent-posts),
  #post,
  #page {
    padding: 22px 18px;
  }

  #recent-posts > .recent-post-items .recent-post-item {
    min-height: 0;
  }

  #recent-posts .recent-post-info {
    padding: 20px;
  }
}
