/**
 * APP 下载版面 — 颜色与 sport-themes_ACdZ4 各套 public/assets/theme.css 的 :root 同步。
 * 接入顺序：先引入全站 style.css（可选）+ theme.css，再引入本文件。
 * 无 theme 时仍可用括号内 fallback。
 */
.app-lp {
  --lp-bg: var(--bg, #f5f7fc);
  --lp-card: var(--bg-card, #ffffff);
  --lp-card2: var(--bg-card2, #fafbfe);
  --lp-panel: var(--panel, #eef2f9);
  --lp-text: var(--text, #131826);
  --lp-muted: var(--muted, #5a6478);
  --lp-line: var(--line, rgba(15, 23, 42, 0.09));
  --lp-line-strong: var(--line-strong, rgba(13, 148, 136, 0.35));
  --lp-accent: var(--accent, #0d9488);
  --lp-accent-dim: var(--accent-dim, #0f766e);
  --lp-accent-blue: var(--accent-blue, #2563eb);
  --lp-accent-blue-dim: var(--accent-blue-dim, #1d4ed8);
  --lp-sky: var(--accent-sky, #0891b2);
  --lp-radius: var(--radius, 16px);
  --lp-radius-sm: var(--radius-sm, 11px);
  --lp-shadow: var(--shadow, 0 18px 48px rgba(15, 23, 42, 0.08));
  --lp-shadow-soft: var(--shadow-soft, var(--lp-shadow));
  --lp-glow: var(--glow, 0 10px 28px rgba(13, 148, 136, 0.3));
  --lp-gold-soft: var(--gold-soft, rgba(13, 148, 136, 0.12));
  /* 荣誉卡标题：与各套 theme.css 的 --gold / --accent-amber 对齐 */
  --lp-award-title: var(--gold, var(--accent-amber, #92400e));

  font-family: "PingFang SC", "Microsoft YaHei UI", system-ui, sans-serif;
  color: var(--lp-text);
  /* 叠满各套 theme 的 mesh-side-*，九套色相、半径、阴影会一起拉开差异 */
  background:
    radial-gradient(ellipse 88% 72% at -12% 22%, var(--mesh-side-blue, transparent), transparent 58%),
    radial-gradient(ellipse 74% 64% at 112% 78%, var(--mesh-side-teal, transparent), transparent 55%),
    radial-gradient(ellipse 62% 52% at 96% -8%, var(--mesh-side-violet, transparent), transparent 52%),
    radial-gradient(ellipse 70% 56% at 4% 108%, var(--mesh-side-amber, transparent), transparent 56%),
    var(--lp-bg);
}

.app-lp * {
  box-sizing: border-box;
}

.app-lp-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px 56px;
}

/* 主内容区：供爬虫/读屏识别，无额外排版（避免破坏旧布局） */
.app-lp-main {
  display: block;
}

.app-lp-crumb {
  font-size: 13px;
  color: var(--lp-muted);
  margin-bottom: 18px;
}

.app-lp-crumb a {
  color: var(--lp-accent-blue);
  text-decoration: none;
}

.app-lp-crumb a:hover {
  text-decoration: underline;
}

.app-lp-hero {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: center;
  background: var(
    --mesh-base,
    linear-gradient(180deg, var(--lp-card) 0%, var(--lp-panel) 50%, var(--lp-bg) 100%)
  );
  border: 1px solid var(--lp-line);
  border-radius: calc(var(--lp-radius) + 4px);
  padding: 28px 24px;
  box-shadow: var(--lp-shadow);
}

@media (min-width: 840px) {
  .app-lp-hero {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 36px 40px;
    gap: 36px;
  }
}

.app-lp-kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--lp-accent);
  text-transform: uppercase;
}

.app-lp-hero-promise {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--lp-accent-dim);
  max-width: 48ch;
}

@media (min-width: 840px) {
  .app-lp-hero-promise {
    font-size: 1.08rem;
  }
}

.app-lp h1 {
  margin: 10px 0 12px;
  font-size: clamp(1.55rem, 4vw, 2.1rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  /* 各套 theme 的 accent-sky / accent-violet 不同，标题渐变尾色随主题变化 */
  background: linear-gradient(
    125deg,
    var(--lp-text) 0%,
    var(--lp-accent-dim) 32%,
    var(--lp-accent) 55%,
    var(--accent-sky, var(--lp-accent-blue)) 78%,
    var(--accent-violet, var(--lp-accent-blue)) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.app-lp-lead {
  margin: 0;
  color: var(--lp-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 42ch;
}

.app-lp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.app-lp-badge {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--lp-panel);
  color: var(--lp-accent-dim);
  border: 1px solid var(--lp-line);
  font-weight: 600;
}

.app-lp-badge.soft {
  color: var(--lp-accent-blue-dim);
}

.app-lp-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* 首屏：扫码 + 应用商店徽章（与主 CTA 同链路） */
.app-lp-hero-extras {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px 28px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--lp-line);
}

/* 宽屏：整块固定在视口最右侧留白处（相对浏览器窗口，不相对 hero；勿在 .app-lp-hero 上设 perspective，否则会压住 fixed） */
@media (min-width: 900px) {
  .app-lp-hero-extras {
    position: fixed;
    left: auto;
    right: max(10px, env(safe-area-inset-right, 0px));
    top: clamp(88px, 28vh, 50%);
    transform: translateY(-50%);
    z-index: 40;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    margin-left: 0;
    padding: 16px 14px 18px;
    border-top: none;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    background: var(--lp-card);
    background: color-mix(in srgb, var(--lp-card) 94%, transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--lp-shadow);
    max-width: min(200px, calc(100vw - 32px));
  }

  .app-lp-hero-extras .app-lp-store-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media print {
  .app-lp-hero-extras {
    position: static;
    transform: none;
    right: auto;
    top: auto;
    z-index: auto;
    border-top: 1px solid var(--lp-line);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    max-width: none;
  }

  .app-lp-hero-extras .app-lp-store-row {
    flex-direction: row;
  }
}

.app-lp-qr-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.app-lp-qr-frame {
  position: relative;
  width: 132px;
  height: 132px;
  border-radius: var(--lp-radius-sm);
  background: var(--lp-card);
  border: 1px solid var(--lp-line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.app-lp-qr-block:not(.has-qr) .app-lp-qr-frame {
  background:
    linear-gradient(135deg, var(--lp-panel) 0%, var(--lp-card2) 100%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 5px,
      rgba(15, 23, 42, 0.04) 5px,
      rgba(15, 23, 42, 0.04) 10px
    );
  position: relative;
}

.app-lp-qr-block:not(.has-qr) .app-lp-qr-frame::before {
  content: "QR";
  position: absolute;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--lp-muted);
}

.app-lp-qr-img {
  display: block;
  width: 128px;
  height: 128px;
  object-fit: contain;
}

.app-lp-qr-block:not(.has-qr) .app-lp-qr-img {
  display: none;
}

.app-lp-qr-caption {
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-muted);
  text-align: center;
  max-width: 140px;
  line-height: 1.35;
}

.app-lp-store-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.app-lp-store-badge-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  border-radius: 10px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.app-lp-store-badge-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.app-lp-store-badge-link:focus-visible {
  outline: 2px solid var(--lp-accent-blue);
  outline-offset: 3px;
}

.app-lp-store-badge-img {
  display: block;
  height: 54px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
}

.app-lp-store-badge-img--apple {
  height: 44px;
  max-width: 150px;
}

/* 平台认证与荣誉：与当前主题色板统一（mesh / card / line），四卡图文一一对应 */
.app-lp-awards-lead {
  margin: 0 0 18px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--lp-muted);
  max-width: 62ch;
}

.app-lp-section--awards h2#app-lp-awards,
.app-lp-section--awards > .app-lp-awards-panel > h2 {
  color: var(--lp-text);
}

.app-lp-section--awards .app-lp-h2-app,
.app-lp-section--awards .app-lp-h2-sep {
  color: var(--lp-muted);
}

.app-lp-awards-panel {
  background: var(
    --mesh-base,
    linear-gradient(180deg, var(--lp-card) 0%, var(--lp-panel) 46%, var(--lp-bg) 100%)
  );
  border: 1px solid var(--lp-line);
  border-radius: calc(var(--lp-radius) + 2px);
  padding: 26px 22px 28px;
  box-shadow: var(--lp-shadow-soft);
}

.app-lp-award-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: start;
}

@media (max-width: 960px) {
  .app-lp-award-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .app-lp-award-cards {
    grid-template-columns: 1fr;
  }
}

.app-lp-award-card {
  margin: 0;
  background: var(--lp-card);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-sm);
  overflow: visible;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.app-lp-award-card:hover {
  transform: translateY(-3px);
  border-color: var(--lp-line-strong);
  box-shadow: var(--lp-shadow);
}

.app-lp-award-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--lp-panel);
  border-radius: var(--lp-radius-sm) var(--lp-radius-sm) 0 0;
}

.app-lp-award-card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.app-lp-award-card-body {
  padding: 14px 14px 16px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 var(--lp-radius-sm) var(--lp-radius-sm);
}

.app-lp-award-card-title {
  margin: 0 0 8px;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--lp-award-title);
  letter-spacing: -0.02em;
}

.app-lp-award-card-desc {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--lp-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* 遗留：仅单图荣誉位时可用 .app-lp-awards-figure + data-lp-awards-img */
.app-lp-awards-figure {
  margin: 0;
  border-radius: calc(var(--lp-radius) + 2px);
  border: 1px solid var(--lp-line);
  background: var(--lp-card2);
  overflow: hidden;
  box-shadow: var(--lp-shadow-soft);
  min-height: 220px;
  position: relative;
}

.app-lp-awards-figure::after {
  content: "在 .app-lp 根节点设置 data-lp-awards-img=\"图片地址\"";
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-muted);
  line-height: 1.5;
}

.app-lp-awards-figure:not(.has-img)::after {
  display: flex;
}

.app-lp-awards-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(72vh, 640px);
  object-fit: contain;
  vertical-align: middle;
  background: var(--lp-card);
}

.app-lp-awards-img:not([src]),
.app-lp-awards-img[src=""] {
  display: none;
}

.app-lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--lp-radius-sm);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition:
    transform 0.22s cubic-bezier(0.34, 1.25, 0.64, 1),
    box-shadow 0.22s ease,
    filter 0.2s ease,
    border-color 0.2s ease,
    background 0.22s ease,
    color 0.2s ease,
    border-style 0.15s ease;
}

.app-lp-btn:active {
  transform: translateY(1px);
}

/* 下载 · 主按钮：浮起 + 光晕加强 */
.app-lp-btn--primary {
  /* 与各套 theme.css 里 .btn-primary 思路一致：主色 → 深色，不用 accent-sky（部分主题为青会冲色系） */
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-dim));
  color: #fff;
  box-shadow: var(--lp-glow);
}

.app-lp-btn--primary:hover {
  transform: translateY(-3px);
  filter: brightness(1.06) saturate(1.05);
  box-shadow:
    var(--lp-glow),
    0 14px 32px rgba(15, 23, 42, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}

.app-lp-btn--primary:active {
  transform: translateY(0);
  filter: brightness(0.97);
}

/* 前往 iOS · 描边按钮：衬底微亮 + 蓝边外光 */
.app-lp-btn--secondary {
  background: var(--lp-card);
  color: var(--lp-accent-blue);
  border: 1px solid var(--lp-line-strong);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.app-lp-btn--secondary:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, var(--lp-card) 0%, var(--lp-panel) 100%);
  border-color: var(--lp-accent-blue);
  color: var(--lp-accent-blue-dim);
  box-shadow:
    0 8px 22px rgba(37, 99, 235, 0.18),
    0 0 0 1px rgba(37, 99, 235, 0.12);
  filter: none;
}

.app-lp-btn--secondary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.12);
}

