/* ============================================================
   WeftCut — "Cinematic Timeline"
   ============================================================ */

/* ---- 霞鹜文楷 GB Medium — the Chinese heading face --------------------
   Georgia carries no Han glyphs, so without this the Chinese headings resolve
   to whatever the OS happens to supply — Songti SC, SimSun, or a coin toss.
   Built by `.work/harness/fonts.py`: CJK-only, so Latin inside a heading still
   falls through to Georgia, and exact-subset from the shipped copy, which is
   why it is 33 KB and why it must be rebuilt when the Chinese headings change.
   GB rather than the original: the original derives from Klee One and carries
   Japanese glyph forms for most shared characters. Declared at weight 400
   because every var(--serif) consumer is 400 — the Medium cut is there to match
   Georgia's density on a dark ground, not to serve font-weight: 500.
   Licence: assets/fonts/LICENSE-LXGWWenKaiGB.txt
   ---------------------------------------------------------------------- */
@font-face {
  font-family: "LXGW WenKai GB";
  src: url("/assets/fonts/wenkai-gb-medium.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+2E80-303F, U+3200-33FF, U+3400-4DBF, U+4E00-9FFF,
                 U+F900-FAFF, U+FE30-FE4F, U+FF00-FFEF;
}

:root {
  --bg: #0c0e12;
  --ink: #05070a;
  --sunken: #08090b;
  --card: #111419;
  --raised: #181c23;
  --popover: #1c2028;
  --border: #252a34;
  --border2: #363e4b;
  --text: #e6e9ef;
  --dim: #9aa4b5;
  --faint: #6b7484;
  --accent: #6696E6;
  --code-accent: #9B8FE8;
  --slate: #5B7196;
  --yellow: #facc15;
  --green: #46c46a;
  --red: #f87171;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --wrap: 1160px;
  --nav-h: 58px;
  --timeline-h: 40px;
  --sec-gap: clamp(84px, 11vw, 150px);
}

/* The three stacks above carry no CJK glyphs at all — ui-monospace/SF Mono/
   Consolas in particular would drop every hanzi to an arbitrary system fallback
   mid-line, and .mono is used in 25 places. Overriding the variables (higher
   specificity than :root) fixes every consumer at once. Latin inside a mixed
   run still resolves to the original faces, which is what we want. */
html[lang^="zh"] {
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui,
          "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  /* Georgia first, so Latin inside a heading keeps the display face; Han falls
     past it to the webfont. The system serifs stay behind it as the no-webfont
     path. */
  --serif: Georgia, "Times New Roman", "LXGW WenKai GB",
           "Songti SC", "SimSun", "Noto Serif SC", serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas,
          "PingFang SC", "Microsoft YaHei", "Noto Sans SC", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  scroll-padding-bottom: var(--timeline-h);
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-text-size-adjust: 100%;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar { display: none; }
html.is-scrubbing,
html.is-resetting-scroll { scroll-behavior: auto; }

/* Tuck each chapter boundary under the sticky nav so the previous section
   cannot remain visible above the destination. */
main > section[id] {
  scroll-margin-top: -1px;
}

body {
  background: var(--bg);
  color: var(--text);
  font: 16px/1.7 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

img, video { max-width: 100%; height: auto; display: block; }

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

code {
  font: 0.86em var(--mono);
  background: var(--raised);
  border: 1px solid var(--border);
  padding: 1px 6px;
  border-radius: 4px;
  color: #cdd7e8;
  overflow-wrap: anywhere;
}

::selection { background: rgba(102, 150, 230, 0.28); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.mono-dim { font-family: var(--mono); font-size: 11px; color: var(--faint); letter-spacing: 0.04em; }

/* ---------- reveal ---------- */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.rv.in { opacity: 1; transform: none; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  background: rgba(12, 14, 18, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-in {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 100%;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 650;
  letter-spacing: 0.01em;
}
.brand:hover { text-decoration: none; }
.brand img { flex: 0 0 auto; }
/* Language switcher — a real link in both directions, never a JS toggle, so
   crawlers can walk from one language to the other. The margin-left:auto lives
   here now instead of on .gh, so the pair travels to the right edge together.
   In the nav it's a globe icon; the footer keeps a worded link, so the
   destination language is spelled out somewhere on every page. The icon carries
   aria-label + title for the text the glyph itself can't say. */
.lang-switch {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: var(--dim);
  border: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}
.lang-switch:hover {
  color: var(--text);
  border-color: var(--border2);
  background: var(--card);
  text-decoration: none;
}
.lang-switch svg { display: block; }

.gh {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font: 600 12.5px var(--sans);
  letter-spacing: 0.03em;
  color: var(--text);
  border: 1px solid var(--border2);
  border-radius: 999px;
  padding: 7px 14px;
  background: var(--card);
  transition: border-color 160ms ease, background 160ms ease;
}
.gh:hover { border-color: var(--accent); background: var(--raised); text-decoration: none; }

/* ============ TYPE ============ */
.kicker {
  font: 600 11px var(--sans);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 14px;
}
.reel-no { color: var(--accent); }
.scene-no { color: var(--faint); }
.kicker .reel-no::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  background: var(--border2);
  vertical-align: middle;
  margin: 0 14px;
}

h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.08;
}
h1 em, h2 em { font-style: italic; color: var(--accent); }

h1 { font-size: clamp(44px, 7.2vw, 88px); margin: 22px 0 24px; }
h2 { font-size: clamp(32px, 4.6vw, 54px); margin: 20px 0 18px; }
h3 { font-size: 16.5px; font-weight: 650; letter-spacing: 0.01em; }

.lede {
  color: var(--dim);
  font-size: clamp(16px, 1.5vw, 18.5px);
  line-height: 1.75;
  max-width: 62ch;
}
.lede em { color: var(--text); font-style: normal; }

/* ============ HERO ============ */
.hero {
  position: relative;
  display: flex;
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100dvh - var(--nav-h));
  background:
    radial-gradient(1100px 480px at 50% -140px, rgba(102, 150, 230, 0.13), transparent 62%),
    linear-gradient(var(--bg), var(--bg));
  text-align: center;
  overflow-x: clip; /* clip, not hidden: the download menu hangs below the hero on short viewports */
}

.hero-in {
  display: flex;
  flex: 1;
  min-height: 0;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .kicker { justify-content: center; }
.hero h1 {
  font-size: clamp(56px, min(9vw, 11vh), 76px);
  font-size: clamp(56px, min(9vw, 11dvh), 76px);
  margin: clamp(12px, 2vh, 22px) 0 clamp(14px, 2.2vh, 24px);
  margin: clamp(12px, 2dvh, 22px) 0 clamp(14px, 2.2dvh, 24px);
}
.hero h1 .accent-agent { color: var(--accent); }
.hero h1 .accent-code { color: var(--code-accent); }
.hero .lede {
  margin: 0 auto;
  font-size: clamp(15px, min(1.5vw, 1.9vh), 18.5px);
  font-size: clamp(15px, min(1.5vw, 1.9dvh), 18.5px);
  line-height: 1.55;
}
.hero .cta-row {
  margin-top: clamp(16px, 2.5vh, 32px);
  margin-top: clamp(16px, 2.5dvh, 32px);
}
.hero .hero-meta {
  margin-top: clamp(12px, 1.8vh, 22px);
  margin-top: clamp(12px, 1.8dvh, 22px);
}

/* ============ DEMO — THE CUT ============ */
.demo-section {
  padding: clamp(64px, 8vw, 112px) 0;
  background: var(--sunken);
  border-top: 1px solid var(--border);
}
/* The transcript column carries real terminal output, so it needs enough width
   to hold a tool line; the stage ratio follows from keeping the video snug in
   what's left (video is 1600x852). */
.demo-stage {
  display: grid;
  grid-template-columns: minmax(0, 1600fr) minmax(0, 845fr);
  grid-template-rows: 1fr;
  width: min(1240px, 100%);
  margin: 0 auto;
  aspect-ratio: 2.92 / 1;
  min-height: 0;
  gap: clamp(14px, 1.8vw, 22px);
  text-align: left;
}
.demo-stage video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
  background: var(--ink);
}
.demo-stage .logpanel {
  height: 100%;
  min-height: 0;
  border: 1px solid var(--border2);
  border-radius: 10px;
  overflow: hidden;
}
.demo-stage .log-body { flex: 1; min-height: 0; height: auto; }

@media (max-width: 960px) {
  .demo-stage { grid-template-columns: minmax(0, 1fr); grid-template-rows: none; width: 100%; aspect-ratio: auto; }
  .demo-stage video { height: auto; }
  .demo-stage .logpanel { height: auto; }
  .demo-stage .log-body { height: 300px; flex: none; }
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 600 14px var(--sans);
  letter-spacing: 0.02em;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.platform-icon {
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  line-height: 0;
}
.platform-icon svg { width: 100%; height: 100%; display: block; }
/* Grid rather than the flex .btn uses: the label is swapped for a longer,
   platform-specific one at runtime, and a fixed icon column keeps that from
   nudging the glyph around. */
[data-download-cta] {
  display: inline-grid;
  grid-template-columns: 15px max-content;
  align-items: center;
  justify-content: center;
  column-gap: 9px;
  line-height: 1;
}
[data-download-cta] .btn-label { display: block; line-height: 1; }
.btn-primary {
  background: var(--accent);
  color: #0a0d13;
  box-shadow: 0 6px 24px rgba(102, 150, 230, 0.25);
}
.btn-primary:hover { background: #7aa6ec; }
.btn-primary svg { color: #0a0d13; }
.btn-ghost {
  border-color: var(--border2);
  color: var(--text);
  background: rgba(24, 28, 35, 0.55);
}
.btn-ghost:hover { border-color: var(--accent); }

.hero-meta {
  margin-top: 22px;
  font: 500 11.5px var(--mono);
  letter-spacing: 0.12em;
  color: var(--faint);
  text-transform: uppercase;
}

/* ---- the download's fine print --------------------------------------------
   Two blocks under the hero CTA: the note index.js writes once it knows the
   platform, and the full installer list, which ships in the HTML. */
.dl-note {
  display: grid;
  gap: 3px;
  margin-top: clamp(10px, 1.4vh, 15px);
  margin-top: clamp(10px, 1.4dvh, 15px);
  font: 500 11.5px var(--mono);
  letter-spacing: 0.03em;
  color: var(--dim);
  opacity: 0;
  transition: opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.dl-note.in { opacity: 1; }
.dl-note:empty { display: none; }
.dl-caveat { color: var(--faint); }
.dl-caveat a { color: inherit; text-decoration: underline; text-decoration-color: var(--border2); text-underline-offset: 3px; }
.dl-caveat a:hover { color: var(--accent); text-decoration-color: currentColor; }

/* ---- split download button ------------------------------------------------
   One pill: the platform-aware CTA on the left, a narrow toggle on the right
   that drops the full installer list. The shadow and the hover lift live on
   the wrapper so the two halves move as one control. */
.dl-split {
  position: relative;
  z-index: 48; /* above the scroll rail, below the nav */
  display: inline-flex;
  align-items: stretch;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(102, 150, 230, 0.25);
  transition: transform 160ms ease;
}
.dl-split:has(> .btn:hover, > .dl-menu > summary:hover) { transform: translateY(-1px); }
.dl-split .btn { box-shadow: none; }
.dl-split .btn:hover { transform: none; }
.dl-split > .btn { border-radius: 8px 0 0 8px; border-right: 0; }
.dl-menu { display: flex; }
.dl-menu-toggle {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px 0 9px;
  border-radius: 0 8px 8px 0;
  border-left: 1px solid rgba(10, 13, 19, 0.22);
  cursor: pointer;
  list-style: none;
}
.dl-menu-toggle::-webkit-details-marker { display: none; }
.dl-menu-toggle svg {
  width: 13px;
  height: 13px;
  display: block;
  transition: transform 160ms ease;
}
.dl-menu[open] .dl-menu-toggle svg { transform: rotate(180deg); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.dl-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 1;
  width: min(420px, calc(100vw - 40px));
  padding: 6px;
  border: 1px solid var(--border2);
  border-radius: 12px;
  background: rgba(17, 20, 25, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  text-align: left;
  animation: dl-pop 180ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes dl-pop {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}
/* index.js flips the panel above the button when the viewport would cut it off. */
.dl-menu.is-up .dl-panel {
  top: auto;
  bottom: calc(100% + 8px);
  animation-name: dl-pop-up;
}
@keyframes dl-pop-up {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.dl-list { display: grid; }
/* Each row echoes the button: glyph on the left, platform name beside it, its
   fine print after. The name is the link; its ::after stretches over the row. */
.dl-list li {
  position: relative;
  display: grid;
  grid-template-columns: 18px 118px minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  padding: 7px 12px;
  border-radius: 7px;
  transition: background 120ms ease;
}
.dl-list li[hidden] { display: none; }
.dl-list li:hover { background: rgba(255, 255, 255, 0.05); }
.dl-list li:has(a:focus-visible) { outline: 2px solid var(--accent); outline-offset: -2px; }
.dl-list li:last-child {
  margin-top: 5px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  border-radius: 0 0 7px 7px;
}
.dl-icon {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--dim);
  line-height: 0;
  transition: color 120ms ease;
}
.dl-icon svg { width: 16px; height: 16px; display: block; }
.dl-list li:hover .dl-icon { color: var(--text); }
.dl-os {
  font: 600 13px/1.3 var(--sans);
  letter-spacing: 0.01em;
  color: var(--text);
}
.dl-os:hover { text-decoration: none; }
.dl-os::after { content: ""; position: absolute; inset: 0; }
.dl-os:focus-visible { outline: none; }
.dl-hint {
  font: 400 11px/1.4 var(--sans);
  color: var(--dim);
  overflow-wrap: anywhere;
}
.dl-fine {
  margin: 6px 10px 3px;
  font: 400 11px/1.4 var(--sans);
  color: var(--faint);
}
.dl-fine a { color: var(--dim); text-decoration: underline; text-decoration-color: var(--border2); text-underline-offset: 3px; }
.dl-fine a:hover { color: var(--accent); }

/* ---------- program monitor ---------- */
.monitor { width: min(1020px, 100%); margin: clamp(48px, 6vw, 72px) auto 0; }

.monitor > video {
  --video-corner: clamp(6px, 1.2vw, 13px);
  width: 100%;
  border-radius: var(--video-corner);
  background: var(--ink);
  clip-path: inset(0 round var(--video-corner));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
}
.tc {
  font: 600 13px var(--mono);
  letter-spacing: 0.14em;
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
}
.monitor figcaption {
  margin-top: 16px;
  font: 500 11px var(--mono);
  letter-spacing: 0.18em;
  color: var(--faint);
  text-align: center;
}
.monitor figcaption a { color: var(--dim); text-decoration: underline; text-underline-offset: 3px; }

/* ============ SCROLL TIMELINE ============ */
.timeline-dock {
  position: relative;
  z-index: 45;
  height: var(--timeline-h);
  background: var(--sunken);
}

/* The ruler runs edge to edge on purpose — the film reads as continuing past
   both ends of the viewport. The scrubbable range (playhead 0%–100%, marker
   stops) is narrower: it lives on the inset .timeline-rail, pulled in by half
   the first label (timelineInset in index.js) so every marker — the first
   included — centers on its stop. --ruler-phase (set from index.js) slides the
   tick grid so a major tick lands exactly on the film's 0%, under the parked
   playhead. */
.scroll-timeline {
  position: fixed;
  z-index: 45;
  right: 0;
  bottom: 0;
  left: 0;
  height: var(--timeline-h);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(90deg, var(--border2) 0 1px, transparent 1px) var(--ruler-phase, 0px) top / 132px 12px repeat-x,
    linear-gradient(90deg, var(--border) 0 1px, transparent 1px) var(--ruler-phase, 0px) top / 22px 6px repeat-x,
    var(--sunken);
}

.timeline-dock.is-docked .scroll-timeline {
  position: absolute;
  top: 0;
  bottom: auto;
}

.timeline-rail {
  position: relative;
  height: 38px;
  margin: 0 clamp(20px, 4vw, 40px);
}

.timeline-playhead {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 20px;
  height: 18px;
  background: transparent;
  cursor: grab;
  transform: translate3d(var(--playhead-x, -10px), 0, 0);
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  will-change: transform;
}
.timeline-playhead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 6px solid var(--yellow);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  opacity: 0.85;
  transform: translateX(-50%);
}
.timeline-playhead.is-dragging { cursor: grabbing; }
.timeline-playhead:hover::before,
.timeline-playhead:focus-visible::before,
.timeline-playhead.is-dragging::before { opacity: 1; }
.timeline-playhead:focus-visible { outline-offset: -2px; }
.timeline-playhead.is-dragging:focus-visible { outline: none; }

.timeline-markers {
  position: absolute;
  z-index: 3;
  inset: 0;
  list-style: none;
  pointer-events: none;
}
.timeline-marker {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--marker-x, var(--marker-position));
  display: flex;
  align-items: flex-end;
  padding-bottom: 4px;
  transform: translateX(-50%);
  pointer-events: auto;
}
.timeline-marker a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: var(--faint);
  background: var(--sunken);
  font: 600 9.5px var(--mono);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  white-space: nowrap;
}
.timeline-marker a:hover {
  color: var(--text);
  text-decoration: none;
}
.timeline-marker a:focus-visible { z-index: 2; text-decoration: none; }
.timeline-marker.is-active { z-index: 2; }
.timeline-marker.is-active a { color: var(--dim); }
.marker-index { display: none; }

/* ============ SECTIONS ============ */
.reel { padding: var(--sec-gap) 0; }
.sec-head { margin-bottom: clamp(40px, 5vw, 64px); max-width: 780px; }

/* ============ REEL 01 — AGENT ============ */
.agent-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.cue-list { list-style: none; }
.cue-list li {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.cue-list li:first-child { border-top: 0; padding-top: 4px; }
.cue-tag {
  font: 600 10px var(--mono);
  letter-spacing: 0.2em;
  color: var(--slate);
  padding-top: 5px;
}
.cue-list p { color: var(--dim); font-size: 14.5px; line-height: 1.75; }

.code-frame {
  background: var(--sunken);
  border: 1px solid var(--border2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.code-frame figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--card);
}
.code-frame pre {
  padding: 20px;
  overflow-x: auto;
  font: 13px/1.75 var(--mono);
  color: #b9c6da;
}
.code-frame code {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
}
.prompt-list {
  margin: 0;
  padding: 20px 22px;
  list-style: none;
  display: grid;
  gap: 12px;
  font: 15px/1.7 var(--sans);
  color: var(--dim);
}
.prompt-list li { display: grid; grid-template-columns: 14px 1fr; gap: 6px; }
.prompt-list li::before { content: "›"; color: var(--accent); font: 600 13px/25px var(--mono); }
.prompt-list li.typing .prompt-text::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 0.95em;
  margin-left: 3px;
  vertical-align: -2px;
  background: var(--accent);
  animation: rec-blink 0.9s steps(1) infinite;
}
/* While armed, every line keeps its final footprint (the hidden ghost sizes it)
   so the typewriter never reflows the sections below — only the ink appears. */
.prompt-line { position: relative; display: block; min-width: 0; }
.prompt-ghost { visibility: hidden; }
.prompt-line .prompt-text { position: absolute; inset: 0; }
.prompt-list.armed li::before { opacity: 0; transition: opacity 200ms ease; }
.prompt-list.armed li.typing::before,
.prompt-list.armed li.typed::before { opacity: 1; }

.frame-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  margin-top: clamp(40px, 5vw, 64px);
}

/* ============ REEL 02 — MOTIFS ============ */
.motif-reel {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--border);
  background:
    radial-gradient(760px 420px at 86% 24%, rgba(155, 143, 232, 0.11), transparent 72%),
    radial-gradient(760px 460px at 8% 88%, rgba(102, 150, 230, 0.08), transparent 72%),
    var(--sunken);
}
.motif-reel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 100% 32px;
}
.motif-reel > .wrap { position: relative; }
.motif-reel h2 em {
  display: block;
  color: var(--code-accent);
}
.motif-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 1fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
}
.motif-live-shot {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.motif-live-shot img {
  flex: 1;
  min-height: 0;
  object-fit: cover;
}
.motif-export {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border2);
  border-radius: 10px;
  background: rgba(17, 20, 25, 0.86);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.36);
}
.motif-output-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 2px 4px;
}
.motif-output-head .mono-dim {
  max-width: 32ch;
  line-height: 1.55;
}
.motif-output-badge {
  flex: 0 0 auto;
  padding: 5px 8px;
  border: 1px solid rgba(155, 143, 232, 0.32);
  border-radius: 999px;
  color: #b8aff2;
  background: rgba(155, 143, 232, 0.08);
  font: 600 8.5px var(--mono);
  letter-spacing: 0.13em;
}
.motif-export-frame {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #131b2a;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}
.motif-export-frame video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.motif-replay-button {
  position: absolute;
  z-index: 2;
  right: 9px;
  bottom: 9px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 6px;
  border: 1px solid rgba(230, 233, 239, 0.3);
  border-radius: 999px;
  color: rgba(230, 233, 239, 0.82);
  background: rgba(8, 9, 11, 0.62);
  font: 600 8px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: inherit;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}
.motif-replay-button:hover {
  color: var(--text);
  border-color: rgba(155, 143, 232, 0.72);
  background: rgba(28, 32, 40, 0.86);
}
.motif-replay-button:focus-visible { outline-offset: 2px; }
.motif-replay-button svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.motif-export-legend {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
  padding: 10px 2px 1px;
  border-top: 1px solid var(--border);
}
.motif-export-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--dim);
  font: 600 9px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.motif-export-legend i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--code-accent);
  box-shadow: 0 0 10px rgba(155, 143, 232, 0.5);
}
.motif-export-legend span:nth-child(2) i { background: var(--accent); }
.motif-export-legend span:nth-child(3) i { background: #b8aff2; }
.motif-export-video-played {
  filter: saturate(0.96);
}
.motif-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  margin-top: clamp(34px, 4vw, 52px);
}
.motif-benefits article {
  position: relative;
  padding: 24px 24px 25px 58px;
  border-top: 1px solid var(--border2);
  background: linear-gradient(180deg, rgba(24, 28, 35, 0.44), transparent);
}
.motif-benefit-no {
  position: absolute;
  top: 24px;
  left: 20px;
  color: var(--code-accent);
  font: 600 10px var(--mono);
  letter-spacing: 0.12em;
}
.motif-benefits h3 { margin-bottom: 8px; }
.motif-benefits p {
  color: var(--dim);
  font-size: 13.5px;
  line-height: 1.72;
}

