:root {
  --bg: #f6fbff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --line: rgba(21, 56, 94, 0.1);
  --text: #12304f;
  --muted: #5b7188;
  --title: #0a1d33;
  --teal: #15c7b8;
  --blue: #2f66ff;
  --blue-deep: #13366f;
  --shadow: 0 24px 80px rgba(25, 73, 130, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Manrope, "Microsoft YaHei", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(21, 199, 184, 0.12), transparent 34%),
    radial-gradient(circle at 85% 10%, rgba(47, 102, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #fbfeff 0%, #eef7fb 52%, #f8fcff 100%);
  overflow-x: hidden;
}

.page-glow {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.5;
}

.page-glow-a {
  width: 380px;
  height: 380px;
  background: rgba(21, 199, 184, 0.22);
  top: -120px;
  left: -100px;
}

.page-glow-b {
  width: 460px;
  height: 460px;
  background: rgba(47, 102, 255, 0.18);
  top: 120px;
  right: -160px;
}

.wrap {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(246, 251, 255, 0.72);
  border-bottom: 1px solid rgba(21, 56, 94, 0.06);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--title);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-mark {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.brand-text {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1;
}

.brand-subtitle {
  font-size: 0;
  line-height: 0;
}

.brand-subtitle::before {
  content: attr(data-subtitle);
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--blue-deep);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(21, 56, 94, 0.08);
  box-shadow: 0 10px 26px rgba(25, 73, 130, 0.08);
}

.lang-button {
  width: 48px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.flag-icon {
  position: relative;
  width: 24px;
  height: 16px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.flag-us {
  background:
    linear-gradient(
      180deg,
      #b22234 0,
      #b22234 7.69%,
      #ffffff 7.69%,
      #ffffff 15.38%,
      #b22234 15.38%,
      #b22234 23.07%,
      #ffffff 23.07%,
      #ffffff 30.76%,
      #b22234 30.76%,
      #b22234 38.45%,
      #ffffff 38.45%,
      #ffffff 46.14%,
      #b22234 46.14%,
      #b22234 53.83%,
      #ffffff 53.83%,
      #ffffff 61.52%,
      #b22234 61.52%,
      #b22234 69.21%,
      #ffffff 69.21%,
      #ffffff 76.9%,
      #b22234 76.9%,
      #b22234 84.59%,
      #ffffff 84.59%,
      #ffffff 92.28%,
      #b22234 92.28%,
      #b22234 100%
    );
}

.flag-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 9px;
  background: #3c3b6e;
}

.flag-cn {
  background-color: #de2910;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 20'%3E%3Crect width='30' height='20' fill='%23de2910'/%3E%3Cpath fill='%23ffde00' d='M5.2 2.2l.7 2.1h2.2L6.3 5.6 7 7.8 5.2 6.5 3.4 7.8l.7-2.2-1.8-1.3h2.2z'/%3E%3Cpath fill='%23ffde00' d='M10.2 2.1l.3.8h.9l-.7.5.3.8-.8-.5-.7.5.2-.8-.7-.5h.9z'/%3E%3Cpath fill='%23ffde00' d='M11.8 4.3l.3.8h.9l-.7.5.3.8-.8-.5-.7.5.2-.8-.7-.5h.9z'/%3E%3Cpath fill='%23ffde00' d='M11.5 7.3l.3.8h.9l-.7.5.3.8-.8-.5-.7.5.2-.8-.7-.5h.9z'/%3E%3Cpath fill='%23ffde00' d='M9.3 9.2l.3.8h.9l-.7.5.3.8-.8-.5-.7.5.2-.8-.7-.5h.9z'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.lang-button:hover {
  color: var(--blue-deep);
  transform: translateY(-1px);
}

.lang-button:focus-visible {
  outline: 2px solid rgba(47, 102, 255, 0.34);
  outline-offset: 2px;
}

.lang-button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 10px 20px rgba(47, 102, 255, 0.22);
}

.hero {
  padding: 56px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.feature-card,
.info-panel,
.timeline-item,
.cta-box {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  padding: 38px;
  border-radius: 32px;
  animation: rise 0.7s ease;
}

.eyebrow {
  display: none;
}

.hero h1,
.section h2,
.hero-card h2 {
  margin: 0;
  color: var(--title);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.02;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  max-width: 10ch;
}

.hero-text,
.section-text,
.hero-card p,
.feature-card p,
.info-panel p,
.timeline-item p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-text {
  margin: 20px 0 0;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

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

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  box-shadow: 0 16px 36px rgba(47, 102, 255, 0.26);
}

.button-secondary {
  color: var(--blue-deep);
  border: 1px solid rgba(47, 102, 255, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.search-panel {
  margin-top: 28px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(47, 102, 255, 0.1);
}

.search-panel label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.search-row input {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(20, 55, 94, 0.12);
  padding: 0 16px;
  font: inherit;
  color: var(--text);
  background: #ffffff;
  outline: none;
}

.search-row input:focus {
  border-color: rgba(47, 102, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(47, 102, 255, 0.08);
}

.search-row button {
  min-width: 120px;
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.hero-card {
  border-radius: 32px;
  padding: 32px;
  animation: rise 0.9s ease;
}

.hero-media {
  flex: 1;
  margin-bottom: 18px;
  border-radius: 24px;
  overflow: hidden;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.hero-media-copy {
  min-height: 220px;
  margin-bottom: 16px;
}

.hero-media-copy img {
  aspect-ratio: 5 / 4;
}

.hero-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 0;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .hero-text,
.hero-copy .hero-actions,
.hero-copy .search-panel {
  display: none;
}

.hero-tab {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(47, 102, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.hero-tab:hover {
  color: var(--blue-deep);
  transform: translateY(-1px);
}

.hero-tab:focus-visible {
  outline: 2px solid rgba(47, 102, 255, 0.3);
  outline-offset: 2px;
}

.hero-tab.is-active {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 12px 28px rgba(47, 102, 255, 0.2);
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(21, 199, 184, 0.12);
  color: #0e7d74;
  font-weight: 800;
  font-size: 13px;
}

.mini-note {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #173f7a, #2f66ff);
  box-shadow: 0 12px 24px rgba(47, 102, 255, 0.22);
}

.hero-card h2 {
  margin-top: 22px;
  font-size: clamp(28px, 4vw, 44px);
}

.hero-card p {
  margin-top: 14px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.metric-grid article {
  padding: 16px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(237, 246, 252, 0.95));
  border: 1px solid rgba(21, 56, 94, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.metric-grid article:last-child {
  grid-column: 1 / -1;
}

.metric-grid article:nth-child(1),
.metric-grid article:nth-child(2) {
  background:
    radial-gradient(circle at top right, rgba(21, 199, 184, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(231, 243, 255, 0.98));
  border-color: rgba(47, 102, 255, 0.12);
  box-shadow:
    0 12px 26px rgba(47, 102, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.metric-grid article:nth-child(3) {
  background:
    radial-gradient(circle at top left, rgba(47, 102, 255, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 247, 255, 0.98));
}

.metric-grid article:nth-child(4),
.metric-grid article:nth-child(5) {
  background:
    radial-gradient(circle at bottom right, rgba(21, 199, 184, 0.09), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(236, 248, 251, 0.98));
}

.metric-grid article:nth-child(6) {
  background:
    radial-gradient(circle at top left, rgba(99, 102, 241, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 241, 255, 0.98));
  border-color: rgba(99, 102, 241, 0.14);
}

.metric-grid article:last-child {
  background:
    radial-gradient(circle at right center, rgba(47, 102, 255, 0.08), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(235, 244, 255, 0.98));
  border-color: rgba(47, 102, 255, 0.14);
  box-shadow:
    0 14px 28px rgba(47, 102, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.metric-grid article:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 30px rgba(25, 73, 130, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.metric-grid strong {
  display: block;
  color: var(--blue-deep);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.1;
  white-space: nowrap;
  word-break: keep-all;
}

.metric-grid span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.metric-grid article:nth-child(1) strong,
.metric-grid article:nth-child(2) strong,
.metric-grid article:last-child strong {
  color: #173f7a;
}

.section {
  padding: 28px 0;
}

section[id] {
  scroll-margin-top: 88px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 22px;
}

.section-head h2,
.cta-box h2 {
  font-size: clamp(28px, 4vw, 52px);
}

.product-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-title span {
  display: block;
}

.section-head.compact {
  max-width: none;
}

.section-head.compact h2 {
  white-space: nowrap;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

#download .card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#download .feature-card {
  display: flex;
  flex-direction: column;
}

#download .feature-card .inline-button {
  margin-top: auto;
}

.feature-card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(21, 199, 184, 0.2), transparent 68%);
}

.card-index {
  display: inline-block;
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.feature-card h3,
.info-panel h3,
.timeline-item h3 {
  margin: 14px 0 0;
  color: var(--title);
  font-size: 24px;
  line-height: 1.15;
}

.feature-card p,
.info-panel p,
.timeline-item p {
  margin: 12px 0 0;
}

.inline-button {
  margin-top: 22px;
}

.alt-section {
  position: relative;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.product-layout {
  display: grid;
  gap: 24px;
}

.product-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.bullet-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-weight: 600;
}

.bullet-list li + li {
  margin-top: 12px;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.panel-stack {
  display: grid;
  gap: 18px;
}

.info-panel {
  padding: 28px;
  border-radius: 28px;
}

.product-panel {
  height: 100%;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(47, 102, 255, 0.1);
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 800;
}

.product-badge-light {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.accent-panel {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(58, 28, 92, 0.98), rgba(96, 52, 148, 0.96) 55%, rgba(134, 88, 190, 0.92));
  box-shadow:
    0 24px 60px rgba(61, 31, 102, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.accent-panel h3,
.accent-panel p {
  color: #ffffff;
}

.bullet-list-light li {
  color: rgba(255, 255, 255, 0.9);
}

.bullet-list-light li::before {
  background: rgba(255, 255, 255, 0.9);
}

.product-compare {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(21, 56, 94, 0.08);
  box-shadow: var(--shadow);
}

.product-compare h3 {
  margin: 0 0 18px;
  color: var(--title);
  font-size: clamp(24px, 3vw, 34px);
}

.compare-table-wrap {
  overflow-x: auto;
}

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

.compare-table th,
.compare-table td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid rgba(21, 56, 94, 0.08);
  vertical-align: middle;
}

.compare-table th {
  color: var(--title);
  font-size: 15px;
  font-weight: 800;
  background: rgba(47, 102, 255, 0.06);
}

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

.compare-table .compare-yes,
.compare-table .compare-no,
.compare-table .compare-note {
  font-weight: 800;
}

.compare-table .compare-yes {
  color: #0b8a2a;
  text-align: center;
}

.compare-table .compare-no {
  color: #e02424;
  text-align: center;
}

.compare-table .compare-note-ok {
  color: #0b8a2a;
}

.compare-table .compare-note-warn {
  color: #e02424;
}

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

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

.timeline-item {
  padding: 26px;
  border-radius: 28px;
}

.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(47, 102, 255, 0.12);
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.cta-section {
  padding-bottom: 60px;
}

.cta-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(21, 199, 184, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 244, 255, 0.96));
}

.contact-visual {
  flex: 1;
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  padding: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(21, 56, 94, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  text-align: center;
}

.contact-card img {
  display: block;
  width: 256px;
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 1;
  object-fit: cover;
  height: auto;
  border-radius: 22px;
}

.contact-card h3 {
  margin: 14px 0 4px;
  font-size: 18px;
  color: var(--ink);
}

.site-footer {
  padding: 0 0 32px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(21, 56, 94, 0.1);
  color: var(--muted);
  font-size: 14px;
}

.footer-record {
  margin-left: auto;
  white-space: nowrap;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-layout,
  .product-columns,
  .card-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

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

  .metric-grid article:last-child {
    grid-column: auto;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(100vw - 24px, 100%);
  }

  .nav-row {
    min-height: 68px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    gap: 10px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy,
  .hero-card,
  .feature-card,
  .info-panel,
  .timeline-item,
  .cta-box,
  .product-compare {
    border-radius: 24px;
  }

  .hero-copy,
  .hero-card,
  .feature-card,
  .info-panel,
  .timeline-item,
  .product-compare {
    padding: 22px;
  }

  .hero-media-copy {
    min-height: 164px;
  }

  .search-row,
  .metric-grid,
  .footer-row {
    grid-template-columns: 1fr;
  }

  #download .card-grid {
    grid-template-columns: 1fr;
  }

  .search-row {
    display: grid;
  }

  .search-row button {
    width: 100%;
  }

  .metric-grid {
    gap: 10px;
  }

  .cta-box {
    align-items: center;
  }

  .cta-box > div:first-child {
    width: 100%;
  }

  .contact-visual {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
    margin: 0 auto;
  }

  .contact-card {
    width: min(100%, 288px);
  }

  .footer-row {
    display: grid;
  }

  .section-head.compact h2 {
    white-space: normal;
  }

  .compare-table {
    min-width: 0;
    table-layout: fixed;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px 10px;
    font-size: 13px;
    word-break: break-word;
  }
}
