
    /* ============ Design tokens: paper / ink / signal orange (shared with homepage) ============ */
    :root {
      --paper: #f7f3ea;
      --paper-2: #efe9db;
      --ink: #171512;
      --ink-soft: #5c574d;
      --line: #171512;
      --line-soft: rgba(23, 21, 18, 0.16);
      --orange: #ff4d00;
      --orange-dark: #d63f00;
      --green: #1c7c4d;
      --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
      --font-display: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
      --font-mono: "IBM Plex Mono", ui-monospace, monospace;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--paper);
      color: var(--ink);
      font-family: var(--font-sans);
      line-height: 1.75;
      overflow-x: hidden;
    }

    ::selection { background: var(--orange); color: var(--paper); }

    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    button { font-family: inherit; }

    .container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
    .mono { font-family: var(--font-mono); }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      background-image: radial-gradient(rgba(23, 21, 18, 0.045) 1px, transparent 1px);
      background-size: 22px 22px;
    }
    main, header, footer, .ticker { position: relative; z-index: 1; }

    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1); }
    .reveal.on { opacity: 1; transform: none; }

    /* ============ Top ticker ============ */
    .ticker {
      background: var(--orange);
      color: var(--paper);
      font-family: var(--font-mono);
      font-size: 12.5px;
      font-weight: 700;
      letter-spacing: 1px;
      overflow: hidden;
      white-space: nowrap;
      padding: 7px 0;
      border-bottom: 2px solid var(--ink);
    }
    .ticker-track { display: inline-block; animation: ticker-scroll 32s linear infinite; }
    .ticker-track span { margin: 0 26px; }
    @keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ============ Nav ============ */
    .nav { position: sticky; top: 0; z-index: 100; background: var(--paper); border-bottom: 2px solid var(--ink); }
    .nav-inner { display: flex; align-items: stretch; height: 62px; }
    .logo {
      display: flex; align-items: center; gap: 10px;
      font-family: var(--font-display);
      font-weight: 900; font-size: 21px; letter-spacing: 1px;
      padding-right: 28px;
      border-right: 2px solid var(--ink);
    }
    .logo img { display: block; width: 32px; height: 32px; object-fit: contain; }
    .nav-links { display: flex; align-items: stretch; }
    .nav-links a {
      display: flex; align-items: center;
      padding: 0 22px;
      font-size: 14.5px; font-weight: 500;
      border-right: 1px solid var(--line-soft);
      transition: background .15s, color .15s;
    }
    .nav-links a:hover { background: var(--ink); color: var(--paper); }
    .nav-links a.active { background: var(--orange); color: var(--paper); border-right-color: var(--ink); }
    .nav-drop { position: relative; display: flex; align-items: stretch; border-right: 1px solid var(--line-soft); }
    .nav-drop-trigger { display: flex; align-items: center; gap: 6px; height: 100%; padding: 0 22px; font-size: 14.5px; font-weight: 500; transition: background .15s, color .15s; }
    .nav-drop-trigger.active { background: var(--orange); color: var(--paper); }
    .nav-drop:hover .nav-drop-trigger { background: var(--ink); color: var(--paper); }
    .nav-drop-caret { flex-shrink: 0; transition: transform .15s; }
    .nav-drop:hover .nav-drop-caret { transform: rotate(180deg); }
    .nav-drop-menu { position: absolute; left: 0; top: 100%; background: var(--paper); border: 2px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); min-width: 190px; display: none; z-index: 110; }
    .nav-drop:hover .nav-drop-menu { display: block; }
    .nav-drop-menu a { display: block; padding: 11px 16px; font-size: 13.5px; font-weight: 500; border-bottom: 1px solid var(--line-soft); color: var(--ink); }
    .nav-drop-menu a:last-child { border-bottom: none; }
    .nav-drop-menu a:hover { background: var(--paper-2); color: var(--orange); }
    .nav-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
    .lang-switch { position: relative; }
    .lang-btn {
      display: flex; align-items: center; gap: 7px;
      background: transparent; border: 1.5px solid var(--ink);
      color: var(--ink); padding: 7px 13px;
      font-size: 13px; font-family: var(--font-mono);
      cursor: pointer; transition: background .15s, color .15s;
    }
    .lang-btn:hover { background: var(--ink); color: var(--paper); }
    .lang-menu {
      position: absolute; right: 0; top: calc(100% + 10px);
      background: var(--paper); border: 2px solid var(--ink);
      box-shadow: 5px 5px 0 var(--ink);
      min-width: 150px; display: none;
    }
    .lang-menu.open { display: block; }
    .lang-menu a { display: block; padding: 9px 14px; font-size: 13.5px; cursor: pointer; border-bottom: 1px solid var(--line-soft); text-decoration: none; color: inherit; }
    .lang-menu a:last-child { border-bottom: none; }
    .lang-menu a:hover { background: var(--paper-2); }
    .lang-menu a.current { background: var(--orange); color: var(--paper); }
    .nav-toggle {
      display: none;
      background: none; border: 1.5px solid var(--ink);
      width: 40px; height: 40px; font-size: 17px; cursor: pointer; color: var(--ink);
    }
    .nav-mobile { display: none; }
    @media (max-width: 720px) {
      .nav-links { display: none; }
      .nav-toggle { display: block; }
      .nav-mobile { display: none; flex-direction: column; border-top: 2px solid var(--ink); }
      .nav-mobile.open { display: flex; }
      .nav-mobile a { padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--line-soft); }
      .nav-mobile a.nav-mobile-sub { padding: 11px 0 11px 18px; font-size: 14px; color: var(--ink-soft); }
    }

    /* ============ Page header ============ */
    .page-head { border-bottom: 2px solid var(--ink); padding: 60px 0 40px; }
    .page-kicker {
      display: flex; align-items: center; gap: 14px;
      font-family: var(--font-mono); font-size: 13px; color: var(--ink-soft);
      margin-bottom: 20px;
    }
    .page-kicker::before { content: ""; width: 44px; height: 2px; background: var(--orange); }
    .page-head h1 {
      font-family: var(--font-display);
      font-weight: 900;
      font-size: clamp(34px, 5.6vw, 60px);
      line-height: 1.2;
      letter-spacing: 1px;
    }
    .page-head h1 .accent { color: var(--orange); }
    .page-head p { margin-top: 18px; color: var(--ink-soft); font-size: 16px; max-width: 680px; }

    /* Quick jump chips */
    .jump-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
    .jump-row a {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1.5px solid var(--ink);
      padding: 9px 16px;
      font-size: 13.5px; font-weight: 700;
      font-family: var(--font-mono);
      transition: background .15s, color .15s;
    }
    .jump-row a:hover { background: var(--ink); color: var(--paper); }
    .jump-row a svg { width: 15px; height: 15px; fill: currentColor; }

    /* ============ Section scaffolding ============ */
    .plat-section { border-bottom: 2px solid var(--ink); padding: 56px 0; scroll-margin-top: 76px; }
    .plat-section:nth-child(even) { background: var(--paper-2); }
    .plat-head { display: flex; align-items: center; gap: 18px; margin-bottom: 32px; }
    .plat-head svg { width: 40px; height: 40px; fill: var(--ink); flex-shrink: 0; }
    .plat-head h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(24px, 3.2vw, 34px); }
    .plat-head .sub { font-size: 13.5px; color: var(--ink-soft); margin-top: 3px; }
    .plat-note {
      font-size: 14px; color: var(--ink-soft);
      border-left: 3px solid var(--orange);
      padding: 4px 0 4px 16px;
      margin-bottom: 28px;
      max-width: 760px;
    }

    /* Download item rows (legacy single-file row, still used where a client has one file) */
    .dl-list { border: 2px solid var(--ink); }
    .dl-row {
      display: grid;
      grid-template-columns: 1fr 130px 150px 130px;
      gap: 18px;
      align-items: center;
      padding: 20px 24px;
      border-bottom: 1px solid var(--line-soft);
    }
    .dl-row:last-child { border-bottom: none; }
    .dl-row .name { font-weight: 700; font-size: 15.5px; }
    .dl-row .name span.badge {
      display: inline-block;
      font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
      color: var(--orange);
      border: 1px solid var(--orange);
      padding: 1px 6px;
      margin-left: 8px;
      vertical-align: middle;
    }
    .dl-row .desc { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
    .dl-row .meta { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-soft); }
    .dl-btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      background: var(--orange); color: var(--paper);
      border: 2px solid var(--ink);
      padding: 10px 18px;
      font-size: 13.5px; font-weight: 700;
      transition: transform .15s, box-shadow .15s;
      white-space: nowrap;
    }
    .dl-btn:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
    .dl-btn:active { transform: translate(0, 0); box-shadow: 0 0 0 var(--ink); }
    .dl-btn svg { width: 14px; height: 14px; fill: currentColor; }

    /* Client cards (a platform section can list several clients, each with 1+ downloadable files) */
    .client-card { padding: 26px 24px; border-bottom: 1px solid var(--line-soft); }
    .client-card:last-child { border-bottom: none; }
    .client-card.is-muted { background: var(--paper-2); }
    .client-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; margin-bottom: 8px; }
    .client-head .name { font-family: var(--font-display); font-weight: 900; font-size: 17px; }
    .client-head .badge {
      display: inline-block;
      font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
      color: var(--orange);
      border: 1px solid var(--orange);
      padding: 1px 7px;
    }
    .client-head .badge.muted { color: var(--ink-soft); border-color: var(--line-soft); }
    .client-desc { font-size: 13.5px; color: var(--ink-soft); max-width: 720px; margin-bottom: 16px; }
    .client-files { border-top: 1px dashed var(--line-soft); }
    .file-row {
      display: grid;
      grid-template-columns: 1.6fr 90px 110px auto;
      gap: 16px;
      align-items: center;
      padding: 13px 0;
      border-bottom: 1px dashed var(--line-soft);
    }
    .file-row:last-child { border-bottom: none; }
    .file-row .file-label { font-size: 13.5px; font-weight: 600; }
    .file-row .file-name { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-soft); word-break: break-all; }
    .file-row .meta { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); }
    .file-row .dl-btn, .file-row .ext-btn { padding: 8px 15px; font-size: 12.5px; justify-self: end; }

    /* External / guide item (no local file, e.g. iOS) */
    .ext-btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      background: var(--paper); color: var(--ink);
      border: 2px solid var(--ink);
      padding: 10px 18px;
      font-size: 13.5px; font-weight: 700;
      transition: background .15s, color .15s;
    }
    .ext-btn:hover { background: var(--ink); color: var(--paper); }

    /* iOS guide cards */
    .ios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
    .ios-card { border: 2px solid var(--ink); padding: 24px; background: var(--paper); }
    .ios-card b { display: block; font-family: var(--font-display); font-size: 17px; font-weight: 900; margin-bottom: 6px; }
    .ios-card p { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 14px; }

    /* Core (advanced) table */
    .core-table { border: 2px solid var(--ink); overflow-x: auto; }
    table.core { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 640px; }
    table.core th {
      font-family: var(--font-mono); font-size: 12px; letter-spacing: 1px;
      text-align: left; text-transform: uppercase;
      color: var(--ink-soft);
      padding: 12px 16px;
      border-bottom: 2px solid var(--ink);
      background: var(--paper-2);
    }
    table.core td { padding: 12px 16px; border-bottom: 1px solid var(--line-soft); }
    table.core tr:last-child td { border-bottom: none; }
    table.core td.arch { font-family: var(--font-mono); }
    table.core a.core-link { font-weight: 700; color: var(--orange); border-bottom: 1.5px solid var(--orange); }
    table.core a.core-link:hover { color: var(--orange-dark); border-color: var(--orange-dark); }

    /* Download FAQ accordion (shared pattern with tutorials/faq pages) */
    .faq-list { border: 2px solid var(--ink); }
    .faq-item { border-bottom: 1px solid var(--line-soft); }
    .faq-item:last-child { border-bottom: none; }
    .faq-item summary {
      display: flex; align-items: center; justify-content: space-between; gap: 12px;
      padding: 18px 22px;
      font-weight: 700; font-size: 14.5px;
      cursor: pointer;
      list-style: none;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary .plus {
      flex-shrink: 0; font-family: var(--font-mono); font-size: 18px; color: var(--orange);
      transition: transform .2s;
    }
    .faq-item[open] summary .plus { transform: rotate(45deg); }
    .faq-item[open] summary { background: var(--paper-2); }
    .faq-a { padding: 0 22px 20px; font-size: 14px; color: var(--ink-soft); max-width: 760px; }

    /* Disclaimer band */
    .note-band {
      margin: 56px 0 0;
      border: 2px solid var(--ink);
      background: var(--ink);
      color: var(--paper);
      padding: 26px 30px;
      display: flex; gap: 16px; align-items: flex-start;
    }
    .note-band svg { width: 22px; height: 22px; fill: none; flex-shrink: 0; margin-top: 2px; }
    .note-band b { display: block; font-size: 15px; margin-bottom: 6px; }
    .note-band p { font-size: 13.5px; color: rgba(247, 243, 234, 0.75); }
    .note-band a { color: #ffb38a; border-bottom: 1px solid rgba(255, 179, 138, 0.5); }

    /* ============ Footer (shared) ============ */
    footer { background: var(--paper-2); }
    .foot-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 44px;
      padding: 56px 0 44px; border-bottom: 1px solid var(--line-soft);
    }
    .foot-grid h4 { font-family: var(--font-mono); font-size: 12px; letter-spacing: 2px; color: var(--ink-soft); margin-bottom: 18px; text-transform: uppercase; }
    .foot-grid ul li { margin-bottom: 10px; }
    .foot-grid a { font-size: 14.5px; border-bottom: 1px solid transparent; transition: border-color .15s, color .15s; }
    .foot-grid a:hover { color: var(--orange); border-bottom-color: var(--orange); }
    .foot-brand .logo { border-right: none; padding-right: 0; }
    .foot-brand p { color: var(--ink-soft); font-size: 14px; margin-top: 16px; max-width: 300px; }
    .foot-lang { display: flex; flex-wrap: wrap; gap: 8px; }
    .foot-lang a { font-size: 12.5px; font-family: var(--font-mono); border: 1.5px solid var(--line-soft); padding: 5px 12px; cursor: pointer; transition: all .15s; display: inline-block; text-decoration: none; color: inherit; }
    .foot-lang a:hover { border-color: var(--ink); }
    .foot-lang a.current { background: var(--ink); color: var(--paper); border-color: var(--ink); }
    .foot-bottom { padding: 24px 0 30px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: var(--ink-soft); }

    /* ============ Responsive ============ */
    @media (max-width: 900px) {
      .dl-row { grid-template-columns: 1fr; gap: 10px; }
      .dl-row .meta { display: flex; gap: 14px; }
      .dl-btn, .ext-btn { justify-self: start; }
      .ios-grid { grid-template-columns: 1fr; }
      .foot-grid { grid-template-columns: 1fr 1fr; }
      .file-row { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
      .file-row .meta { display: inline; margin-right: 14px; }
      .file-row .dl-btn, .file-row .ext-btn { justify-self: start; margin-top: 6px; }
    }
    @media (max-width: 560px) {
      .plat-head { flex-wrap: wrap; }
    }
    @media (max-width: 720px) {
      .core-table::before {
        content: "← 可左右滑动 →";
        display: inline-block;
        position: sticky;
        left: 0;
        font-family: var(--font-mono);
        font-size: 10px;
        letter-spacing: .3px;
        color: var(--ink-soft);
        background: var(--paper-2);
        border: 1px solid var(--line-soft);
        padding: 3px 9px;
        margin: 8px 0 8px 8px;
      }
      html[lang="en"] .core-table::before { content: "← Scroll →"; }
      html[lang="ja"] .core-table::before { content: "← 左右にスクロール →"; }
      html[lang="ko"] .core-table::before { content: "← 좌우로 스크롤 →"; }
      html[lang="zh-TW"] .core-table::before { content: "← 可左右滑動 →"; }
    }

    @media (prefers-reduced-motion: reduce) {
      .ticker-track { animation: none; }
      .reveal { opacity: 1; transform: none; transition: none; }
      html { scroll-behavior: auto; }
    }
  