:root {
  color-scheme: dark;
  --bg: #030407;
  --panel: #11141a;
  --panel-deep: #0b0d12;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);
  --text: #f7f8fb;
  --muted: #aeb5c4;
  --dim: #7c8394;
  --accent: #6872f4;
  --accent-strong: #7781ff;
  --content: 1320px;
  --radius: 8px;
  font-family:
    "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", "Segoe UI",
    system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-width: 1180px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 28%, rgba(87, 96, 232, 0.11), transparent 31rem),
    linear-gradient(180deg, #04050a 0%, #020307 100%);
  overflow-x: hidden;
}

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

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 84px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(3, 4, 7, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(var(--content), calc(100vw - 72px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 20px;
  line-height: 1.05;
  font-weight: 800;
}

.brand small {
  margin-top: 5px;
  color: #a2a8b8;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
}

.site-nav {
  height: 100%;
  display: flex;
  align-items: stretch;
  gap: 52px;
  color: #e8ebf2;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a,
.support-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-top: 3px;
}

.support-trigger {
  height: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.site-nav a::after,
.support-trigger::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 35px;
  height: 2px;
  border-radius: 999px;
  background: transparent;
  transform: translateX(-50%);
}

.site-nav a:hover,
.support-trigger:hover,
.support-menu.is-open .support-trigger,
.site-nav .active {
  color: #ffffff;
}

.site-nav .active::after {
  background: var(--accent);
  box-shadow: 0 0 18px rgba(104, 114, 244, 0.9);
}

.sub-title {
  font-size: 16px;  /* 字号自行修改，如 14px/18px */
  color: #6671dc;       /* 颜色自行改，示例灰色，可换成 #0099ff、#e63946 等 */
  font-weight: normal; /* 可选：取消加粗，更柔和 */
  margin: 12px 0;      /* 可选：调整上下间距 */
}

.sub-title {
  /* 基础文字样式，可按需修改字号、字重 */
  font-size: 18px;
  font-weight: 600;

  /* SDR屏幕：多层光晕模拟HDR高亮效果 */
  color: #ffffff;
  text-shadow:
    0 0 2px rgba(255, 255, 255, 0.95),
    0 0 8px rgba(255, 255, 255, 0.6),
    0 0 16px rgba(200, 220, 255, 0.4),
    0 0 32px rgba(130, 180, 255, 0.3);
}

/* HDR屏幕自动生效：突破普通白色亮度上限，呈现真实高亮 */
@media (dynamic-range: high) {
  .sub-title {
    /* 三通道数值越大越亮，推荐 2~5 之间，过高会刺眼 */
    color: color(rec2100-linear 5.0 5.0 5.0);
    /* 真HDR下保留轻微光晕更自然，不需要可以删掉这行 */
    text-shadow: 0 0 10px #6473ff;
  }
}

.support-menu {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  height: 100%;
}

.support-popover {
  position: absolute;
  top: calc(100% - 4px);
  right: 0;
  z-index: 40;
  width: min(264px, calc(100vw - 32px));
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(12, 15, 24, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 160ms ease,
    visibility 160ms ease,
    transform 160ms ease;
}

.support-popover img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(360px, calc(100vh - 112px));
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.support-menu:hover:not(.is-dismissed) .support-popover,
.support-menu.is-open .support-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.hero {
  position: relative;
  min-height: 760px;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  opacity: 0.56;
  filter: brightness(0.62) saturate(1.18) contrast(1.08);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-bg::before {
  background:
    radial-gradient(ellipse at 76% 17%, rgba(255, 172, 94, 0.2), transparent 23rem),
    radial-gradient(ellipse at 45% 78%, rgba(104, 114, 244, 0.3), transparent 24rem),
    linear-gradient(90deg, rgba(2, 3, 6, 0.98) 0%, rgba(2, 3, 6, 0.9) 36%, rgba(2, 3, 6, 0.48) 70%, rgba(2, 3, 6, 0.18) 100%),
    linear-gradient(180deg, rgba(2, 3, 6, 0.14), rgba(2, 3, 6, 0.7) 78%, #030407 100%);
}

.hero-bg::after {
  background:
    radial-gradient(ellipse at 13% 45%, rgba(0, 0, 0, 0.78), transparent 26rem),
    linear-gradient(180deg, transparent 0%, rgba(3, 4, 7, 0.1) 70%, #030407 100%);
}

.hero-inner {
  position: relative;
  width: min(var(--content), calc(100vw - 72px));
  min-height: 760px;
  margin: 0 auto;
}

.hero-copy {
  position: absolute;
  z-index: 3;
  left: 34px;
  top: 104px;
  width: 620px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(60px, 4.45vw, 76px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 20px 54px rgba(0, 0, 0, 0.9);
}

.hero-copy h1 span {
  display: block;
}

.hero-lede,
.hero-desc {
  margin: 0;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.86);
}

.hero-lede {
  margin-top: 34px;
  color: #d9deeb;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}

.hero-desc {
  margin-top: 20px;
  color: #aab1c3;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 52px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.button-primary {
  border: 0;
  background: #6671f4;
  color: #fff;
  box-shadow: none;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.27);
  background: rgba(8, 10, 16, 0.55);
  color: #fff;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.button-svg {
  width: 22px;
  height: 22px;
  flex: none;
  fill: currentColor;
}

.system-note {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 30px;
  color: #9ca4ba;
  font-size: 14px;
  font-weight: 700;
}

.windows-mark {
  width: 18px;
  height: 18px;
  flex: none;
  fill: #6973f4;
}

.product-art {
  position: absolute;
  z-index: 2;
  top: 81px;
  right: 78px;
  width: 980px;
  pointer-events: none;
}

.product-art img {
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 38px 92px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 38px rgba(104, 114, 244, 0.2));
}

.compare-card,
.workflow-card,
.download-card,
.site-footer,
.copyright {
  width: min(var(--content), calc(100vw - 72px));
  margin-left: auto;
  margin-right: auto;
}

.compare-card,
.workflow-card {
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.055), transparent 29rem),
    linear-gradient(180deg, rgba(18, 21, 27, 0.94), rgba(10, 12, 17, 0.96));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 22px 96px rgba(0, 0, 0, 0.45);
}

.compare-card {
  position: relative;
  z-index: 5;
  margin-top: 0;
  padding: 32px 22px 28px;
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 900;
}

.section-heading p {
  margin: 14px 0 0;
  color: #c8cfdf;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 700;
}

.comparison {
  --position: 50%;
  position: relative;
  height: 374px;
  margin-top: 32px;
  overflow: hidden;
  border-radius: 6px;
  background: #08090d;
}

.comparison-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.comparison-sdr {
  background: #08090d;
}

.comparison-hdr {
  clip-path: inset(0 0 0 var(--position));
}

.compare-label {
  position: absolute;
  z-index: 4;
  top: 28px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.85);
}

.compare-label-left {
  left: 36px;
}

.compare-label-right {
  right: 34px;
  padding: 7px 13px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(111, 120, 255, 0.94), rgba(81, 91, 224, 0.82));
  box-shadow: 0 0 26px rgba(111, 120, 255, 0.66);
}

.comparison-divider {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.5),
    0 0 34px rgba(111, 120, 255, 0.5);
  transform: translateX(-1px);
}

