:root {
  --bg: #f5f5f7;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --text: #111214;
  --muted: #5f6470;
  --line: rgba(17, 18, 20, 0.08);
  --accent: #0a84ff;
  --accent-strong: #0067d8;
  --accent-soft: rgba(10, 132, 255, 0.1);
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.12);
  --radius: 28px;
  --max-width: 1200px;
  --font-stack: "Manrope", "Noto Sans SC", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-body: "Manrope", "Noto Sans SC", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-cn: "Manrope", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-tc: "Manrope", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(10, 132, 255, 0.14), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(95, 100, 112, 0.12), transparent 24%),
    linear-gradient(180deg, #fbfbfd 0%, var(--bg) 58%, #ffffff 100%);
  min-height: 100vh;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

button,
a.button,
.lang-button {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(18px);
  z-index: 0;
}

.page-shell::before {
  width: 320px;
  height: 320px;
  top: 8%;
  left: -120px;
  background: rgba(10, 132, 255, 0.14);
}

.page-shell::after {
  width: 420px;
  height: 420px;
  right: -160px;
  top: 36%;
  background: rgba(17, 18, 20, 0.08);
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(22px);
  background: rgba(245, 245, 247, 0.74);
  border-bottom: 1px solid rgba(17, 18, 20, 0.04);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.header-actions,
.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 14px;
  background: transparent;
  box-shadow: 0 12px 24px rgba(0, 67, 180, 0.18);
  display: grid;
  place-items: center;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-meta {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-note {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-link {
  font-size: 14px;
  color: var(--muted);
}

.button,
.ghost-button,
.lang-button,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease,
    box-shadow 180ms ease, border-color 180ms ease;
}

.button {
  padding: 14px 22px;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 18px 28px rgba(10, 132, 255, 0.22);
}

.ghost-button {
  padding: 13px 21px;
  border: 1px solid rgba(17, 18, 20, 0.12);
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  font-weight: 600;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.lang-button {
  padding: 9px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.lang-button.is-active {
  background: linear-gradient(180deg, rgba(10, 132, 255, 0.14), rgba(10, 132, 255, 0.08));
  color: var(--accent-strong);
}

.chip {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 18, 20, 0.07);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.button:hover,
.ghost-button:hover,
.lang-button:hover,
.chip:hover {
  transform: translateY(-1px);
}

.is-disabled {
  opacity: 0.48;
  pointer-events: none;
}

.hero {
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: end;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  min-width: 0;
}

.hero-product {
  margin: 0;
  font-size: clamp(76px, 9vw, 132px);
  line-height: 0.88;
  letter-spacing: 0;
  font-weight: 800;
  color: var(--text);
  max-width: 920px;
}

.hero-title {
  margin: 0;
  font-size: clamp(28px, 3.3vw, 46px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 700;
  max-width: 760px;
  min-height: 2.05em;
  display: flex;
  align-items: flex-end;
}

.hero-title span {
  display: block;
}

.hero-title .secondary {
  color: rgba(17, 18, 20, 0.44);
}

.hero-description {
  max-width: 560px;
  margin: 6px 0 0;
  font-size: 20px;
  line-height: 1.52;
  letter-spacing: 0;
  color: var(--muted);
  min-height: 3.2em;
  white-space: pre-line;
}

.hero-conversion {
  display: grid;
  gap: 16px;
  width: min(100%, 520px);
  margin-top: 6px;
}

.price-block {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0;
  width: 100%;
  min-width: 0;
  padding: 22px 24px 20px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
    linear-gradient(135deg, rgba(10, 132, 255, 0.06), rgba(255, 255, 255, 0));
  border: 1px solid rgba(17, 18, 20, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 24px 54px rgba(17, 18, 20, 0.1);
  backdrop-filter: blur(18px);
}

.price-block::before {
  content: "";
  position: absolute;
  top: -48px;
  right: -34px;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(10, 132, 255, 0.12);
  filter: blur(10px);
  pointer-events: none;
}

.price-block::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 58px;
  height: 1px;
  background: rgba(17, 18, 20, 0.08);
}

.hero-price {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding-bottom: 18px;
}

.price-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-strong);
}

.price-main-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.price-number {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-size: clamp(58px, 8vw, 100px);
  line-height: 0.86;
  letter-spacing: 0;
  font-weight: 800;
}

.price-prefix {
  font-size: 0.48em;
  font-weight: 800;
  line-height: 1;
}

.price-caption {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--muted);
  max-width: 220px;
}

.price-caption span {
  display: block;
  white-space: nowrap;
}

.hero-subprice {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  min-height: 38px;
}

.price-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.price-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(10, 132, 255, 0.14);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

.hero-actions,
.hero-meta,
.pricing-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 0;
}

.hero-actions .button,
.hero-actions .ghost-button {
  min-width: 210px;
}

.trial-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.06);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trial-copy {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-align: right;
}

.link-hint {
  margin-top: -8px;
  font-size: 13px;
  color: var(--muted);
}

.glass-panel,
.stat-card,
.feature-card,
.pricing-card,
.legal-card,
.support-card,
.faq-card,
.showcase-surface {
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: end;
  min-height: 560px;
  min-width: 0;
  padding: 0;
  overflow: visible;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.product-screenshot-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  min-width: 0;
}

.product-screenshot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(17, 18, 20, 0.12);
  background: #ffffff;
  box-shadow:
    0 28px 70px rgba(17, 18, 20, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.section {
  padding: 56px 0;
}

.benefits-strip {
  padding-top: 12px;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-bottom: 26px;
}

.section-kicker {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-strong);
}

.section-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  letter-spacing: 0;
}

