/* Stylesheet for frontend/zh-CN/download.html */
    :root {
      --bg: #f7f5f2;
      --bg-card: #ffffff;
      --bg-soft: #eef6f4;
      --ink: #16202e;
      --ink-soft: #5c6b7a;
      --accent: #2d9c8a;
      --accent-light: #d4f0eb;
      --accent-dark: #1f7a6c;
      --warm: #e8a87c;
      --warm-light: #fdf0e8;
      --line: #e2e6ea;
      --shadow: 0 4px 24px rgba(22, 32, 46, 0.06);
      --shadow-lg: 0 24px 64px rgba(22, 32, 46, 0.12);
      --font-display: 'Outfit', 'Noto Sans SC', sans-serif;
      --font-body: 'Noto Sans SC', sans-serif;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--ink);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    body.menu-open {
      overflow: hidden;
      height: 100vh;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(1180px, 92vw);
      margin: 0 auto;
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Floating pill nav */
    .nav-wrap {
      position: fixed;
      top: 20px;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      justify-content: center;
      padding: 0 4vw;
      pointer-events: none;
    }

    .nav-pill {
      pointer-events: auto;
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.78);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.9);
      box-shadow: 0 8px 32px rgba(22, 32, 46, 0.1);
      border-radius: 999px;
      padding: 8px 10px 8px 18px;
      width: min(880px, 100%);
      justify-content: space-between;
      transition: box-shadow 0.3s;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.2rem;
      letter-spacing: -0.02em;
      flex-shrink: 0;
    }

    .logo-mark {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .logo-mark img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--ink-soft);
      padding: 8px 16px;
      border-radius: 999px;
      transition: all 0.2s;
    }

    .nav-links a:hover {
      color: var(--accent-dark);
      background: var(--accent-light);
    }

    .nav-links a.active {
      color: #fff;
      background: var(--ink);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .lang-chip {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      color: var(--ink-soft);
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid var(--line);
      cursor: pointer;
      background: #fff;
    }

    .lang-chip i {
      color: var(--accent);
    }

.lang-switch { position: relative; }

.lang-chip { cursor: pointer; border: none; font-family: inherit; transition: border-color 0.2s, color 0.2s; }
.lang-chip:hover { border-color: var(--accent); color: var(--accent-dark); }

.lang-caret { font-size: 0.6rem; margin-left: 2px; color: var(--ink-soft); transition: transform 0.2s; }
.lang-switch.open .lang-caret { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 120;
}

.lang-switch.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
}

.lang-option:hover:not(:disabled) { background: var(--accent-light); }
.lang-option:disabled { color: var(--ink-soft); cursor: not-allowed; opacity: 0.7; }

.lang-flag { font-size: 1rem; line-height: 1; flex-shrink: 0; }
.lang-option-name { flex: 1; }
.lang-check { color: var(--accent); font-size: 0.8rem; flex-shrink: 0; }