.comparison-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  background: rgba(19, 22, 30, 0.84);
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.3),
    0 0 22px rgba(0, 0, 0, 0.78);
}

.comparison-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.comparison-range {
  position: absolute;
  z-index: 6;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.workflow-card {
  margin-top: 34px;
  padding: 36px 52px 58px;
}

.workflow-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 84px;
  max-width: 830px;
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
}

.workflow-list::before {
  content: "";
  position: absolute;
  top: 83px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.workflow-list li {
  position: relative;
  z-index: 2;
  min-width: 0;
  text-align: center;
}

.workflow-icon {
  position: relative;
  width: 87px;
  height: 87px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(120, 133, 255, 0.36);
  border-radius: 50%;
  color: #7682ff;
  background: #20243a;
  box-shadow: none;
}

.workflow-icon svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
  filter: none;
}

.workflow-list li > span:not(.workflow-icon) {
  display: grid;
  width: 21px;
  height: 21px;
  margin: 10px auto 16px;
  place-items: center;
  border-radius: 50%;
  background: #5963e7;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: none;
}

.workflow-list h3,
.feature-list h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.workflow-list p,
.feature-list p {
  margin: 13px auto 0;
  color: #aeb5c7;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 700;
}

.features {
  margin-top: 70px;
  text-align: center;
}

.features h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 900;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 56px;
  margin-top: 44px;
}

.feature-list article {
  min-width: 0;
}