/* ---------- film frame (sprocket mount) ---------- */
.film {
  position: relative;
  background: var(--raised);
  border: 1px solid var(--border2);
  border-radius: 6px;
  padding: 20px 12px;
}
.film::before,
.film::after {
  content: "";
  position: absolute;
  left: 10px; right: 10px;
  height: 9px;
  background-image: radial-gradient(circle at 5px 4.5px, var(--ink) 0 2.6px, rgba(255, 255, 255, 0.05) 3.1px, transparent 3.6px);
  background-size: 26px 9px;
  background-repeat: repeat-x;
  background-position: left center;
}
.film::before { top: 5px; }
.film::after { bottom: 5px; }
.film img {
  border-radius: 3px;
  border: 1px solid var(--border);
  width: 100%;
}
.film figcaption {
  margin-top: 12px;
  font: 600 9.5px var(--mono);
  letter-spacing: 0.22em;
  color: var(--faint);
  text-align: center;
}

/* ---------- screenshot lightbox ----------
   The stills are UI, and UI shrunk into a grid column is unreadable, so every
   one of them opens full-size. The role/tabindex are set by index.js, which is
   also the only thing that can open the overlay — no JS, no zoom affordance. */
.film img[role="button"] {
  cursor: zoom-in;
  transition: border-color 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}