.lang-soon {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 2px 8px;
  border-radius: 999px;
  flex-shrink: 0;
  white-space: nowrap;
}


    .nav-gh {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--ink);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      transition: transform 0.2s, background 0.2s;
    }

    .nav-gh:hover {
      transform: rotate(-8deg) scale(1.08);
      background: var(--accent-dark);
    }

    .menu-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      background: none;
      border: none;
      font-size: 1.1rem;
      color: var(--ink);
      cursor: pointer;
      padding: 0;
    }

    .mobile-menu {
      display: none;
    }


    @media (max-width: 1020px) {
      .nav-links { display: none; }
      .menu-toggle { display: flex; }

      .mobile-menu.open {
        display: flex;
        position: fixed;
        top: 86px;
        left: 4vw;
        right: 4vw;
        z-index: 99;
        flex-direction: column;
        gap: 4px;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(16px);
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 14px;
        box-shadow: var(--shadow-lg);
        list-style: none;
      }

      .mobile-menu a {
        display: block;
        padding: 12px 18px;
        border-radius: 12px;
        font-weight: 500;
        color: var(--ink);
      }

      .mobile-menu a:hover {
        background: var(--accent-light);
        color: var(--accent-dark);
      }
    }

    /* Buttons */
    .btn-major {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 16px 32px;
      border-radius: 999px;
      background: var(--ink);
      color: #fff;
      font-size: 0.98rem;
      font-weight: 600;
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
      border: none;
      cursor: pointer;
    }

    .btn-major .arr {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--accent);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      transition: transform 0.25s;
    }

    .btn-major:hover {
      background: var(--accent-dark);
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(31, 122, 108, 0.35);
    }

    .btn-major:hover .arr {
      transform: translateX(3px);
      background: rgba(255, 255, 255, 0.22);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 15px 28px;
      border-radius: 999px;
      border: 1.5px solid var(--ink);
      color: var(--ink);
      font-size: 0.95rem;
      font-weight: 600;
      transition: all 0.25s;
      background: transparent;
    }

    .btn-ghost:hover {
      background: var(--ink);
      color: #fff;
      transform: translateY(-3px);
    }

    /* Section head shared with homepage */
    section { padding: 96px 0; }

    .sec-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 56px;
      flex-wrap: wrap;
    }

    .sec-head .kicker {
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      color: var(--accent-dark);
      display: block;
      margin-bottom: 14px;
    }

    .sec-head h2 {
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.15;
    }

    .sec-head .side-note {
      max-width: 360px;
      font-size: 0.95rem;
      color: var(--ink-soft);
      line-height: 1.8;
    }

    /* Download hero */
    .dl-hero {
      position: relative;
      padding: 148px 0 72px;
      overflow: hidden;
    }

    .dl-hero-orb {
      position: absolute;
      top: -140px;
      right: -100px;
      width: 480px;
      height: 480px;
      border-radius: 50%;
      background: var(--accent-light);
      filter: blur(80px);
      opacity: 0.55;
      pointer-events: none;
    }

    .dl-hero-inner {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .dl-hero .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      color: var(--accent-dark);
      margin-bottom: 24px;
    }

    .dl-hero .hero-eyebrow .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
    }

    .dl-hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.4rem, 5.5vw, 4rem);
      font-weight: 800;
      line-height: 1.12;
      letter-spacing: -0.03em;
      margin: 0 auto 22px;
      max-width: 15em;
    }

    .dl-hero h1 .accent-word {
      background: linear-gradient(120deg, var(--accent) 0%, #3db89e 60%, var(--warm) 110%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .dl-hero p.lead {
      max-width: 560px;
      margin: 0 auto 40px;
      font-size: 1.05rem;
      color: var(--ink-soft);
      line-height: 1.85;
    }

    .dl-hero p.lead strong {
      color: var(--ink);
    }

    /* Quick jump chips */
    .quick-jump {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 40px;
    }

    .quick-jump a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 22px;
      border-radius: 999px;
      border: 1.5px solid var(--line);
      background: var(--bg-card);
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--ink);
      transition: all 0.2s;
    }

    .quick-jump a:hover {
      border-color: var(--accent);
      color: var(--accent-dark);
      transform: translateY(-2px);
    }

    /* Trust badge row */
    .trust-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 28px;
    }

    .trust-row .t-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      color: var(--ink-soft);
    }

    .trust-row .t-item i {
      color: var(--accent);
    }

    /* Download platform cards */
    .platforms {
      background: var(--bg-card);
      border-top: 1px solid var(--line);
    }

    .dl-cards {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .dl-card {
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 32px 36px;
      background: var(--bg-card);
      scroll-margin-top: 110px;
      transition: box-shadow 0.25s, border-color 0.25s;
    }

    .dl-card:hover {
      box-shadow: var(--shadow-lg);
      border-color: var(--accent);
    }

    /* Card header: icon/title + requirements + client-count stat, all in one row */
    .dl-card-head {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
      padding-bottom: 24px;
      margin-bottom: 24px;
      border-bottom: 1px solid var(--line);
    }

    .dl-head-main {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }

    .dl-card .dl-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: var(--bg-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: var(--ink);
      flex-shrink: 0;
    }

    .dl-card h3 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .dl-card .ver-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--accent-dark);
      background: var(--accent-light);
      padding: 4px 10px;
      border-radius: 999px;
      font-family: var(--font-display);
    }

    .dl-card .ver-badge i {
      font-size: 0.6rem;
    }

    .dl-head-req {
      flex: 1;
      min-width: 240px;
    }

    .dl-head-req .req-list {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 10px 24px;
    }

    .dl-head-req .req-list li {
      font-size: 0.82rem;
      color: var(--ink-soft);
      display: flex;
      align-items: center;
      gap: 7px;
      line-height: 1.5;
      white-space: nowrap;
    }

    .dl-head-req .req-list li i {
      color: var(--accent);
      font-size: 0.74rem;
      flex-shrink: 0;
    }

    .dl-head-stat {
      text-align: center;
      padding-left: 24px;
      border-left: 1px solid var(--line);
      flex-shrink: 0;
    }

    .dl-head-stat strong {
      font-family: var(--font-display);
      font-size: 1.9rem;
      font-weight: 800;
      color: var(--ink);
      display: block;
      line-height: 1;
    }

    .dl-head-stat span {
      font-size: 0.72rem;
      color: var(--ink-soft);
      white-space: nowrap;
    }

    .dl-card .dl-clients h4 {
      font-size: 0.76rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      color: var(--ink-soft);
      margin-bottom: 14px;
    }

    .tag-rec {
      display: inline-flex;
      align-items: center;
      font-size: 0.68rem;
      font-weight: 600;
      color: var(--accent-dark);
      background: var(--accent-light);
      padding: 2px 8px;
      border-radius: 999px;
      flex-shrink: 0;
    }

    .tag-paid {
      display: inline-flex;
      align-items: center;
      font-size: 0.68rem;
      font-weight: 600;
      color: #a8683c;
      background: var(--warm-light);
      padding: 2px 8px;
      border-radius: 999px;
      flex-shrink: 0;
    }
    .tag-dead {
      display: inline-flex;
      align-items: center;
      font-size: 0.68rem;
      font-weight: 600;
      color: #a83c3c;
      background: #fbeaea;
      padding: 2px 8px;
      border-radius: 999px;
      flex-shrink: 0;
    }

    .c-official-link {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 0.72rem;
      font-weight: 700;
      font-family: "SF Mono", "JetBrains Mono", Consolas, monospace;
      letter-spacing: 0.01em;
      color: var(--accent-dark);
      background: var(--accent-light);
      padding: 2px 8px;
      border-radius: 999px;
      text-decoration: none;
      flex-shrink: 0;
      transition: opacity 0.2s ease;
    }

    .c-official-link:hover {
      opacity: 0.8;
    }

    .c-official-link i {
      font-size: 0.58rem;
    }


    /* Client picker grid - wraps to keep card height sane regardless of item count */
    .client-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .client-item {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding: 16px;
      border-radius: 14px;
      border: 1px solid var(--line);
      transition: all 0.2s;
    }

    .client-item:hover {
      border-color: var(--accent);
      background: var(--bg-soft);
    }

    .client-item-top {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .client-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: var(--bg-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.05rem;
      color: var(--ink);
      flex-shrink: 0;
      overflow: hidden;
    }

    .client-icon img {
      width: 28px;
      height: 28px;
      object-fit: contain;
      border-radius: 8px;
    }

    .client-item:hover .client-icon {
      background: var(--accent-light);
      color: var(--accent-dark);
    }

    .client-info {
      flex: 1;
      min-width: 0;
    }

    .client-info .c-name-row {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 4px;
    }

    .client-info h5 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--ink);
    }

    .client-info p {
      font-size: 0.82rem;
      color: var(--ink-soft);
      line-height: 1.6;
    }

    /* Each software may ship several architecture-specific packages —
       every one gets its own explicit download button instead of a single generic link. */
    .client-arch {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      padding-top: 12px;
      border-top: 1px dashed var(--line);
    }

    .arch-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--ink);
      background: var(--bg-soft);
      padding: 6px 12px;
      border-radius: 8px;
      border: 1px solid var(--line);
      transition: all 0.2s;
    }

    .arch-btn i {
      font-size: 0.68rem;
      color: var(--ink-soft);
      transition: all 0.2s;
    }

    .arch-btn:hover {
      background: var(--ink);
      color: #fff;
      border-color: var(--ink);
      transform: translateY(-1px);
    }

    .arch-btn:hover i {
      color: #fff;
    }

    /* Verification section */
    .verify {
      background: var(--bg-soft);
    }

    .verify-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }

    .verify-steps {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .verify-step {
      display: flex;
      gap: 16px;
    }

    .verify-step .v-num {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--ink);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.9rem;
      flex-shrink: 0;
    }

    .verify-step h4 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .verify-step p {
      font-size: 0.9rem;
      color: var(--ink-soft);
      line-height: 1.7;
    }

    .code-peek {
      background: #1d2836;
      border-radius: 16px;
      padding: 24px 26px;
      font-family: 'Outfit', monospace;
      font-size: 0.85rem;
      line-height: 2;
      color: #b8c6d4;
      overflow-x: auto;
      box-shadow: var(--shadow-lg);
    }

    .code-peek .c-cmt { color: #5a6b7d; }
    .code-peek .c-cmd { color: #e8eef4; }
    .code-peek .c-out { color: #7fd8c4; }

    .code-peek .code-tab {
      display: flex;
      gap: 16px;
      margin-bottom: 16px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .code-peek .code-tab span {
      font-size: 0.72rem;
      color: #5a6b7d;
      letter-spacing: 0.08em;
    }

    .code-peek .code-tab span.on {
      color: #7fd8c4;
      font-weight: 600;
    }

    /* FAQ */
    .faq-list {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: 16px;
      background: var(--bg-card);
      overflow: hidden;
    }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 24px;
      cursor: pointer;
      font-size: 0.98rem;
      font-weight: 600;
    }

    .faq-q i {
      color: var(--accent);
      transition: transform 0.25s;
      flex-shrink: 0;
    }

    .faq-item.open .faq-q i {
      transform: rotate(45deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }

    .faq-a p {
      padding: 0 24px 20px;
      font-size: 0.9rem;
      color: var(--ink-soft);
      line-height: 1.8;
    }

    /* CTA band */
    .cta-band {
      background: linear-gradient(135deg, #1f2a38 0%, #2a3a4d 100%);
      border-radius: 28px;
      padding: 56px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
      color: #dce4ec;
    }

    .cta-band h3 {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 700;
      color: #fff;
      margin-bottom: 8px;
    }

    .cta-band p {
      font-size: 0.95rem;
      max-width: 420px;
      line-height: 1.7;
    }

    .cta-band .btn-major {
      background: #fff;
      color: #1f2a38;
    }

    .cta-band .btn-major:hover {
      background: var(--accent-light);
      color: var(--accent-dark);
    }

    .cta-band .btn-major .arr {
      background: var(--accent);
      color: #fff;
    }

    /* Footer (shared with homepage) */
    .footer {
      background: var(--bg-card);
      border-top: 1px solid var(--line);
      padding: 72px 0 0;
      overflow: hidden;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.2fr;
      gap: 40px;
      margin-bottom: 56px;
    }

    .footer .logo { margin-bottom: 14px; }

    .footer-desc {
      font-size: 0.88rem;
      line-height: 1.7;
      max-width: 280px;
      color: var(--ink-soft);
    }

    .footer h4 {
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      color: var(--ink-soft);
      margin-bottom: 18px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    .footer-links a {
      font-size: 0.9rem;
      color: var(--ink);
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--accent-dark); }

    .footer-lang {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .footer-lang a {
      padding: 5px 12px;
      border-radius: 999px;
      font-size: 0.78rem;
      border: 1px solid var(--line);
      color: var(--ink-soft);
      cursor: pointer;
    }

    .footer-lang a.active {
      background: var(--ink);
      border-color: var(--ink);
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid var(--line);
      padding: 22px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.8rem;
      color: var(--ink-soft);
    }

    .footer-wordmark {
      font-family: var(--font-display);
      font-size: clamp(5rem, 16vw, 13rem);
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 0.9;
      text-align: center;
      color: transparent;
      -webkit-text-stroke: 1.5px var(--line);
      user-select: none;
      margin-bottom: -0.18em;
      pointer-events: none;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .dl-card-head {
        gap: 16px;
      }

      .dl-head-req .req-list {
        gap: 8px 18px;
      }

      .dl-head-stat {
        margin-left: auto;
      }

      .client-list {
        grid-template-columns: 1fr;
      }

      .verify-layout {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .cta-band {
        flex-direction: column;
        text-align: center;
      }

      .cta-band p { margin: 0 auto; }
    }

    @media (max-width: 560px) {
      .lang-chip-text,
      .lang-caret {
        display: none;
      }

      .lang-chip {
        width: 36px;
        height: 36px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        background: var(--ink);
        border-color: var(--ink);
      }

      .lang-chip i {
        color: #fff;
      }

      .lang-dropdown {
        right: -8px;
      }
      .footer-grid { grid-template-columns: 1fr; }
      section { padding: 64px 0; }
      .dl-card { padding: 24px; }
      .dl-head-stat {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        text-align: left;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal, .faq-a {
        transition: none;
      }
      .reveal {
        opacity: 1;
        transform: none;
      }
    }

/* Inline "preparing download" modal (replaces the old standalone downloads/go.html page) */
.dl-modal-mask {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(22, 32, 46, 0.45);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.dl-modal-mask.open { display: flex; }

.dl-modal {
  position: relative;
  width: min(420px, 100%);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 36px 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: dl-modal-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dl-modal-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.dl-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--bg-soft);
  color: var(--ink-soft);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.dl-modal-close:hover { background: var(--ink); color: #fff; }

.dl-modal .go-spinner {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--accent-dark);
  position: relative;
}

.dl-modal .go-spinner::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  border-top-color: var(--accent);
  animation: go-spin 0.9s linear infinite;
}

@keyframes go-spin {
  to { transform: rotate(360deg); }
}

.dl-modal.done .go-spinner::before { display: none; }

.dl-modal h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.dl-modal p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 22px;
}

.dl-modal .go-meta {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.dl-modal .go-meta span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 4px 12px;
  border-radius: 999px;
}

.dl-modal .go-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.25s;
}

.dl-modal .go-btn:hover { background: var(--accent-dark); transform: translateY(-2px); }

.dl-modal .go-note {
  margin-top: 18px;
  font-size: 0.76rem;
  color: var(--ink-soft);
  margin-bottom: 0;
}