.feature-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #7985ff;
  background: #12151c;
  box-shadow: none;
}

.feature-icon svg {
  width: 39px;
  height: 39px;
  fill: currentColor;
  filter: none;
}

.download-card {
  min-height: 250px;
  margin-top: 34px;
  display: grid;
  grid-template-columns: 330px 1fr 300px;
  align-items: center;
  gap: 42px;
  padding: 36px 56px;
  border: 1px solid rgba(118, 128, 255, 0.86);
  border-radius: 8px;
  background:
    radial-gradient(circle at 13% 50%, rgba(104, 114, 244, 0.22), transparent 18rem),
    radial-gradient(circle at 54% 0%, rgba(255, 255, 255, 0.06), transparent 22rem),
    linear-gradient(135deg, rgba(20, 25, 42, 0.94), rgba(8, 10, 16, 0.97));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 0 64px rgba(88, 98, 235, 0.18);
}

.download-logo {
  position: relative;
  width: 210px;
  height: 210px;
  margin-left: 24px;
  display: grid;
  place-items: center;
}

.download-logo::before,
.download-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(104, 114, 244, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 42px rgba(104, 114, 244, 0.24);
}

.download-logo::after {
  inset: 38px;
  border-radius: 12px;
  border-color: rgba(255, 255, 255, 0.14);
  transform: rotate(45deg);
}

.download-logo img {
  position: relative;
  z-index: 1;
  width: 144px;
  height: 144px;
  border-radius: 26px;
  filter: drop-shadow(0 0 30px rgba(104, 114, 244, 0.5));
}

.download-copy h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 900;
}

.download-copy p {
  margin: 12px 0 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
}

.button-large {
  min-width: 350px;
  margin-top: 28px;
}

.download-copy small {
  display: block;
  margin-top: 16px;
  color: #a8afc4;
  font-size: 14px;
  font-weight: 700;
}

.download-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
  color: #d7dcef;
  font-size: 15px;
  font-weight: 800;
}

.download-points li {
  position: relative;
  padding-left: 30px;
}

.download-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(104, 114, 244, 0.2);
  color: #9099ff;
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.5fr 0.9fr;
  gap: 100px;
  padding: 38px 48px 18px;
  color: #aab1c4;
}

.site-footer p {
  max-width: 360px;
  margin: 22px 0 0;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 700;
}

.footer-links,
.footer-sites {
  display: grid;
  align-content: start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.site-footer strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 15px;
}

.site-footer a {
  color: #d9dded;
}

.copyright {
  margin-top: 0;
  margin-bottom: 0;
  padding: 10px 0 38px;
  color: #7c8498;
  text-align: center;
  font-size: 13px;
}

@media (min-width: 1800px) {
  :root {
    --content: 1600px;
  }

  .site-header {
    height: 92px;
  }

  .hero,
  .hero-inner {
    min-height: 900px;
  }

  .hero-copy {
    top: 132px;
    left: 44px;
    width: 730px;
  }

  .hero-copy h1 {
    font-size: 82px;
  }

  .product-art {
    width: 820px;
    top: 80px;
    right: 90px;
  }

  .comparison {
    height: 450px;
  }
}

@media (max-width: 1280px) {
  :root {
    --content: 1120px;
  }

  .site-nav {
    gap: 34px;
  }

  .hero-copy {
    left: 18px;
    width: 540px;
  }

  .hero-copy h1 {
    font-size: 57px;
  }

  .product-art {
    width: 600px;
    right: 22px;
    top: 78px;
  }

  .workflow-list {
    gap: 58px;
  }

  .feature-list {
    gap: 34px;
  }

  .download-card {
    grid-template-columns: 270px 1fr 260px;
    padding-left: 36px;
    padding-right: 36px;
  }
}