/* 使用网页版 · 浅色卡片式描边：实线 + 对比足够的边框（避免虚线溶进背景） */
.app-lp-btn--ghost {
  background: var(--lp-panel);
  color: var(--lp-text);
  border: 1px solid var(--lp-line-strong);
  font-weight: 600;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.35) inset;
}

.app-lp-btn--ghost:hover {
  transform: translateY(-2px);
  background: var(--lp-card);
  border-color: var(--lp-accent-dim);
  color: var(--lp-accent-dim);
  box-shadow:
    0 6px 18px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}

.app-lp-btn--ghost:active {
  transform: translateY(0);
  background: var(--lp-card2);
  border-color: var(--lp-line-strong);
}

@supports (color: color-mix(in srgb, white 50%, black)) {
  .app-lp-btn--ghost:active {
    background: color-mix(in srgb, var(--lp-panel) 88%, var(--lp-card));
  }
}

.app-lp-phone {
  position: relative;
  margin: 0 auto;
  max-width: 280px;
  aspect-ratio: 9 / 18.5;
  border-radius: 36px;
  background: linear-gradient(180deg, var(--lp-text), var(--lp-accent-dim));
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.35),
    inset 0 0 0 2px rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 14px 20px;
  color: #e2e8f0;
  transform-style: preserve-3d;
  transition: transform 0.38s cubic-bezier(0.34, 1.25, 0.64, 1), box-shadow 0.38s ease;
}

