:root {
  --ink: #172126;
  --muted: #5f6b70;
  --line: #dce2e3;
  --paper: #ffffff;
  --mist: #f3f6f5;
  --warm: #fff7f2;
  --coral: #f05d44;
  --coral-dark: #c83f2c;
  --teal: #16877b;
  --cobalt: #275fc6;
  --focus: #0c6cf2;
  --content: 1180px;
  --shadow: 0 18px 48px rgba(23, 33, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--focus) 45%, transparent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 8px 12px;
  color: #fff;
  background: var(--ink);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  border-bottom: 1px solid rgba(220, 226, 227, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(calc(100% - 40px), var(--content));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--coral);
  font-size: 18px;
  font-weight: 900;
}

.brand-note {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  color: #344047;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-download {
  padding: 8px 16px;
  border: 1px solid var(--ink);
  border-radius: 6px;
}

.nav-download::after {
  display: none;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  min-height: min(650px, calc(100svh - 122px));
  display: flex;
  align-items: center;
  background-color: #f7f4ef;
  background-image: url("../images/hero-translation-workspace.jpg");
  background-position: center;
  background-size: cover;
}

.hero-inner {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  padding: 74px 0 82px;
}

.hero-copy {
  width: min(540px, 49%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 800;
}

.hero h1 {
  max-width: 520px;
  margin: 0;
  font-size: 52px;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-lead {
  margin: 20px 0 0;
  color: #39454b;
  font-size: 18px;
  line-height: 1.8;
}

.action-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--coral);
}

.button-primary:hover {
  background: var(--coral-dark);
}