@media (max-width: 900px) {
  body {
    min-width: 0;
  }

  .site-header {
    height: auto;
  }

  .header-inner {
    width: 100%;
    min-height: 92px;
    padding: 10px 18px 0;
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: center;
    gap: 8px;
    text-align: center;
  }

  .brand {
    gap: 10px;
    min-width: 0;
    justify-content: center;
  }

  .brand img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

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

  .brand small {
    margin-top: 4px;
    font-size: 12px;
  }

  .site-nav {
    width: calc(100vw - 36px);
    margin-left: auto;
    margin-right: auto;
    height: 34px;
    gap: 22px;
    align-items: stretch;
    justify-content: center;
    overflow-x: auto;
    overflow-y: hidden;
    color: #dfe3ee;
    font-size: 13px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a,
  .support-trigger {
    flex: none;
    padding-top: 0;
  }

  .site-nav a::after,
  .support-trigger::after {
    bottom: 0;
    width: 26px;
  }

  .support-popover {
    position: fixed;
    top: 86px;
    left: 50%;
    right: auto;
    width: min(280px, calc(100vw - 32px));
    padding: 10px;
    transform: translate(-50%, 10px);
  }

  .support-popover img {
    max-height: min(360px, calc(100vh - 118px));
  }

  .support-menu:hover:not(.is-dismissed) .support-popover,
  .support-menu.is-open .support-popover {
    transform: translate(-50%, 0);
  }

  .hero {
    min-height: 0;
    overflow: hidden;
  }

  .hero-bg img {
    object-position: 58% 42%;
    opacity: 0.5;
    filter: brightness(0.54) saturate(1.16) contrast(1.08);
  }

  .hero-bg::before {
    background:
      radial-gradient(ellipse at 70% 22%, rgba(104, 114, 244, 0.22), transparent 18rem),
      linear-gradient(180deg, rgba(2, 3, 6, 0.9) 0%, rgba(2, 3, 6, 0.82) 62%, #030407 100%);
  }

  .hero-bg::after {
    background:
      /*radial-gradient(ellipse at 20% 22%, rgba(0, 0, 0, 0.72), transparent 19rem),*/
      linear-gradient(180deg, rgba(3, 4, 7, 0.08), #030407 100%);
  }

  .hero-inner {
    width: calc(100vw - 48px);
    margin-left: auto;
    margin-right: auto;
    min-height: 0;
    padding: 52px 0 28px;
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    text-align: center;
  }

  .hero-copy h1 {
    max-width: 11em;
    margin: 0 auto;
    font-size: clamp(42px, 10.8vw, 64px);
    line-height: 1.12;
    text-shadow: 0 16px 42px rgba(0, 0, 0, 0.9);
  }

  .hero-lede {
    margin: 24px auto 0;
    max-width: min(100%, 34em);
    font-size: 16px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .hero-desc {
    margin: 14px auto 0;
    max-width: min(100%, 34em);
    font-size: 14px;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: min(100%, 520px);
    margin: 30px auto 0;
  }

  .hero-actions .button-primary {
    grid-column: 1 / -1;
  }
  
  .button {
    min-height: 52px;
    padding: 0 14px;
    font-size: 15px;
    gap: 9px;
  }

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

  .system-note {
    justify-content: center;
    margin-top: 18px;
    font-size: 13px;
  }

  .product-art {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 620px);
    margin: 24px auto 0;
  }

  .product-art img {
    filter: drop-shadow(0 28px 64px rgba(0, 0, 0, 0.58));
  }

  .compare-card,
  .workflow-card,
  .download-card,
  .site-footer,
  .copyright {
    width: calc(100vw - 40px);
    margin-left: auto;
    margin-right: auto;
  }

  .compare-card {
    padding: 26px 12px 18px;
  }

  .section-heading h2,
  .features h2,
  .download-copy h2 {
    font-size: 28px;
  }

  .section-heading p {
    max-width: 34em;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }

  .comparison {
    height: auto;
    aspect-ratio: 16 / 9;
    margin-top: 24px;
  }

  .compare-label {
    top: 16px;
    font-size: 12px;
  }

  .compare-label-left {
    left: 16px;
  }

  .compare-label-right {
    right: 14px;
    padding: 6px 10px;
  }

  .comparison-divider::before {
    width: 28px;
    height: 28px;
    border-width: 2px;
  }

  .workflow-card {
    margin-top: 24px;
    padding: 30px 18px 38px;
  }

  .workflow-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 520px;
    margin-top: 30px;
  }

  .workflow-list::before {
    top: 40px;
    bottom: 40px;
    left: 43px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  }

  .workflow-list li {
    min-height: 96px;
    display: grid;
    grid-template-columns: 86px 1fr;
    grid-template-areas:
      "icon number"
      "icon title"
      "icon text";
    column-gap: 16px;
    align-items: start;
    text-align: left;
  }

  .workflow-icon {
    grid-area: icon;
    width: 72px;
    height: 72px;
    margin: 0;
  }

  .workflow-icon svg {
    width: 34px;
    height: 34px;
  }

  .workflow-list li > span:not(.workflow-icon) {
    grid-area: number;
    width: 20px;
    height: 20px;
    margin: 0 0 10px;
  }

  .workflow-list h3 {
    grid-area: title;
  }

  .workflow-list p {
    grid-area: text;
    margin: 8px 0 0;
  }

  .features {
    margin-top: 48px;
  }

  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
  }

  .feature-list article {
    padding: 18px 10px 6px;
  }

  .feature-list article:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, calc((100% - 18px) / 2));
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 14px;
  }

  .feature-icon svg {
    width: 30px;
    height: 30px;
  }

  .workflow-list h3,
  .feature-list h3 {
    font-size: 16px;
  }

  .workflow-list p,
  .feature-list p {
    font-size: 13px;
    line-height: 1.6;
    overflow-wrap: anywhere;
  }

  .download-card {
    min-height: 0;
    margin-top: 24px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
    padding: 28px 20px 32px;
    text-align: center;
  }

  .download-logo {
    width: 142px;
    height: 142px;
    margin-left: 0;
  }

  .download-logo::after {
    inset: 26px;
  }

  .download-logo img {
    width: 96px;
    height: 96px;
    border-radius: 20px;
  }

  .download-copy {
    width: 100%;
  }

  .download-copy p {
    font-size: 15px;
  }

  .button-large {
    width: 100%;
    min-width: 0;
    margin-top: 22px;
  }

  .download-copy small {
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .download-points {
    width: 100%;
    max-width: 300px;
    justify-items: center;
    text-align: left;
    gap: 12px;
    font-size: 14px;
  }

  .download-points li {
    width: fit-content;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 26px;
    padding: 32px 18px 14px;
    text-align: center;
  }

  .site-footer p {
    max-width: none;
    margin: 16px auto 0;
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .footer-links,
  .footer-sites {
    justify-items: center;
    text-align: center;
  }

  .copyright {
    padding-bottom: 28px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-nav {
    width: calc(100vw - 36px);
    gap: 19px;
  }

  .hero-inner {
    width: calc(100vw - 40px);
    padding-top: 38px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 11.2vw, 48px);
  }

  .hero-lede {
    width: min(100%, 340px);
    font-size: 15px;
  }

  .hero-desc {
    width: min(100%, 340px);
  }

  .hero-actions {
    grid-template-columns: 1fr;
    width: min(100%, 340px);
  }

  .hero-actions .button-primary {
    grid-column: auto;
  }

  .button {
    width: 100%;
  }

  .product-art {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .compare-card,
  .workflow-card,
  .download-card,
  .site-footer,
  .copyright {
    width: calc(100vw - 32px);
  }

  .section-heading h2,
  .features h2,
  .download-copy h2 {
    font-size: 25px;
  }

  .section-heading p {
    font-size: 14px;
  }

  .compare-card {
    padding-left: 10px;
    padding-right: 10px;
  }

  .comparison {
    border-radius: 5px;
  }

  .workflow-card {
    padding-left: 14px;
    padding-right: 14px;
  }

  .feature-list {
    gap: 14px 10px;
  }

  .feature-list article {
    padding-left: 6px;
    padding-right: 6px;
  }

  .feature-list article:last-child {
    width: min(100%, calc((100% - 10px) / 2));
  }
}

@media (max-width: 390px) {
  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 11px;
  }

  .site-nav {
    gap: 16px;
    font-size: 12px;
  }

  .hero-inner {
    width: calc(100vw - 34px);
  }

  .hero-copy h1 {
    font-size: 36px;
  }

  .hero-desc {
    width: min(100%, 318px);
    font-size: 13px;
  }

  .button {
    min-height: 50px;
    font-size: 14px;
  }

  .hero-actions {
    width: min(100%, 318px);
  }

  .system-note {
    font-size: 12px;
  }

  .section-heading h2,
  .features h2,
  .download-copy h2 {
    font-size: 23px;
  }

  .workflow-list li {
    grid-template-columns: 76px 1fr;
    column-gap: 12px;
  }

  .workflow-icon {
    width: 64px;
    height: 64px;
  }

  .workflow-list::before {
    left: 38px;
  }

  .feature-list {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-list article:last-child {
    grid-column: auto;
    width: 100%;
  }
}

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