/* 栏目② 右侧手机示意：3D 微倾 + 外轮廓高光（与首屏平移区分） */
.app-lp-phone:hover {
  transform: perspective(1100px) rotateY(-8deg) rotateX(5deg) translateZ(20px) scale(1.02);
  box-shadow:
    0 32px 64px rgba(15, 23, 42, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.2),
    inset 0 0 0 2px rgba(255, 255, 255, 0.16);
}

@supports (color: color-mix(in srgb, white 50%, black)) {
  .app-lp-phone:hover {
    box-shadow:
      0 32px 64px rgba(15, 23, 42, 0.38),
      0 0 0 1px rgba(255, 255, 255, 0.2),
      inset 0 0 0 2px rgba(255, 255, 255, 0.16),
      0 0 48px color-mix(in srgb, var(--lp-accent) 25%, transparent);
  }
}

.app-lp-phone-notch {
  width: 38%;
  height: 22px;
  background: #0b1220;
  border-radius: 0 0 14px 14px;
  margin-bottom: 14px;
}

.app-lp-phone-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #f8fafc;
}

.app-lp-phone-sub {
  font-size: 12px;
  opacity: 0.75;
  text-align: center;
  line-height: 1.5;
  padding: 0 8px;
}

.app-lp-phone-mock {
  position: relative;
  overflow: hidden;
  margin-top: 0.5cm;
  width: 100%;
  flex: 1 1 auto;
  min-height: 64%;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    var(--lp-accent),
    var(--accent-coral, var(--lp-accent-blue)) 45%,
    var(--lp-accent-blue) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.95);
  opacity: 0.92;
  transition: transform 0.38s cubic-bezier(0.34, 1.25, 0.64, 1), opacity 0.28s ease,
    filter 0.28s ease;
}