.section-text {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.stats-grid,
.feature-grid,
.legal-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  padding: 24px;
  border-radius: 26px;
  display: grid;
  gap: 8px;
}

.stat-card strong {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0;
}

.stat-card span {
  color: var(--muted);
  line-height: 1.55;
}

.showcase-surface {
  border-radius: 34px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.showcase-columns {
  display: grid;
  gap: 18px;
}

.showcase-panel {
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(17, 18, 20, 0.06);
  min-height: 196px;
}

.showcase-panel h3 {
  margin: 0 0 12px;
  font-size: 26px;
  letter-spacing: 0;
}

.showcase-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 18, 20, 0.05);
}

.timeline-item strong {
  font-size: 18px;
}

.timeline-item span {
  color: var(--muted);
  line-height: 1.55;
}

.timeline-step {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(10, 132, 255, 0.12);
  color: var(--accent-strong);
  font-weight: 700;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  border-radius: 30px;
  padding: 26px;
  display: grid;
  gap: 14px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 20px;
  background: rgba(10, 132, 255, 0.12);
  color: var(--accent-strong);
}

.feature-card h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: 0;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.pricing-card {
  border-radius: 36px;
  padding: 34px;
  display: grid;
  gap: 24px;
}

.pricing-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.pricing-copy {
  display: grid;
  gap: 12px;
  max-width: 640px;
}

.price-display {
  display: grid;
  gap: 4px;
}

.price-line {
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 700;
}

.price-side {
  color: var(--muted);
  font-size: 14px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-bullet {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 18, 20, 0.06);
  display: grid;
  gap: 8px;
}

.pricing-bullet strong {
  font-size: 18px;
}

.pricing-bullet span {
  color: var(--muted);
  line-height: 1.55;
}

.legal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.legal-card,
.support-card,
.faq-card {
  border-radius: 30px;
  padding: 28px;
  display: grid;
  gap: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    linear-gradient(180deg, rgba(10, 132, 255, 0.03), rgba(255, 255, 255, 0));
}

.legal-card h3,
.support-card h3,
.faq-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0;
}

.legal-card p,
.support-card p,
.faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-panel {
  margin: 24px 0 34px;
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(17, 18, 20, 0.94), rgba(44, 48, 56, 0.92));
  color: #f7f9fc;
  box-shadow: 0 28px 80px rgba(17, 18, 20, 0.2);
}

.footer-panel p {
  margin: 0;
  color: rgba(247, 249, 252, 0.72);
  line-height: 1.6;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.footer-copy {
  display: grid;
  gap: 10px;
  max-width: 700px;
}

.footer-copy .section-title {
  color: #ffffff;
  font-size: clamp(32px, 4vw, 54px);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: rgba(247, 249, 252, 0.62);
  padding-top: 20px;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.footer-link-button:hover {
  color: rgba(247, 249, 252, 0.9);
}

.legal-modal-shell[hidden] {
  display: none !important;
}

.legal-modal-shell {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(9, 12, 18, 0.52);
  backdrop-filter: blur(14px);
}

.legal-modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 28px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 18, 20, 0.06);
  box-shadow: 0 40px 120px rgba(17, 18, 20, 0.24);
}

