:root {
  color-scheme: dark;
  --brand: #39c989;
  --brand-strong: #1fa66c;
  --brand-deep: #0b6d48;
  --ink: #101512;
  --ink-soft: #222a25;
  --paper: #f4f7f5;
  --white: #ffffff;
  --muted: #aeb8b2;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: #d8e1dc;
  --header-height: 72px;
  --content-width: 1220px;
  font-family: Inter, "Microsoft YaHei", "PingFang SC", system-ui, -apple-system, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
}

body.is-dialog-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

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

svg {
  display: block;
  width: 1em;
  height: 1em;
  stroke-width: 1.8;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  padding: 0 max(24px, calc((100vw - var(--content-width)) / 2));
  color: var(--white);
  background: rgba(8, 13, 10, 0.64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  transition: background 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 13, 10, 0.92);
  box-shadow: 0 12px 36px rgba(2, 7, 4, 0.22);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand img,
.footer-brand img {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
}

.brand > span,
.footer-brand > span {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.brand strong,
.footer-brand strong {
  font-size: 17px;
  line-height: 1.2;
}

.brand small,
.footer-brand small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.2;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 6px;
  height: 100%;
}

.desktop-nav a {
  position: relative;
  min-width: 74px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 0;
  left: 14px;
  height: 2px;
  background: transparent;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.desktop-nav a.is-active::after {
  background: var(--brand);
}

.header-download,
.hero-download {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-download {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
}

.header-download svg {
  width: 16px;
  height: 16px;
}

.header-download:hover,
.hero-download:hover {
  color: var(--ink);
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu-button svg {
  width: 20px;
  height: 20px;
}

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  right: 12px;
  left: 12px;
  display: grid;
  padding: 10px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: #111713;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.38);
}

.mobile-nav a,
.mobile-nav button {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  font-size: 14px;
  text-align: left;
}

.mobile-nav button {
  margin-top: 8px;
  justify-content: center;
  color: var(--ink);
  background: var(--brand);
  border-bottom: 0;
  border-radius: 4px;
  font-weight: 800;
}

.hero {
  position: relative;
  height: calc(100svh - 64px);
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
  color: var(--white);
  background: #0a0d0b;
  isolation: isolate;
}

.hero-media,
.hero-shade,
.hero-frame {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
  overflow: hidden;
  background: #070a09;
}

.hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-shade {
  z-index: -3;
  background: rgba(2, 6, 4, 0.16);
  box-shadow: inset 0 130px 110px rgba(2, 6, 4, 0.4), inset 0 -260px 180px rgba(2, 5, 3, 0.7);
}

.hero-frame {
  z-index: -2;
  inset: var(--header-height) 4.4% 0;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  border-left: 1px solid rgba(255, 255, 255, 0.11);
  pointer-events: none;
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 12%;
  width: min(760px, calc(100% - 160px));
  display: grid;
  justify-items: center;
  text-align: center;
  transform: translateX(-50%);
}

.hero-kicker {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
}

.hero-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-size: 68px;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.hero-feature-title {
  margin: 14px 0 0;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
}

.hero-copy {
  max-width: 650px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.7;
}

.hero-content.is-changing > :not(.hero-download) {
  animation: copy-enter 420ms ease both;
}

@keyframes copy-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-download {
  min-width: 250px;
  min-height: 58px;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  margin-top: 22px;
  padding: 8px 24px;
  border-radius: 4px;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
}

.hero-download svg {
  grid-row: 1 / 3;
  width: 18px;
  height: 18px;
}

.hero-download span {
  align-self: end;
  font-size: 15px;
  font-weight: 800;
}

.hero-download small {
  align-self: start;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
}

.hero-download:hover small {
  color: rgba(16, 21, 18, 0.62);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 18px;
  left: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.74);
  transform: translateX(-50%);
  animation: cue-bounce 1.8s ease-in-out infinite;
}

.scroll-cue svg {
  width: 30px;
  height: 30px;
}

@keyframes cue-bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 7px);
  }
}

.section-band {
  padding: 108px max(24px, calc((100vw - var(--content-width)) / 2));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading p {
  margin: 0 0 10px;
  color: var(--brand-deep);
  font-size: 11px;
  font-weight: 800;
}

.section-heading h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.22;
  letter-spacing: 0;
}

.section-heading > span {
  display: block;
  margin-top: 15px;
  color: #66716a;
  font-size: 15px;
  line-height: 1.8;
}

.experience {
  color: var(--ink);
  background: var(--paper);
}

.product-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid #cdd8d1;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(33, 54, 42, 0.14);
}

.product-figure img {
  width: 100%;
  height: auto;
}