/* 图库 / 静态资源：有有效 src 时铺满手机框（由 .has-shot 或 :has 触发） */
.app-lp-phone-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: none;
  border-radius: inherit;
  pointer-events: none;
}

.app-lp-phone-mock-fallback {
  position: relative;
  z-index: 1;
  padding: 8px;
  text-align: center;
}

.app-lp-phone-mock.has-shot {
  background: #0f172a;
}

.app-lp-phone-mock.has-shot .app-lp-phone-shot {
  display: block;
}

.app-lp-phone-mock.has-shot .app-lp-phone-mock-fallback {
  display: none;
}

@supports selector(:has(*)) {
  .app-lp-phone-mock:has(img.app-lp-phone-shot[src]:not([src=""])) {
    background: #0f172a;
  }

  .app-lp-phone-mock:has(img.app-lp-phone-shot[src]:not([src=""])) .app-lp-phone-shot {
    display: block;
  }

  .app-lp-phone-mock:has(img.app-lp-phone-shot[src]:not([src=""])) .app-lp-phone-mock-fallback {
    display: none;
  }
}

.app-lp-phone:hover .app-lp-phone-mock {
  transform: scale(1.06);
  opacity: 1;
  filter: saturate(1.12);
}

.app-lp-section {
  margin-top: 36px;
}

.app-lp-section h2 {
  font-size: 1.25rem;
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--lp-text);
}

.app-lp-changelog-lead {
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--lp-muted);
}

/* 与首页同源：复用 style.css 的 .changelog-dark；落地页内微调边距 */
.app-lp-section--changelog .app-lp-changelog-home {
  margin-top: 4px;
}

/* 界面掠影（实拍/示意截图） */
.app-lp-section--shots .app-lp-shots-lead {
  margin: 0 0 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--lp-muted);
  max-width: 62ch;
}

.app-lp-shot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
}

.app-lp-shot {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: var(--lp-card);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius-sm);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.38s ease,
    border-color 0.3s ease;
  will-change: transform;
}

/* 固定 9:16 手机框；cover 铺满避免横图在 contain+top 时下方大块留白 */
.app-lp-shot-img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
  max-height: none;
  object-fit: cover;
  object-position: center;
  vertical-align: middle;
  background: var(--lp-panel);
  transform: scale(1);
  transition: transform 0.45s cubic-bezier(0.34, 1.15, 0.64, 1);
  flex-shrink: 0;
}

.app-lp-shot-cap {
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-muted);
  text-align: center;
  margin: 0;
  background-color: transparent;
  transition: color 0.28s ease, background-color 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .app-lp-shot:hover {
    transform: translateY(-6px);
    box-shadow:
      0 22px 44px rgba(15, 23, 42, 0.12),
      0 0 0 1px color-mix(in srgb, var(--lp-accent) 22%, transparent);
    border-color: color-mix(in srgb, var(--lp-accent) 42%, var(--lp-line));
  }

  .app-lp-shot:hover .app-lp-shot-img {
    transform: scale(1.05);
  }

  .app-lp-shot:hover .app-lp-shot-cap {
    color: var(--lp-accent-dim);
    background-color: var(--lp-panel);
  }
}