/* The pointer cue stays quiet — the hairline warms up, the still lifts a
   little off the frame. The loud accent is kept for keyboard focus, where a
   ring that cannot be missed is the whole point. */
.film img[role="button"]:hover {
  border-color: rgba(230, 233, 239, 0.3);
  filter: brightness(1.07);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}
.film img[role="button"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3.5vw, 44px);
  background: rgba(6, 8, 11, 0.84);
}
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border: 1px solid var(--border2);
  border-radius: 4px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}
.lightbox-close {
  /* Fixed, not absolute: on narrow screens the overlay itself scrolls, and an
     absolutely positioned button would scroll off with the picture. */
  position: fixed;
  top: clamp(10px, 2vw, 22px);
  right: clamp(10px, 2vw, 22px);
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--border2);
  border-radius: 999px;
  background: rgba(17, 20, 25, 0.92);
  color: var(--text);
  cursor: pointer;
}
.lightbox-close:hover { border-color: var(--accent); color: #fff; }
.lightbox-close svg { display: block; }
/* Fitting a 1600px shot of a desktop UI to a phone's width leaves it exactly
   as unreadable as the card it came from. Give it the full height instead and
   let the overlay pan sideways. */
@media (max-width: 700px) {
  .lightbox {
    place-items: center start;
    padding: 0;
    overflow: auto;
  }
  .lightbox img {
    max-width: none;
    max-height: none;
    height: 100vh;
    height: 100dvh;
    border: 0;
    border-radius: 0;
  }
}

/* ---------- synced log panel ---------- */
.logpanel {
  background: var(--sunken);
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.log-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}
.log-title {
  font: 600 10.5px var(--mono);
  letter-spacing: 0.08em;
  color: var(--dim);
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.term-dots { display: inline-flex; gap: 5px; align-items: center; }
.term-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(248, 113, 113, 0.55);
}
.term-dots i:nth-child(2) { background: rgba(240, 160, 32, 0.55); }
.term-dots i:nth-child(3) { background: rgba(70, 196, 106, 0.55); }
.log-stat {
  font: 600 9.5px var(--mono);
  letter-spacing: 0.14em;
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.log-body {
  height: clamp(240px, 30vw, 320px);
  overflow-y: auto;
  position: relative;
  padding: 8px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--border2) transparent;
}
.log-body::-webkit-scrollbar { width: 8px; }
.log-body::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 4px; }
.log-foot {
  padding: 8px 14px;
  line-height: 1.5;
  border-top: 1px solid var(--border);
  background: var(--card);
}
.log-foot a { color: var(--dim); text-decoration: underline; text-underline-offset: 3px; }

