/* Inseller Guide — static help pages served from /public/guide.
   No build step, no framework. Edit and reload.
   Layout: left category rail · article (max 760px) · sticky right step index. */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f8f7;
  --bg-rail: #fbfcfc;
  --ink: #131816;
  --ink-2: #4a5551;
  --ink-3: #7c8783;
  --line: #e3e8e6;
  --line-2: #d3dbd8;
  --brand: #0f9d76;
  --brand-ink: #0a7a5b;
  --brand-soft: #e8f7f1;
  --amber: #b4740a;
  --amber-soft: #fdf5e6;
  --blue: #1f6feb;
  --blue-soft: #eef4ff;
  --red: #e5484d;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(16, 24, 20, .06), 0 8px 24px rgba(16, 24, 20, .06);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, "Helvetica Neue", Arial,
    "PingFang SC", "Microsoft YaHei", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand-ink); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- top bar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 60px;
  padding: 0 20px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

/* Brand lockup comes from the asset, never hand-rolled — the two-tone wordmark
   ("In" in brand green, "seller" in ink) lives in /brand/inseller-logo.svg,
   the same file src/components/brand/BrandLogo.tsx renders. */
.topbar .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.topbar .brand:hover { text-decoration: none; }
.topbar .brand img {
  height: 28px;
  width: auto;
  display: block;
}
.topbar .brand .sub {
  color: var(--ink-3);
  font-weight: 500;
  padding-left: 10px;
  border-left: 1px solid var(--line-2);
}

.topbar .spacer { flex: 1; }

.topbar .app-link {
  padding: 7px 14px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.topbar .app-link:hover { background: var(--brand-ink); text-decoration: none; }

.menu-btn {
  display: none;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  background: #fff;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

/* ---------- shell ---------- */

.shell {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr) 220px;
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 32px 24px 96px;
  align-items: start;
}

/* ---------- left rail ---------- */

.rail {
  position: sticky;
  top: 84px;
  max-height: calc(100vh - 108px);
  overflow-y: auto;
  font-size: 14.5px;
}
.rail h4 {
  margin: 22px 0 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.rail h4:first-child { margin-top: 0; }
.rail ol, .rail ul { margin: 0; padding: 0; list-style: none; }
.rail li { margin: 1px 0; }
.rail li > a {
  display: flex;
  gap: 9px;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--ink-2);
  line-height: 1.4;
}
.rail li > a:hover { background: var(--bg-soft); text-decoration: none; color: var(--ink); }
.rail li > a.current { background: var(--brand-soft); color: var(--brand-ink); font-weight: 600; }
.rail li > a .n {
  flex: none;
  width: 18px;
  font-variant-numeric: tabular-nums;
  color: var(--ink-3);
}
.rail li > a.current .n { color: var(--brand-ink); }
.rail .rail-note {
  margin-top: 22px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
}

/* ---------- article ---------- */

.article { min-width: 0; }

.breadcrumb {
  font-size: 13.5px;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.breadcrumb a { color: var(--ink-3); }

h1 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -.022em;
  font-weight: 750;
}
h2 {
  margin: 48px 0 14px;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -.015em;
  font-weight: 700;
}
h3 { margin: 28px 0 10px; font-size: 17px; font-weight: 700; }
p { margin: 0 0 14px; }
.lede { font-size: 17.5px; color: var(--ink-2); margin-bottom: 20px; }

/* metadata strip under H1 */
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  font-size: 13px;
}
.meta li {
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink-2);
}
.meta li b { font-weight: 600; color: var(--ink); }

/* progress rail across the getting-started series */
.series {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0 0 28px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  overflow-x: auto;
}
.series a {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px 4px 0;
  font-size: 13px;
  color: var(--ink-2);
  white-space: nowrap;
}
.series a:hover { text-decoration: none; color: var(--ink); }
.series .dot {
  display: grid;
  place-items: center;
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--line-2);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-3);
}
.series a.done .dot { background: var(--brand); border-color: var(--brand); color: #fff; }
.series a.here { color: var(--ink); font-weight: 650; }
.series a.here .dot { border-color: var(--brand); color: var(--brand-ink); box-shadow: 0 0 0 3px var(--brand-soft); }

/* prerequisites card */
.prereq {
  margin: 0 0 28px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--ink-3);
  border-radius: var(--radius);
  background: var(--bg-soft);
}
.prereq h3 { margin: 0 0 10px; font-size: 14px; letter-spacing: .02em; text-transform: uppercase; color: var(--ink-2); }
.prereq ul { margin: 0; padding: 0; list-style: none; }
.prereq li { margin: 6px 0; }
.prereq label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; font-size: 15px; }
.prereq input { margin-top: 4px; accent-color: var(--brand); width: 15px; height: 15px; flex: none; }
.prereq input:checked + span { color: var(--ink-3); text-decoration: line-through; }