@media (max-width: 960px) {
  .app-lp-shot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .app-lp-shot-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* —— 数据条：圆角/软阴影随各套 --radius、--shadow-soft 变化 —— */
.app-lp-strip {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: calc(var(--lp-radius) + 2px);
  border: 1px solid var(--lp-line);
  overflow: hidden;
  box-shadow: var(--lp-shadow-soft);
  background: var(--lp-card);
}

@media (min-width: 720px) {
  .app-lp-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.app-lp-strip-item {
  padding: 20px 14px;
  text-align: center;
  border-right: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
  background: linear-gradient(180deg, var(--lp-card) 0%, var(--lp-card2) 100%);
}

@media (min-width: 720px) {
  .app-lp-strip-item {
    border-bottom: 0;
  }

  .app-lp-strip-item:nth-child(4n) {
    border-right: 0;
  }
}

@media (max-width: 719px) {
  .app-lp-strip-item:nth-child(2n) {
    border-right: 0;
  }

  .app-lp-strip-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

.app-lp-strip-val {
  display: block;
  font-size: clamp(1.35rem, 3.5vw, 1.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  background: linear-gradient(105deg, var(--lp-accent-dim), var(--lp-accent), var(--accent-sky, var(--lp-accent)));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.app-lp-strip-label {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-muted);
  line-height: 1.45;
}

/* —— 能力亮点：金浅色块图标底随 --gold-soft 变 —— */
.app-lp-highlights {
  margin-top: 32px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .app-lp-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .app-lp-highlights {
    grid-template-columns: repeat(4, 1fr);
  }
}

.app-lp-hl {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-line);
  background: var(--lp-card);
  box-shadow: var(--lp-shadow-soft);
  transition:
    transform 0.28s cubic-bezier(0.34, 1.35, 0.64, 1),
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.28s ease;
}

.app-lp-hl:hover {
  transform: translateY(-4px);
  border-color: var(--lp-line-strong);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1), var(--lp-glow);
  background: linear-gradient(180deg, var(--lp-card) 0%, var(--lp-panel) 100%);
}

@supports (color: color-mix(in srgb, white 50%, black)) {
  .app-lp-hl:hover {
    border-color: color-mix(in srgb, var(--lp-accent) 38%, var(--lp-line));
    box-shadow:
      0 18px 40px rgba(15, 23, 42, 0.1),
      0 0 0 1px color-mix(in srgb, var(--lp-accent) 22%, transparent),
      var(--lp-glow);
    background: linear-gradient(180deg, var(--lp-card) 0%, color-mix(in srgb, var(--lp-panel) 55%, var(--lp-card)) 100%);
  }
}

.app-lp-hl-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: calc(var(--lp-radius-sm) + 2px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  background: var(--lp-gold-soft);
  color: var(--lp-accent-dim);
  box-shadow: inset 0 0 0 1px var(--lp-line);
  transition: transform 0.28s cubic-bezier(0.34, 1.35, 0.64, 1), box-shadow 0.22s ease;
}

.app-lp-hl:hover .app-lp-hl-icon {
  transform: scale(1.06);
}

.app-lp-hl h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--lp-text);
  transition: color 0.22s ease, transform 0.22s ease;
}

.app-lp-hl:hover h3 {
  color: var(--lp-accent-dim);
  transform: translateX(2px);
}

.app-lp-hl p {
  margin: 0;
  font-size: 13px;
  color: var(--lp-muted);
  line-height: 1.65;
}

/* —— 常见问题：展开标记色跟主色走 —— */
.app-lp-faq {
  margin-top: 32px;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-line);
  background: var(--lp-card);
  overflow: hidden;
  box-shadow: var(--lp-shadow-soft);
}

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

.app-lp-faq-item:last-child {
  border-bottom: 0;
}

.app-lp-faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  color: var(--lp-text);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.app-lp-faq-item summary::before {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: var(--lp-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--lp-gold-soft);
  color: var(--lp-accent-dim);
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}

.app-lp-faq-item[open] summary::before {
  content: "\2212";
}

.app-lp-faq-item .app-lp-faq-a {
  padding: 0 20px 18px 60px;
  margin: 0;
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.75;
}

/* —— 双栏说明：panel 渐变随各套 --panel/--bg-card2 拉开 —— */
.app-lp-twocol {
  margin-top: 32px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .app-lp-twocol {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.app-lp-subpanel {
  padding: 20px 22px;
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-line);
  background: linear-gradient(
    168deg,
    var(--lp-card2) 0%,
    var(--lp-card) 42%,
    var(--lp-panel) 100%
  );
  box-shadow: var(--lp-shadow-soft);
  transition:
    transform 0.28s cubic-bezier(0.34, 1.35, 0.64, 1),
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.28s ease;
}

.app-lp-subpanel:hover {
  transform: translateY(-4px);
  border-color: var(--lp-line-strong);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1), var(--lp-glow);
  background: linear-gradient(180deg, var(--lp-card) 0%, var(--lp-panel) 100%);
}

@supports (color: color-mix(in srgb, white 50%, black)) {
  .app-lp-subpanel:hover {
    border-color: color-mix(in srgb, var(--lp-accent) 38%, var(--lp-line));
    box-shadow:
      0 18px 40px rgba(15, 23, 42, 0.1),
      0 0 0 1px color-mix(in srgb, var(--lp-accent) 22%, transparent),
      var(--lp-glow);
    background: linear-gradient(180deg, var(--lp-card) 0%, color-mix(in srgb, var(--lp-panel) 55%, var(--lp-card)) 100%);
  }
}

.app-lp-subpanel h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--lp-accent-dim);
  transition: transform 0.22s ease;
}

.app-lp-subpanel:hover h3 {
  transform: translateX(2px);
}

.app-lp-subpanel ul {
  margin: 0;
  padding-left: 1.15em;
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.75;
}

.app-lp-subpanel li + li {
  margin-top: 8px;
}

/* 导读长文：与 .app-lp-strip / intro 四卡同宽的 content 区对齐（随 .app-lp-wrap 满宽） */
.app-lp-prose {
  width: 100%;
  max-width: none;
  color: var(--lp-muted);
  line-height: 1.85;
  font-size: 1.02rem;
}