.product-figure figcaption {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 22px;
  border-top: 1px solid var(--line-light);
}

.product-figure figcaption span {
  flex: 0 0 auto;
  color: var(--brand-deep);
  font-size: 12px;
  font-weight: 800;
}

.product-figure figcaption strong {
  font-size: 14px;
  text-align: right;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 64px;
  border-top: 1px solid #bdcac2;
  border-bottom: 1px solid #bdcac2;
}

.capability-strip article {
  min-width: 0;
  padding: 32px 28px 34px;
  border-right: 1px solid #bdcac2;
}

.capability-strip article:last-child {
  border-right: 0;
}

.capability-strip span {
  color: var(--brand-strong);
  font-size: 11px;
  font-weight: 800;
}

.capability-strip h3 {
  margin: 20px 0 8px;
  font-size: 18px;
}

.capability-strip p {
  margin: 0;
  color: #6d7771;
  font-size: 13px;
  line-height: 1.7;
}

.downloads {
  color: var(--white);
  background: #0d120f;
  border-top: 1px solid #1e2a23;
  border-bottom: 1px solid #1e2a23;
}

.section-heading.is-dark p {
  color: var(--brand);
}

.section-heading.is-dark > span {
  color: rgba(255, 255, 255, 0.58);
}

.download-list {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.download-row {
  min-height: 116px;
  display: grid;
  grid-template-columns: 58px minmax(220px, 1fr) 90px 132px;
  align-items: center;
  gap: 22px;
  padding: 20px 18px;
  border-bottom: 1px solid var(--line-dark);
  transition: background 180ms ease, transform 180ms ease;
}

.download-row:hover {
  background: rgba(57, 201, 137, 0.08);
  transform: translateX(6px);
}

.download-icon,
.platform-icon {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.04);
}

.download-icon {
  width: 54px;
  height: 54px;
}

.download-icon svg {
  width: 24px;
  height: 24px;
}