/* step blocks */
.step {
  position: relative;
  margin: 0 0 12px;
  padding: 26px 0 26px 62px;
  border-top: 1px solid var(--line);
}
.step:first-of-type { border-top: none; }
.step > .num {
  position: absolute;
  left: 0;
  top: 24px;
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.step h2 { margin: 4px 0 12px; font-size: 20px; }

/* UI path chips: Settings > Integrations > Connect */
.path { font-size: 14.5px; }
.path code, code.ui {
  display: inline-block;
  padding: 1px 7px;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  background: #fff;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.path .sep { color: var(--ink-3); margin: 0 4px; }

kbd {
  padding: 2px 6px;
  border: 1px solid var(--line-2);
  border-bottom-width: 2px;
  border-radius: 5px;
  background: var(--bg-soft);
  font-family: var(--mono);
  font-size: 12.5px;
}

pre {
  margin: 14px 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0f1512;
  color: #dfe8e4;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.55;
  overflow-x: auto;
}
pre .k { color: #7fd1b0; }
pre .s { color: #e8c07d; }
:not(pre) > code {
  padding: 1.5px 5px;
  border-radius: 5px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 13px;
}

ul.body, ol.body { margin: 0 0 14px; padding-left: 22px; }
ul.body li, ol.body li { margin: 6px 0; }

table.data {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14.5px;
}
table.data th, table.data td {
  padding: 9px 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
table.data th { background: var(--bg-soft); font-weight: 650; }

/* ---------- screenshots with HTML annotation overlays ---------- */

figure.shot { margin: 18px 0 20px; }
.shot .frame {
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  overflow: hidden;
  background: #16191b;
  box-shadow: var(--shadow);
  line-height: 0;
}
.shot .frame img { width: 100%; height: auto; display: block; }

/* red annotation box, positioned in % of the image */
.hl {
  position: absolute;
  border: 2.5px solid var(--red);
  border-radius: 6px;
  box-shadow: 0 0 0 2px rgba(229, 72, 77, .18);
  pointer-events: none;
}
.hl > b {
  position: absolute;
  top: -13px;
  left: -13px;
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--font);
}
/* redaction patch for anything that shouldn't be public */
.redact {
  position: absolute;
  border-radius: 4px;
  background: rgba(120, 130, 126, .96);
  backdrop-filter: blur(6px);
}

figcaption {
  margin-top: 9px;
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.5;
}
figcaption b { color: var(--ink-2); font-weight: 600; }

/* click-to-zoom */
.shot .frame { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(10, 14, 12, .88);
  cursor: zoom-out;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 10px; }

/* ---------- callouts ---------- */

.note, .warn, .tip {
  margin: 16px 0;
  padding: 13px 16px 13px 15px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--blue);
  border-radius: 10px;
  background: var(--blue-soft);
  font-size: 15px;
}
.note b.label, .warn b.label, .tip b.label {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--blue);
}
.warn { border-left-color: var(--amber); background: var(--amber-soft); }
.warn b.label { color: var(--amber); }
.tip { border-left-color: var(--brand); background: var(--brand-soft); }
.tip b.label { color: var(--brand-ink); }
.note p:last-child, .warn p:last-child, .tip p:last-child { margin-bottom: 0; }

/* verify-it-worked block */
.verify {
  margin: 32px 0 20px;
  padding: 18px 20px;
  border: 1.5px solid var(--brand);
  border-radius: var(--radius);
  background: var(--brand-soft);
}
.verify h2 { margin: 0 0 10px; font-size: 18px; color: var(--brand-ink); }
.verify ul { margin: 0; padding-left: 20px; }
.verify li { margin: 6px 0; }

/* troubleshooting accordion */
.trouble { margin: 28px 0; }
.trouble details {
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 8px;
  background: #fff;
}
.trouble summary {
  padding: 12px 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
}
.trouble summary::-webkit-details-marker { display: none; }
.trouble summary::before { content: "▸ "; color: var(--ink-3); }
.trouble details[open] summary::before { content: "▾ "; }
.trouble details[open] summary { border-bottom: 1px solid var(--line); }
.trouble .body { padding: 12px 16px 4px; font-size: 15px; }

/* next / prev */
.nextprev {
  display: flex;
  gap: 12px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.nextprev a {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: #fff;
}
.nextprev a:hover { border-color: var(--brand); text-decoration: none; box-shadow: var(--shadow); }
.nextprev a .k { display: block; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); }
.nextprev a .t { font-weight: 650; color: var(--ink); }
.nextprev a.next { border-color: var(--brand); background: var(--brand-soft); }

/* ---------- right step index ---------- */

.toc {
  position: sticky;
  top: 84px;
  max-height: calc(100vh - 108px);
  overflow-y: auto;
  font-size: 13.5px;
  border-left: 1px solid var(--line);
  padding-left: 16px;
}
.toc h4 {
  margin: 0 0 10px;
  font-size: 11.5px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.toc a {
  display: block;
  padding: 5px 0;
  color: var(--ink-3);
  line-height: 1.4;
  border-left: 2px solid transparent;
  padding-left: 10px;
  margin-left: -12px;
}
.toc a:hover { color: var(--ink); text-decoration: none; }
.toc a.active { color: var(--brand-ink); border-left-color: var(--brand); font-weight: 600; }

/* ---------- index page cards ---------- */

.hero { padding: 8px 0 28px; }
.hero h1 { font-size: 40px; }
.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.card {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: inherit;
}
.card:hover { border-color: var(--brand); box-shadow: var(--shadow); text-decoration: none; }
.card .k {
  display: inline-block;
  margin-bottom: 8px;
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}
.card h3 { margin: 0 0 6px; font-size: 17.5px; }
.card p { margin: 0; font-size: 14.5px; color: var(--ink-2); }
.card .toc-hint { margin-top: 10px; font-size: 13px; color: var(--ink-3); }

/* ---------- responsive ---------- */

@media (max-width: 1120px) {
  .shell { grid-template-columns: 220px minmax(0, 1fr); gap: 32px; }
  .toc { display: none; }
}

@media (max-width: 840px) {
  .shell { grid-template-columns: minmax(0, 1fr); padding: 20px 16px 72px; }
  .menu-btn { display: inline-flex; }
  .rail {
    display: none;
    position: static;
    max-height: none;
    margin-bottom: 24px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg-rail);
  }
  .rail.open { display: block; }
  h1 { font-size: 27px; }
  .step { padding-left: 0; padding-top: 22px; }
  .step > .num {
    position: static;
    margin-bottom: 10px;
    width: 32px; height: 32px;
    font-size: 15px;
  }
  .cards { grid-template-columns: minmax(0, 1fr); }
  .topbar .app-link { display: none; }
}

@media print {
  .topbar, .rail, .toc, .nextprev, .menu-btn { display: none; }
  .shell { display: block; max-width: none; padding: 0; }
  .step { break-inside: avoid; }
}

/* ---------- search ---------- */

.search-wrap { position: relative; flex: 0 1 340px; margin-left: 8px; }
.search-wrap input {
  width: 100%;
  padding: 8px 12px 8px 32px;
  border: 1px solid var(--line-2);
  border-radius: 9px;
  background: var(--bg-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237c8783' stroke-width='2.2' stroke-linecap='round'><circle cx='11' cy='11' r='7'/><path d='M20 20l-3.5-3.5'/></svg>") no-repeat 10px 50%;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
}
.search-wrap input:focus {
  outline: none;
  border-color: var(--brand);
  background-color: #fff;
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.search-wrap .hint {
  position: absolute;
  right: 9px; top: 50%;
  transform: translateY(-50%);
  padding: 1px 6px;
  border: 1px solid var(--line-2);
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  pointer-events: none;
}
.search-wrap input:focus + .hint { display: none; }

.results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  max-height: 60vh;
  overflow-y: auto;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 6px;
  display: none;
  z-index: 60;
}
.results.open { display: block; }
.results a {
  display: block;
  padding: 9px 11px;
  border-radius: 8px;
  color: var(--ink);
}
.results a:hover, .results a.sel { background: var(--bg-soft); text-decoration: none; }
.results a .r-page { font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); }
.results a .r-head { display: block; font-weight: 650; font-size: 14.5px; margin: 1px 0 2px; }
.results a .r-text { display: block; font-size: 12.5px; color: var(--ink-2); line-height: 1.45; }
.results mark { background: #fdf0a8; color: inherit; border-radius: 3px; padding: 0 1px; }
.results .empty { padding: 14px 12px; font-size: 14px; color: var(--ink-3); }

/* ---------- was this helpful ---------- */

.feedback {
  margin-top: 44px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  text-align: center;
}
.feedback p { margin: 0 0 12px; font-weight: 650; }
.feedback .btns { display: flex; gap: 10px; justify-content: center; }
.feedback button {
  padding: 8px 22px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.feedback button:hover { border-color: var(--brand); color: var(--brand-ink); }
.feedback .after { margin: 0; font-weight: 400; font-size: 14.5px; color: var(--ink-2); }
.feedback .after a { font-weight: 600; }

@media (max-width: 840px) {
  .search-wrap { flex: 1 1 auto; margin-left: 0; }
  .search-wrap .hint { display: none; }
}

/* ---------- dark mode ----------
   Screenshots are captured from the app's dark theme, so a dark page is the
   more honest reading surface — the figures stop being bright rectangles on
   white. Colour lives entirely in the custom properties above, so this block
   only re-points them; no component rule is duplicated.

   `[data-theme]` is set by an inline script in <head> BEFORE first paint, so
   there is no white flash for a reader who chose dark. */

[data-theme="dark"] {
  --bg: #0e1311;
  --bg-soft: #161d1a;
  --bg-rail: #121917;
  --ink: #e6ede9;
  --ink-2: #a9b6b1;
  --ink-3: #7d8b86;
  --line: #232c28;
  --line-2: #2f3a35;
  --brand: #10b981;
  --brand-ink: #34d399;
  --brand-soft: #0f2a21;
  --amber: #e0a44a;
  --amber-soft: #2a2113;
  --blue: #6da5f7;
  --blue-soft: #14213a;
  --red: #f2696d;
  --shadow: 0 1px 2px rgba(0, 0, 0, .5), 0 8px 24px rgba(0, 0, 0, .35);
}

/* Surfaces that were hardcoded white in the light theme. */
[data-theme="dark"] .topbar { background: rgba(14, 19, 17, .92); }
[data-theme="dark"] .menu-btn,
[data-theme="dark"] .series .dot,
[data-theme="dark"] .path code,
[data-theme="dark"] code.ui,
[data-theme="dark"] .trouble details,
[data-theme="dark"] .nextprev a,
[data-theme="dark"] .card,
[data-theme="dark"] .results,
[data-theme="dark"] .feedback button,
[data-theme="dark"] .search-wrap input:focus { background: var(--bg-soft); }

[data-theme="dark"] .nextprev a.next { background: var(--brand-soft); }

/* The code block is already dark; lift it off a dark page instead of sinking in. */
[data-theme="dark"] pre { background: #070a09; border-color: var(--line-2); }

/* Search highlight: the light-theme yellow is unreadable on a dark panel. */
[data-theme="dark"] .results mark { background: #4a3f0e; color: #f7edb8; }

/* Screenshot frames: dark captures on a dark page need a visible edge. */
[data-theme="dark"] .shot .frame { border-color: var(--line-2); }

/* The brand lockup ships in two files — swap to the white wordmark. */
[data-theme="dark"] .topbar .brand img { content: url("/brand/inseller-logo-white.svg"); }

/* ---------- theme toggle button ---------- */

.theme-btn {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  flex: none;
  padding: 0;
  border: 1px solid var(--line-2);
  border-radius: 9px;
  background: var(--bg-soft);
  color: var(--ink-2);
  cursor: pointer;
}
.theme-btn:hover { color: var(--ink); border-color: var(--brand); }
.theme-btn svg { width: 16px; height: 16px; }
.theme-btn .moon { display: none; }
[data-theme="dark"] .theme-btn .sun { display: none; }
[data-theme="dark"] .theme-btn .moon { display: block; }

/* ---------- language switch ---------- */

.lang-link {
  flex: none;
  padding: 6px 11px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  background: var(--bg-soft);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
}
.lang-link:hover { color: var(--brand-ink); border-color: var(--brand); text-decoration: none; }

@media (max-width: 840px) {
  .lang-link { padding: 6px 9px; font-size: 12.5px; }
}

/* Chinese copy needs a slightly taller line and a font stack that resolves on
   both macOS and Windows; the Latin UI strings inside it stay in the base face. */
html[lang="zh-Hans"] body {
  line-height: 1.8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}
html[lang="zh-Hans"] .lede { line-height: 1.75; }
html[lang="zh-Hans"] h1 { letter-spacing: 0; }
html[lang="zh-Hans"] h2 { letter-spacing: 0; }