.app-lp-prose p {
  margin: 0 0 1rem;
}

.app-lp-prose p:last-child {
  margin-bottom: 0;
}

/* 导读「下载前必读」等标题下：四卡词库（与 strip 同宽、四列节奏一致） */
.app-lp-intro-cards {
  margin-top: 22px;
  width: 100%;
  max-width: none;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .app-lp-intro-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .app-lp-intro-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.app-lp-intro-card {
  position: relative;
  border-radius: 16px;
  padding: 18px 18px 20px;
  border: 1px solid var(--lp-line);
  background: linear-gradient(165deg, var(--lp-panel) 0%, var(--lp-card) 55%, var(--lp-card) 100%);
  box-shadow: 0 4px 22px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.26s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.26s ease,
    border-color 0.26s ease;
}

.app-lp-intro-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, var(--lp-accent), var(--lp-accent-blue));
  opacity: 0.65;
  transform: scaleX(0.35);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.26s ease;
  pointer-events: none;
  z-index: 0;
}

.app-lp-intro-card:hover {
  transform: translateY(-4px);
  border-color: var(--lp-line-strong);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1), 0 0 0 1px color-mix(in srgb, var(--lp-accent) 10%, transparent);
}

@supports (color: color-mix(in srgb, white 50%, black)) {
  .app-lp-intro-card:hover {
    box-shadow:
      0 14px 36px rgba(15, 23, 42, 0.1),
      0 0 0 1px color-mix(in srgb, var(--lp-accent) 10%, transparent);
  }
}

.app-lp-intro-card:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.app-lp-intro-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--lp-text);
  letter-spacing: -0.01em;
}

.app-lp-intro-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 13px;
  line-height: 1.68;
  color: var(--lp-muted);
}

.app-lp-intro-card:focus-within {
  outline: 2px solid var(--lp-accent-blue);
  outline-offset: 2px;
}

.app-lp-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .app-lp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .app-lp-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* 栏目③ 优势三卡：上浮 + 斜向扫光（细腻卡片） */
.app-lp-card {
  --lp-card-shift: -6px;
  background: var(--lp-card);
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  padding: 18px 18px 20px;
  box-shadow: var(--lp-shadow);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.28s cubic-bezier(0.34, 1.35, 0.64, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.app-lp-card::after {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(118deg, transparent 42%, rgba(255, 255, 255, 0.28) 50%, transparent 58%);
  transform: translateX(-100%) rotate(12deg);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}

@supports (color: color-mix(in srgb, white 50%, black)) {
  .app-lp-card::after {
    background: linear-gradient(
      118deg,
      transparent 38%,
      color-mix(in srgb, var(--lp-accent) 18%, transparent) 48%,
      color-mix(in srgb, var(--lp-accent-blue) 14%, transparent) 52%,
      transparent 62%
    );
  }
}

.app-lp-card:hover::after {
  transform: translateX(100%) rotate(12deg);
}

.app-lp-card:hover {
  transform: translateY(var(--lp-card-shift));
  border-color: var(--lp-line-strong);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12), var(--lp-glow);
  background: linear-gradient(180deg, var(--lp-card) 0%, var(--lp-panel) 100%);
}

@supports (color: color-mix(in srgb, white 50%, black)) {
  .app-lp-card:hover {
    border-color: color-mix(in srgb, var(--lp-accent) 38%, var(--lp-line));
    box-shadow:
      0 22px 48px rgba(15, 23, 42, 0.12),
      0 0 0 1px color-mix(in srgb, var(--lp-accent) 22%, transparent),
      var(--lp-glow);
    background: linear-gradient(180deg, var(--lp-card) 0%, color-mix(in srgb, var(--lp-panel) 55%, var(--lp-card)) 100%);
  }
}

.app-lp-card:focus-within {
  outline: 2px solid var(--lp-accent);
  outline-offset: 3px;
}

@supports (color: color-mix(in srgb, white 50%, black)) {
  .app-lp-card:focus-within {
    outline-color: color-mix(in srgb, var(--lp-accent) 45%, transparent);
  }
}

.app-lp-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--lp-text);
  position: relative;
  z-index: 1;
  transition: color 0.22s ease, transform 0.22s ease;
}

.app-lp-card:hover h3 {
  color: var(--lp-accent-dim);
  transform: translateX(2px);
}