.download-name {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.download-name strong {
  font-size: 20px;
}

.download-name small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.download-version {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.download-action {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.download-action svg {
  width: 17px;
  height: 17px;
}

.download-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.download-notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.download-notes svg {
  width: 15px;
  height: 15px;
  color: var(--brand);
}

.requirements {
  color: var(--ink);
  background: var(--white);
}

.requirements-table {
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid #bcc8c0;
}

.requirements-table > div {
  min-height: 70px;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 14px 10px;
  border-bottom: 1px solid #dbe3de;
}

.requirements-table > div:last-child {
  border-bottom: 0;
}

.requirements-table span {
  color: #6a756e;
  font-size: 12px;
  font-weight: 700;
}

.requirements-table strong {
  font-size: 13px;
  font-weight: 650;
}

.requirements-table .requirements-head {
  min-height: 56px;
  color: var(--brand-deep);
  background: #eff5f1;
}

.site-footer {
  min-height: 180px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: 42px max(24px, calc((100vw - var(--content-width)) / 2));
  color: rgba(255, 255, 255, 0.64);
  background: #080b09;
  font-size: 11px;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.site-footer > span {
  text-align: right;
}

.download-dialog-layer {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 7, 5, 0.78);
  backdrop-filter: blur(12px);
  animation: layer-enter 180ms ease both;
}

@keyframes layer-enter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.download-dialog {
  width: min(720px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: #121814;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
  animation: dialog-enter 260ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes dialog-enter {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.download-dialog > header {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line-dark);
}

.download-dialog > header p {
  margin: 0 0 4px;
  color: var(--brand);
  font-size: 10px;
  font-weight: 800;
}

.download-dialog > header h2 {
  margin: 0;
  font-size: 25px;
  letter-spacing: 0;
}

.download-dialog > header button {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  transition: color 180ms ease, background 180ms ease;
}

.download-dialog > header button:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.download-dialog > header button svg {
  width: 20px;
  height: 20px;
}

.dialog-platforms {
  display: grid;
  gap: 10px;
  padding: 20px 24px;
}

.platform-option {
  min-height: 92px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto 22px;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  background: #181f1a;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.platform-option:hover,
.platform-option.is-recommended {
  border-color: rgba(57, 201, 137, 0.68);
  background: #17251d;
  transform: translateY(-2px);
}

.platform-icon {
  width: 50px;
  height: 50px;
}

.platform-icon svg {
  width: 22px;
  height: 22px;
}

.platform-option > span:nth-child(2) {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.platform-option strong {
  font-size: 17px;
}

.platform-option small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.platform-option em {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  font-style: normal;
}

.platform-option.is-recommended em {
  color: var(--ink);
  background: var(--brand);
  border-color: var(--brand);
}

.platform-option > svg {
  width: 19px;
  height: 19px;
  color: var(--brand);
}

.download-dialog > footer {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 24px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
}

.download-dialog > footer svg {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
}

.toast {
  position: fixed;
  z-index: 180;
  right: 20px;
  bottom: 20px;
  max-width: min(380px, calc(100vw - 40px));
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  color: var(--white);
  background: #172019;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
  font-size: 12px;
}

.reveal-section .section-heading,
.reveal-section .product-figure,
.reveal-section .capability-strip,
.reveal-section .download-list,
.reveal-section .download-notes,
.reveal-section .requirements-table {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.reveal-section.is-visible .section-heading,
.reveal-section.is-visible .product-figure,
.reveal-section.is-visible .capability-strip,
.reveal-section.is-visible .download-list,
.reveal-section.is-visible .download-notes,
.reveal-section.is-visible .requirements-table {
  opacity: 1;
  transform: translateY(0);
}

.reveal-section.is-visible .product-figure,
.reveal-section.is-visible .download-list,
.reveal-section.is-visible .requirements-table {
  transition-delay: 90ms;
}

.reveal-section.is-visible .capability-strip,
.reveal-section.is-visible .download-notes {
  transition-delay: 160ms;
}

@media (max-width: 1080px) {
  .site-header {
    gap: 18px;
  }

  .desktop-nav a {
    min-width: 64px;
    padding: 0 9px;
  }

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

  .hero-feature-title {
    font-size: 21px;
  }

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

  .capability-strip article:nth-child(2) {
    border-right: 0;
  }

  .capability-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid #bdcac2;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 0 18px;
  }

  .brand small,
  .desktop-nav,
  .header-download {
    display: none;
  }

  .mobile-menu-button {
    display: grid;
  }

  .hero {
    height: calc(100svh - 54px);
    min-height: 570px;
  }

  .hero-frame {
    right: 18px;
    left: 18px;
  }

  .hero-content {
    bottom: 18%;
    width: calc(100% - 48px);
  }

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

  .hero-feature-title {
    max-width: 560px;
    font-size: 19px;
  }

  .hero-copy {
    max-width: 560px;
    font-size: 13px;
  }

  .section-band {
    padding: 82px 24px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .product-figure figcaption {
    display: grid;
  }

  .product-figure figcaption strong {
    text-align: left;
  }

  .download-row {
    grid-template-columns: 52px minmax(0, 1fr) auto;
  }

  .download-version {
    display: none;
  }

  .requirements-table > div {
    grid-template-columns: 120px minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    text-align: center;
  }

  .site-footer > span {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 15px;
  }

  .hero {
    min-height: 590px;
  }

  .hero-content {
    bottom: 20%;
  }

  .hero-kicker {
    margin-bottom: 10px;
  }

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

  .hero-feature-title {
    max-width: 360px;
    margin-top: 12px;
    font-size: 17px;
  }

  .hero-copy {
    max-width: 380px;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.6;
  }

  .hero-download {
    min-width: 226px;
    min-height: 54px;
    margin-top: 18px;
  }

  .scroll-cue {
    bottom: 12px;
  }

  .section-band {
    padding: 68px 18px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .section-heading > span {
    font-size: 13px;
  }

  .product-figure figcaption {
    padding: 14px;
  }

  .capability-strip {
    grid-template-columns: 1fr;
  }

  .capability-strip article,
  .capability-strip article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #bdcac2;
  }

  .capability-strip article:last-child {
    border-bottom: 0;
  }

  .download-row {
    min-height: 108px;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 8px;
  }

  .download-icon {
    width: 44px;
    height: 44px;
  }

  .download-name strong {
    font-size: 17px;
  }

  .download-action {
    grid-column: 2;
    justify-content: flex-start;
  }

  .requirements-table {
    overflow-x: auto;
  }

  .requirements-table > div {
    width: 650px;
    grid-template-columns: 110px 245px 245px;
  }

  .download-dialog-layer {
    align-items: end;
    padding: 0;
  }

  .download-dialog {
    width: 100%;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 8px 8px 0 0;
  }

  .download-dialog > header,
  .dialog-platforms,
  .download-dialog > footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .platform-option {
    grid-template-columns: 46px minmax(0, 1fr) 18px;
    gap: 12px;
  }

  .platform-option em {
    display: none;
  }

  .platform-icon {
    width: 44px;
    height: 44px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal-section .section-heading,
  .reveal-section .product-figure,
  .reveal-section .capability-strip,
  .reveal-section .download-list,
  .reveal-section .download-notes,
  .reveal-section .requirements-table {
    opacity: 1;
    transform: none;
  }
}
