:root {
  --ink: #e1eaf0;
  --muted: #a0b2c0;
  --accent: #75cec3;
  --accent-dark: #4bb3a7;
  --paper: #15212b;
  --ground: #0e151d;
  --line: #2c3c48;
  --soft: #1d333c;
  --sky: #38bdf8;
  --danger: #f4978d;
  font-family: Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color: var(--ink);
  background: var(--ground);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,input,textarea,select {
  font: inherit;
}
button,select {
  cursor: pointer;
}
button {
  border: 0;
  background: none;
  color: inherit;
  transition: background .16s,transform .16s;
}
button:disabled {
  opacity: .5;
  cursor: wait;
}
button:not(:disabled):active {
  transform: translateY(1px);
}
a {
  color: inherit;
}
input,select,textarea {
  color: var(--ink);
}
button:focus-visible,a:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible,summary:focus-visible {
  outline: 3px solid #148fbc;
  outline-offset: 3px;
}
button:disabled {
  transform: none;
}
button,select,input {
  min-height: 38px;
}
[hidden] {
  display: none!important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip {
  position: fixed;
  top: -60px;
  left: 15px;
  background: var(--ink);
  color: #15212b;
  padding: 12px;
  z-index: 99;
}
.skip:focus {
  top: 10px;
}
.masthead {
  height: 98px;
  max-width: 1600px;
  margin: auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-family: Georgia,serif;
  font-size: 27px;
  letter-spacing: -.8px;
}
.mark {
  width: 49px;
  height: 49px;
  border-radius: 14px;
  background: #162f3d;
  display: grid;
  place-items: center;
}
.mark img {
  width: 42px;
  height: 42px;
}
.edition {
  display: block;
  font-family: inherit;
  font-family: Arial,sans-serif;
  font-size: 8px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-top: 5px;
}
.mast-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
}
.owner-link {
  text-decoration: none;
  color: var(--muted);
}
.quiet {
  font-size: 12px;
  font-weight: 600;
  padding: 7px 10px;
  border-radius: 5px;
  white-space: nowrap;
}
.quiet:hover {
  background: var(--soft);
}
.mast-actions .quiet span:not([data-i18n]) {
  border: 1px solid #a8bdc7;
  border-radius: 50%;
  padding: 1px 5px;
  margin-left: 9px;
}
main {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
}
.intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 43px 0 32px;
  gap: 30px;
}
.eyebrow {
  font-size: 9px;
  letter-spacing: 1.65px;
  font-weight: 750;
  margin: 0 0 11px;
  color: var(--accent);
}
h1 {
  font-family: Georgia,"Times New Roman",serif;
  font-size: 45px;
  letter-spacing: -1.8px;
  line-height: 1.12;
  font-weight: 400;
  margin: 0;
}
h1 em {
  font-weight: 400;
  color: var(--accent);
}
.intro-copy {
  font-size: 13px;
  color: var(--muted);
  margin: 14px 0 0;
  line-height: 1.7;
}
.intro-note {
  font-size: 11px;
  line-height: 1.9;
  color: var(--ink);
  padding-bottom: 3px;
  white-space: nowrap;
}
.intro-note>span:last-child {
  color: var(--muted);
  padding-left: 14px;
}
.status-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #93d3b8;
  border-radius: 50%;
  margin-right: 9px;
  margin-bottom: 2px;
}
.workflows {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
  background: #22343c;
  overflow: hidden;
}
.workflows button {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 65px;
  padding: 17px 22px;
  text-align: left;
  border-bottom: 2px solid transparent;
  color: var(--muted);
}
.workflows button+button {
  border-left: 1px solid var(--line);
}
.workflows button[aria-selected=true] {
  background: var(--paper);
  border-bottom-color: var(--accent);
  color: var(--ink);
}
.workflows strong {
  font-size: 13px;
  font-weight: 650;
}
.step {
  font-family: Georgia,serif;
  color: #98b1bc;
  font-size: 15px;
}
.tab-caption {
  margin-left: auto;
  font-size: 10px;
}
.workbench {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 9px 9px;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.06fr);
  box-shadow: 0 5px 18px #00000040;
}
.input-column {
  padding: 29px 28px 30px;
  border-right: 1px solid var(--line);
  min-width: 0;
}
.output-column {
  padding: 29px 28px 26px;
  min-width: 0;
  background: #121d26;
  border-radius: 0 0 9px 0;
}
.panel-heading,.result-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 23px;
}
.panel-heading .eyebrow,.result-heading .eyebrow {
  font-size: 8px;
  letter-spacing: 1.6px;
  margin-bottom: 8px;
}
h2 {
  font-family: Georgia,serif;
  font-size: 23px;
  letter-spacing: -.6px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}