.app-lp-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  background: linear-gradient(
    100deg,
    var(--lp-muted) 0%,
    var(--lp-accent-dim) 34%,
    var(--lp-accent) 55%,
    var(--accent-sky, var(--lp-accent-blue-dim)) 82%,
    var(--accent-violet, var(--lp-accent-blue-dim)) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.app-lp-steps {
  margin-top: 20px;
  display: grid;
  gap: 12px;
  counter-reset: st;
}

@media (min-width: 720px) {
  .app-lp-steps {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

/* 下载前自检：与首屏四格条同为 4 列节奏；卡片为「顶栏强调 + 圆形序号 + 竖向堆叠」，区别于下方安装步骤的侧滑色条 */
.app-lp-steps--precheck {
  margin-top: 18px;
}

@media (min-width: 640px) {
  .app-lp-steps--precheck {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .app-lp-steps--precheck {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.app-lp-steps--precheck .app-lp-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 20px 20px;
  border-radius: 16px;
  background: linear-gradient(168deg, var(--lp-panel) 0%, var(--lp-card) 38%, var(--lp-card) 100%);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.app-lp-steps--precheck .app-lp-step::before {
  position: relative;
  left: auto;
  top: auto;
  width: 32px;
  height: 32px;
  margin: 0 0 12px;
  border-radius: 50%;
  font-size: 14px;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--lp-accent) 28%, var(--lp-card)),
    color-mix(in srgb, var(--lp-accent-blue) 22%, var(--lp-card))
  );
  color: var(--lp-accent-blue-dim);
  box-shadow: 0 2px 10px color-mix(in srgb, var(--lp-accent) 20%, transparent);
}

@supports not (color: color-mix(in srgb, white 50%, black)) {
  .app-lp-steps--precheck .app-lp-step::before {
    background: linear-gradient(145deg, rgba(13, 148, 136, 0.18), rgba(59, 130, 246, 0.14));
    box-shadow: 0 2px 10px rgba(13, 148, 136, 0.12);
  }
}

.app-lp-steps--precheck .app-lp-step::after {
  left: 0;
  right: 0;
  top: 0;
  bottom: auto;
  width: 100%;
  height: 3px;
  border-radius: 16px 16px 0 0;
  transform: scaleX(0);
  transform-origin: center;
}

.app-lp-steps--precheck .app-lp-step:hover {
  transform: translateY(-5px);
  background: linear-gradient(168deg, var(--lp-card2) 0%, var(--lp-card) 55%, var(--lp-card) 100%);
}

.app-lp-steps--precheck .app-lp-step:hover::after {
  transform: scaleX(1);
}

.app-lp-steps--precheck .app-lp-step:hover::before {
  transform: scale(1.06);
}

.app-lp-steps--precheck .app-lp-step:hover strong {
  transform: none;
  color: var(--lp-text);
}

/* 栏目④ 安装步骤：横向滑入感 + 左侧色条 + 序号放大（与时间线区分于普通卡片） */
.app-lp-step {
  background: var(--lp-card);
  border: 1px solid var(--lp-line);
  border-radius: 14px;
  padding: 16px;
  position: relative;
  padding-left: 48px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.3s ease,
    border-color 0.3s ease, background 0.3s ease;
}

.app-lp-step::before {
  counter-increment: st;
  content: counter(st);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--gold-soft, rgba(13, 148, 136, 0.15));
  color: var(--lp-accent-dim);
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.34, 1.35, 0.64, 1), box-shadow 0.3s ease,
    background 0.3s ease;
}

.app-lp-step::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 0 6px 6px 0;
  background: linear-gradient(180deg, var(--lp-accent), var(--lp-accent-blue));
  transform: scaleY(0);
  transform-origin: center top;
  transition: transform 0.32s cubic-bezier(0.34, 1.2, 0.64, 1);
  pointer-events: none;
  z-index: 0;
  opacity: 0.95;
}

.app-lp-step:hover {
  transform: translateX(8px) translateY(-4px);
  border-color: var(--lp-line-strong);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(13, 148, 136, 0.12);
  background: linear-gradient(100deg, var(--lp-card) 0%, var(--lp-card2) 120%);
}

@supports (color: color-mix(in srgb, white 50%, black)) {
  .app-lp-step:hover {
    border-color: color-mix(in srgb, var(--lp-accent-blue) 35%, var(--lp-line));
    box-shadow:
      0 18px 40px rgba(15, 23, 42, 0.11),
      0 0 0 1px color-mix(in srgb, var(--lp-accent-blue) 22%, transparent);
  }
}

.app-lp-step:hover::before {
  transform: scale(1.12);
}

@supports (color: color-mix(in srgb, white 50%, black)) {
  .app-lp-step:hover::before {
    box-shadow: 0 4px 14px color-mix(in srgb, var(--lp-accent) 35%, transparent);
    background: color-mix(in srgb, var(--lp-accent) 22%, var(--lp-card));
  }
}

@supports not (color: color-mix(in srgb, white 50%, black)) {
  .app-lp-step:hover::before {
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
    background: rgba(13, 148, 136, 0.22);
  }
}

.app-lp-step:hover::after {
  transform: scaleY(1);
}

.app-lp-step strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--lp-text);
  transition: color 0.25s ease, transform 0.25s ease;
}

.app-lp-step:hover strong {
  color: var(--lp-accent-blue-dim);
  transform: translateX(2px);
}