.button-secondary {
  border-color: var(--ink);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-teal {
  color: #fff;
  background: var(--teal);
}

.hero-note {
  margin: 18px 0 0;
  color: #5c676b;
  font-size: 13px;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-list {
  width: min(calc(100% - 40px), var(--content));
  min-height: 50px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-list span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.trust-list span:first-child {
  border-left: 1px solid var(--line);
}

.trust-list i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.section {
  padding: 86px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-muted {
  background: var(--mist);
}

.section-warm {
  background: var(--warm);
}

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

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.article-header h1,
.download-hero h1 {
  margin: 0;
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: 0;
}

.section-heading p,
.article-header p,
.download-hero p {
  margin: 13px 0 0;
  color: var(--muted);
}

.path-grid,
.feature-grid,
.article-grid,
.platform-grid {
  display: grid;
  gap: 18px;
}

.path-grid {
  grid-template-columns: repeat(3, 1fr);
}

.path-card,
.feature-card,
.article-card,
.platform-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.path-card {
  min-height: 255px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.path-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.path-card:nth-child(2) .path-number {
  background: var(--teal);
}

.path-card:nth-child(3) .path-number {
  background: var(--cobalt);
}

.path-card h3,
.feature-card h3,
.article-card h3,
.platform-card h2,
.platform-card h3 {
  margin: 20px 0 8px;
  font-size: 20px;
  line-height: 1.35;
}

.path-card p,
.feature-card p,
.article-card p,
.platform-card p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  margin-top: auto;
  padding-top: 20px;
  color: var(--coral-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  padding: 24px;
}

.feature-tag {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.feature-card h3 {
  margin-top: 12px;
  font-size: 18px;
}

.compare-shell {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  color: var(--ink);
  background: #edf2f1;
  font-size: 14px;
}

.compare-table td {
  color: var(--muted);
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table strong {
  color: var(--ink);
}

.callout {
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  border-left: 5px solid var(--coral);
  background: var(--ink);
  color: #fff;
}

.callout h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.35;
}

.callout p {
  margin: 8px 0 0;
  color: #ced6d8;
}

.article-grid {
  grid-template-columns: repeat(2, 1fr);
}

.article-card {
  min-height: 225px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.article-label {
  color: var(--cobalt);
  font-size: 12px;
  font-weight: 900;
}

.article-card h3 {
  margin-top: 14px;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  min-height: 68px;
  padding: 18px 42px 18px 0;
  position: relative;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 17px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question::before,
.faq-question::after {
  content: "";
  position: absolute;
  top: 33px;
  right: 4px;
  width: 16px;
  height: 2px;
  background: var(--ink);
}

.faq-question::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 48px 20px 0;
  color: var(--muted);
}

.faq-answer[hidden] {
  display: none;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background: var(--warm);
}

.download-hero,
.article-header {
  width: min(calc(100% - 40px), 920px);
  margin: 0 auto;
  padding: 76px 0 64px;
  text-align: center;
}

.breadcrumbs {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--coral-dark);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.status-pill {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  border: 1px solid #9ccac4;
  border-radius: 999px;
  color: #0d6259;
  background: #e9f6f3;
  font-size: 12px;
  font-weight: 800;
}

.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.platform-grid {
  grid-template-columns: repeat(2, 1fr);
}

.platform-card {
  min-height: 270px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.platform-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.platform-symbol {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--cobalt);
  background: var(--mist);
  font-size: 18px;
  font-weight: 900;
}

.platform-kind {
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

.platform-card .button {
  width: 100%;
  margin-top: auto;
}

.security-note {
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid #ecc6ba;
  border-radius: 8px;
  color: #6f3428;
  background: #fff2ed;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: steps;
}

.step {
  min-height: 190px;
  padding: 26px;
  border-top: 3px solid var(--teal);
  background: var(--paper);
  counter-increment: steps;
}

.step::before {
  content: "0" counter(steps);
  color: var(--coral);
  font-size: 14px;
  font-weight: 900;
}

.step h3 {
  margin: 12px 0 8px;
  font-size: 18px;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.article-layout {
  width: min(calc(100% - 40px), 1040px);
  margin: 0 auto;
  padding: 64px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 70px;
}

.prose {
  min-width: 0;
}

.prose h2 {
  margin: 42px 0 12px;
  font-size: 27px;
  line-height: 1.35;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 28px 0 8px;
  font-size: 19px;
}

.prose p,
.prose li {
  color: #445158;
}

.prose ul,
.prose ol {
  padding-left: 1.4em;
}

.prose li + li {
  margin-top: 8px;
}

.prose a {
  color: var(--cobalt);
  font-weight: 700;
}

.prose-note {
  margin: 26px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--teal);
  background: var(--mist);
}

.prose-note strong {
  color: var(--ink);
}

.article-aside {
  align-self: start;
  position: sticky;
  top: 96px;
}

.aside-box {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.aside-box h2 {
  margin: 0 0 12px;
  font-size: 16px;
}

.aside-box a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.aside-box a:last-child {
  border-bottom: 0;
}

.aside-box a:hover {
  color: var(--coral-dark);
}

.source-list {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.site-footer {
  color: #d9e0e2;
  background: #172126;
}

.footer-grid {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  padding: 52px 0 34px;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 46px;
}

.footer-brand {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.footer-summary {
  max-width: 360px;
  margin: 12px 0 0;
  color: #aeb9bc;
  font-size: 13px;
}

.footer-group h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
}

.footer-group a {
  display: block;
  margin: 8px 0;
  color: #aeb9bc;
  font-size: 13px;
  text-decoration: none;
}

.footer-group a:hover {
  color: #fff;
}

.footer-bottom {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid #344248;
  color: #8f9da1;
  font-size: 12px;
}

@media (max-width: 960px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 28px 24px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-download {
    margin-top: 14px;
    padding: 13px 16px !important;
    border-bottom: 1px solid var(--ink) !important;
    text-align: center;
  }

  .hero {
    min-height: 620px;
    background-position: 58% center;
  }

  .hero-copy {
    width: 55%;
  }

  .hero h1 {
    font-size: 44px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .article-aside {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-grid .footer-group:last-child {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 64px;
  }

  .nav-shell,
  .container,
  .hero-inner,
  .trust-list,
  .footer-grid,
  .footer-bottom,
  .download-hero,
  .article-header,
  .article-layout {
    width: min(calc(100% - 32px), var(--content));
  }

  .brand-note {
    display: none;
  }

  .nav-links {
    top: 64px;
  }

  .hero {
    min-height: 720px;
    align-items: flex-start;
    background-position: 63% bottom;
    background-size: auto 300px;
    background-repeat: no-repeat;
  }

  .hero-inner {
    padding: 40px 0 320px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-list span {
    min-height: 46px;
    border-bottom: 1px solid var(--line);
  }

  .trust-list span:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .section,
  .section-tight {
    padding: 60px 0;
  }

  .section-heading h2,
  .article-header h1,
  .download-hero h1 {
    font-size: 29px;
  }

  .path-grid,
  .feature-grid,
  .article-grid,
  .platform-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .path-card,
  .platform-card {
    min-height: 0;
  }

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

  .download-hero,
  .article-header {
    padding: 54px 0 48px;
  }

  .article-layout {
    padding: 50px 0 66px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 22px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-grid .footer-group:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Product landing page */
.product-hero {
  min-height: min(760px, calc(100svh - 72px));
  position: relative;
  overflow: hidden;
  background-color: #f7faf9;
  background-image: url("../images/hero-translation-workspace.jpg");
  background-position: center;
  background-size: cover;
}

.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.84);
}

.product-hero-inner {
  width: min(100%, 1440px);
  min-height: inherit;
  margin: 0 auto;
  padding: 88px 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-hero-copy {
  width: min(calc(100% - 40px), 760px);
  margin: 0 auto;
  text-align: center;
}

.product-hero h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.16;
  letter-spacing: 0;
}

.product-kicker {
  margin: 0 0 10px;
  color: var(--coral-dark);
  font-size: 14px;
  font-weight: 900;
}

.translation-count {
  margin: 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.count-digits {
  display: inline-flex;
  gap: 4px;
}

.count-digits b {
  width: 24px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  font-size: 15px;
}

.product-lockup {
  width: fit-content;
  margin: 28px 0 0;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 25px;
  font-weight: 900;
}

.product-lockup-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--coral);
  font-size: 17px;
  text-transform: lowercase;
}

.product-download {
  width: 330px;
  min-width: 330px;
  margin: 30px auto 0;
  display: flex;
  min-height: 54px;
  padding: 13px 26px;
  box-shadow: 0 14px 30px rgba(240, 93, 68, 0.22);
}

.product-platforms {
  margin: 22px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.product-platforms a {
  padding: 4px 20px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.product-platforms a:last-child {
  border-right: 0;
}

.product-platforms a:hover {
  color: var(--coral-dark);
}

.shortcut-shell {
  width: 100%;
  margin-top: auto;
  overflow-x: auto;
  border-top: 1px solid rgba(220, 226, 227, 0.9);
  background: rgba(255, 255, 255, 0.86);
  scrollbar-width: none;
}

.shortcut-shell::-webkit-scrollbar {
  display: none;
}

.product-shortcuts {
  width: min(100%, 1180px);
  min-width: 580px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.product-shortcuts a {
  min-height: 118px;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
  border-right: 1px solid rgba(220, 226, 227, 0.9);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.product-shortcuts a:first-child {
  border-left: 1px solid rgba(220, 226, 227, 0.9);
}

.shortcut-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #f6b5a8;
  border-radius: 50%;
  color: var(--coral);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.product-section {
  padding: 92px 0;
}

.product-section-muted {
  background: var(--mist);
}

.product-section-warm {
  background: var(--warm);
}

.product-heading {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.product-heading h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.25;
  letter-spacing: 0;
}

.product-heading .en-title {
  margin: 10px 0 0;
  color: #9aa4a8;
  font-size: 13px;
  font-weight: 800;
}

.product-heading > p:last-child {
  margin: 14px auto 0;
  color: var(--muted);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.advantage-item {
  min-height: 240px;
  padding: 30px;
  border-top: 4px solid var(--coral);
  background: #fff;
}

.advantage-item:nth-child(2) {
  border-top-color: var(--teal);
}

.advantage-item:nth-child(3) {
  border-top-color: var(--cobalt);
}

.advantage-index {
  color: #9aa4a8;
  font-size: 12px;
  font-weight: 900;
}

.advantage-item h3 {
  margin: 22px 0 10px;
  font-size: 21px;
}

.advantage-item p {
  margin: 0;
  color: var(--muted);
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 70px;
}

.feature-split + .feature-split {
  margin-top: 86px;
}

.feature-split.reverse .feature-visual {
  order: 2;
}

.feature-split.reverse .feature-copy {
  order: 1;
}

.feature-visual {
  min-width: 0;
}

.feature-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-copy .feature-label {
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 900;
}

.feature-copy h3 {
  margin: 12px 0 18px;
  font-size: 32px;
  line-height: 1.3;
}

.feature-copy > p {
  margin: 0;
  color: var(--muted);
}

.feature-points {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.feature-points li {
  position: relative;
  padding-left: 22px;
  color: #3f4b50;
}

.feature-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 10px;
  left: 0;
  border-radius: 50%;
  background: var(--teal);
}

.translation-demo {
  min-height: 360px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.demo-toolbar {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.demo-dots {
  display: flex;
  gap: 6px;
}

.demo-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}

.demo-columns {
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.demo-column {
  min-height: 245px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fbfcfc;
}

.demo-column strong {
  font-size: 13px;
}

.demo-line {
  height: 8px;
  margin-top: 16px;
  background: #dfe5e6;
}

.demo-line.short {
  width: 68%;
}

.demo-column.target .demo-line:nth-child(2n) {
  background: #9fd2cc;
}

.tools-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-tool {
  min-height: 330px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.tool-symbol {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.product-tool:nth-child(2) .tool-symbol {
  background: var(--teal);
}

.product-tool:nth-child(3) .tool-symbol {
  background: var(--cobalt);
}

.product-tool:nth-child(4) .tool-symbol {
  color: var(--ink);
  background: #f2bd42;
}

.product-tool h3 {
  margin: 20px 0 8px;
  font-size: 20px;
}

.product-tool p {
  margin: 0;
  color: var(--muted);
}

.tool-mini-ui {
  min-height: 112px;
  margin-top: auto;
  padding: 16px;
  border-top: 1px solid var(--line);
  background: var(--mist);
}

.tool-mini-ui b {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 12px;
}

.mini-line {
  height: 6px;
  margin-top: 8px;
  background: #cfd8da;
}

.mini-line:nth-child(3) {
  width: 72%;
}

.wave-line {
  height: 38px;
  margin-top: 12px;
  background: repeating-linear-gradient(90deg, var(--teal) 0 2px, transparent 2px 7px);
  opacity: 0.55;
}

.download-band {
  color: #fff;
  background: var(--ink);
}

.download-band-inner {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  padding: 68px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.download-band h2 {
  margin: 0;
  font-size: 32px;
}

.download-band p {
  margin: 10px 0 0;
  color: #cbd4d6;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-item {
  min-height: 235px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.review-stars {
  color: #e0a321;
  font-size: 18px;
}

.review-item blockquote {
  margin: 18px 0;
  color: #3f4b50;
}

.review-user {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 960px) {
  .product-hero {
    min-height: 720px;
  }

  .product-hero-inner {
    padding-top: 72px;
  }

  .advantage-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage-item:last-child,
  .review-item:last-child {
    grid-column: 1 / -1;
  }

  .feature-split {
    gap: 42px;
  }

  .tools-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .product-hero {
    min-height: 700px;
  }

  .product-hero-inner {
    padding-top: 46px;
  }

  .product-hero-copy {
    width: min(calc(100% - 32px), 760px);
  }

  .product-hero h1 {
    font-size: 38px;
  }

  .translation-count {
    margin-top: 14px;
  }

  .product-lockup {
    margin-top: 20px;
    font-size: 22px;
  }

  .product-download {
    width: 100%;
    min-width: 0;
    margin-top: 22px;
  }

  .product-platforms a {
    padding: 4px 11px;
  }

  .product-shortcuts {
    min-width: 520px;
  }

  .product-shortcuts a {
    min-height: 102px;
  }

  .product-section {
    padding: 64px 0;
  }

  .product-heading h2 {
    font-size: 30px;
  }

  .advantage-grid,
  .feature-split,
  .tools-product-grid,
  .review-grid,
  .download-band-inner {
    grid-template-columns: 1fr;
  }

  .advantage-item:last-child,
  .review-item:last-child {
    grid-column: auto;
  }

  .feature-split,
  .feature-split + .feature-split {
    gap: 30px;
    margin-top: 58px;
  }

  .feature-split.reverse .feature-visual,
  .feature-split.reverse .feature-copy {
    order: initial;
  }

  .feature-copy h3 {
    font-size: 26px;
  }

  .translation-demo {
    min-height: 320px;
    padding: 16px;
  }

  .demo-columns {
    gap: 10px;
  }

  .demo-column {
    min-height: 220px;
    padding: 12px;
  }

  .download-band-inner {
    width: min(calc(100% - 32px), var(--content));
    padding: 54px 0;
  }

  .download-band h2 {
    font-size: 27px;
  }
}