.example-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 11px;
  margin-bottom: 14px;
}
.example-row label {
  color: var(--muted);
  white-space: nowrap;
}
select {
  border: 1px solid var(--line);
  background: #15212b;
  border-radius: 5px;
  padding: 8px 26px 8px 10px;
  font-size: 11px;
  max-width: 100%;
  text-overflow: ellipsis;
}
.example-row select {
  min-width: 0;
  flex: 1;
}
.editor {
  background: #142e35;
  border-radius: 7px;
  border: 1px solid #10282e;
  overflow: hidden;
  color: #c9dedf;
}
.editor-top {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #d2e0e8;
  background: #1a383f;
  border-bottom: 1px solid #849da8;
}
.editor-top>span:last-child {
  margin-left: auto;
  color: #acc1cd;
  font-size: 9px;
}
.file-dot {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #8dbfaa;
}
.code-area {
  display: flex;
  height: 382px;
  padding-top: 15px;
}
.code-area pre,.code-area textarea {
  font-family: "SFMono-Regular",Consolas,"Liberation Mono",monospace;
  font-size: 11px;
  line-height: 1.9;
  tab-size: 4;
  margin: 0;
}
.code-area pre {
  color: #9eb7c7;
  text-align: right;
  width: 42px;
  flex: 0 0 42px;
  padding: 0 12px 0 0;
  overflow: hidden;
  user-select: none;
}
.code-area textarea {
  color: #e0ebf2;
  background: transparent;
  resize: none;
  border: 0;
  padding: 0 15px 18px 0;
  width: 100%;
  outline-offset: -3px;
  white-space: pre;
  overflow: auto;
}
.editor-bottom {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  border-top: 1px solid #849da8;
  color: #9db4b3;
  font-size: 9px;
}
.action-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 17px;
}
.primary {
  background: var(--accent);
  color: #15212b;
  font-size: 12px;
  font-weight: 650;
  padding: 12px 18px;
  border-radius: 5px;
  min-height: 42px;
  white-space: nowrap;
}
.primary:hover {
  background: var(--accent-dark);
}
.primary span:not([data-i18n]) {
  margin-left: 25px;
}
.secondary {
  background: #233640;
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 5px;
  font-size: 11px;
  min-height: 40px;
}
.secondary:hover {
  background: var(--ground);
}
.small {
  font-size: 11px;
  padding: 7px 10px;
  min-height: 33px;
}
.input-hint {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 95%;
}
.badge {
  border: 1px solid #39534e;
  background: #1b3630;
  color: #92d7b2;
  font-size: 8px;
  letter-spacing: .4px;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 6px 9px;
  white-space: nowrap;
}
.badge.stale {
  background: #3d3224;
  border-color: #75603a;
  color: #e5c88d;
}
.badge.error {
  background: #38252c;
  color: var(--danger);
  border-color: #704444;
}
.preview-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.segmented {
  border: 1px solid var(--line);
  border-radius: 5px;
  display: flex;
  background: #192a35;
  padding: 3px;
  flex: none;
}
.segmented button {
  font-size: 10px;
  min-height: 29px;
  padding: 5px 12px;
  border-radius: 3px;
  color: var(--muted);
}
.segmented button[aria-pressed=true] {
  background: #233640;
  color: var(--ink);
  box-shadow: 0 1px 3px #00000040;
}
.preview-controls select {
  max-width: 44%;
  min-width: 0;
  flex: 1;
}
.paper-stage {
  height: 294px;
  border: 1px solid #26343e;
  border-radius: 6px;
  background-color: #0b1118;
  background-image: radial-gradient(#00000088 .65px,transparent .65px);
  background-size: 10px 10px;
  padding: 24px 18px 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
}
.paper-stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: #15212b;
  box-shadow: 0 4px 16px #00000055;
}
.paper-caption {
  position: absolute;
  bottom: 12px;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: #afbbc1;
}
.preview-glyph {
  font-family: Georgia,serif;
  font-size: 32px;
  color: #a6bfb5;
}
#preview-placeholder {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}
#preview-placeholder p {
  margin: 5px;
}
#preview-placeholder>span:last-child {
  font-size: 10px;
}
.export-controls {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  align-items: end;
  gap: 9px;
  padding: 17px 0 11px;
  border-bottom: 1px solid var(--line);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 10px;
  color: var(--muted);
  margin: 10px 0;
}
.field input,.field select {
  width: 100%;
  background: #15212b;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 9px 10px;
  font-size: 12px;
  min-width: 0;
}
.export-controls .field {
  margin: 0;
}
.export-controls .primary {
  min-height: 38px;
  padding: 10px 13px;
  font-size: 11px;
}
.presentation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 7px 0 13px;
  color: var(--muted);
  font-size: 9px;
}
.presentation-options label {
  display: flex;
  align-items: center;
  gap: 4px;
}
.presentation-options input {
  min-height: 0;
  accent-color: var(--accent);
}
.presentation-options button {
  margin-left: auto;
  font-size: 10px;
}
.evaluation {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 15px;
  font-size: 11px;
  background: #15212b;
  line-height: 1.7;
}
.evaluation .result-label {
  font-size: 8px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.evaluation .winner {
  font-family: Georgia,serif;
  font-size: 20px;
}
.evaluation .result-detail {
  font-size: 10px;
  color: var(--muted);
  margin: 6px 0 0;
  white-space: pre-wrap;
}
.evaluation.error {
  border-color: #865655;
}
.evaluation ul {
  padding-left: 17px;
}
.muted {
  color: var(--muted);
}
.diagnostics {
  margin-top: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  color: var(--muted);
}
summary {
  cursor: pointer;
  padding: 9px 0;
  font-weight: 600;
}
summary>span:not([data-i18n]) {
  float: right;
  font-weight: 400;
  font-size: 9px;
}
.diagnostics pre {
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 230px;
  overflow: auto;
  font-size: 10px;
  line-height: 1.7;
  font-family: ui-monospace,monospace;
  color: var(--ink);
}
.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 46px;
  padding: 5px 4px;
  font-size: 11px;
  color: var(--muted);
}
.status-bar.error {
  color: var(--danger);
}
.status-bar.busy:before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid #537b73;
  border-top-color: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
  animation: spin 1s linear infinite;
}
.status-bar.busy #status {
  margin-right: auto;
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  border-top: 1px solid var(--line);
  padding: 18px 0 24px;
  font-size: 9px;
  color: var(--muted);
  line-height: 1.9;
}
footer p {
  margin: 0;
}
footer strong {
  font-weight: 600;
  color: #a9babf;
}
footer p:last-child {
  text-align: right;
}
.upload-zone {
  width: 100%;
  min-height: 165px;
  border: 1px dashed #466b6f;
  background: #162934;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
}
.upload-zone:hover {
  background: #203943;
}
.upload-zone strong {
  font-size: 13px;
}
.upload-zone>span:last-child {
  font-size: 10px;
  color: var(--muted);
}
.upload-glyph {
  font-size: 30px;
  font-family: Georgia,serif;
  font-weight: 400;
}
.sample-projects {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  align-items: center;
  font-size: 10px;
  color: var(--muted);
  padding: 10px 0;
}
.sample-projects button {
  color: var(--accent);
  font-size: 10px;
  min-height: 27px;
  padding: 0;
  border-bottom: 1px solid #447267;
}
.tableau-list {
  border: 1px solid var(--line);
  border-radius: 6px;
  max-height: 320px;
  overflow: auto;
  margin-top: 18px;
}
.tableau-list button {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.tableau-list button:last-child {
  border: 0;
}
.tableau-list button[aria-pressed=true] {
  background: var(--soft);
  border-left: 3px solid var(--accent);
  padding-left: 11px;
}
.tableau-list small {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  color: var(--muted);
}
.builder-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.grid-help {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  color: var(--muted);
  gap: 12px;
}
.grid-help .quiet {
  font-size: 10px;
  padding: 4px 0;
}
.ledger-scroll {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 5px;
  max-height: 390px;
  margin: 5px 0;
}
.ledger {
  border-collapse: collapse;
  font-size: 11px;
  width: 100%;
  text-align: center;
}
.ledger th,.ledger td {
  padding: 7px;
  border: 1px solid var(--line);
  min-width: 92px;
}
.ledger th {
  background: #1d2b36;
  font-size: 9px;
  vertical-align: top;
}
.ledger th:first-child,.ledger td:first-child {
  min-width: 146px;
  text-align: left;
}
.ledger input {
  width: 100%;
  min-width: 54px;
  min-height: 28px;
  border: 1px solid #35444f;
  border-radius: 3px;
  padding: 4px 5px;
  font-size: 10px;
  text-align: center;
  background: #15212b;
}
.ledger td:first-child input {
  text-align: left;
  margin-bottom: 4px;
}
.ledger th input {
  max-width: 120px;
}
.ledger .rank-label {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
}
.ledger .rank-label input {
  min-width: 35px;
  width: 45px;
  font-size: 9px;
}
.ledger .remove {
  font-size: 10px;
  min-height: 20px;
  padding: 2px;
  color: #d9a49a;
  float: right;
}
.comparison-settings {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 8px 0;
  padding: 4px 0;
  font-size: 11px;
}
.comparison-settings p {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.7;
}
.comparison-settings summary {
  font-size: 11px;
}
.comparison-settings summary span {
  color: var(--muted);
}
dialog {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 35px;
  max-width: 640px;
  width: calc(100% - 36px);
  color: var(--ink);
  background: #15212b;
  box-shadow: 0 30px 130px #00000060;
}
dialog::backdrop {
  background: #000000aa;
  backdrop-filter: blur(3px);
}
dialog h2 {
  font-size: 30px;
  margin: 15px 0;
}
dialog h3 {
  font-size: 13px;
  margin: 23px 0 8px;
}
dialog p,dialog li {
  font-size: 12px;
  line-height: 1.85;
  color: var(--muted);
}
dialog li {
  margin-bottom: 12px;
}
dialog ol {
  padding-left: 20px;
}
.close-dialog {
  position: absolute;
  right: 14px;
  top: 12px;
  font-size: 23px;
}
#reference-note {
  font-size: 10px;
  border-top: 1px solid var(--line);
  padding-top: 15px;
}
.busy .paper-stage {
  opacity: .7;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media(min-width:1500px) {
  .code-area {
    height: 426px;
  }
  .paper-stage {
    height: 337px;
  }
}
@media(max-width:1120px) {
  main {
    padding: 0 24px;
  }
  .masthead {
    padding: 0 24px;
  }
  .workflows button {
    padding: 15px;
    gap: 8px;
  }
  .tab-caption {
    display: none;
  }
  .input-column,.output-column {
    padding: 25px 20px;
  }
  .intro-note {
    display: none;
  }
  h1 {
    font-size: 40px;
  }
  .export-controls {
    grid-template-columns: 1.3fr 1fr;
  }
  .export-controls button {
    grid-column: 1/-1;
  }
  .presentation-options button {
    margin-left: 0;
  }
  .panel-heading h2,.result-heading h2 {
    font-size: 21px;
  }
  .badge {
    font-size: 7px;
  }
}
@media(max-width:820px) {
  .workbench {
    grid-template-columns: 1fr;
  }
  .input-column {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .output-column {
    border-radius: 0 0 9px 9px;
  }
  .workflows strong {
    font-size: 12px;
  }
  .intro {
    padding: 32px 0 25px;
  }
  .paper-stage {
    height: 330px;
  }
  .export-controls {
    grid-template-columns: 1.5fr 1fr auto;
  }
  .export-controls button {
    grid-column: auto;
  }
  .presentation-options button {
    margin-left: auto;
  }
  .code-area {
    height: 340px;
  }
  .owner-link {
    display: none;
  }
  footer {
    font-size: 9px;
  }
  .workflows button {
    min-height: 60px;
  }
  .workflows .step {
    font-size: 12px;
  }
}
@media(max-width:480px) {
  main {
    padding: 0 12px;
  }
  .masthead {
    height: 79px;
    padding: 0 16px;
  }
  .brand {
    font-size: 24px;
  }
  .mark {
    width: 40px;
    height: 40px;
  }
  .intro {
    padding: 27px 5px 23px;
  }
  h1 {
    font-size: 33px;
    letter-spacing: -1.3px;
  }
  .intro .eyebrow {
    font-size: 7px;
    letter-spacing: 1.4px;
  }
  .intro-copy {
    font-size: 11px;
  }
  .workflows button {
    padding: 12px 7px;
    justify-content: center;
    gap: 5px;
  }
  .workflows strong {
    font-size: 10px;
  }
  .workflows .step {
    display: none;
  }
  .input-column,.output-column {
    padding: 22px 16px;
  }
  .panel-heading h2,.result-heading h2 {
    font-size: 21px;
  }
  .panel-heading .quiet {
    font-size: 10px;
    padding: 5px;
  }
  .example-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .example-row select {
    width: 100%;
    flex: auto;
  }
  .paper-stage {
    height: 248px;
  }
  .export-controls {
    grid-template-columns: 1.2fr 1fr;
  }
  .export-controls .primary {
    grid-column: 1/-1;
  }
  .presentation-options {
    gap: 9px;
  }
  .presentation-options button {
    margin-left: 0;
  }
  .preview-controls {
    gap: 6px;
  }
  .segmented button {
    font-size: 9px;
    padding: 5px 9px;
  }
  .builder-top {
    gap: 8px;
  }
  .action-row {
    flex-wrap: wrap;
  }
  footer {
    display: block;
    padding: 16px 5px;
  }
  footer p:last-child {
    text-align: left;
    margin-top: 12px;
  }
  .badge {
    max-width: 100px;
    white-space: normal;
    text-align: center;
  }
  .preview-controls select {
    font-size: 10px;
  }
  dialog {
    padding: 25px;
  }
  .editor-bottom {
    font-size: 8px;
  }
}
@media(prefers-reduced-motion:reduce) {
  * {
    transition: none!important;
    animation: none!important;
  }
}
.inspect-preview {
  position: absolute;
  right: 12px;
  bottom: 5px;
  min-height: 28px;
  font-size: 9px;
  color: var(--accent);
  background: #25343c;
  border-radius: 4px;
  padding: 4px 8px;
}
.inspect-preview:hover {
  background: #30454e;
}
:root {
  color-scheme: dark;
}
h1 {
  font-family: inherit;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -.8px;
}
h2 {
  font-family: inherit;
  font-weight: 600;
}
.intro-copy {
  font-size: 14px;
}
.primary {
  background: #276f73;
  color: #f1ffff;
}
.primary:hover {
  background: #33898c;
}
.language-control {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
}
.language-control select {
  background: #15212b;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 5px 9px;
  font-size: 12px;
  color: var(--ink);
}
footer {
  font-size: 11px;
}
footer a {
  text-underline-offset: 3px;
}
.intro .eyebrow {
  letter-spacing: 1px;
}
.paper-caption {
  color: #9aadb8;
}
.brand {
  color: #e1eaf0;
}
@media(max-width:480px) {
  .masthead {
    padding: 0 12px;
  }
  .mast-actions {
    gap: 7px;
  }
  .language-control>span {
    display: none;
  }
  .language-control select {
    max-width: 100px;
  }
  .brand {
    font-size: 22px;
    gap: 6px;
  }
  .mark {
    width: 34px;
    height: 38px;
  }
  .mark img {
    width: 34px;
    height: 34px;
  }
  .edition {
    font-size: 7px;
  }
  .mast-actions .quiet {
    font-size: 10px;
    padding: 4px;
  }
  h1 {
    font-size: 28px;
  }
  .intro-copy {
    font-size: 12px;
  }
  .workflows strong {
    font-size: 10px;
  }
  .paper-caption {
    left: 12px;
    transform: none;
  }
  .inspect-preview {
    font-size: 8px;
  }
  .result-heading h2 {
    font-size: 19px;
  }
}