.app-lp-step span {
  position: relative;
  z-index: 1;
  font-size: 13px;
  color: var(--lp-muted);
  line-height: 1.6;
}

/* /app 底栏已改为 layout 尾部全站 .footer（与首页同一 DOM/CSS，含 footer-has-bg --footer-bg）。此处不再定义 .app-lp-sitefoot。 */

/* 栏目⑤ 底部说明：轻扭 + 错位硬阴影（便签感，与前述上浮/3D/侧滑区分） */
.app-lp-foot {
  margin-top: 28px;
  padding: 18px;
  border-radius: var(--lp-radius);
  background: var(--lp-card2);
  border: 1px solid var(--lp-line-strong);
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.7;
  position: relative;
  transition: transform 0.32s cubic-bezier(0.34, 1.15, 0.64, 1), box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.app-lp-foot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 40%, rgba(13, 148, 136, 0.09) 50%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

@supports (color: color-mix(in srgb, white 50%, black)) {
  .app-lp-foot::before {
    background: linear-gradient(
      115deg,
      transparent 35%,
      color-mix(in srgb, var(--lp-accent) 12%, transparent) 48%,
      color-mix(in srgb, var(--lp-accent-blue) 10%, transparent) 55%,
      transparent 68%
    );
  }
}

.app-lp-foot:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  border-color: var(--lp-accent-blue-dim);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.11),
    10px 10px 0 rgba(37, 99, 235, 0.14);
}

.app-lp-foot:hover::before {
  opacity: 1;
}

.app-lp-foot:focus-within {
  outline: 2px solid var(--lp-accent-blue);
  outline-offset: 3px;
}

.app-lp-foot b {
  color: var(--lp-text);
  transition: color 0.28s ease;
}

.app-lp-foot:hover b {
  color: var(--lp-accent-dim);
}

.app-lp-step:focus-within {
  outline: 2px solid var(--lp-accent-blue);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .app-lp-phone,
  .app-lp-phone-mock,
  .app-lp-btn,
  .app-lp-hl,
  .app-lp-hl-icon,
  .app-lp-hl h3,
  .app-lp-subpanel,
  .app-lp-subpanel h3,
  .footer .footer-links a,
  .app-lp-card,
  .app-lp-card::after,
  .app-lp-card h3,
  .app-lp-card p,
  .app-lp-step,
  .app-lp-step::before,
  .app-lp-step::after,
  .app-lp-step strong,
  .app-lp-foot,
  .app-lp-foot::before,
  .app-lp-foot b,
  .app-lp-shot,
  .app-lp-shot-img,
  .app-lp-shot-cap {
    transition: none;
  }

  .app-lp-btn:hover,
  .app-lp-btn--primary:hover,
  .app-lp-btn--secondary:hover,
  .app-lp-btn--ghost:hover {
    transform: none;
  }

  @media (hover: hover) and (pointer: fine) {
    .app-lp-shot:hover {
      transform: none;
    }

    .app-lp-shot:hover .app-lp-shot-img {
      transform: none;
    }
  }

  .app-lp-foot:hover {
    transform: none;
  }

  .app-lp-hl:hover {
    transform: none;
    border-color: var(--lp-line);
    box-shadow: var(--lp-shadow-soft);
    background: var(--lp-card);
  }

  .app-lp-hl:hover .app-lp-hl-icon {
    transform: none;
  }

  .app-lp-hl:hover h3 {
    color: var(--lp-text);
    transform: none;
  }

  .app-lp-subpanel:hover {
    transform: none;
    border-color: var(--lp-line);
    box-shadow: var(--lp-shadow-soft);
    background: linear-gradient(
      168deg,
      var(--lp-card2) 0%,
      var(--lp-card) 42%,
      var(--lp-panel) 100%
    );
  }

  .app-lp-subpanel:hover h3 {
    transform: none;
  }

  .app-lp-phone:hover {
    transform: none;
  }

  .app-lp-phone:hover .app-lp-phone-mock {
    transform: none;
    filter: none;
  }

  .app-lp-card:hover {
    transform: none;
  }

  .app-lp-card:hover::after {
    transform: translateX(-100%) rotate(12deg);
  }

  .app-lp-card:hover h3 {
    transform: none;
  }

  .app-lp-step:hover {
    transform: none;
  }

  .app-lp-step:hover::after {
    transform: scaleY(1);
  }

  .app-lp-steps--precheck .app-lp-step:hover::after {
    transform: scaleX(1);
  }

  .app-lp-step:hover::before,
  .app-lp-step:hover strong {
    transform: none;
  }

  .app-lp-foot:hover::before {
    opacity: 0;
  }

  .app-lp-foot:hover b {
    color: var(--lp-text);
  }

  .app-lp-intro-card:hover {
    transform: none;
  }

  .app-lp-intro-card:hover::after {
    transform: scaleX(0.35);
    opacity: 0.65;
  }
}