/* Claude Code's transcript, as the terminal draws it: a ⏺ gutter mark per block,
   the tool line, then its ⎿ result. */
.tui {
  display: grid;
  grid-template-columns: 13px minmax(0, 1fr);
  gap: 8px;
  padding: 3px 14px 3px 11px;
  margin-bottom: 5px;
  border-left: 2px solid transparent;
  font: 11px/1.6 var(--mono);
  color: var(--faint);
  opacity: 0;
  transform: translateY(4px);
  cursor: pointer;
  transition: opacity 240ms ease, transform 240ms ease, background 240ms ease, border-color 240ms ease;
}
.tui.on { opacity: 1; transform: none; }
.tui:hover, .tui:focus-visible { background: rgba(102, 150, 230, 0.06); }
.tui.cur { background: rgba(102, 150, 230, 0.08); border-left-color: var(--accent); }
.tui-mark {
  color: var(--green);
  line-height: inherit;
  user-select: none;
}
.tui-text { min-width: 0; }

.tui-tool { color: var(--accent); font-weight: 600; }
.tui-params {
  color: var(--faint);
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tui.on .tui-params { color: var(--slate); }
.tui.cur .tui-params { color: var(--faint); }
.tui-head { display: block; }

.tui-out {
  display: grid;
  grid-template-columns: 11px minmax(0, 1fr);
  gap: 6px;
  margin-top: 1px;
}
.tui-elbow { color: var(--border2); user-select: none; }
.tui-lines { min-width: 0; display: flex; flex-direction: column; }
.tui-outline,
.tui-more {
  color: var(--slate);
  font-size: 10.5px;
  white-space: pre;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tui-more { color: var(--border2); }

.tui-err .tui-mark { color: var(--red, #f87171); }
.tui-err .tui-outline { color: var(--red, #f87171); opacity: 0.85; }
.tui-aux .tui-mark { color: var(--slate); opacity: 0.6; }
.tui-aux .tui-tool { color: var(--slate); font-weight: 500; }

.tui-say { color: var(--dim); }
.tui-say .tui-mark { color: var(--text); }
/* the terminal colours inline code, it doesn't chip it */
.tui-say code {
  font: inherit;
  color: var(--accent);
  background: none;
  border: 0;
  padding: 0;
}
.tui-say strong { color: var(--text); font-weight: 600; }
.tui-final { color: var(--dim); margin-top: 4px; }

.tui-user {
  opacity: 1;
  color: var(--dim);
  padding-top: 8px;
  padding-bottom: 9px;
  margin-bottom: 9px;
  border-left-color: var(--yellow);
  border-bottom: 1px dashed var(--border);
}
.tui-user .tui-mark { color: var(--yellow); font-weight: 700; }
.log-empty { padding: 18px 14px; font: 11.5px var(--mono); color: var(--faint); }

/* ============ REEL 03 — FEATURES ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(48px, 6vw, 72px);
}
.fcard {
  grid-column: span 4;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 14px 20px;
  transition: border-color 200ms ease, transform 200ms ease;
}
.fcard:hover { border-color: var(--border2); transform: translateY(-2px); }
.fcard .film { padding: 16px 10px; }
.fcard .film::before, .fcard .film::after { height: 7px; background-size: 20px 7px; background-image: radial-gradient(circle at 4px 3.5px, var(--ink) 0 2px, rgba(255,255,255,0.05) 2.5px, transparent 3px); }
.fcard .film::before { top: 4px; }
.fcard .film::after { bottom: 4px; }
.fcard-body { padding: 18px 8px 0; }
.fcard-body h3 { margin-bottom: 8px; }
.fcard-body p { color: var(--dim); font-size: 13.5px; line-height: 1.7; }
.fcard-wide { grid-column: span 12; }
.fcard-wide .film img { border-radius: 3px; }
.fcard-wide .film img.timeline-closeup {
  aspect-ratio: 1600 / 202;
  object-fit: cover;
  object-position: bottom;
}
.fcard-wide .fcard-body { max-width: 70ch; }

/* ============ EPILOGUE — PRODUCT FINALE ============ */
.finale-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  list-style: none;
}
.finale-values li {
  padding: clamp(26px, 3.5vw, 42px);
  background: linear-gradient(180deg, rgba(24, 28, 35, 0.38), transparent);
}
.finale-values li + li { border-left: 1px solid var(--border); }
.finale-value-tag {
  display: block;
  margin-bottom: 18px;
  color: var(--code-accent);
  font: 600 10px var(--mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.finale-values h3 { margin-bottom: 10px; }
.finale-values p {
  color: var(--dim);
  font-size: 14px;
  line-height: 1.75;
}
.finale-closing {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 5fr);
  margin-top: clamp(42px, 6vw, 72px);
  overflow: hidden;
  border: 1px solid var(--border2);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(24, 28, 35, 0.76), rgba(12, 14, 18, 0.92));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}
.finale-cta {
  display: flex;
  min-width: 0;
  padding: clamp(34px, 5vw, 62px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.finale-line {
  max-width: 26ch;
  color: var(--text);
  font: 400 clamp(25px, 3.4vw, 40px)/1.2 var(--serif);
  letter-spacing: -0.01em;
}
.finale-phrase { white-space: nowrap; }
.finale-cta .cta-row { justify-content: flex-start; margin-top: 28px; }
.finale-meta {
  margin-top: 20px;
  color: var(--faint);
  font: 500 10.5px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.oss-card {
  display: flex;
  min-width: 0;
  padding: clamp(34px, 4.5vw, 54px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-left: 1px solid var(--border2);
  background:
    radial-gradient(420px 220px at 100% 0%, rgba(155, 143, 232, 0.12), transparent 68%),
    rgba(8, 9, 11, 0.58);
}
.oss-eyebrow {
  margin-bottom: 18px;
  color: var(--code-accent);
  font: 600 10.5px var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.oss-card h3 {
  margin-bottom: 12px;
  font: 400 clamp(24px, 2.7vw, 34px)/1.18 var(--serif);
  letter-spacing: -0.01em;
}
.oss-card > p:not(.oss-eyebrow) {
  max-width: 42ch;
  color: var(--dim);
  font-size: 14px;
  line-height: 1.75;
}
.oss-card .btn { margin-top: 24px; }

/* ============ FAQ ============ */
.faq-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(36px, 6vw, 76px);
  row-gap: clamp(28px, 4vw, 44px);
}
.faq-list li {
  padding-top: clamp(20px, 2.5vw, 28px);
  border-top: 1px solid rgba(54, 62, 75, 0.48);
}
.faq-list h3 {
  margin-bottom: 10px;
  font: 400 clamp(19px, 2vw, 24px)/1.35 var(--serif);
  letter-spacing: -0.01em;
}
.faq-list p {
  color: var(--dim);
  font-size: 14.5px;
  line-height: 1.75;
  max-width: 68ch;
}

/* ============ FOOTER ============ */
.footer {
  padding: clamp(40px, 5vw, 64px) 0 48px;
  background: var(--bg);
}
.foot-in {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
}
.foot-brand p {
  margin-top: 12px;
  color: var(--faint);
  font-size: 12.5px;
  max-width: 40ch;
}
.foot-links { display: flex; gap: 22px; }
.foot-links a { color: var(--dim); font-size: 13px; font-weight: 500; }
.foot-links a:hover { color: var(--text); }
.foot-copy {
  color: var(--faint);
  font: 500 11px var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1020px) {
  .fcard { grid-column: span 6; }
  .fcard-wide { grid-column: span 12; }
}

@media (max-width: 860px) {
  .agent-grid, .motif-showcase { grid-template-columns: minmax(0, 1fr); }
  .agent-side { min-width: 0; }
  .frame-pair { grid-template-columns: minmax(0, 1fr); }
  .foot-in { grid-template-columns: 1fr; gap: 22px; }
  .foot-copy { white-space: normal; }
}

@media (max-width: 720px) {
  .nav-in { justify-content: space-between; }
  .finale-values { grid-template-columns: minmax(0, 1fr); }
  .finale-values li + li { border-left: 0; border-top: 1px solid var(--border); }
  .finale-closing { grid-template-columns: minmax(0, 1fr); }
  .oss-card { border-top: 1px solid var(--border2); border-left: 0; }
  .faq-list { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 560px) {
  .motif-reel h2 em { display: inline; }
  .timeline-rail { margin-inline: 12px; }
  .timeline-marker a { gap: 0; padding-inline: 4px; font-size: 8px; letter-spacing: 0.08em; }
  .marker-index { display: none; }
  .marker-label { font-size: 0; }
  .marker-label::after { content: attr(data-short); font-size: 8px; }
  .kicker { letter-spacing: 0.22em; flex-wrap: wrap; row-gap: 8px; }
  .kicker .reel-no::after { width: 22px; margin: 0 10px; }
  .fcard { grid-column: span 12; }
  .cue-list li { grid-template-columns: minmax(0, 1fr); gap: 6px; padding: 16px 0; }
  .motif-export { padding: 10px; }
  .motif-output-head { align-items: flex-start; }
  .motif-output-badge { white-space: nowrap; }
  .motif-export-legend { gap: 5px; }
  .motif-export-legend span { gap: 5px; font-size: 8px; letter-spacing: 0.04em; }
  .motif-benefits { grid-template-columns: minmax(0, 1fr); }
  .tui { grid-template-columns: 11px minmax(0, 1fr); gap: 7px; font-size: 10.5px; }
  .tui-out { grid-template-columns: 10px minmax(0, 1fr); gap: 5px; }
  .tc { font-size: 11px; }
  .btn { width: 100%; justify-content: center; }
  .cta-row { width: 100%; }
  .dl-split { width: 100%; }
  .dl-split > .btn { flex: 1; width: auto; }
  .dl-menu-toggle { width: auto; padding: 0 14px 0 13px; }
  .dl-panel { width: auto; right: 0; }
  .dl-list li { grid-template-columns: 18px minmax(0, 1fr); row-gap: 1px; }
  .dl-icon { grid-row: span 2; }
  .dl-hint { grid-column: 2; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .rv { opacity: 1; transform: none; }
}

/* ============ SIMPLIFIED CHINESE ============
   Two things the Latin design does that Chinese can't inherit. Scoped to
   html[lang^="zh"], so the English page is untouched. */

/* 1. Han characters have no italic form, so `font-style: italic` makes the
      browser slant the upright glyphs — the classic fake oblique, which reads
      as a rendering bug. Accent <em>s keep their colour and lose the slant;
      runs explicitly marked lang="en" keep it, since Latin does have one. */
html[lang^="zh"] h1 em,
html[lang^="zh"] h2 em { font-style: normal; }
html[lang^="zh"] h1 em[lang="en"],
html[lang^="zh"] h2 em[lang="en"] { font-style: italic; }

/* 2. Tracking tuned for short uppercase Latin labels (up to 0.32em) pulls Han
      characters apart into disconnected glyphs — they already carry their own
      side bearings. Roughly halved, keeping the relative hierarchy. */
html[lang^="zh"] .kicker,
html[lang^="zh"] .timeline-marker a,
html[lang^="zh"] .cue-tag,
html[lang^="zh"] .film figcaption,
html[lang^="zh"] .monitor figcaption,
html[lang^="zh"] .finale-value-tag,
html[lang^="zh"] .oss-eyebrow { letter-spacing: 0.1em; }

html[lang^="zh"] .hero-meta,
html[lang^="zh"] .tc,
html[lang^="zh"] .motif-output-badge,
html[lang^="zh"] .motif-benefit-no,
html[lang^="zh"] .log-stat,
html[lang^="zh"] .foot-copy { letter-spacing: 0.06em; }