.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
}

.legal-modal-header h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0;
}

.legal-modal-close {
  min-width: 88px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 18, 20, 0.08);
  background: rgba(17, 18, 20, 0.04);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.legal-modal-body {
  padding: 20px 24px 28px;
  overflow: auto;
  font-size: 14px;
  line-height: 1.78;
  color: #2e3340;
}

.legal-section + .legal-section {
  margin-top: 18px;
}

.legal-section h3 {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: 0;
}

.legal-section p {
  margin: 0;
}

.legal-section p + p {
  margin-top: 8px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 680ms ease, transform 680ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  padding: 44px 0 70px;
}

.legal-layout {
  display: grid;
  gap: 22px;
}

.legal-hero {
  padding: 28px;
  border-radius: 30px;
}

.legal-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

.legal-hero p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.66;
  font-size: 18px;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-block {
  padding: 26px;
  border-radius: 26px;
}

.legal-block h2 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: 0;
}

.legal-block p,
.legal-block li {
  color: var(--muted);
  line-height: 1.72;
}

.legal-block ul,
.legal-block ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.back-link::before {
  content: "<";
  font-size: 13px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .showcase-surface,
  .stats-grid,
  .feature-grid,
  .legal-grid,
  .faq-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .showcase-surface {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
    justify-content: center;
  }

  .product-screenshot-shell {
    width: min(100%, 900px);
    margin-right: 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .header-row {
    padding: 12px 0;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .header-download {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-description,
  .section-text,
  .legal-hero p {
    font-size: 17px;
  }

  .eyebrow {
    min-height: 32px;
    padding: 0 12px;
    font-size: 10px;
  }

  .hero-product {
    font-size: clamp(52px, 15vw, 76px);
    line-height: 0.92;
  }

  .hero-title {
    font-size: clamp(26px, 8vw, 36px);
    max-width: none;
    min-height: 0;
    display: block;
  }

  .hero-description {
    min-height: 0;
  }

  .hero-conversion {
    width: 100%;
  }

  .price-tags {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .feature-grid,
  .legal-grid,
  .faq-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding: 8px 0 0;
  }

  .product-screenshot {
    border-radius: 12px;
  }

  .pricing-card,
  .footer-panel,
  .legal-hero,
  .legal-block {
    padding: 22px;
  }

  .header-tools {
    width: 100%;
    justify-content: space-between;
  }

  .hero-actions .button,
  .hero-actions .ghost-button {
    min-width: 0;
    width: 100%;
  }

  .hero-subprice {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-modal-panel {
    width: min(100%, calc(100% - 16px));
    max-height: calc(100vh - 16px);
    margin: 8px auto;
    border-radius: 22px;
  }

  .legal-modal-header,
  .legal-modal-body {
    padding-left: 18px;
    padding-right: 18px;
  }
}

html[lang="zh-CN"] body {
  font-family: var(--font-cn);
}

html[lang="zh-HK"] body {
  font-family: var(--font-tc);
}

html[lang="zh-CN"] .brand-name,
html[lang="zh-CN"] .hero-title,
html[lang="zh-CN"] .price-number,
html[lang="zh-CN"] .legal-card h3 {
  font-family: var(--font-cn);
}

html[lang="zh-HK"] .brand-name,
html[lang="zh-HK"] .hero-title,
html[lang="zh-HK"] .price-number,
html[lang="zh-HK"] .legal-card h3 {
  font-family: var(--font-tc);
}

html[lang="zh-CN"] .hero-title,
html[lang="zh-HK"] .hero-title {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: 0;
  min-height: 2.2em;
}

html[lang="zh-CN"] .hero-product,
html[lang="zh-HK"] .hero-product {
  font-size: clamp(72px, 8.8vw, 122px);
  line-height: 0.92;
  letter-spacing: 0;
}

html[lang="zh-CN"] .hero-description,
html[lang="zh-HK"] .hero-description {
  max-width: 560px;
  font-size: 20px;
  line-height: 1.6;
  min-height: 3.4em;
}
