:root {
  --bg: #f0f6ff;
  --text: #1f2937;
  --sub: #4b5563;
  --line: rgba(148, 178, 230, 0.38);
  --ink: #1a2d4d;
  --ink-soft: #4b5563;
  --accent: #4d8ef7;
  --accent-soft: #93c5fd;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: #1f2937;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.is-hidden {
  display: none !important;
}

.wrap { width: min(1180px, 92%); margin: 0 auto; }

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 14px 0;
  background: transparent;
  border: none;
  pointer-events: none;
  transition: padding .25s ease;
}
.topbar.is-scrolled {
  padding: 8px 0;
}
.topbar.is-scrolled .nav-pill {
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 0 0 1px rgba(255, 255, 255, 0.5),
    0 16px 40px rgba(77, 142, 247, 0.16),
    0 6px 20px rgba(15, 23, 42, 0.08);
}
.topbar-inner {
  display: flex;
  justify-content: center;
  pointer-events: auto;
  width: min(1020px, 86%);
  max-width: none;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
.topbar-inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92%;
  height: 72px;
  transform: translate(-50%, -48%);
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, rgba(77, 142, 247, 0.16), transparent 68%);
  filter: blur(10px);
  opacity: 0.5;
  animation: nav-aura 5s ease-in-out infinite;
}
@keyframes nav-aura {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -48%) scale(0.98); }
  50% { opacity: 0.9; transform: translate(-50%, -48%) scale(1.03); }
}
.nav-pill {
  --mx: 50%;
  --my: 0%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 1.6vw, 20px);
  width: 100%;
  max-width: none;
  min-height: 64px;
  padding: 12px 12px 12px 16px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 252, 255, 0.86) 55%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(255, 255, 255, 0.4),
    0 0 0 1px rgba(147, 197, 253, 0.18),
    0 14px 40px rgba(77, 142, 247, 0.16),
    0 6px 18px rgba(15, 23, 42, 0.07);
  transition:
    background .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}
.nav-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(140px 56px at var(--mx) var(--my), rgba(255, 255, 255, 0.7), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, transparent 48%);
}
.nav-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(147, 197, 253, 0.22) 42%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(77, 142, 247, 0.18) 58%,
    transparent 100%
  );
  background-size: 220% 100%;
  background-position: 200% 0;
  animation: nav-edge-shine 5.5s ease-in-out infinite;
  opacity: 0.35;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 0 32px rgba(147, 197, 253, 0.1);
}
@keyframes nav-edge-shine {
  0%, 72%, 100% { background-position: 200% 0; opacity: 0.35; }
  38% { background-position: -30% 0; opacity: 0.75; }
}
.topbar:not(.is-scrolled) .nav-pill {
  animation: nav-float-glow 4.5s ease-in-out infinite;
}
@keyframes nav-float-glow {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.95),
      inset 0 -1px 0 rgba(255, 255, 255, 0.4),
      0 0 0 1px rgba(147, 197, 253, 0.16),
      0 12px 36px rgba(77, 142, 247, 0.14),
      0 6px 18px rgba(15, 23, 42, 0.06);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.95),
      inset 0 -1px 0 rgba(255, 255, 255, 0.4),
      0 0 0 1px rgba(147, 197, 253, 0.28),
      0 18px 48px rgba(77, 142, 247, 0.22),
      0 8px 22px rgba(15, 23, 42, 0.08);
  }
}
.topbar.is-scrolled .topbar-inner::before {
  opacity: 0.5;
  animation: none;
}
@media (prefers-reduced-motion: reduce) {
  .topbar-inner::before,
  .nav-pill,
  .nav-pill::after { animation: none !important; }
  .nav-pill { transform: none !important; }
}
.brand {
  flex-shrink: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  transition: opacity .2s ease;
  align-self: center;
}
.brand:hover {
  opacity: 0.88;
}
.brand-logo {
  width: 142px;
  height: 46px;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  display: grid;
  place-items: center;
  align-self: center;
  transform: translateY(4px);
  transition: box-shadow .25s ease, transform .25s ease;
}
.brand:hover .brand-logo {
  transform: translateY(4px) scale(1.04);
  box-shadow: none;
}
.brand-logo-txt {
  color: #334155;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}
.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  display: block;
  object-position: center center;
}
.brand-logo > img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.brand-logo-img:not([src=""]) + .brand-logo-txt {
  display: none;
}
.brand-name {
  display: none;
}
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 6px;
  min-width: 0;
  position: relative;
  z-index: 1;
  padding: 0 6px;
}
.nav-menu a {
  color: #475569;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 11px clamp(10px, 1.4vw, 16px);
  border-radius: 999px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition:
    color .22s ease,
    background .22s ease,
    box-shadow .22s ease,
    transform .22s ease;
}
.nav-menu a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  transform: skewX(-18deg);
  transition: left .45s ease;
  pointer-events: none;
}
.nav-menu a:hover::before {
  left: 130%;
}
.nav-menu a:hover {
  color: #0f172a;
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 0 1px rgba(147, 197, 253, 0.2),
    0 4px 14px rgba(77, 142, 247, 0.12);
  transform: translateY(-1px);
}
.nav-menu a.is-active {
  color: #0f172a;
  font-weight: 600;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 255, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 0 0 1px rgba(77, 142, 247, 0.15),
    0 6px 18px rgba(77, 142, 247, 0.18);
}
.nav-login {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 252, 255, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 14px rgba(77, 142, 247, 0.08);
  transition:
    background .22s ease,
    color .22s ease,
    box-shadow .22s ease,
    transform .22s ease;
}
.nav-login:hover {
  color: #1d4ed8;
  border-color: rgba(147, 197, 253, 0.85);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    0 0 0 3px rgba(147, 197, 253, 0.22),
    0 8px 22px rgba(77, 142, 247, 0.22);
  transform: translateY(-1px);
}
.nav-login:hover .nav-login-icon {
  transform: translateX(2px);
}
.nav-login-icon {
  opacity: 1;
  transition: transform .22s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  --hero-mx: 50%;
  --hero-my: 42%;
}
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  z-index: 0;
  filter: saturate(1.04) contrast(1.06);
  transform: translateZ(0);
}
.bg-blue-tint {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(460px 300px at var(--hero-mx) var(--hero-my), rgba(255,255,255,.3), rgba(96,165,250,.16) 34%, transparent 70%),
    radial-gradient(ellipse 75% 55% at 72% 38%, rgba(96, 165, 250, 0.22), transparent 58%),
    radial-gradient(ellipse 65% 50% at 18% 32%, rgba(129, 140, 248, 0.16), transparent 52%),
    linear-gradient(180deg, rgba(239, 246, 255, 0.08) 0%, rgba(219, 234, 254, 0.14) 55%, rgba(240, 248, 255, 0.22) 100%);
  opacity: 0.58;
}
.bg-mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 50% 22%, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, rgba(248, 252, 255, 0.06) 0%, rgba(224, 242, 254, 0.05) 50%, rgba(240, 248, 255, 0.18) 100%),
    linear-gradient(to bottom, transparent 72%, rgba(245, 248, 252, 0.88) 100%);
  z-index: 1;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .bg-video { filter: none; }
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: min(1180px, 92%);
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(108px, 14vh, 158px) 24px 64px;
  text-align: center;
  box-sizing: border-box;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px 4px 4px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid rgba(197, 203, 212, 0.86);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: #374151;
  transition: transform .2s ease, box-shadow .2s ease;
}
.badge strong {
  padding: 5px 12px;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-size: 12px;
  font-weight: 700;
}
.hero-content h1 {
  width: min(700px, 100%);
  margin: 18px 0 0;
  font-family: "HarmonyOS Sans SC", "PingFang SC", "Source Han Sans CN", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(28px, 2.9vw, 44px);
  line-height: 1.26;
  letter-spacing: 0;
  font-style: normal;
  font-weight: 760;
  color: transparent;
  background:
    linear-gradient(115deg, #08111f 0%, #173b76 48%, #2563eb 58%, #10243f 100%);
  background-size: 140% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  text-wrap: balance;
  text-shadow: 0 8px 20px rgba(15, 23, 42, .1);
  animation: hero-title-polish 10s ease-in-out infinite;
}
.hero-title span,
.hero-title strong {
  display: block;
}
.hero-title strong {
  font-weight: inherit;
}
.hero-content .sub {
  margin: 16px auto 0;
  max-width: 700px;
  color: rgba(30, 41, 59, .86);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.72;
  font-weight: 500;
  letter-spacing: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
}

@keyframes hero-title-polish {
  0%, 100% { background-position: 0% 50%; filter: drop-shadow(0 10px 24px rgba(37, 99, 235, .08)); }
  50% { background-position: 100% 50%; filter: drop-shadow(0 16px 30px rgba(37, 99, 235, .16)); }
}

.hero-content .cta-row {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta {
  text-decoration: none;
  min-width: 138px;
  --mx: 50%;
  --my: 50%;
  text-align: center;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1d4ed8;
  border: 1px solid rgba(147, 197, 253, 0.7);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(239, 246, 255, 0.85) 55%, rgba(219, 234, 254, 0.9) 100%);
  -webkit-backdrop-filter: blur(20px) saturate(220%);
  backdrop-filter: blur(20px) saturate(220%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(147, 197, 253, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 10px 26px rgba(59, 130, 246, 0.25),
    0 22px 60px rgba(77, 142, 247, 0.3);
  transition:
    transform .25s cubic-bezier(.22, 1, .36, 1),
    box-shadow .25s ease,
    background .25s ease,
    border-color .25s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(180px 80px at var(--mx) var(--my), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 50%);
  opacity: 0.85;
  transition: opacity .25s ease;
  z-index: 0;
}
.cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  pointer-events: none;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .85), transparent);
  transition: left .65s ease;
  z-index: 0;
}
.cta > * { position: relative; z-index: 1; }
.cta:hover {
  transform: translateY(-2px);
  color: #1e40af;
  border-color: rgba(96, 165, 250, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(219, 234, 254, 0.9) 55%, rgba(191, 219, 254, 0.95) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(96, 165, 250, 0.75),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55),
    0 14px 34px rgba(59, 130, 246, 0.38),
    0 28px 70px rgba(77, 142, 247, 0.42);
}
.cta:hover::after {
  left: 140%;
}
.cta:active {
  transform: translateY(0) scale(0.985);
}
.cta.primary {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(15, 41, 95, 0.35);
  border-color: rgba(255, 255, 255, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.02) 55%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(29, 78, 216, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.4),
    0 12px 28px rgba(37, 99, 235, 0.5),
    0 26px 64px rgba(59, 130, 246, 0.45);
}
.cta.primary:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.75);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.04) 55%, rgba(255, 255, 255, 0.28) 100%),
    linear-gradient(135deg, #7cb5ff 0%, #4d8ef7 50%, #1d4ed8 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(29, 78, 216, 0.65),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    0 16px 36px rgba(37, 99, 235, 0.62),
    0 32px 80px rgba(59, 130, 246, 0.55);
}
.cta.ghost {
  color: #1d4ed8;
}

.feature-cards {
  margin-top: 64px;
  width: 100%;
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.feature-cards article {
  text-align: left;
  --mx: 50%;
  --my: 50%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: #fff;
  border-radius: 18px;
  padding: 18px 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(211, 215, 223, 0.5),
    0 12px 28px rgba(15, 23, 42, 0.08);
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  transition:
    transform .28s cubic-bezier(.22, 1, .36, 1),
    box-shadow .28s ease,
    border-color .28s ease,
    background .28s ease;
}
.feature-cards article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.85;
  transition: opacity .28s ease;
  background: radial-gradient(180px 100px at var(--mx) var(--my), rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 70%);
}
.feature-cards article::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  pointer-events: none;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left .55s ease;
}
.feature-cards article:hover,
.feature-cards article:focus-visible {
  border-color: rgba(147, 197, 253, 0.75);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 248, 255, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 22px 44px rgba(77, 142, 247, 0.2),
    0 10px 24px rgba(15, 23, 42, 0.1);
}
.feature-cards article:hover::before,
.feature-cards article:focus-visible::before {
  opacity: 1;
}
.feature-cards article:hover::after,
.feature-cards article:focus-visible::after {
  left: 130%;
}
.feature-cards article h3,
.feature-cards article p {
  position: relative;
  z-index: 1;
  transition: color .25s ease, transform .25s ease;
}
.feature-cards article:hover h3,
.feature-cards article:focus-visible h3 {
  color: #4d8ef7;
  transform: translateX(2px);
}
.feature-cards article:hover p,
.feature-cards article:focus-visible p {
  color: rgba(30, 41, 59, 0.88);
}
.feature-cards h3 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  font-style: italic;
  font-weight: 600;
  color: #0b1220;
}
.feature-cards p {
  margin: 0;
  color: #475569;
  line-height: 1.45;
  font-size: 12px;
}
.feature-cards article:active {
  transform: translateY(-2px) scale(0.99);
}
@media (prefers-reduced-motion: reduce) {
  .feature-cards article,
  .feature-cards article::before,
  .feature-cards article::after,
  .feature-cards article h3,
  .feature-cards article p {
    transition: none;
  }
  .feature-cards article:hover::after,
  .feature-cards article:focus-visible::after {
    left: -120%;
  }
}


/* ????????? + ???+ ?????? App/??/?? CTA??*/
.section {
  padding: 56px 0;
  background: #f5f8fc;
}

.operation-snapshot {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #f4f7fc;
  color: #10243f;
}

.operation-top {
  position: relative;
  padding: 46px 0 66px;
  background:
    repeating-radial-gradient(ellipse at 20% 100%, rgba(148, 163, 184, .2) 0 2px, transparent 2px 9px),
    repeating-radial-gradient(ellipse at 80% 100%, rgba(148, 163, 184, .18) 0 2px, transparent 2px 9px),
    linear-gradient(180deg, #f9fbff 0%, #f2f6fc 100%);
}

.operation-top::before,
.operation-top::after {
  content: "";
  position: absolute;
  bottom: -28px;
  width: 520px;
  height: 160px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 50%;
  opacity: .46;
  pointer-events: none;
}

.operation-top::before {
  left: -120px;
}

.operation-top::after {
  right: -120px;
}

.operation-intro {
  position: relative;
  z-index: 1;
  text-align: center;
}

.operation-intro h2 {
  margin: 0;
  color: #334155;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.28;
  font-weight: 850;
  letter-spacing: 0;
}

.operation-intro p {
  margin: 14px 0 0;
  color: #7a8798;
  font-size: clamp(16px, 1.55vw, 23px);
  line-height: 1.5;
  font-weight: 600;
}

.operation-band {
  position: relative;
  margin-top: -1px;
  background: linear-gradient(90deg, #2f6df5 0%, #3b78ff 48%, #3474f7 100%);
  box-shadow: 0 18px 38px rgba(47, 109, 245, .18);
}

.operation-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(380px 100px at 18% 50%, rgba(255,255,255,.18), transparent 70%),
    radial-gradient(320px 110px at 82% 50%, rgba(255,255,255,.16), transparent 70%);
  pointer-events: none;
}

.operation-band-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  min-height: 102px;
}

.operation-band-grid article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  color: #fff;
}

.operation-band-grid strong,
.operation-band-grid em {
  grid-column: 2;
  display: block;
}

.operation-band-grid strong {
  align-self: end;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 850;
}

.operation-band-grid em {
  align-self: start;
  margin-top: 8px;
  color: rgba(219, 234, 254, .86);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
}

.operation-icon {
  grid-row: 1 / span 2;
  position: relative;
  width: 48px;
  height: 48px;
  display: block;
}

.operation-icon--orbit {
  border: 3px solid rgba(255,255,255,.82);
  border-radius: 50%;
}

.operation-icon--orbit::before,
.operation-icon--orbit::after {
  content: "";
  position: absolute;
  inset: 9px -8px;
  border: 2px solid rgba(255,255,255,.68);
  border-radius: 50%;
  transform: rotate(36deg);
}

.operation-icon--orbit::after {
  inset: 20px 4px;
  background: #fff;
  border: 0;
  transform: none;
}

.operation-icon--box::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 4px;
  height: 28px;
  border: 3px solid rgba(255,255,255,.9);
  border-radius: 4px;
  background: rgba(255,255,255,.16);
  box-shadow: inset 0 8px 0 rgba(255,255,255,.22);
}

.operation-icon--box::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 2px;
  height: 18px;
  border: 3px solid rgba(255,255,255,.82);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
}

.operation-icon--chat::before,
.operation-icon--chat::after {
  content: "";
  position: absolute;
  border: 3px solid rgba(255,255,255,.86);
  background: rgba(255,255,255,.12);
}

.operation-icon--chat::before {
  left: 1px;
  top: 4px;
  width: 30px;
  height: 24px;
  border-radius: 4px;
  box-shadow: inset 0 7px 0 rgba(255,255,255,.2);
}

.operation-icon--chat::after {
  right: 0;
  bottom: 5px;
  width: 28px;
  height: 22px;
  border-radius: 4px;
}

.operation-data {
  display: grid;
  grid-template-columns: 1.15fr .92fr .92fr;
  align-items: center;
  min-height: 144px;
  gap: 24px;
  text-align: center;
}

.operation-data article {
  min-width: 0;
}

.operation-data strong {
  color: #3f4652;
  font-size: clamp(34px, 3.8vw, 48px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: .01em;
  font-variant-numeric: tabular-nums;
  transition: color .25s ease, transform .25s ease;
}

.operation-data strong.is-counting {
  color: #2563eb;
  transform: translateY(-2px);
}

.operation-snapshot .operation-intro {
  animation: operationRiseIn .62s cubic-bezier(.22, 1, .36, 1) .04s both;
}

.operation-snapshot .operation-band-grid article {
  animation: operationRiseIn .6s cubic-bezier(.22, 1, .36, 1) .12s both;
}

.operation-snapshot .operation-band-grid article:nth-child(2) {
  animation-delay: .2s;
}

.operation-snapshot .operation-band-grid article:nth-child(3) {
  animation-delay: .28s;
}

.operation-snapshot .operation-data article {
  animation: operationNumberIn .64s cubic-bezier(.22, 1, .36, 1) .32s both;
}

.operation-snapshot .operation-data article:nth-child(2) {
  animation-delay: .42s;
}

.operation-snapshot .operation-data article:nth-child(3) {
  animation-delay: .52s;
}

@keyframes operationRiseIn {
  from { opacity: 0; transform: translateY(24px); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes operationNumberIn {
  from { opacity: 0; transform: translateY(18px) scale(.96); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.operation-data small {
  margin-left: 6px;
  color: #7a8798;
  font-size: 15px;
  font-weight: 700;
}

.operation-digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.operation-digits span {
  display: inline-grid;
  place-items: center;
  min-width: 56px;
  height: 70px;
  padding: 0 10px;
  border-radius: 6px;
  background: #f4f5f7;
  color: #3f4652;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1;
  font-weight: 850;
  box-shadow: inset 0 1px 0 #fff, 0 8px 18px rgba(15, 23, 42, .04);
}

.operation-digits small {
  margin: 0 8px 0 0;
}

@media (max-width: 980px) {
  .operation-band-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 0;
  }
  .operation-band-grid article {
    width: min(420px, 100%);
    margin: 0 auto;
  }
  .operation-data {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 0 34px;
  }
}

@media (max-width: 640px) {
  .operation-top {
    padding: 38px 0 48px;
  }
  .operation-digits span {
    min-width: 42px;
    height: 56px;
    font-size: 30px;
  }
  .operation-band-grid strong {
    font-size: 21px;
  }
}

/* Final override: keep hero title visible and cycling. */
.hero-title.hero-title-slider {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  filter: none !important;
}

.hero-title.hero-title-slider .hero-title-slide {
  opacity: 0;
  transform: translateY(24px) scale(.96);
  filter: blur(8px);
  animation-name: heroTitleAutoPlay;
  animation-duration: 9s;
  animation-timing-function: cubic-bezier(.22, 1, .36, 1);
  animation-iteration-count: infinite;
}

.hero-title.hero-title-slider .hero-title-slide:nth-child(1) { animation-delay: 0s; }
.hero-title.hero-title-slider .hero-title-slide:nth-child(2) { animation-delay: 3s; }
.hero-title.hero-title-slider .hero-title-slide:nth-child(3) { animation-delay: 6s; }

/* Last override: restore merchant button glass style and readable text. */
.nav-pill .nav-login,
.nav-pill .nav-login:visited {
  color: #1d4ed8 !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 252, 255, 0.68)) !important;
  border-color: rgba(191, 219, 254, 0.9) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 0 3px rgba(147, 197, 253, 0.18),
    0 8px 22px rgba(77, 142, 247, 0.16) !important;
}

.nav-pill .nav-login svg,
.nav-pill .nav-login span {
  color: inherit !important;
  opacity: 1 !important;
}

.nav-pill .nav-login:hover {
  color: #1e40af !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.88)) !important;
  border-color: rgba(147, 197, 253, 0.95) !important;
}

/* Last override: restore merchant button glass style and readable text. */
.nav-pill .nav-login,
.nav-pill .nav-login:visited {
  color: #1d4ed8 !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 252, 255, 0.68)) !important;
  border-color: rgba(191, 219, 254, 0.9) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 0 3px rgba(147, 197, 253, 0.18),
    0 8px 22px rgba(77, 142, 247, 0.16) !important;
}

.nav-pill .nav-login svg,
.nav-pill .nav-login span {
  color: inherit !important;
  opacity: 1 !important;
}

.nav-pill .nav-login:hover {
  color: #1e40af !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.88)) !important;
  border-color: rgba(147, 197, 253, 0.95) !important;
}

.hero-title.hero-title-slider .hero-title-slide > i,
.hero-title.hero-title-slider .hero-title-slide > em {
  position: relative;
  overflow: hidden;
}

.hero-title.hero-title-slider .hero-title-slide > i::after,
.hero-title.hero-title-slider .hero-title-slide > em::before {
  content: "";
  position: absolute;
  top: -18%;
  bottom: -18%;
  width: 34%;
  left: -45%;
  pointer-events: none;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.18) 24%, rgba(255,255,255,.82) 50%, rgba(147,197,253,.24) 72%, transparent 100%);
  mix-blend-mode: screen;
  animation: heroTextSweep 3s ease-in-out infinite;
}

.hero-title.hero-title-slider .hero-title-slide > em::before {
  width: 42%;
  animation-delay: .16s;
}

@keyframes heroTextSweep {
  0%, 28% {
    left: -48%;
    opacity: 0;
  }
  38% {
    opacity: .95;
  }
  62% {
    left: 112%;
    opacity: 0;
  }
  100% {
    left: 112%;
    opacity: 0;
  }
}

/* Final pass: operation snapshot follows the KYS-like blue strip layout. */
.operation-snapshot {
  display: block !important;
  padding: 0 !important;
  --op-mx: 50%;
  --op-my: 28%;
  --op-shift-x: 0px;
  --op-shift-y: 0px;
  position: relative !important;
  isolation: isolate !important;
  background:
    radial-gradient(520px 260px at var(--op-mx) var(--op-my), rgba(59, 130, 246, .18), transparent 66%),
    linear-gradient(180deg, #f7fbff 0%, #f1f6fe 52%, #edf4ff 100%) !important;
  }

.operation-snapshot::before,
.operation-snapshot::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.operation-snapshot::before {
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.5) 48%, transparent 56%),
    radial-gradient(circle at 18% 24%, rgba(37, 99, 235, .12) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 20%, rgba(59, 130, 246, .12) 0 2px, transparent 3px);
  background-size: 220% 100%, 86px 86px, 104px 104px;
  background-position: 120% 0, 0 0, 0 0;
  opacity: .64;
  transform: translate3d(calc(var(--op-shift-x) * .55), calc(var(--op-shift-y) * .35), 0);
  animation: operationSoftSweep 9s ease-in-out infinite;
}

.operation-snapshot::after {
  background:
    linear-gradient(90deg, rgba(37,99,235,.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(37,99,235,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 82%);
  opacity: .45;
  transform: translate3d(calc(var(--op-shift-x) * -0.28), calc(var(--op-shift-y) * -0.18), 0);
}

.operation-snapshot .operation-top {
  padding: 46px 0 62px !important;
  text-align: center !important;
  overflow: hidden !important;
  background:
    radial-gradient(420px 210px at var(--op-mx) var(--op-my), rgba(37, 99, 235, .15), transparent 70%),
    repeating-radial-gradient(ellipse at calc(20% + var(--op-shift-x)) calc(100% + var(--op-shift-y)), rgba(148, 163, 184, .2) 0 2px, transparent 2px 9px),
    repeating-radial-gradient(ellipse at calc(80% - var(--op-shift-x)) calc(100% + var(--op-shift-y)), rgba(148, 163, 184, .18) 0 2px, transparent 2px 9px),
    linear-gradient(180deg, rgba(249,251,255,.96) 0%, rgba(242,246,252,.92) 100%) !important;
}

.operation-snapshot .operation-intro h2 {
  text-align: center !important;
}

.operation-snapshot .operation-intro p {
  text-align: center !important;
}

.operation-snapshot .operation-band {
  display: block !important;
  width: 100% !important;
  min-height: 102px !important;
  overflow: hidden !important;
  background:
    radial-gradient(460px 150px at var(--op-mx) 50%, rgba(255,255,255,.28), transparent 68%),
    linear-gradient(100deg, #2563eb 0%, #3b82f6 48%, #1d4ed8 100%) !important;
}

.operation-snapshot .operation-band::after {
  content: "";
  position: absolute;
  inset: -30% -10%;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 18%, rgba(255,255,255,.18) 44%, rgba(255,255,255,.32) 50%, rgba(255,255,255,.14) 56%, transparent 82%);
  transform: translate3d(calc(var(--op-shift-x) * .65), calc(var(--op-shift-y) * .25), 0);
  opacity: .56;
  mix-blend-mode: screen;
}

.operation-snapshot .operation-band-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  min-height: 102px !important;
  align-items: center !important;
}

.operation-snapshot .operation-band-grid article {
  display: grid !important;
  grid-template-columns: 54px minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  align-items: center !important;
  text-align: left !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 20px !important;
  transition: transform .26s ease, background .26s ease, box-shadow .26s ease !important;
}

.operation-snapshot .operation-band-grid article::before {
  content: "";
  position: absolute;
  inset: 6px 18px;
  border-radius: 18px;
  pointer-events: none;
  background:
    radial-gradient(150px 72px at var(--card-mx, 50%) var(--card-my, 50%), rgba(255,255,255,.26), transparent 72%);
  opacity: 0;
  transform: scale(.96);
  transition: opacity .26s ease, transform .26s ease;
}

.operation-snapshot .operation-band-grid article:hover {
  transform: translateY(-4px) !important;
  background: rgba(255,255,255,.08) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 0 14px 28px rgba(15, 23, 42, .08) !important;
}

.operation-snapshot .operation-band-grid article:hover::before {
  opacity: 1;
  transform: scale(1);
}

.operation-snapshot .operation-icon {
  display: block !important;
  transition: transform .28s ease, filter .28s ease !important;
  animation: operationIconFloat 4.8s ease-in-out infinite;
}

.operation-snapshot .operation-band-grid article:hover .operation-icon {
  transform: translateY(-2px) scale(1.08) !important;
  filter: drop-shadow(0 10px 18px rgba(255,255,255,.18));
}

.operation-snapshot .operation-band-grid strong,
.operation-snapshot .operation-band-grid em {
  display: block !important;
  grid-column: 2 !important;
  text-align: left !important;
}

.operation-snapshot .operation-data {
  display: grid !important;
  grid-template-columns: 1.15fr .92fr .92fr !important;
  align-items: center !important;
  min-height: 144px !important;
  text-align: center !important;
}

.operation-snapshot .operation-data article {
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease !important;
}

.operation-snapshot .operation-data article::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(220px 120px at var(--card-mx, 50%) var(--card-my, 50%), rgba(59, 130, 246, .18), transparent 70%),
    linear-gradient(135deg, rgba(255,255,255,.52), transparent 46%, rgba(147,197,253,.12));
  opacity: 0;
  transition: opacity .28s ease;
}

.operation-snapshot .operation-data article:hover {
  transform: translateY(-5px) !important;
  background: rgba(255,255,255,.58) !important;
  box-shadow: 0 18px 44px rgba(37, 99, 235, .13), inset 0 0 0 1px rgba(147,197,253,.32) !important;
}

.operation-snapshot .operation-data article:hover::before {
  opacity: 1;
}

.operation-snapshot .operation-data article > * {
  position: relative;
  z-index: 1;
}

.operation-snapshot .operation-digits {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
}

.operation-snapshot .operation-digits span {
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease !important;
}

.operation-snapshot .operation-years:hover .operation-digits span {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(37, 99, 235, .12);
}

.operation-snapshot .operation-years:hover .operation-digits span:nth-child(1) { transition-delay: 0s; }
.operation-snapshot .operation-years:hover .operation-digits span:nth-child(3) { transition-delay: .03s; }
.operation-snapshot .operation-years:hover .operation-digits span:nth-child(5) { transition-delay: .06s; }
.operation-snapshot .operation-years:hover .operation-digits span:nth-child(7) { transition-delay: .09s; }

.operation-snapshot.is-tracking .operation-intro h2,
.operation-snapshot.is-tracking .operation-data strong {
  text-shadow: 0 14px 34px rgba(37, 99, 235, .13);
}

@keyframes operationSoftSweep {
  0%, 100% {
    background-position: 130% 0, 0 0, 0 0;
  }
  52% {
    background-position: -40% 0, 18px 10px, -16px 8px;
  }
}

@keyframes operationIconFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .operation-snapshot::before {
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .operation-snapshot .operation-band-grid,
  .operation-snapshot .operation-data {
    grid-template-columns: 1fr !important;
  }
  .operation-snapshot .operation-band-grid {
    gap: 18px !important;
    padding: 22px 0 !important;
  }
  .operation-snapshot .operation-band-grid article {
    width: min(420px, 100%) !important;
    margin: 0 auto !important;
  }
  .operation-snapshot .operation-data {
    gap: 18px !important;
    padding: 28px 0 34px !important;
  }
  .operation-snapshot .operation-digits {
    flex-wrap: wrap !important;
  }
}

/* Final hero title playback: CSS-only so it cannot be blocked by JS errors. */
.hero-title-slider .hero-title-slide {
  opacity: 0;
  transform: translateY(24px) scale(.96);
  filter: blur(8px);
  animation: heroTitleAutoPlay 9s cubic-bezier(.22, 1, .36, 1) infinite;
}

.hero-title-slider .hero-title-slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-title-slider .hero-title-slide:nth-child(2) {
  animation-delay: 3s;
}

.hero-title-slider .hero-title-slide:nth-child(3) {
  animation-delay: 6s;
}

.hero-title-slider .hero-title-slide > i,
.hero-title-slider .hero-title-slide > em {
  animation: none !important;
}

@keyframes heroTitleAutoPlay {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(.96);
    filter: blur(8px);
  }
  7%, 29% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  36%, 100% {
    opacity: 0;
    transform: translateY(-18px) scale(1.02);
    filter: blur(8px);
  }
}
.section.flow-block,
.section.buyer-block,
.section.help,
.section.trust-block {
  background: #fff;
}
.section.flow-block {
  background:
    radial-gradient(120% 80% at 50% -20%, rgba(147, 197, 253, 0.2), transparent 68%),
    #f5f8fc;
  padding: 50px 0 58px;
}
.flow-block .kf-title {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 52%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.flow-block .kf-sub {
  max-width: 760px;
  color: #475569;
}
.panel-card {
  margin-top: 8px;
  padding: 28px 32px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8eef7;
  box-shadow: 0 8px 32px rgba(77, 142, 247, 0.08);
}
.panel-card--flow {
  padding: 26px 24px;
  border-radius: 18px;
  border: 1px solid rgba(147, 197, 253, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(239, 246, 255, 0.84) 58%, rgba(219, 234, 254, 0.9) 100%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  backdrop-filter: blur(14px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 26px rgba(59, 130, 246, 0.14);
}
.panel-card--grid {
  display: grid;
  gap: 20px;
}
.panel-card--grid.ability-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.panel-card--grid.buyer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 24px;
}
.panel-card--grid.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 24px;
}

.kf-title {
  margin: 0 0 12px;
  text-align: center;
  font-family: "PingFang SC", "HarmonyOS Sans SC", "Source Han Sans CN", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: #0b1220;
}
.features-head .kf-title {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  letter-spacing: 0.015em;
}
.kf-sub {
  margin: 0 auto 24px;
  text-align: center;
  max-width: 640px;
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}
.sec-label {
  display: block;
  text-align: center;
  margin: 0 0 8px;
  font-size: 13px;
  color: #4d8ef7;
  font-weight: 500;
}

.kf-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0;
}
.kf-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #4d8ef7;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  display: grid;
  place-items: center;
}
.kf-feature-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  color: #333;
}
.kf-feature-list p {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.tag-strip {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f0f4fa;
  text-align: center;
}
.tag-strip > p {
  margin: 0 0 12px;
  font-size: 15px;
  color: #444;
}
.tag-strip-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.tag-strip-items span {
  padding: 6px 12px;
  border-radius: 6px;
  background: #f5f8fc;
  color: #555;
  font-size: 13px;
  border: 1px solid #e8eef7;
}

/* ??????????? ?*/
.section.features {
  padding: 56px 0 64px;
  background: #f5f8fc;
}
.features-wrap {
  width: min(1180px, 92%);
}
.features-head {
  text-align: center;
  margin-bottom: 28px;
}
.features-flow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  font-size: 14px;
  color: #4b5563;
}
.features-flow .flow-arrow {
  color: #4d8ef7;
  font-weight: 600;
}
.features-flow-note {
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(77, 142, 247, 0.1);
  color: #4d8ef7;
  font-style: normal;
  font-size: 12px;
}
.tag-strip--features {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(147, 197, 253, 0.4);
}
.tag-strip--features > p {
  color: #1e3a8a;
  font-size: 14px;
  font-weight: 600;
}
.tag-strip--features .tag-strip-items span {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(147, 197, 253, 0.55);
  color: #1d4ed8;
  font-weight: 600;
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  backdrop-filter: blur(10px) saturate(180%);
}
.panel-card--features {
  margin-top: 0;
  padding: 36px 36px 32px;
  border-radius: 22px;
  border: 1px solid rgba(147, 197, 253, 0.6);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(239, 246, 255, 0.78) 55%, rgba(219, 234, 254, 0.85) 100%);
  -webkit-backdrop-filter: blur(20px) saturate(220%);
  backdrop-filter: blur(20px) saturate(220%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(147, 197, 253, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4),
    0 12px 30px rgba(59, 130, 246, 0.22),
    0 26px 64px rgba(77, 142, 247, 0.28);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.panel-card--features::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(255, 255, 255, 0.7), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 40%);
}
.panel-card--features > * { position: relative; z-index: 1; }
.panel-card--features .kf-feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.panel-card--features .feature-item {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 14px;
  padding: 22px 20px;
  border: 1px solid rgba(147, 197, 253, 0.5);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(239, 246, 255, 0.65) 100%);
  -webkit-backdrop-filter: blur(14px) saturate(200%);
  backdrop-filter: blur(14px) saturate(200%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    0 6px 18px rgba(59, 130, 246, 0.15);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.panel-card--features .feature-item:hover {
  transform: translateY(-3px);
  border-color: rgba(96, 165, 250, 0.85);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(219, 234, 254, 0.85) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.55),
    0 14px 32px rgba(59, 130, 246, 0.32),
    0 26px 56px rgba(77, 142, 247, 0.32);
}
.panel-card--features .kf-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.02) 55%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(29, 78, 216, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 8px 18px rgba(37, 99, 235, 0.4);
}
.panel-card--features .kf-icon svg {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 1px 1px rgba(15, 41, 95, 0.35));
}
.panel-card--features .feature-item > div {
  min-width: 0;
  width: 100%;
}
.panel-card--features .kf-feature-list strong {
  margin-bottom: 6px;
  display: block;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: #1d4ed8;
  letter-spacing: 0.02em;
  font-style: normal;
  text-shadow: none;
  white-space: normal;
}
.panel-card--features .kf-feature-list p {
  margin: 0;
  font-size: 13.5px;
  color: #334155;
  font-weight: 500;
  line-height: 1.6;
  white-space: normal;
}
@media (prefers-reduced-motion: reduce) {
  .panel-card--features .feature-item:hover { transform: none; }
}
@media (max-width: 1080px) {
  .panel-card--features .kf-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}
@media (max-width: 680px) {
  .section.features { padding: 40px 0 48px; }
  .panel-card--features { padding: 22px 18px; border-radius: 18px; }
  .panel-card--features .kf-feature-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .panel-card--features .feature-item {
    padding: 18px 16px;
  }
  .features-flow { font-size: 13px; }
}

.flow-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 14px;
}
.flow-node {
  position: relative;
  text-align: center;
  min-width: 130px;
  padding: 22px 18px 18px;
  border-radius: 16px;
  border: 1px solid rgba(147, 197, 253, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(239, 246, 255, 0.85) 60%, rgba(219, 234, 254, 0.92) 100%);
  -webkit-backdrop-filter: blur(18px) saturate(200%);
  backdrop-filter: blur(18px) saturate(200%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(147, 197, 253, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4),
    0 10px 26px rgba(59, 130, 246, 0.22),
    0 22px 56px rgba(77, 142, 247, 0.22);
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.flow-node::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(80% 50% at 50% 0%, rgba(255, 255, 255, 0.7), transparent 70%);
}
.flow-node:hover {
  transform: translateY(-3px);
  border-color: rgba(96, 165, 250, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(96, 165, 250, 0.7),
    0 16px 36px rgba(59, 130, 246, 0.38),
    0 28px 70px rgba(77, 142, 247, 0.4);
}
.flow-node span {
  position: relative;
  display: block;
  font-family: "Inter", "PingFang SC", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 26px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  line-height: 1;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #1d4ed8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}
.flow-node strong {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1e3a8a;
}
.flow-line {
  width: 48px;
  height: 2px;
  position: relative;
  background: linear-gradient(90deg, rgba(147, 197, 253, 0.1), rgba(96, 165, 250, 0.9), rgba(147, 197, 253, 0.1));
}
.flow-line::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid rgba(96, 165, 250, 0.9);
}
@media (prefers-reduced-motion: reduce) {
  .flow-node:hover { transform: none; }
}

.ability-card {
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}
.panel-card--grid.ability-grid .ability-card:not(:first-child) {
  border-left: 1px solid #f0f4fa;
  padding-left: 20px;
}
.ability-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #333;
}
.ability-tags {
  margin: 0 0 8px;
  font-size: 12px;
  color: #4d8ef7;
}
.ability-card p:last-child {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}

.merchant-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.merchant-points {
  margin: 0;
  padding: 0;
  list-style: none;
}
.merchant-points li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}
.merchant-points strong {
  color: #333;
}
.merchant-panel {
  display: grid;
  gap: 12px;
}
.stat-card {
  padding: 16px 18px;
  border-radius: 10px;
  background: #f5f8fc;
  border: 1px solid #e8eef7;
}
.stat-card span {
  font-size: 13px;
  color: #666;
}
.stat-card strong {
  display: block;
  margin: 6px 0 4px;
  font-size: 26px;
  color: #4d8ef7;
  font-weight: 600;
}
.stat-card small {
  font-size: 12px;
  color: #888;
}

.buyer-card {
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}
.panel-card--grid.buyer-grid .buyer-card:not(:first-child) {
  border-left: 1px solid #f0f4fa;
  padding-left: 16px;
}
.buyer-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #333;
}
.buyer-card p {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}

.why-grid article {
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
}
.panel-card--grid.why-grid article:not(:first-child) {
  border-left: 1px solid #f0f4fa;
  padding-left: 14px;
}
.why-grid h3 {
  margin: 0 0 6px;
  font-size: 15px;
  color: #333;
}
.why-grid p {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}
.why-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
  text-align: center;
}
.why-stats > div {
  padding: 18px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e8eef7;
  box-shadow: 0 4px 16px rgba(77, 142, 247, 0.06);
}
.why-stats strong {
  display: block;
  font-size: 20px;
  color: #4d8ef7;
  margin-bottom: 4px;
}
.why-stats span {
  font-size: 13px;
  color: #666;
}

.trust-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 24px;
  max-width: 720px;
  margin: 0 auto;
}
.trust-links a {
  color: #4d8ef7;
  text-decoration: none;
  font-size: 14px;
}
.trust-links a:hover {
  text-decoration: underline;
}

.app-download {
  background: #f5f8fc;
  padding: 54px 0 62px;
}
.app-download-wrap {
  width: min(1220px, 94%);
}
.app-panel {
  position: relative;
  overflow: hidden;
  --app-mx: 50%;
  --app-my: 50%;
  display: grid;
  grid-template-columns: minmax(360px, 1.15fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(20px, 3vw, 46px);
  padding: clamp(28px, 4vw, 40px);
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, .24), transparent 20%),
    radial-gradient(circle at 76% 15%, rgba(125, 211, 252, .22), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, .14) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px),
    linear-gradient(120deg, #3690e5 0%, #3479ea 45%, #3361f0 100%);
  background-size: auto, auto, 48px 48px, 48px 48px, auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 56px rgba(36, 84, 208, 0.3);
}
.app-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 340px at var(--app-mx) var(--app-my), rgba(255, 255, 255, .52), rgba(147, 197, 253, .24) 34%, transparent 70%),
    radial-gradient(260px 180px at calc(var(--app-mx) + 12%) calc(var(--app-my) - 10%), rgba(34, 211, 238, .28), transparent 72%),
    linear-gradient(115deg, transparent 10%, rgba(255, 255, 255, .26) 32%, transparent 54%),
    linear-gradient(135deg, rgba(255, 255, 255, .08), transparent 38%, rgba(15, 23, 42, .1));
  opacity: .9;
  pointer-events: none;
  transition: opacity .28s ease;
}
.app-panel::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background:
    radial-gradient(220px 220px at var(--app-mx) var(--app-my), rgba(255, 255, 255, .78), transparent 62%),
    linear-gradient(105deg, transparent 0 34%, rgba(255, 255, 255, .34) 46%, transparent 60%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateZ(0);
  transition: opacity .26s ease;
}
.app-panel:hover::before {
  opacity: 1;
}
.app-panel:hover::after {
  opacity: .95;
}
.app-panel-text,
.app-showcase {
  position: relative;
  z-index: 3;
}
.app-visual,
.app-visual-sidebar,
.app-visual-sidebar span,
.app-visual-main,
.cube-shape,
.app-phone-mock,
.app-phone-notch,
.app-phone-avatar,
.app-phone-row { display: none !important; }

/* ?APP ???? ?*/
.app-showcase {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  perspective: 1100px;
}
.app-showcase-glow {
  position: absolute;
  inset: 10% -10% 0 -10%;
  background: radial-gradient(50% 60% at 50% 60%, rgba(125, 188, 255, 0.55), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.phone-frame {
  position: relative;
  width: 260px;
  height: 540px;
  border-radius: 42px;
  padding: 8px;
  background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -2px 4px rgba(0, 0, 0, 0.4),
    0 28px 60px rgba(7, 18, 48, 0.55),
    0 12px 24px rgba(7, 18, 48, 0.3);
  transform-style: preserve-3d;
  transition: transform .26s ease, box-shadow .26s ease;
}
.app-showcase:hover .phone-frame {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -2px 4px rgba(0, 0, 0, 0.38),
    0 42px 90px rgba(7, 18, 48, 0.48),
    0 18px 34px rgba(37, 99, 235, 0.28);
}
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 22px;
  border-radius: 999px;
  background: #0a0f1a;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 60%, #bfdbfe 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 36px 14px 0;
  color: #0b1220;
  pointer-events: auto;
}
.phone-pages {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}
.phone-tab-state {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.phone-page {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(20px) scale(.98);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s cubic-bezier(.22, 1, .36, 1);
}
.phone-page.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
#phoneTabHome:checked ~ .phone-pages .phone-page,
#phoneTabOrders:checked ~ .phone-pages .phone-page,
#phoneTabMessages:checked ~ .phone-pages .phone-page,
#phoneTabMine:checked ~ .phone-pages .phone-page {
  opacity: 0;
  transform: translateX(20px) scale(.98);
  pointer-events: none;
}
#phoneTabHome:checked ~ .phone-pages .phone-page--home,
#phoneTabOrders:checked ~ .phone-pages .phone-page--orders,
#phoneTabMessages:checked ~ .phone-pages .phone-page--messages,
#phoneTabMine:checked ~ .phone-pages .phone-page--mine {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.phone-home-indicator {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  z-index: 3;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #0b1220;
  padding: 0 6px 6px;
}
.phone-status-icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.phone-status-icons i {
  display: inline-block;
  background: #0b1220;
}
.ps-signal {
  width: 14px;
  height: 8px;
  clip-path: polygon(0 100%, 25% 100%, 25% 70%, 50% 70%, 50% 40%, 75% 40%, 75% 15%, 100% 15%, 100% 100%);
}
.ps-wifi {
  width: 12px;
  height: 8px;
  border-radius: 2px;
}
.ps-battery {
  width: 18px;
  height: 9px;
  border-radius: 2px;
  border: 1px solid #0b1220;
  background: linear-gradient(90deg, #0b1220 70%, transparent 70%);
  background-clip: content-box;
  padding: 1px;
  position: relative;
}
.ps-battery::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 5px;
  border-radius: 1px;
  background: #0b1220;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px 12px;
}
.phone-brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 0;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 800;
  color: #2563eb;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.phone-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 0;
}
.phone-brand-logo img[src=""] {
  display: none;
}
.phone-brand-logo img:not([src=""]) + b {
  display: none;
}
.phone-brand-logo b {
  font-size: 16px;
  line-height: 1;
}
.phone-brand-text { flex: 1; min-width: 0; }
.phone-brand-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0b1220;
  letter-spacing: 0.02em;
}
.phone-brand-text em {
  display: block;
  font-style: normal;
  font-size: 10px;
  color: #475569;
  margin-top: 2px;
}
.phone-bell {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #1d4ed8;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
}
.phone-bell svg { width: 16px; height: 16px; }
.phone-bell { animation: phoneBellPulse 2.8s ease-in-out infinite; }
.phone-hero {
  margin: 0 4px 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.05) 100%),
    linear-gradient(135deg, #60a5fa 0%, #2563eb 50%, #1d4ed8 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 10px 22px rgba(37, 99, 235, 0.4);
  position: relative;
  overflow: hidden;
}
.phone-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 100% 0%, rgba(255, 255, 255, 0.35), transparent 60%);
}
.phone-hero-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.04em;
}
.phone-hero-num {
  display: block;
  margin-top: 4px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}
.phone-hero-delta {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.phone-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 0 4px 12px;
}
.phone-stat {
  text-align: center;
  padding: 10px 4px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 4px 10px rgba(59, 130, 246, 0.12);
}
.phone-stat span {
  display: block;
  font-size: 10px;
  color: #475569;
}
.phone-stat strong {
  display: block;
  margin-top: 2px;
  font-size: 16px;
  font-weight: 700;
  color: #1d4ed8;
  font-variant-numeric: tabular-nums;
}
.phone-chart {
  margin: 0 4px;
  padding: 12px 14px 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 6px 14px rgba(59, 130, 246, 0.14);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.phone-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.phone-chart-head strong { font-size: 12px; font-weight: 700; color: #0b1220; }
.phone-chart-head span { font-size: 10px; color: #64748b; }
.phone-chart-svg { width: 100%; height: 80px; flex: 1; }
.phone-tabbar {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 8px -14px 0;
  padding: 8px 0 18px;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(147, 197, 253, 0.4);
}
.phone-tab {
  position: relative;
  z-index: 7;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #94a3b8;
  font-size: 10px;
  font-family: inherit;
  padding: 0;
  min-height: 40px;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto;
  transition: color .2s ease, transform .2s ease;
}
.phone-tab:hover { transform: translateY(-1px); color: #3b82f6; }
.phone-tab svg { width: 18px; height: 18px; }
.phone-tab em {
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.phone-tab.is-active { color: #2563eb; }
#phoneTabHome:checked ~ .phone-tabbar .phone-tab,
#phoneTabOrders:checked ~ .phone-tabbar .phone-tab,
#phoneTabMessages:checked ~ .phone-tabbar .phone-tab,
#phoneTabMine:checked ~ .phone-tabbar .phone-tab {
  color: #94a3b8;
}
#phoneTabHome:checked ~ .phone-tabbar .phone-tab--home,
#phoneTabOrders:checked ~ .phone-tabbar .phone-tab--orders,
#phoneTabMessages:checked ~ .phone-tabbar .phone-tab--messages,
#phoneTabMine:checked ~ .phone-tabbar .phone-tab--mine {
  color: #2563eb;
}
.phone-page-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 10px;
}
.phone-page-title strong {
  font-size: 15px;
  color: #0f172a;
}
.phone-page-title button,
.phone-order-list button,
.phone-mine-card button {
  border: 0;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 10px;
  font-family: inherit;
}
.phone-filter {
  display: grid;
  grid-template-columns: .85fr 1.45fr .58fr;
  gap: 6px;
  margin: 0 4px 8px;
}
.phone-filter span,
.phone-filter em,
.phone-filter b,
.phone-search {
  min-width: 0;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: #64748b;
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 0 9px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.phone-filter b {
  justify-content: center;
  color: #2563eb;
}
.phone-order-list,
.phone-message-list {
  display: grid;
  gap: 8px;
  margin: 0 4px;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
.phone-order-list article {
  position: relative;
  padding: 10px 10px 9px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 8px 18px rgba(59, 130, 246, .12);
}
.phone-order-list strong,
.phone-order-list span {
  display: block;
  max-width: 164px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.phone-order-list strong {
  color: #2563eb;
  font-size: 10px;
}
.phone-order-list div span {
  margin-top: 4px;
  color: #64748b;
  font-size: 9px;
}
.phone-order-list em {
  position: absolute;
  right: 10px;
  top: 26px;
  color: #0f172a;
  font-style: normal;
  font-size: 17px;
  font-weight: 800;
}
.phone-order-list p {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 7px;
  margin: 9px 0 0;
}
.phone-order-list p span {
  color: #7b8798;
  font-size: 8px;
}
.phone-order-list button {
  margin-top: 8px;
  padding: 5px 9px;
}
.phone-search {
  margin: 0 4px 10px;
  width: auto;
  height: 32px;
  border-radius: 10px;
  color: #94a3b8;
}
.phone-message-list li {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .9);
}
.phone-message-list b {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eff6ff;
  color: #2563eb;
  font-size: 13px;
}
.phone-message-list strong,
.phone-message-list span {
  display: block;
  max-width: 112px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.phone-message-list strong {
  font-size: 11px;
  color: #0f172a;
}
.phone-message-list span {
  margin-top: 3px;
  color: #64748b;
  font-size: 9px;
}
.phone-message-list em {
  color: #94a3b8;
  font-size: 8px;
  font-style: normal;
  align-self: start;
}
.phone-message-list i {
  position: absolute;
  right: 8px;
  bottom: 8px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 8px;
  line-height: 16px;
  text-align: center;
  font-style: normal;
}
.phone-mine-card {
  margin: 0 4px 10px;
  padding: 12px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.05)),
    linear-gradient(135deg, #2563eb, #60a5fa);
  color: #fff;
  box-shadow: 0 12px 26px rgba(37, 99, 235, .26);
}
.phone-mine-user {
  display: flex;
  gap: 9px;
  align-items: center;
}
.phone-mine-user > span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.2);
  font-weight: 800;
}
.phone-mine-user strong,
.phone-mine-user em {
  display: block;
}
.phone-mine-user strong { font-size: 13px; }
.phone-mine-user em {
  margin-top: 2px;
  font-size: 9px;
  color: rgba(255,255,255,.78);
  font-style: normal;
}
.phone-mine-balance {
  margin-top: 14px;
}
.phone-mine-balance span,
.phone-mine-balance em {
  display: block;
  font-style: normal;
  color: rgba(255,255,255,.76);
  font-size: 9px;
}
.phone-mine-balance strong {
  display: block;
  margin: 4px 0;
  font-size: 28px;
}
.phone-mine-card button {
  width: 100%;
  margin-top: 12px;
  background: rgba(255,255,255,.92);
  color: #2563eb;
  border-radius: 10px;
  padding: 9px 10px;
}
.phone-app-grid {
  margin: 0 4px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.phone-app-grid span {
  min-height: 54px;
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  display: grid;
  place-items: end center;
  padding: 9px 4px;
  color: #475569;
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.phone-app-grid span::before {
  content: "";
  position: absolute;
  top: 10px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, #60a5fa, #2563eb);
}
@media (max-width: 980px) {
  .app-showcase { min-height: 480px; }
  .phone-frame { transform: scale(0.92); }
}
@media (max-width: 620px) {
  .phone-frame { transform: scale(0.85); }
}
.app-panel-text h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fff;
}
.app-panel-text p {
  margin: 0 0 18px;
  color: rgba(240, 246, 255, 0.94);
  font-size: 18px;
}
.app-store-btns {
  display: grid;
  gap: 12px;
  max-width: 220px;
  margin-bottom: 22px;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
.store-btn.ios {
  background: #ffffff;
  color: #3e76eb;
}
.store-btn.android {
  background: #ffffff;
  color: #2c63dd;
}
.app-qr-block {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.qr-box {
  width: 118px;
  height: 118px;
  border-radius: 10px;
  border: 4px solid rgba(255, 255, 255, 0.95);
  background-color: #fff;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 7px, rgba(0, 0, 0, 0.95) 7px 14px),
    repeating-linear-gradient(90deg, transparent 0 7px, rgba(0, 0, 0, 0.9) 7px 14px);
  background-size: 28px 28px, 28px 28px;
  box-shadow: 0 10px 24px rgba(20, 45, 120, 0.25);
}
.app-qr-meta strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: #fff;
}
.app-qr-meta span {
  font-size: 13px;
  color: rgba(239, 246, 255, 0.92);
}

.help {
  background: #fff;
}
.help-panel .kf-title {
  margin-bottom: 24px;
}
.help-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 28px;
  max-width: 900px;
  margin: 0 auto;
}
.help-links a {
  color: #4d8ef7;
  text-decoration: none;
  font-size: 14px;
}
.help-links a:hover {
  text-decoration: underline;
}

.contact {
  --contact-mx: 50%;
  --contact-my: 50%;
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(520px 180px at var(--contact-mx) var(--contact-my), rgba(255, 255, 255, 0.24), transparent 68%),
    linear-gradient(120deg, #2f6df5 0%, #4d8ef7 42%, #2563eb 72%, #60a5fa 100%);
  background-size: 100% 100%, 180% 180%;
  animation: contact-gradient-flow 9s ease-in-out infinite;
}
.contact::before,
.contact::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.contact::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
  opacity: 0.42;
  animation: contact-grid-drift 16s linear infinite;
}
.contact::after {
  left: -18%;
  right: -18%;
  bottom: -90px;
  height: 180px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.28), transparent 64%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  filter: blur(10px);
  opacity: 0.42;
  animation: contact-wave 6.5s ease-in-out infinite;
}
@keyframes contact-gradient-flow {
  0%, 100% { background-position: 0 0, 0% 50%; }
  50% { background-position: 0 0, 100% 50%; }
}
@keyframes contact-grid-drift {
  from { background-position: 0 0; }
  to { background-position: 46px 46px; }
}
@keyframes contact-wave {
  0%, 100% { transform: translateY(0) scaleX(1); opacity: 0.36; }
  50% { transform: translateY(-14px) scaleX(1.06); opacity: 0.56; }
}
.contact-final {
  position: relative;
  z-index: 1;
  text-align: center;
}
.contact-final.show h2 {
  animation: contact-title-in .7s cubic-bezier(.22, 1, .36, 1) both;
}
.contact-final.show p {
  animation: contact-title-in .7s .08s cubic-bezier(.22, 1, .36, 1) both;
}
.contact-final.show .cta {
  animation: contact-button-in .7s .15s cubic-bezier(.22, 1, .36, 1) both;
}
.contact-final.show .cta:nth-child(2) {
  animation-delay: .23s;
}
@keyframes contact-title-in {
  from { opacity: 0; transform: translateY(18px); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes contact-button-in {
  from { opacity: 0; transform: translateY(16px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.contact-final h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.5vw, 30px);
  font-weight: 600;
  color: #fff;
}
.contact-final p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
}
.contact-final .cta-row {
  justify-content: center;
}
.contact-final .cta {
  min-width: 140px;
  border-radius: 8px;
  padding: 12px 24px;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  text-shadow: none;
}
.contact-final .cta::before,
.contact-final .cta::after {
  display: block;
}
.contact-final .cta:hover {
  transform: translateY(-3px);
  filter: none;
}
.contact-final .cta.primary {
  background:
    radial-gradient(140px 70px at var(--mx) var(--my), rgba(255, 255, 255, 0.92), transparent 72%),
    linear-gradient(180deg, #fff, #edf5ff);
  color: #2f67d8;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 8px 22px rgba(28, 78, 180, 0.2);
}
.contact-final .cta.primary:hover {
  background: #ffffff;
  color: #1d4ed8;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.2);
}
.contact-final .cta.ghost {
  color: #fff;
  background:
    radial-gradient(150px 70px at var(--mx) var(--my), rgba(255, 255, 255, 0.26), transparent 72%),
    rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 8px 22px rgba(15, 23, 42, 0.16);
}
.contact-final .cta.ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
}
@media (prefers-reduced-motion: reduce) {
  .contact,
  .contact::before,
  .contact::after,
  .contact-final.show h2,
  .contact-final.show p,
  .contact-final.show .cta {
    animation: none !important;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #f3f5f9;
  padding: 34px 0 20px;
  border-top: 1px solid #dfe4ec;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 30%, #2563eb 60%, #3b82f6 100%);
  background-size: 220% 100%;
  animation: footer-line-flow 7s linear infinite;
}
.site-footer::after {
  display: none;
}
.footer-shell {
  position: relative;
  z-index: 1;
}
.footer-main {
  display: grid;
  grid-template-columns: 380px 140px minmax(420px, 1fr);
  gap: 24px 34px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid #e3e8f0;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding-left: 28px;
}
.footer-brand-mark {
  width: 156px;
  height: 72px;
  flex: 0 0 156px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.footer-brand-mark img {
  display: block;
  max-width: 156px;
  max-height: 72px;
  object-fit: contain;
}
.site-footer .footer-brand-mark {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.footer-contact-info {
  min-width: 0;
  display: grid;
  gap: 8px;
}
.footer-contact p {
  margin: 0;
  color: #334155;
  font-size: 14px;
  line-height: 1.45;
  white-space: nowrap;
}
.footer-contact strong {
  font-weight: 700;
  color: #0f172a;
}
.footer-contact span {
  color: #475569;
}
.footer-contact a {
  color: #475569;
  text-decoration: none;
  transition: color .2s ease;
}
.footer-contact a:hover {
  color: #2563eb;
}
.footer-social {
  margin-top: 8px;
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #94a3b8;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
.footer-social:hover {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.08);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}
.footer-qrs {
  display: flex;
  gap: 26px;
}
.footer-qr {
  text-align: center;
}
.footer-qr.is-hidden {
  display: none !important;
}
.footer-qr .qr-tile {
  display: block;
  width: 94px;
  height: 94px;
  border: 1px solid #d7dce5;
  border-radius: 4px;
  background-color: #fff;
  background-image: none;
  overflow: hidden;
}
.footer-qr .qr-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.footer-qr .qr-tile.has-image {
  border-color: #d7dce5;
  background-image: none;
}
.footer-qr em {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 13px;
  color: #6b7280;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.footer-col h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #0f172a;
  font-weight: 600;
}
.footer-col a {
  display: block;
  margin: 0 0 10px;
  color: #4b5563;
  text-decoration: none;
  font-size: 14px;
  transition: color .2s ease;
}
.footer-col a:hover {
  color: #2563eb;
}
.footer-col a.is-em {
  color: #2563eb;
  font-weight: 600;
}
.footer-cert-row {
  display: flex;
  justify-content: flex-start;
  padding-top: 12px;
}
.footer-cert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.footer-cert img {
  display: block;
  width: auto;
  height: 52px;
  object-fit: contain;
}
.footer-cert.is-hidden {
  display: none;
}
.footer-copyline {
  margin: 0;
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  padding: 14px 0 8px;
}
.footer-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 8px;
  line-height: 1.7;
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
  animation: footer-text-breathe 3.8s ease-in-out infinite;
}
.footer-meta a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.5);
}
.footer-meta a:hover {
  color: #2563eb;
  border-bottom-color: rgba(37, 99, 235, 0.55);
}

@keyframes footer-line-flow {
  0% { background-position: 0 0; }
  100% { background-position: 220% 0; }
}
@keyframes footer-text-breathe {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .site-footer::before,
  .footer-meta { animation: none; }
  .footer-col a,
  .footer-social { transition: none; }
}

.float-tools {
  position: fixed;
  right: 12px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border-radius: 10px;
  border: 1px solid #d9dde5;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}
.float-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 86px;
  min-height: 86px;
  padding: 14px 6px 12px;
  text-decoration: none;
  color: #0f172a;
  background: #fff;
  overflow: visible;
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.float-item + .float-item {
  border-top: 1px solid #e5e7eb;
}
.float-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #2563eb;
}
.float-icon svg {
  width: 24px;
  height: 24px;
  filter: none;
  transition: transform .22s ease;
}
.float-label {
  font-size: 13px;
  font-weight: 500;
  color: #0f172a;
  letter-spacing: 0;
  line-height: 1;
}
.float-item:hover {
  background: #f8fafc;
  color: #2563eb;
  transform: translateX(-3px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, .14);
}
.float-item:hover .float-icon svg {
  transform: translateY(-1px) scale(1.08);
}
.float-pop {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  opacity: 0;
  pointer-events: none;
  min-width: 128px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #dbe3f1;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
  transition: opacity .2s ease, transform .2s ease;
  text-align: center;
}
.float-pop::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #dbe3f1;
  border-right: 1px solid #dbe3f1;
  background: #fff;
}
.float-pop--phone strong {
  display: block;
  font-size: 12px;
  color: #475569;
  margin-bottom: 6px;
  font-weight: 600;
}
.float-pop--phone em {
  font-style: normal;
  font-size: 16px;
  font-weight: 700;
  color: #1d4ed8;
  letter-spacing: 0.02em;
}
.float-pop--qr {
  min-width: 140px;
  padding: 10px;
}
.qr-tile {
  display: block;
  width: 112px;
  height: 112px;
  margin: 0 auto 8px;
  border-radius: 8px;
  border: 2px solid #eef2ff;
  background-color: #fff;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 6px, rgba(0, 0, 0, 0.92) 6px 12px),
    repeating-linear-gradient(90deg, transparent 0 6px, rgba(0, 0, 0, 0.88) 6px 12px);
  background-size: 24px 24px, 24px 24px;
}
.qr-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.qr-tile.has-image {
  background-image: none;
}
.float-pop--qr em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: #334155;
}
.float-item:hover .float-pop,
.float-item:focus-visible .float-pop {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.mobile-feature-head h2,
.mobile-card-hero h3,
.app-panel-text h2,
.contact-final h2 {
  text-shadow: 0 10px 26px rgba(37, 99, 235, .08);
}

.app-panel-text h2,
.contact-final h2 {
  color: #fff;
}

.mobile-feature-head.show p,
.mobile-feature-head.show h2,
.mobile-card-hero h3.show,
.mobile-card-hero p.show,
.app-panel-text h2.show,
.app-panel-text p.show,
.app-store-btns.show,
.phone-page-title.show,
.phone-hero.show,
.phone-stats.show,
.phone-chart.show,
.phone-order-list article.show,
.phone-message-list li.show,
.phone-mine-card.show,
.phone-app-grid span.show {
  animation: none;
}

.mobile-card-hero p.show,
.app-panel-text p.show {
  animation-delay: .06s;
}

.app-store-btns.show,
.phone-stats.show,
.phone-chart.show,
.phone-order-list article:nth-child(2).show,
.phone-message-list li:nth-child(2).show,
.phone-app-grid span:nth-child(2).show,
.phone-app-grid span:nth-child(5).show {
  animation-delay: .12s;
}

.phone-message-list li:nth-child(3).show,
.phone-app-grid span:nth-child(3).show,
.phone-app-grid span:nth-child(6).show {
  animation-delay: .18s;
}

@keyframes text-shine {
  0%, 62%, 100% { background-position: 120% 0; }
  35% { background-position: -80% 0; }
}

@keyframes text-lift-in {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@media (max-width: 680px) {
  .float-tools { right: 8px; top: 50%; }
  .float-item { width: 74px; min-height: 76px; padding: 12px 4px 10px; }
  .float-icon { width: 26px; height: 26px; }
  .float-icon svg { width: 20px; height: 20px; }
  .float-label { font-size: 12px; }
  .float-pop { display: none; }
}

/* ??????? ?*/
.section.stats-block {
  background: #f5f8fc;
  padding: 64px 0 72px;
}
.stats-head {
  text-align: center;
  margin-bottom: 36px;
}
.stats-head h2 {
  margin: 0 0 12px;
  font-family: "PingFang SC", "HarmonyOS Sans SC", "Source Han Sans CN", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: #0b1220;
  letter-spacing: 0.01em;
  background: linear-gradient(120deg, #0b1220 0%, #1d4ed8 40%, #3b82f6 55%, #0b1220 75%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: stats-title-flow 8s linear infinite;
  transition: transform .28s ease, text-shadow .28s ease;
}
.stats-head h2:hover {
  transform: translateY(-1px);
  text-shadow: 0 6px 20px rgba(59, 130, 246, 0.25);
}
.stats-head-em {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 4px;
}
.stats-head p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  transition: color .25s ease, letter-spacing .25s ease;
}
.stats-head:hover p {
  color: #334155;
  letter-spacing: 0.01em;
}
@keyframes stats-title-flow {
  0% { background-position: 0 50%; }
  100% { background-position: 240% 50%; }
}
.stats-panel {
  margin: 0 auto;
  padding: 30px 24px 36px;
  max-width: 1080px;
  border-radius: 22px;
  border: 1px solid rgba(147, 197, 253, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(239, 246, 255, 0.85) 60%, rgba(219, 234, 254, 0.9) 100%);
  -webkit-backdrop-filter: blur(20px) saturate(220%);
  backdrop-filter: blur(20px) saturate(220%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(147, 197, 253, 0.5),
    0 12px 30px rgba(59, 130, 246, 0.18),
    0 26px 64px rgba(77, 142, 247, 0.22);
  position: relative;
  overflow: hidden;
}
.stats-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(255, 255, 255, 0.7), transparent 70%);
}
.stats-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.stats-col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 12px;
  text-align: left;
  transition: transform .25s ease;
}
.stats-col:hover {
  transform: translateY(-2px);
}
.stats-row--values .stats-col {
  justify-content: center;
  padding: 18px 12px 4px;
}
.stats-row--values .stats-col + .stats-col,
.stats-row .stats-col + .stats-col {
  position: relative;
}
.stats-row .stats-col + .stats-col::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(147, 197, 253, 0.6), transparent);
}
.stats-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.02) 55%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 10px 22px rgba(37, 99, 235, 0.4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.stats-col:hover .stats-icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 0 0 1px rgba(255, 255, 255, 0.32),
    0 14px 28px rgba(37, 99, 235, 0.5);
}
.stats-icon svg {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 1px 1px rgba(15, 41, 95, 0.35));
}
.stats-col-text strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #0b1220;
  letter-spacing: 0.02em;
  transition: color .22s ease, transform .22s ease;
}
.stats-col:hover .stats-col-text strong {
  color: #1d4ed8;
  transform: translateX(2px);
}
.stats-col-text em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 12px;
  color: #64748b;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  transition: color .22s ease;
}
.stats-col:hover .stats-col-text em {
  color: #3b82f6;
}
.stats-clock {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.clock-cell {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.clock-cell b {
  font-family: "Inter", "PingFang SC", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-width: 0.7em;
  text-align: center;
  transition: transform .25s ease, filter .25s ease;
}
.clock-cell i {
  font-style: normal;
  font-size: 14px;
  color: #475569;
  font-weight: 600;
}
.stats-number {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.stats-number b {
  font-family: "Inter", "PingFang SC", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
  transition: transform .25s ease, filter .25s ease;
}
.stats-col:hover .clock-cell b,
.stats-col:hover .stats-number b {
  transform: translateY(-1px) scale(1.04);
  filter: drop-shadow(0 6px 16px rgba(59, 130, 246, 0.28));
}
.stats-number i {
  font-style: normal;
  font-size: 14px;
  color: #475569;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .stats-head h2 { animation: none; }
  .stats-col,
  .stats-icon,
  .stats-col-text strong,
  .stats-col-text em,
  .clock-cell b,
  .stats-number b { transition: none; }
  .stats-col:hover,
  .stats-col:hover .stats-icon,
  .stats-col:hover .stats-col-text strong,
  .stats-col:hover .clock-cell b,
  .stats-col:hover .stats-number b { transform: none; filter: none; }
}

@media (max-width: 880px) {
  .stats-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .stats-row .stats-col + .stats-col::before { display: none; }
  .stats-row--values .stats-col { padding: 10px 12px; }
  .stats-col { justify-content: flex-start; }
  .stats-row--values .stats-col { justify-content: flex-start; }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .bg-blue-tint { opacity: 0.38; }
  .nav-menu {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent, #000 8px, #000 calc(100% - 8px), transparent);
  }
  .nav-menu::-webkit-scrollbar { display: none; }
  .nav-menu a { font-size: 12px; padding: 7px 10px; }
  .brand-name { font-size: 15px; }
  .nav-login { padding: 7px 12px; font-size: 13px; }
  .nav-login span { display: none; }
  .topbar-inner { width: min(100%, 92%); }
  .topbar-inner::before { display: none; }
  .nav-pill { padding: 9px 10px 9px 12px; gap: 8px; min-height: 54px; }
  .section.flow-block { padding: 42px 0 48px; }
  .flow-chain { flex-wrap: wrap; }
  .feature-cards { grid-template-columns: 1fr; }
  .kf-feature-list { grid-template-columns: 1fr; }
  .panel-card--grid.ability-grid,
  .panel-card--grid.buyer-grid { grid-template-columns: 1fr; }
  .panel-card--grid.ability-grid .ability-card,
  .panel-card--grid.buyer-grid .buyer-card,
  .panel-card--grid.why-grid article {
    border-left: none !important;
    padding-left: 0 !important;
  }
  .why-grid,
  .why-stats { grid-template-columns: 1fr 1fr; }
  .panel-card--grid.why-grid { grid-template-columns: 1fr 1fr; }
  .merchant-layout { grid-template-columns: 1fr; }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer-contact {
    padding-left: 0;
  }
  .footer-qrs {
    justify-content: flex-start;
  }
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 22px;
  }
  .footer-cert-row {
    justify-content: center;
    padding-top: 4px;
  }
  .app-panel {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .app-panel-text p { font-size: 16px; }
  .app-store-btns {
    max-width: 260px;
    width: 100%;
    margin: 0 auto 18px;
  }
  .app-qr-block {
    justify-content: center;
  }
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-content {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 92px 16px 32px;
  }
  .hero-content h1 { font-size: clamp(27px, 7.2vw, 38px); }
  .hero-content .sub { font-size: 14px; }
  .feature-cards { margin-top: 44px; }
}
@media (max-width: 620px) {
  .footer-contact {
    align-items: flex-start;
  }
  .footer-contact p {
    white-space: normal;
  }
  .footer-brand-mark {
    width: 112px;
    height: 54px;
    flex-basis: 112px;
  }
  .footer-brand-mark img {
    max-width: 112px;
    max-height: 54px;
  }
  .footer-qrs { gap: 14px; }
  .footer-qr .qr-tile { width: 84px; height: 84px; }
  .footer-columns { grid-template-columns: 1fr; }
  .footer-cert img { height: 46px; }
  .kf-steps { flex-direction: column; align-items: flex-start; padding-left: 20%; }
  .section { padding: 40px 0; }
  .app-download { padding: 36px 0 42px; }
  .app-panel { padding: 18px 16px; border-radius: 16px; }
  .app-visual { min-height: 220px; padding: 18px 14px; }
  .app-visual-sidebar { width: 30px; left: 10px; }
  .app-visual-main { margin-left: 40px; min-height: 184px; }
  .app-phone-mock { width: 88px; height: 166px; right: 10px; border-width: 3px; }
  .store-btn { font-size: 20px; }
  .app-qr-block { flex-direction: column; }
}

.qr-tile.qr-placeholder {
  background:
    linear-gradient(135deg, rgba(77, 142, 247, 0.08), rgba(255, 255, 255, 0.88));
  border: 1px dashed rgba(77, 142, 247, 0.34);
  box-shadow: none;
}

.qr-tile.qr-placeholder::after {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  margin: calc(50% - 14px) auto 0;
  border-radius: 8px;
  border: 2px solid rgba(77, 142, 247, 0.55);
  box-sizing: border-box;
}


.merchant-mini-preview {
  width: min(420px, calc(100% - 40px));
  height: 118px;
  margin: 22px auto 0;
  position: relative;
  z-index: 2;
}

.mini-screen {
  position: absolute;
  width: 178px;
  height: 94px;
  border: 1px solid rgba(185, 205, 235, 0.75);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 38px rgba(35, 95, 190, 0.14);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.mini-screen-primary {
  left: 54px;
  top: 8px;
  transform: rotate(-1.5deg);
}

.mini-screen-secondary {
  right: 52px;
  top: 2px;
  transform: rotate(1.2deg);
}

.mini-top {
  height: 24px;
  background: linear-gradient(90deg, #eff6ff, #ffffff);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
}

.mini-top i {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, #0b63ff, #60a5fa);
}

.mini-top b,
.mini-top em,
.mini-head b,
.mini-head em,
.mini-table span,
.mini-stats span {
  display: block;
  border-radius: 999px;
  background: #dbeafe;
}

.mini-top b { width: 44px; height: 7px; }
.mini-top em { width: 32px; height: 6px; margin-left: auto; }

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  padding: 10px;
}

.mini-stats span {
  height: 20px;
  border-radius: 7px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.mini-chart {
  height: 34px;
  margin: 0 10px 8px;
  border-radius: 8px;
  background: repeating-linear-gradient(0deg, transparent 0 10px, rgba(148, 163, 184, 0.16) 10px 11px);
  position: relative;
}

.mini-chart::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22d3ee, #2563eb, #7c3aed);
}

.mini-chart i {
  position: absolute;
  bottom: 11px;
  width: 4px;
  border-radius: 999px;
  background: #60a5fa;
}

.mini-chart i:nth-child(1) { left: 20px; height: 12px; }
.mini-chart i:nth-child(2) { left: 56px; height: 20px; }
.mini-chart i:nth-child(3) { left: 92px; height: 15px; }
.mini-chart i:nth-child(4) { left: 128px; height: 24px; }

.mini-head {
  padding: 12px 12px 6px;
  display: flex;
  justify-content: space-between;
}

.mini-head b { width: 54px; height: 8px; background: #c7d2fe; }
.mini-head em { width: 34px; height: 8px; background: #bfdbfe; }

.mini-table {
  padding: 6px 12px 12px;
  display: grid;
  gap: 8px;
}

.mini-table span {
  height: 8px;
  background: linear-gradient(90deg, #dbeafe, #eef2ff);
}

@media (max-width: 560px) {
  .merchant-mini-preview { height: 104px; margin-top: 18px; }
  .mini-screen { width: 154px; height: 82px; }
  .mini-screen-primary { left: 22px; }
  .mini-screen-secondary { right: 22px; }
}

.merchant-showcase {
  background: #f5f8fc;
  padding-top: 92px;
}

.merchant-showcase-wrap {
  display: grid;
  gap: 28px;
}

.merchant-showcase-head {
  text-align: center;
}

.merchant-console {
  border: 1px solid rgba(185, 205, 235, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 70px rgba(35, 95, 190, 0.13);
  overflow: hidden;
  display: grid;
  grid-template-columns: 168px 1fr;
}

.merchant-console-side {
  padding: 20px 14px;
  background: rgba(248, 251, 255, 0.96);
  border-right: 1px solid rgba(215, 225, 242, 0.86);
}

.merchant-console-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #102033;
  font-weight: 800;
}

.merchant-console-logo span {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, #0b63ff, #60a5fa);
  color: #fff;
  display: grid;
  place-items: center;
}

.merchant-console-side nav {
  display: grid;
  gap: 8px;
}

.merchant-console-side b {
  height: 36px;
  border-radius: 10px;
  color: #64748b;
  font-size: 14px;
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.merchant-console-side b.active {
  color: #1769ff;
  background: rgba(59, 130, 246, 0.12);
}

.merchant-console-main {
  padding: 24px;
}

.merchant-console-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.merchant-console-top strong {
  display: block;
  color: #0f172a;
  font-size: 24px;
  line-height: 1.25;
}

.merchant-console-top em {
  display: block;
  margin-top: 10px;
  color: #64748b;
  font-style: normal;
  font-size: 13px;
}

.merchant-console-top > span {
  padding: 9px 14px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  font-weight: 700;
  white-space: nowrap;
}

.merchant-console-status {
  min-height: 86px;
  border-radius: 15px;
  background: linear-gradient(110deg, #2563eb, #3b82f6 55%, #1178ff);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.2);
}

.merchant-console-status span {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.merchant-console-status span:last-child { border-right: 0; }
.merchant-console-status b { font-size: 27px; line-height: 1; }
.merchant-console-status em { font-style: normal; font-size: 13px; opacity: 0.84; }

.merchant-console-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 18px;
}

.merchant-console-card,
.merchant-console-chart {
  border-radius: 15px;
  background: rgba(248, 250, 252, 0.96);
  padding: 16px;
}

.merchant-console-card h3 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 16px;
}

.merchant-console-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.merchant-console-metrics span,
.merchant-console-actions span {
  border-radius: 12px;
  background: #fff;
  padding: 14px;
  color: #475569;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.merchant-console-metrics em,
.merchant-console-metrics small {
  display: block;
  font-style: normal;
  font-size: 12px;
}

.merchant-console-metrics b {
  display: block;
  margin: 8px 0 6px;
  color: #0f172a;
  font-size: 22px;
}

.merchant-console-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.merchant-console-actions span {
  min-height: 54px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 13px;
}

.merchant-console-chart {
  margin-top: 18px;
  height: 126px;
  position: relative;
  overflow: hidden;
}

.merchant-console-chart strong { position: relative; z-index: 1; color: #0f172a; }
.merchant-console-chart a { position: absolute; top: 16px; right: 18px; color: #1769ff; text-decoration: none; }
.merchant-console-chart i {
  position: absolute;
  left: 24px;
  right: 24px;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(148, 163, 184, 0.32) 0 8px, transparent 8px 14px);
}
.merchant-console-chart i:nth-of-type(1) { top: 42px; }
.merchant-console-chart i:nth-of-type(2) { top: 58px; }
.merchant-console-chart i:nth-of-type(3) { top: 74px; }
.merchant-console-chart i:nth-of-type(4) { top: 90px; }
.merchant-console-chart i:nth-of-type(5) { top: 106px; }
.merchant-console-chart em {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #22d3ee, #2563eb, #7c3aed);
}

@media (max-width: 980px) {
  .merchant-console { grid-template-columns: 1fr; }
  .merchant-console-side { display: none; }
  .merchant-console-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .merchant-showcase { padding-top: 64px; }
  .merchant-console-main { padding: 18px; }
  .merchant-console-status { grid-template-columns: repeat(2, 1fr); }
  .merchant-console-status span { min-height: 72px; }
  .merchant-console-metrics { grid-template-columns: repeat(2, 1fr); }
  .merchant-console-top { display: block; }
  .merchant-console-top > span { display: inline-block; margin-top: 12px; }
}
.merchant-console {
  animation: merchantFloatIn .75s cubic-bezier(.22, 1, .36, 1) both;
}

.merchant-console-status {
  position: relative;
  isolation: isolate;
}

.merchant-console-status::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.34) 42%, transparent 64%);
  transform: translateX(-120%);
  animation: merchantShine 3.8s ease-in-out infinite;
  z-index: -0;
}

.merchant-console-status span,
.merchant-console-card,
.merchant-console-chart {
  animation: merchantSoftRise .7s cubic-bezier(.22, 1, .36, 1) both;
}

.merchant-console-status span:nth-child(2) { animation-delay: .06s; }
.merchant-console-status span:nth-child(3) { animation-delay: .12s; }
.merchant-console-status span:nth-child(4) { animation-delay: .18s; }
.merchant-console-status span:nth-child(5) { animation-delay: .24s; }
.merchant-console-card { animation-delay: .18s; }
.merchant-console-chart { animation-delay: .28s; }

.merchant-console-status b {
  animation: merchantPulse 2.4s ease-in-out infinite;
}

.merchant-console-actions span,
.merchant-console-metrics span {
  transition: transform .22s ease, box-shadow .22s ease, color .22s ease;
}

.merchant-console-actions span:hover,
.merchant-console-metrics span:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.12);
  color: #1769ff;
}

.merchant-console-chart em {
  background-size: 200% 100%;
  animation: merchantLineFlow 2.8s linear infinite;
}

@keyframes merchantFloatIn {
  from { opacity: 0; transform: translateY(28px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes merchantSoftRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes merchantShine {
  0%, 42% { transform: translateX(-120%); opacity: 0; }
  52% { opacity: 1; }
  76%, 100% { transform: translateX(120%); opacity: 0; }
}

@keyframes merchantPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: .92; }
}

@keyframes merchantLineFlow {
  from { background-position: 0% 0; }
  to { background-position: 200% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .merchant-console,
  .merchant-console-status span,
  .merchant-console-card,
  .merchant-console-chart,
  .merchant-console-status b,
  .merchant-console-status::after,
  .merchant-console-chart em {
    animation: none !important;
  }
}
.merchant-console-bottom {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 18px;
}

.merchant-console-orders,
.merchant-console-notice {
  border-radius: 15px;
  background: rgba(248, 250, 252, 0.96);
  padding: 16px;
  animation: merchantSoftRise .7s cubic-bezier(.22, 1, .36, 1) both;
  animation-delay: .34s;
}

.merchant-console-orders h3,
.merchant-console-notice h3 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 16px;
}

.merchant-console-orders p {
  min-height: 42px;
  margin: 0;
  border-top: 1px solid rgba(226, 232, 240, 0.95);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  color: #475569;
  font-size: 13px;
}

.merchant-console-orders p:first-of-type { border-top: 0; }

.merchant-console-orders b {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #1769ff;
  font-size: 12px;
}

.merchant-console-orders em {
  color: #0f172a;
  font-style: normal;
  font-weight: 700;
}

.merchant-console-notice {
  display: grid;
  gap: 10px;
  animation-delay: .42s;
}

.merchant-console-notice span {
  padding: 10px 12px;
  border-radius: 11px;
  background: #fff;
  color: #475569;
  font-size: 13px;
}

.merchant-console-notice div {
  margin-top: 2px;
  padding: 14px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #3b82f6 62%, #22d3ee);
  overflow: hidden;
  position: relative;
}

.merchant-console-notice div::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
}

.merchant-console-notice strong,
.merchant-console-notice em {
  display: block;
  position: relative;
  z-index: 1;
}

.merchant-console-notice em {
  margin-top: 8px;
  font-style: normal;
  font-size: 13px;
  opacity: .86;
}

@media (max-width: 980px) {
  .merchant-console-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .merchant-console-orders p { grid-template-columns: 1fr; gap: 6px; padding: 10px 0; }
}
/* Refined feature/process section */
.section.features {
  background:
    radial-gradient(70% 60% at 50% 0%, rgba(59, 130, 246, 0.12), transparent 70%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  overflow: hidden;
}

.features-wrap {
  width: min(1120px, calc(100% - 48px));
}

.features-head {
  margin-bottom: 34px;
}

.features-head .kf-title {
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: 0;
}

.features-flow {
  padding: 10px 14px;
  border: 1px solid rgba(147, 197, 253, 0.46);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.08);
  backdrop-filter: blur(12px);
}

.features-flow span:not(.flow-arrow) {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.86);
  color: #1e3a8a;
  font-weight: 700;
}

.features-flow .flow-arrow {
  opacity: .72;
}

.panel-card--features {
  width: 100%;
  padding: 30px;
  border-radius: 26px;
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(238,246,255,.9));
  box-shadow:
    0 26px 70px rgba(37, 99, 235, 0.14),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.panel-card--features::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 126px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,.42), transparent);
  z-index: 0;
}

.panel-card--features .kf-feature-list {
  gap: 22px;
  position: relative;
  z-index: 1;
}

.panel-card--features .feature-item {
  min-height: 184px;
  border-radius: 18px;
  padding: 24px 22px 22px;
  background:
    radial-gradient(120px 80px at 90% 12%, rgba(96, 165, 250, 0.16), transparent 70%),
    #fff;
  box-shadow:
    0 16px 38px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255,255,255,.95);
  position: relative;
}

.panel-card--features .feature-item::before {
  content: "0" counter(featureStep);
  counter-increment: featureStep;
  position: absolute;
  right: 18px;
  top: 16px;
  color: rgba(37, 99, 235, 0.14);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.panel-card--features .kf-feature-list {
  counter-reset: featureStep;
}

.panel-card--features .feature-item:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.42);
  box-shadow: 0 24px 54px rgba(37, 99, 235, 0.18);
}

.panel-card--features .kf-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24);
}

.panel-card--features .kf-feature-list strong {
  color: #0f172a;
  font-size: 18px;
}

.panel-card--features .kf-feature-list p {
  color: #475569;
  font-size: 14px;
}

.tag-strip--features {
  margin-top: 30px;
  border-top: 1px solid rgba(147, 197, 253, 0.32);
}

.tag-strip--features > p {
  font-size: 16px;
}

.tag-strip--features .tag-strip-items span {
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.08);
}

@media (max-width: 980px) {
  .panel-card--features::after { display: none; }
  .panel-card--features .kf-feature-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .features-wrap { width: min(100% - 24px, 520px); }
  .features-flow { border-radius: 18px; }
  .panel-card--features { padding: 18px; }
  .panel-card--features .kf-feature-list { grid-template-columns: 1fr; }
}
/* Compact merchant console */
.merchant-showcase {
  padding-top: 64px;
  padding-bottom: 48px;
}

.merchant-showcase-wrap {
  max-width: 980px;
}

.merchant-console {
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: 132px 1fr;
  border-radius: 18px;
}

.merchant-console-side {
  padding: 16px 10px;
}

.merchant-console-side b {
  height: 31px;
  font-size: 13px;
  padding: 0 10px;
}

.merchant-console-main {
  padding: 18px;
}

.merchant-console-top {
  margin-bottom: 14px;
}

.merchant-console-top strong {
  font-size: 20px;
}

.merchant-console-status {
  min-height: 68px;
  border-radius: 13px;
}

.merchant-console-status b {
  font-size: 22px;
}

.merchant-console-status em {
  font-size: 12px;
}

.merchant-console-grid {
  margin-top: 14px;
  grid-template-columns: 1fr 230px;
  gap: 14px;
}

.merchant-console-card,
.merchant-console-chart,
.merchant-console-orders,
.merchant-console-notice {
  padding: 13px;
  border-radius: 13px;
}

.merchant-console-card h3,
.merchant-console-orders h3,
.merchant-console-notice h3 {
  font-size: 15px;
  margin-bottom: 10px;
}

.merchant-console-metrics {
  gap: 9px;
}

.merchant-console-metrics span,
.merchant-console-actions span {
  padding: 10px;
}

.merchant-console-metrics b {
  font-size: 19px;
}

.merchant-console-actions span {
  min-height: 44px;
}

.merchant-console-chart {
  height: 86px;
  margin-top: 14px;
}

.merchant-console-bottom {
  margin-top: 14px;
  grid-template-columns: 1fr 280px;
  gap: 14px;
}

.merchant-console-orders p {
  min-height: 36px;
}

.merchant-console-notice span {
  padding: 8px 10px;
}

.merchant-console-notice div {
  padding: 12px;
}
/* Enhanced stats section */
.section.stats-block {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(580px 260px at 15% 20%, rgba(96, 165, 250, 0.18), transparent 70%),
    radial-gradient(520px 240px at 86% 16%, rgba(34, 211, 238, 0.12), transparent 72%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.section.stats-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 72%, transparent 100%);
  pointer-events: none;
}

.stats-head,
.stats-panel {
  position: relative;
  z-index: 1;
}

.stats-head h2 {
  animation: statsTitleIn .75s cubic-bezier(.22, 1, .36, 1) both;
}

.stats-head p {
  animation: statsTitleIn .75s cubic-bezier(.22, 1, .36, 1) .08s both;
}

.stats-panel {
  overflow: hidden;
  animation: statsPanelIn .85s cubic-bezier(.22, 1, .36, 1) .12s both;
}

.stats-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.55) 42%, transparent 60%);
  transform: translateX(-120%);
  animation: statsShine 4.6s ease-in-out infinite;
  pointer-events: none;
}

.stats-col {
  position: relative;
}

.stats-col::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 12px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,.36), transparent);
  opacity: 0;
  transform: scaleX(.5);
  transition: opacity .25s ease, transform .25s ease;
}

.stats-col:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.stats-icon {
  animation: statsIconPulse 2.8s ease-in-out infinite;
}

.stats-row .stats-col:nth-child(2) .stats-icon { animation-delay: .25s; }
.stats-row .stats-col:nth-child(3) .stats-icon { animation-delay: .5s; }

.stats-number b,
.clock-cell b {
  text-shadow: 0 10px 30px rgba(37, 99, 235, 0.16);
}

.stats-row--values .stats-col {
  animation: statsValueIn .7s cubic-bezier(.22, 1, .36, 1) both;
}

.stats-row--values .stats-col:nth-child(1) { animation-delay: .18s; }
.stats-row--values .stats-col:nth-child(2) { animation-delay: .28s; }
.stats-row--values .stats-col:nth-child(3) { animation-delay: .38s; }

@keyframes statsTitleIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes statsPanelIn {
  from { opacity: 0; transform: translateY(24px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes statsShine {
  0%, 44% { transform: translateX(-120%); opacity: 0; }
  54% { opacity: 1; }
  78%, 100% { transform: translateX(120%); opacity: 0; }
}

@keyframes statsIconPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 10px 24px rgba(37,99,235,.22); }
  50% { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(37,99,235,.28); }
}

@keyframes statsValueIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .stats-head h2,
  .stats-head p,
  .stats-panel,
  .stats-panel::after,
  .stats-icon,
  .stats-row--values .stats-col {
    animation: none !important;
  }
}
/* Enhanced flow section */
.section.flow-block {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(520px 240px at 50% 0%, rgba(59, 130, 246, 0.14), transparent 72%),
    linear-gradient(180deg, #f8fbff 0%, #f1f7ff 100%);
}

.section.flow-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 24% 42%, rgba(59, 130, 246, 0.08) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 62%, rgba(34, 211, 238, 0.08) 0 2px, transparent 3px);
  background-size: 90px 90px, 120px 120px;
  pointer-events: none;
}

.flow-block .sec-label,
.flow-block .kf-title,
.flow-block .kf-sub,
.panel-card--flow {
  position: relative;
  z-index: 1;
}

.flow-block .sec-label,
.flow-block .kf-title,
.flow-block .kf-sub {
  animation: flowTitleIn .75s cubic-bezier(.22, 1, .36, 1) both;
}

.flow-block .kf-title { animation-delay: .06s; }
.flow-block .kf-sub { animation-delay: .12s; }

.panel-card--flow {
  overflow: hidden;
  animation: flowPanelIn .8s cubic-bezier(.22, 1, .36, 1) .16s both;
}

.panel-card--flow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.55) 44%, transparent 62%);
  transform: translateX(-120%);
  animation: flowPanelShine 4.8s ease-in-out infinite;
  pointer-events: none;
}

.flow-node {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  animation: flowNodeIn .65s cubic-bezier(.22, 1, .36, 1) both;
}

.flow-node:nth-of-type(1) { animation-delay: .22s; }
.flow-node:nth-of-type(3) { animation-delay: .32s; }
.flow-node:nth-of-type(5) { animation-delay: .42s; }
.flow-node:nth-of-type(7) { animation-delay: .52s; }

.flow-node:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(37, 99, 235, 0.18);
  border-color: rgba(37, 99, 235, 0.42);
}

.flow-line {
  position: relative;
  overflow: hidden;
}

.flow-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.75), transparent);
  transform: translateX(-120%);
  animation: flowLineMove 2.4s ease-in-out infinite;
}

@keyframes flowTitleIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes flowPanelIn {
  from { opacity: 0; transform: translateY(24px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes flowPanelShine {
  0%, 46% { transform: translateX(-120%); opacity: 0; }
  56% { opacity: 1; }
  78%, 100% { transform: translateX(120%); opacity: 0; }
}

@keyframes flowNodeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes flowLineMove {
  0%, 20% { transform: translateX(-120%); opacity: 0; }
  45% { opacity: 1; }
  75%, 100% { transform: translateX(120%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .flow-block .sec-label,
  .flow-block .kf-title,
  .flow-block .kf-sub,
  .panel-card--flow,
  .panel-card--flow::after,
  .flow-node,
  .flow-line::after {
    animation: none !important;
  }
}
/* Flow section polish */
.section.flow-block {
  padding: 64px 0 70px;
}

.flow-block .kf-title {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0;
}

.flow-block .kf-sub {
  max-width: 780px;
  margin-bottom: 30px;
  color: #475569;
}

.panel-card--flow {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 34px 44px;
  border-radius: 24px;
}

.flow-chain {
  align-items: center;
  gap: 18px;
}

.flow-node {
  min-width: 138px;
  min-height: 104px;
  border-radius: 18px;
  background:
    radial-gradient(100px 70px at 80% 10%, rgba(96, 165, 250, .18), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(239,246,255,.88));
  border: 1px solid rgba(147, 197, 253, 0.58);
  box-shadow:
    0 16px 34px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.flow-node span {
  font-size: 30px;
  line-height: 1;
  color: #2563eb;
  text-shadow: 0 10px 24px rgba(37, 99, 235, .16);
}

.flow-node strong {
  margin-top: 8px;
  font-size: 18px;
  color: #1e3a8a;
}

.flow-line {
  flex: 0 1 74px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(147,197,253,.35), rgba(37,99,235,.5));
}

.flow-line::before {
  content: "";
  position: absolute;
  right: -3px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(37,99,235,.7);
  border-right: 2px solid rgba(37,99,235,.7);
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 760px) {
  .panel-card--flow { padding: 24px; }
  .flow-chain { gap: 12px; }
  .flow-node { min-width: 0; min-height: 92px; }
  .flow-line { flex-basis: 34px; }
}
/* App phone showcase polish */
.phone-frame {
  animation: phoneFloat 4.6s ease-in-out infinite;
}

.phone-hero {
  position: relative;
  overflow: hidden;
}

.phone-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,.38), transparent);
  transform: translateX(-120%);
  animation: phoneCardShine 3.6s ease-in-out infinite;
}

.phone-stat {
  transition: transform .22s ease, box-shadow .22s ease;
}

.phone-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, .14);
}

.phone-chart-svg path:nth-of-type(2) {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: phoneChartDraw 2.2s ease forwards infinite;
}

.phone-chart-svg circle {
  animation: phonePointPulse 1.8s ease-in-out infinite;
}

.phone-tab.is-active svg {
  animation: none;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes phoneCardShine {
  0%, 42% { transform: translateX(-120%); opacity: 0; }
  54% { opacity: 1; }
  80%, 100% { transform: translateX(120%); opacity: 0; }
}

@keyframes phoneChartDraw {
  0% { stroke-dashoffset: 260; }
  52%, 100% { stroke-dashoffset: 0; }
}

@keyframes phonePointPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.28); opacity: .78; }
}

@keyframes phoneBellPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2); }
  50% { transform: scale(1.08); box-shadow: 0 8px 18px rgba(59, 130, 246, 0.32); }
}

@keyframes phoneTabBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@media (prefers-reduced-motion: reduce) {
  .phone-frame,
  .phone-hero::after,
  .phone-chart-svg path:nth-of-type(2),
  .phone-chart-svg circle,
  .phone-tab.is-active svg {
    animation: none !important;
  }
}

/* Non-hero cleanup: keep the later sections calmer and more product-like. */
.section.features,
.section.stats-block,
.section.flow-block,
.merchant-showcase {
  background: #f6f8fb !important;
}

.section.stats-block::before,
.section.flow-block::before,
.stats-panel::after,
.panel-card--flow::after,
.phone-hero::after,
.panel-card--features::after,
.merchant-console-status::after {
  content: none !important;
  display: none !important;
}

.stats-head h2,
.stats-head p,
.stats-panel,
.stats-icon,
.stats-row--values .stats-col,
.flow-block .sec-label,
.flow-block .kf-title,
.flow-block .kf-sub,
.panel-card--flow,
.flow-node,
.flow-line::after,
.phone-frame,
.phone-chart-svg path:nth-of-type(2),
.phone-chart-svg circle,
.phone-tab.is-active svg,
.merchant-console,
.merchant-console-status span,
.merchant-console-card,
.merchant-console-chart,
.merchant-console-status b,
.merchant-console-chart em {
  animation: none !important;
}

.features-wrap,
.merchant-showcase-wrap {
  width: min(1080px, calc(100% - 48px));
}

.features-head {
  margin-bottom: 26px;
}

.features-head .kf-title,
.flow-block .kf-title {
  font-size: clamp(26px, 2.4vw, 36px);
}

.features-flow {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.features-flow span:not(.flow-arrow) {
  padding: 4px 0;
  border-radius: 0;
  background: transparent;
  color: #475569;
  font-weight: 600;
}

.features-flow-note {
  color: #64748b;
}

.panel-card--features,
.panel-card--flow,
.stats-panel,
.merchant-console {
  border: 1px solid #dde6f0;
  border-radius: 14px;
  background: #fff !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06) !important;
}

.panel-card--features {
  padding: 24px;
}

.panel-card--features .kf-feature-list {
  gap: 14px;
}

.panel-card--features .feature-item {
  min-height: 152px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  background: #fff !important;
  box-shadow: none !important;
  transform: none !important;
}

.panel-card--features .feature-item::before {
  color: #dbe4ef;
  font-size: 26px;
  right: 16px;
  top: 14px;
}

.panel-card--features .feature-item:hover,
.flow-node:hover,
.merchant-console-actions span:hover,
.merchant-console-metrics span:hover,
.phone-stat:hover {
  transform: none !important;
  box-shadow: none !important;
}

.panel-card--features .kf-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #1769ff;
  box-shadow: none;
}

.tag-strip--features {
  margin-top: 22px;
  border-top: 1px solid #e2e8f0;
}

.tag-strip--features .tag-strip-items span {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  box-shadow: none;
}

.merchant-showcase {
  padding-top: 58px;
  padding-bottom: 52px;
}

.merchant-showcase-head {
  text-align: left;
}

.merchant-showcase .kf-title,
.merchant-showcase .kf-sub {
  text-align: left;
  margin-left: 0;
}

.merchant-console {
  max-width: 1040px;
  grid-template-columns: 140px 1fr;
}

.merchant-console-side {
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
}

.merchant-console-logo span,
.merchant-console-top > span {
  background: #1769ff;
}

.merchant-console-side b.active {
  color: #0f172a;
  background: #eaf2ff;
}

.merchant-console-status {
  min-height: 68px;
  border: 1px solid #d7e4f5;
  background: #f3f8ff !important;
  color: #0f172a;
  box-shadow: none;
}

.merchant-console-status span {
  border-right: 1px solid #d7e4f5;
}

.merchant-console-status em {
  color: #64748b;
  opacity: 1;
}

.merchant-console-card,
.merchant-console-chart,
.merchant-console-orders,
.merchant-console-notice {
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: none;
}

.merchant-console-metrics span,
.merchant-console-actions span {
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  box-shadow: none;
}

.merchant-console-chart em {
  height: 2px;
  background: #1769ff;
}

.merchant-console-notice div::after {
  background: #1769ff;
}

.section.stats-block {
  padding: 62px 0;
}

.stats-head h2 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.stats-panel {
  overflow: hidden;
}

.stats-icon {
  box-shadow: none;
}

.stats-col::after {
  display: none;
}

.stats-number b,
.clock-cell b,
.flow-node span {
  text-shadow: none;
}

.section.flow-block {
  padding: 62px 0 66px;
}

.panel-card--flow {
  padding: 28px 36px;
}

.flow-chain {
  gap: 14px;
}

.flow-node {
  min-height: 92px;
  border: 1px solid #dbe5f0;
  border-radius: 12px;
  background: #fff !important;
  box-shadow: none !important;
}

.flow-node span {
  font-size: 25px;
  color: #1769ff;
}

.flow-node strong {
  color: #0f172a;
}

.flow-line {
  height: 1px;
  background: #c8d6e5;
}

.flow-line::before {
  border-color: #94a3b8;
}

.app-panel {
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.phone-stat {
  transition: none;
}

@media (max-width: 760px) {
  .features-wrap,
  .merchant-showcase-wrap {
    width: min(100% - 24px, 520px);
  }

  .merchant-showcase-head,
  .merchant-showcase .kf-title,
  .merchant-showcase .kf-sub {
    text-align: center;
  }

  .panel-card--features,
  .panel-card--flow {
    padding: 18px;
  }
}

/* Integrated feature, trust and flow block. */
.integrated-block {
  padding: 64px 0 72px;
  background: #f6f8fb !important;
}

.integrated-wrap {
  width: min(1120px, calc(100% - 48px));
}

.integrated-head {
  margin: 0 auto 26px;
  text-align: center;
}

.integrated-head .kf-title {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 14px;
}

.integrated-panel {
  border: 1px solid #dbe5f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
  padding: 30px;
}

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

.integrated-feature {
  min-height: 150px;
  border: 1px solid #dbe5f0;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
  position: relative;
}

.integrated-feature:nth-child(1)::after,
.integrated-feature:nth-child(2)::after,
.integrated-feature:nth-child(3)::after,
.integrated-feature:nth-child(4)::after {
  position: absolute;
  top: 16px;
  right: 18px;
  color: #d8e2ef;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.integrated-feature:nth-child(1)::after { content: "01"; }
.integrated-feature:nth-child(2)::after { content: "02"; }
.integrated-feature:nth-child(3)::after { content: "03"; }
.integrated-feature:nth-child(4)::after { content: "04"; }

.integrated-feature .kf-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #1769ff;
  box-shadow: none;
}

.integrated-feature b {
  display: block;
  margin-top: 16px;
  color: #0f172a;
  font-size: 18px;
}

.integrated-feature p {
  margin: 8px 0 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.integrated-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.integrated-tags strong {
  width: 100%;
  margin-bottom: 2px;
  text-align: center;
  color: #1e3a8a;
  font-size: 17px;
}

.integrated-tags span {
  padding: 7px 14px;
  border: 1px solid #dbe5f0;
  border-radius: 999px;
  background: #f8fafc;
  color: #1769ff;
  font-weight: 600;
  font-size: 13px;
}

.integrated-stats {
  display: grid;
  grid-template-columns: minmax(240px, .85fr) 1.6fr;
  gap: 22px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid #e2e8f0;
}

.integrated-stats-copy h3,
.integrated-flow-copy h3 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
}

.integrated-stats-copy h3 span {
  color: #2563eb;
}

.integrated-stats-copy p,
.integrated-flow-copy p {
  margin: 10px 0 0;
  color: #475569;
  line-height: 1.8;
}

.integrated-stat-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.integrated-stat-item {
  min-height: 112px;
  border: 1px solid #dbe5f0;
  border-radius: 12px;
  background: #f8fafc;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.integrated-stat-item em {
  color: #64748b;
  font-style: normal;
  font-size: 14px;
}

.integrated-stat-item strong {
  color: #2563eb;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.integrated-stat-item strong span {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  margin-right: 6px;
  color: #0f172a;
  font-size: 17px;
}

.integrated-stat-item strong span b {
  color: #2563eb;
  font-size: clamp(28px, 3vw, 38px);
}

.integrated-stat-item i {
  margin-left: 5px;
  color: #475569;
  font-size: 14px;
  font-style: normal;
}

.integrated-flow {
  display: grid;
  grid-template-columns: minmax(240px, .85fr) 1.6fr;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #e2e8f0;
}

.integrated-flow-copy .sec-label {
  margin-bottom: 8px;
  text-align: left;
}

.integrated-flow .flow-chain {
  gap: 10px;
}

.integrated-flow .flow-node {
  min-width: 112px;
  min-height: 88px;
  border-radius: 12px;
}

.integrated-flow .flow-line {
  flex-basis: 38px;
}

@media (max-width: 980px) {
  .integrated-features,
  .integrated-stat-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .integrated-stats,
  .integrated-flow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .integrated-block {
    padding: 46px 0 54px;
  }

  .integrated-wrap {
    width: min(100% - 24px, 520px);
  }

  .integrated-panel {
    padding: 18px;
  }

  .integrated-features,
  .integrated-stat-list {
    grid-template-columns: 1fr;
  }

  .integrated-flow .flow-chain {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .integrated-flow .flow-line {
    display: none;
  }
}

/* Integrated block typography and spacing refinement. */
.integrated-block {
  padding: 54px 0 62px;
}

.integrated-wrap {
  width: min(1040px, calc(100% - 40px));
}

.integrated-head {
  margin-bottom: 22px;
}

.integrated-head .kf-title {
  color: #111827;
  font-size: clamp(25px, 2.45vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.integrated-head .features-flow {
  color: #526174;
  font-size: 14px;
}

.integrated-head .features-flow span:not(.flow-arrow) {
  color: #334155;
  font-weight: 600;
}

.integrated-panel {
  padding: 24px;
  border-color: #d8e2ee;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.055);
  overflow: hidden;
}

.integrated-features {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.integrated-feature {
  min-width: 0;
  min-height: 128px;
  padding: 18px 16px;
  border-radius: 10px;
  background: #fbfdff;
}

.integrated-feature:nth-child(1)::after,
.integrated-feature:nth-child(2)::after,
.integrated-feature:nth-child(3)::after,
.integrated-feature:nth-child(4)::after {
  top: 14px;
  right: 14px;
  font-size: 22px;
  color: #dbe4ef;
}

.integrated-feature .kf-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.integrated-feature .kf-icon svg {
  width: 21px;
  height: 21px;
}

.integrated-feature b {
  margin-top: 13px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.integrated-feature p {
  max-width: 20em;
  font-size: 13px;
  line-height: 1.65;
}

.integrated-tags {
  margin-top: 22px;
  padding-top: 20px;
  gap: 8px;
}

.integrated-tags strong {
  margin-bottom: 4px;
  color: #172554;
  font-size: 15px;
  font-weight: 700;
}

.integrated-tags span {
  padding: 6px 12px;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 600;
}

.integrated-stats {
  grid-template-columns: minmax(220px, .74fr) 1.7fr;
  gap: 18px;
  margin-top: 24px;
  padding-top: 24px;
}

.integrated-stats-copy h3,
.integrated-flow-copy h3 {
  font-size: clamp(20px, 1.85vw, 26px);
  font-weight: 700;
  letter-spacing: 0;
}

.integrated-stats-copy p,
.integrated-flow-copy p {
  font-size: 14px;
  line-height: 1.75;
}

.integrated-stat-list {
  gap: 10px;
}

.integrated-stat-item {
  min-width: 0;
  min-height: 94px;
  padding: 16px;
  border-radius: 10px;
}

.integrated-stat-item em {
  font-size: 13px;
}

.integrated-stat-item strong {
  font-size: clamp(23px, 2.1vw, 31px);
  white-space: nowrap;
}

.integrated-stat-item strong span {
  margin-right: 4px;
  font-size: 14px;
}

.integrated-stat-item strong span b {
  font-size: clamp(23px, 2.1vw, 31px);
}

.integrated-stat-item i {
  font-size: 12px;
}

.integrated-flow {
  grid-template-columns: minmax(220px, .74fr) 1.7fr;
  gap: 18px;
  margin-top: 24px;
  padding-top: 24px;
}

.integrated-flow .flow-node {
  min-width: 0;
  min-height: 78px;
  padding: 14px 16px;
}

.integrated-flow .flow-node span {
  font-size: 22px;
}

.integrated-flow .flow-node strong {
  margin-top: 4px;
  font-size: 15px;
}

.integrated-flow .flow-line {
  flex-basis: 28px;
}

@media (max-width: 1100px) {
  .integrated-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .integrated-stats,
  .integrated-flow {
    grid-template-columns: 1fr;
  }

  .integrated-stat-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .integrated-wrap {
    width: min(100% - 24px, 520px);
  }

  .integrated-panel {
    padding: 16px;
  }

  .integrated-features,
  .integrated-stat-list {
    grid-template-columns: 1fr;
  }
}

/* Dark ecosystem block inspired by the reference layout. */
.ecosystem-block {
  padding: 68px 0 72px;
  background:
    radial-gradient(680px 260px at 50% -120px, rgba(77, 142, 247, 0.12), transparent 72%),
    var(--bg, #f0f6ff);
  color: var(--text, #1f2937);
}

.ecosystem-wrap {
  width: min(1140px, calc(100% - 48px));
}

.ecosystem-head {
  margin-bottom: 30px;
  text-align: center;
}

.ecosystem-head p {
  margin: 0 0 8px;
  color: var(--accent, #4d8ef7);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
}

.ecosystem-head h2 {
  margin: 0;
  color: var(--ink, #1a2d4d);
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
}

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

.ecosystem-card {
  min-height: 260px;
  border: 1px solid rgba(148, 178, 230, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  box-shadow: 0 2px 8px rgba(77, 142, 247, .06), 0 18px 50px rgba(77, 142, 247, .08);
  padding: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.ecosystem-card--wide {
  grid-column: span 2;
}

.ecosystem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(380px 180px at 50% 8%, rgba(77,142,247,.08), transparent 70%);
  pointer-events: none;
}

.ecosystem-card > * {
  position: relative;
  z-index: 1;
}

.ecosystem-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: var(--accent, #4d8ef7);
}

.ecosystem-icon svg {
  width: 100%;
  height: 100%;
}

.ecosystem-card h3 {
  margin: 0 0 8px;
  color: var(--ink, #1a2d4d);
  font-size: 19px;
  line-height: 1.25;
  font-weight: 800;
}

.ecosystem-card p {
  margin: 0;
  color: var(--ink-soft, #4b5563);
  font-size: 14px;
  line-height: 1.65;
}

.ecosystem-card p b,
.ecosystem-card p strong,
.ecosystem-card [data-counter],
.ecosystem-card [data-clock] {
  color: var(--accent, #4d8ef7);
}

.order-visual {
  position: absolute;
  left: -24px;
  right: 24px;
  top: 62px;
  min-height: 70px;
  border: 1px solid rgba(148, 178, 230, .22);
  border-radius: 8px;
  background: rgba(240, 246, 255, .85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--ink-soft, #4b5563);
  box-shadow: 0 12px 40px rgba(77, 142, 247, .1);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.order-visual span {
  padding: 8px 12px;
  border: 1px solid rgba(148, 178, 230, .2);
  border-radius: 7px;
  background: rgba(255,255,255,.7);
  font-size: 13px;
  white-space: nowrap;
}

.order-visual b {
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--accent, #4d8ef7);
  color: #fff;
  font-size: 12px;
}

.ecosystem-globe {
  position: absolute;
  left: 50%;
  top: 54px;
  width: 230px;
  height: 124px;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background:
    radial-gradient(circle at 50% 78%, rgba(77,142,247,.6) 0 2px, transparent 3px),
    radial-gradient(circle at 48% 82%, rgba(245,158,11,.65) 0 2px, transparent 3px),
    repeating-radial-gradient(ellipse at 50% 100%, rgba(77,142,247,.2) 0 1px, transparent 2px 7px);
  opacity: .6;
  filter: drop-shadow(0 0 26px rgba(77,142,247,.12));
}

.ecosystem-logos {
  position: absolute;
  inset: 54px 24px auto;
  height: 120px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 10px 14px;
  opacity: .45;
}

.ecosystem-logos span {
  color: var(--accent, #4d8ef7);
  font-weight: 800;
  font-size: 16px;
}

.ecosystem-monitor {
  position: absolute;
  left: 34px;
  right: 34px;
  top: 42px;
  height: 126px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(77,142,247,.08), transparent 58%),
    rgba(240,246,255,.6);
  border: 1px solid rgba(148, 178, 230, .2);
}

.ecosystem-monitor i {
  position: absolute;
  left: 24px;
  right: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(77,142,247,.15), rgba(77,142,247,.55), transparent);
}

.ecosystem-monitor i:nth-child(1) { top: 36px; }
.ecosystem-monitor i:nth-child(2) { top: 62px; width: 62%; }
.ecosystem-monitor i:nth-child(3) { top: 88px; width: 76%; }

.ecosystem-apps {
  position: absolute;
  inset: 48px 0 auto;
  height: 130px;
  display: grid;
  grid-template-columns: repeat(2, 42px);
  justify-content: center;
  align-content: center;
  gap: 14px;
  filter: blur(.2px);
  opacity: .7;
}

.ecosystem-apps i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(77,142,247,.35), rgba(77,142,247,.1));
  box-shadow: 0 0 20px rgba(77,142,247,.12);
}

.ecosystem-apps i:nth-child(2),
.ecosystem-apps i:nth-child(3) {
  background: linear-gradient(135deg, rgba(245,158,11,.35), rgba(77,142,247,.1));
}

.ecosystem-connect {
  position: absolute;
  inset: 36px 48px auto;
  height: 118px;
}

.ecosystem-connect::before,
.ecosystem-connect::after {
  content: "";
  position: absolute;
  left: 72px;
  right: 72px;
  top: 58px;
  height: 1px;
  background: rgba(148, 178, 230, .22);
}

.ecosystem-connect::after {
  transform: rotate(-16deg);
}

.ecosystem-connect span,
.ecosystem-connect strong {
  position: absolute;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(148, 178, 230, .22);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink-soft, #4b5563);
  background: rgba(255, 255, 255, .82);
  font-size: 12px;
  box-shadow: 0 2px 10px rgba(77, 142, 247, .06);
}

.ecosystem-connect strong {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ecosystem-connect strong.eco-connect-logo {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff 0%, #f4f8ff 100%);
  border: 1px solid rgba(148, 178, 230, .28);
  box-shadow:
    0 4px 16px rgba(77, 142, 247, .1),
    inset 0 1px 0 rgba(255, 255, 255, .95);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ecosystem-connect strong.eco-connect-logo img {
  width: auto;
  height: auto;
  max-width: 38px;
  max-height: 38px;
  object-fit: contain;
  padding: 0;
  display: block;
}

.ecosystem-connect strong.eco-connect-logo .eco-connect-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 800;
  color: var(--accent, #4d8ef7);
  background: transparent;
}

.ecosystem-connect span:nth-child(1) { left: 0; top: 0; }
.ecosystem-connect span:nth-child(2) { left: 0; bottom: 0; }
.ecosystem-connect span:nth-child(4) { right: 0; top: 0; }
.ecosystem-connect span:nth-child(5) { right: 0; bottom: 0; }

.ecosystem-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.ecosystem-tags span {
  padding: 8px 14px;
  border: 1px solid rgba(148, 178, 230, .25);
  border-radius: 7px;
  color: var(--ink-soft, #4b5563);
  background: rgba(255,255,255,.6);
  font-size: 13px;
}

@media (max-width: 980px) {
  .ecosystem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ecosystem-card--wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .ecosystem-block {
    padding: 48px 0 54px;
  }

  .ecosystem-wrap {
    width: min(100% - 24px, 520px);
  }

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

  .ecosystem-card,
  .ecosystem-card--wide {
    grid-column: auto;
    min-height: 238px;
  }

  .order-visual {
    right: 16px;
    gap: 8px;
    overflow: hidden;
  }

  .order-visual span {
    padding: 7px 9px;
    font-size: 12px;
  }
}

/* Ecosystem motion layer. */
.ecosystem-card {
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.ecosystem-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 142, 247, .4);
  box-shadow: 0 4px 16px rgba(77, 142, 247, .1), 0 24px 64px rgba(77, 142, 247, .12);
}

.order-visual {
  animation: ecosystemPanelDrift 9s ease-in-out infinite;
}

.order-visual span {
  animation: ecosystemOrderFloat 5.8s ease-in-out infinite;
}

.order-visual span:nth-child(2) { animation-delay: .35s; }
.order-visual span:nth-child(3) { animation-delay: .7s; }
.order-visual span:nth-child(4) { animation-delay: 1.05s; }

.ecosystem-globe {
  animation: ecosystemGlow 4.8s ease-in-out infinite;
}

.ecosystem-logos span {
  animation: ecosystemLogoFloat 6s ease-in-out infinite;
}

.ecosystem-logos span:nth-child(2) { animation-delay: .45s; }
.ecosystem-logos span:nth-child(3) { animation-delay: .9s; }
.ecosystem-logos span:nth-child(4) { animation-delay: 1.35s; }
.ecosystem-logos span:nth-child(5) { animation-delay: 1.8s; }
.ecosystem-logos span:nth-child(6) { animation-delay: 2.25s; }

.ecosystem-monitor i {
  transform-origin: left center;
  animation: ecosystemLineScan 3.8s ease-in-out infinite;
}

.ecosystem-monitor i:nth-child(2) { animation-delay: .45s; }
.ecosystem-monitor i:nth-child(3) { animation-delay: .9s; }

.ecosystem-apps i {
  animation: ecosystemAppPulse 3.6s ease-in-out infinite;
}

.ecosystem-apps i:nth-child(2) { animation-delay: .35s; }
.ecosystem-apps i:nth-child(3) { animation-delay: .7s; }
.ecosystem-apps i:nth-child(4) { animation-delay: 1.05s; }

.ecosystem-connect span,
.ecosystem-connect strong {
  animation: ecosystemNodeFloat 5.6s ease-in-out infinite;
}

.ecosystem-connect span:nth-child(2) { animation-delay: .4s; }
.ecosystem-connect strong { animation-delay: .8s; }
.ecosystem-connect span:nth-child(4) { animation-delay: 1.2s; }
.ecosystem-connect span:nth-child(5) { animation-delay: 1.6s; }

.ecosystem-tags span {
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}

.ecosystem-tags span:hover {
  border-color: rgba(77, 142, 247, .55);
  color: var(--accent, #4d8ef7);
  background: rgba(77, 142, 247, .08);
}

@keyframes ecosystemPanelDrift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(18px); }
}

@keyframes ecosystemOrderFloat {
  0%, 100% { transform: translateY(0); opacity: .82; }
  50% { transform: translateY(-5px); opacity: 1; }
}

@keyframes ecosystemGlow {
  0%, 100% { opacity: .5; filter: drop-shadow(0 0 18px rgba(77,142,247,.1)); }
  50% { opacity: .78; filter: drop-shadow(0 0 28px rgba(77,142,247,.2)); }
}

@keyframes ecosystemLogoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: .4; }
  50% { transform: translateY(-8px) rotate(-4deg); opacity: .7; }
}

@keyframes ecosystemLineScan {
  0%, 100% { transform: scaleX(.55); opacity: .35; }
  50% { transform: scaleX(1); opacity: .85; }
}

@keyframes ecosystemAppPulse {
  0%, 100% { transform: translateY(0) scale(1); opacity: .6; }
  50% { transform: translateY(-7px) scale(1.06); opacity: .9; }
}

@keyframes ecosystemNodeFloat {
  0%, 100% { margin-top: 0; opacity: .7; }
  50% { margin-top: -7px; opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .ecosystem-card,
  .order-visual,
  .order-visual span,
  .ecosystem-globe,
  .ecosystem-logos span,
  .ecosystem-monitor i,
  .ecosystem-apps i,
  .ecosystem-connect span,
  .ecosystem-connect strong {
    animation: none !important;
    transition: none !important;
  }

  .ecosystem-card:hover {
    transform: none;
  }
}

/* KYS-style feature showcase. */
.ecosystem-block--legacy {
  display: none !important;
}

.kys-feature-block {
  padding: 58px 0 64px;
  background:
    radial-gradient(88% 58% at 50% 0%, rgba(67, 136, 255, .12), transparent 66%),
    linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}

.kys-feature-wrap {
  width: min(1426px, calc(100% - 72px));
}

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

.kys-feature-card {
  position: relative;
  min-height: 324px;
  padding: 206px 28px 28px;
  overflow: hidden;
  border: 1px solid rgba(177, 202, 238, .56);
  border-radius: 16px;
  background:
    radial-gradient(520px 260px at 50% -22%, rgba(67, 136, 255, .12), transparent 72%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.76));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 22px 54px rgba(39, 91, 160, .09);
  color: #142846;
}

.kys-feature-card--wide {
  grid-column: span 2;
}

.kys-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.5), transparent 45%);
}

.kys-card-icon,
.kys-feature-card h3,
.kys-feature-card p {
  position: relative;
  z-index: 2;
}

.kys-card-icon {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  color: #4388ff;
}

.kys-card-icon svg {
  width: 100%;
  height: 100%;
}

.kys-feature-card h3 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
}

.kys-feature-card p {
  margin: 0;
  max-width: 430px;
  color: #53647a;
  font-size: 17px;
  line-height: 1.58;
}

.kys-window {
  position: absolute;
  left: 26px;
  right: 26px;
  top: 24px;
  height: 190px;
  padding: 20px 22px;
  border: 1px solid rgba(177, 202, 238, .5);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255,255,255,.9), rgba(246,250,255,.78));
}

.kys-window-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: #42516b;
  font-size: 14px;
}

.kys-window-head span {
  display: flex;
  gap: 7px;
}

.kys-window-head i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.kys-window-head i:nth-child(1) { background: #ef4444; }
.kys-window-head i:nth-child(2) { background: #f59e0b; }
.kys-window-head i:nth-child(3) { background: #22c55e; }

.kys-bars {
  height: 106px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: 10px;
}

.kys-bars i {
  display: block;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #4f8dff 0%, rgba(79,141,255,.18) 100%);
}

.kys-bars i:nth-child(1) { height: 46%; }
.kys-bars i:nth-child(2) { height: 76%; }
.kys-bars i:nth-child(3) { height: 56%; }
.kys-bars i:nth-child(4) { height: 92%; }
.kys-bars i:nth-child(5) { height: 66%; }
.kys-bars i:nth-child(6) { height: 100%; }
.kys-bars i:nth-child(7) { height: 78%; }
.kys-bars i:nth-child(8) { height: 88%; }

.kys-line-chart {
  position: absolute;
  inset: 42px 28px auto;
  height: 138px;
}

.kys-line-chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.kys-grid-line {
  fill: none;
  stroke: rgba(177, 202, 238, .28);
  stroke-width: 1;
}

.kys-area { fill: url(#kysLineArea); }
.kys-line {
  fill: none;
  stroke: #4388ff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.kys-line-dot {
  fill: #fff;
  stroke: #4388ff;
  stroke-width: 4;
}

.kys-orbit {
  position: absolute;
  top: 50px;
  left: 50%;
  width: 186px;
  height: 186px;
  transform: translateX(-50%);
}

.kys-orbit i {
  position: absolute;
  inset: calc(var(--n) * 18px);
  border: 1px solid rgba(67, 136, 255, .15);
  border-radius: 50%;
}

.kys-orbit i:nth-child(1) { --n: 0; }
.kys-orbit i:nth-child(2) { --n: 1; }
.kys-orbit i:nth-child(3) { --n: 2; }

.kys-orbit b {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4388ff;
}

.kys-orbit b:nth-child(4) { left: 26px; top: 36px; opacity: .62; }
.kys-orbit b:nth-child(5) { right: 22px; top: 98px; opacity: .45; }
.kys-orbit b:nth-child(6) { left: 88px; bottom: 24px; background: #f59e0b; }

.kys-core {
  position: absolute;
  top: 48px;
  left: 50%;
  width: 230px;
  height: 156px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
}

.kys-core-row {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.kys-core-row span {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(177, 202, 238, .48);
  border-radius: 12px;
  background: rgba(255,255,255,.72);
}

.kys-core-row em {
  width: 26px;
  height: 1px;
  background: rgba(67,136,255,.26);
}

.kys-core-line {
  position: absolute;
  top: 54px;
  width: 1px;
  height: 42px;
  background: rgba(67,136,255,.24);
}

.kys-core strong {
  position: absolute;
  bottom: 0;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #55a0ff, #2867f0);
  color: #fff;
  font-size: 15px;
  box-shadow: 0 16px 36px rgba(42, 111, 245, .34);
}

.kys-material {
  position: absolute;
  inset: 40px 28px auto;
  height: 148px;
}

.kys-material span {
  display: block;
  margin-bottom: 12px;
  color: #69788d;
  font-size: 14px;
  font-weight: 700;
}

.kys-material div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.kys-material i {
  height: 58px;
  border: 1px solid rgba(177, 202, 238, .42);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(67,136,255,.13), rgba(255,255,255,.72));
}

.kys-material i:nth-child(3) {
  background: linear-gradient(135deg, rgba(245,158,11,.14), rgba(255,255,255,.72));
}

.kys-connect {
  position: absolute;
  top: 40px;
  left: 50%;
  width: min(420px, calc(100% - 96px));
  height: 160px;
  transform: translateX(-50%);
}

.kys-connect::before,
.kys-connect::after {
  content: "";
  position: absolute;
  left: 84px;
  right: 84px;
  top: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(67,136,255,.24), transparent);
}

.kys-connect::after {
  transform: rotate(-14deg);
}

.kys-connect span,
.kys-connect strong {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(177, 202, 238, .5);
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 28px rgba(39, 91, 160, .07);
  color: #47576e;
}

.kys-connect span {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  font-size: 15px;
}

.kys-connect strong {
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
  border-radius: 16px;
}

.kys-connect img {
  max-width: 42px;
  max-height: 42px;
  object-fit: contain;
}

.kys-connect b {
  color: #4388ff;
  font-size: 20px;
}

.kys-connect span:nth-child(1) { left: 0; top: 0; }
.kys-connect span:nth-child(2) { left: 0; bottom: 0; }
.kys-connect span:nth-child(4) { right: 0; top: 0; }
.kys-connect span:nth-child(5) { right: 0; bottom: 0; }

.kys-feature-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.kys-feature-tags span {
  padding: 10px 22px;
  border: 1px solid rgba(177, 202, 238, .58);
  border-radius: 8px;
  background: rgba(255,255,255,.7);
  color: #4c5f77;
  font-size: 15px;
}

@media (max-width: 1080px) {
  .kys-feature-wrap {
    width: min(100% - 36px, 860px);
  }
  .kys-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .kys-feature-block {
    padding: 42px 0 48px;
  }
  .kys-feature-wrap {
    width: min(100% - 24px, 520px);
  }
  .kys-feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .kys-feature-card,
  .kys-feature-card--wide {
    grid-column: auto;
    min-height: 286px;
    padding: 178px 20px 22px;
    border-radius: 14px;
  }
  .kys-window {
    left: 16px;
    right: 16px;
    height: 154px;
    padding: 16px;
  }
  .kys-bars {
    height: 82px;
    gap: 7px;
  }
  .kys-line-chart,
  .kys-material {
    left: 20px;
    right: 20px;
  }
  .kys-orbit {
    width: 156px;
    height: 156px;
  }
  .kys-connect {
    width: min(320px, calc(100% - 36px));
    height: 138px;
  }
  .kys-connect span {
    width: 56px;
    height: 56px;
    font-size: 14px;
  }
  .kys-connect strong {
    width: 62px;
    height: 62px;
  }
  .kys-feature-card h3 {
    font-size: 22px;
  }
  .kys-feature-card p {
    font-size: 15px;
  }
}

/* Compact feature showcase and restored app phone. */
.kys-feature-block {
  padding: 42px 0 48px;
}

.kys-feature-wrap {
  width: min(1260px, calc(100% - 56px));
}

.kys-feature-grid {
  gap: 16px;
}

.kys-feature-card {
  min-height: 258px;
  padding: 168px 24px 22px;
  border-radius: 14px;
}

.kys-feature-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.kys-feature-card p {
  font-size: 15px;
  line-height: 1.5;
}

.kys-card-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
}

.kys-window {
  left: 22px;
  right: 22px;
  top: 18px;
  height: 142px;
  padding: 14px 16px;
}

.kys-window-head {
  margin-bottom: 14px;
  font-size: 13px;
}

.kys-bars {
  height: 86px;
  gap: 8px;
}

.kys-line-chart {
  inset: 28px 26px auto;
  height: 118px;
}

.kys-orbit {
  top: 30px;
  width: 150px;
  height: 150px;
}

.kys-core {
  top: 34px;
  width: 200px;
  height: 132px;
}

.kys-core-row span {
  width: 38px;
  height: 38px;
}

.kys-core strong {
  width: 58px;
  height: 58px;
  font-size: 13px;
}

.kys-material {
  inset: 30px 24px auto;
  height: 126px;
}

.kys-material i {
  height: 48px;
}

.kys-connect {
  top: 30px;
  width: min(340px, calc(100% - 90px));
  height: 128px;
}

.kys-connect::before,
.kys-connect::after {
  left: 68px;
  right: 68px;
  top: 64px;
}

.kys-connect span {
  width: 54px;
  height: 54px;
  font-size: 14px;
}

.kys-connect strong {
  width: 58px;
  height: 58px;
  border-radius: 14px;
}

.kys-connect img {
  max-width: 34px;
  max-height: 34px;
}

.kys-connect b {
  font-size: 18px;
}

.kys-feature-tags {
  margin-top: 18px;
  gap: 10px;
}

.kys-feature-tags span {
  padding: 8px 18px;
  font-size: 14px;
}

.app-panel {
  grid-template-columns: minmax(360px, 1.05fr) minmax(320px, .95fr);
}

.app-showcase {
  display: grid;
}

/* Strong mouse-follow interaction for the app download panel. */
.app-panel {
  --app-shift-x: 0px;
  --app-shift-y: 0px;
  --app-tilt-x: 0deg;
  --app-tilt-y: 0deg;
  isolation: isolate;
  background:
    radial-gradient(520px 380px at var(--app-mx) var(--app-my), rgba(102, 178, 255, .18), transparent 66%),
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, .24), transparent 20%),
    radial-gradient(circle at 76% 15%, rgba(125, 211, 252, .22), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, .15) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .11) 1px, transparent 1px),
    linear-gradient(120deg, #3690e5 0%, #3479ea 45%, #3361f0 100%);
  background-size: 100% 100%, auto, auto, 48px 48px, 48px 48px, auto;
  background-position:
    0 0,
    calc(var(--app-shift-x) * .35) calc(var(--app-shift-y) * .35),
    calc(var(--app-shift-x) * -.45) calc(var(--app-shift-y) * -.45),
    var(--app-shift-x) var(--app-shift-y),
    var(--app-shift-x) var(--app-shift-y),
    0 0;
  transition: box-shadow .28s ease, background-position .08s linear;
}

.app-panel::before {
  background:
    radial-gradient(560px 380px at var(--app-mx) var(--app-my), rgba(147, 197, 253, .22), transparent 72%),
    radial-gradient(300px 220px at calc(var(--app-mx) + 10%) calc(var(--app-my) - 8%), rgba(34, 211, 238, .16), transparent 74%),
    linear-gradient(115deg, transparent 12%, rgba(255, 255, 255, .13) 34%, transparent 56%),
    linear-gradient(135deg, rgba(255, 255, 255, .05), transparent 40%, rgba(15, 23, 42, .12));
  opacity: .72;
  transform: translate3d(calc(var(--app-shift-x) * -.5), calc(var(--app-shift-y) * -.5), 0);
  transition: opacity .22s ease, transform .08s linear;
}

.app-panel::after {
  background:
    radial-gradient(220px 220px at var(--app-mx) var(--app-my), rgba(255, 255, 255, .18), transparent 70%),
    linear-gradient(105deg, transparent 0 32%, rgba(255, 255, 255, .12) 45%, transparent 62%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 18px);
  opacity: .08;
}

.app-panel.is-tracking {
  box-shadow: 0 28px 68px rgba(36, 84, 208, .32);
}

.app-panel.is-tracking::after {
  opacity: .34;
}

.app-panel.is-tracking .phone-frame {
  animation: none;
  transform: translateY(-10px) rotateX(var(--app-tilt-x)) rotateY(var(--app-tilt-y));
}

/* Final corrections for the qq1 home page. Keep these after legacy rules. */
.hero-content h1 {
  width: min(760px, 100%) !important;
  font-size: clamp(36px, 4vw, 62px) !important;
  line-height: 1.18 !important;
  font-weight: 850 !important;
  color: #07111f !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  text-shadow: 0 14px 34px rgba(15, 23, 42, .12) !important;
  animation: none !important;
  filter: none !important;
}

.hero-title span {
  color: #0f172a;
  letter-spacing: 0;
}

.hero-title strong {
  position: relative;
  display: inline-block;
  margin-top: 4px;
  padding: 0 6px 12px;
  color: transparent;
  background: linear-gradient(112deg, #0f172a 0%, #1d4ed8 22%, #2563eb 48%, #1e40af 76%, #0f172a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 12px 28px rgba(37, 99, 235, .12);
}

.hero-title strong::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 3px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, .9), transparent);
  box-shadow: 0 10px 22px rgba(37, 99, 235, .26);
}

.hero-title-slider {
  position: relative;
  min-height: 2.55em;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  visibility: visible !important;
}

.hero-title-slider .hero-title-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(24px) scale(.96);
  filter: blur(8px);
  pointer-events: none;
  transition:
    opacity .62s cubic-bezier(.22, 1, .36, 1),
    transform .62s cubic-bezier(.22, 1, .36, 1),
    filter .62s cubic-bezier(.22, 1, .36, 1);
}

.hero-title-slider .hero-title-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.hero-title-slider .hero-title-slide.is-leaving {
  opacity: 0;
  transform: translateY(-18px) scale(1.02);
  filter: blur(8px);
}

.hero-title-slider .hero-title-slide > i,
.hero-title-slider .hero-title-slide > em {
  display: block;
  font-style: normal;
  opacity: 1 !important;
  transform: none !important;
}

.hero-title-slider .hero-title-slide > i {
  color: #0f172a;
}

.hero-title-slider .hero-title-slide > em {
  position: relative;
  display: inline-block;
  margin-top: 4px;
  padding: 0 6px 12px;
  color: transparent;
  background: linear-gradient(112deg, #0f172a 0%, #1d4ed8 22%, #2563eb 48%, #1e40af 76%, #0f172a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 12px 28px rgba(37, 99, 235, .12);
  width: max-content;
  max-width: 100%;
}

.hero-title-slider .hero-title-slide > em::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 3px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, .9), transparent);
  box-shadow: 0 10px 22px rgba(37, 99, 235, .26);
}

.hero-title-slider .hero-title-slide:nth-child(2) > i,
.hero-title-slider .hero-title-slide:nth-child(3) > i {
  color: transparent;
  background: linear-gradient(112deg, #0f172a 0%, #1d4ed8 30%, #2563eb 60%, #0f172a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(42px, 5.5vw, 84px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: .04em;
}

.hero-title-slider .hero-title-slide:nth-child(2) > em,
.hero-title-slider .hero-title-slide:nth-child(3) > em {
  margin-top: 16px;
  font-size: clamp(24px, 2.4vw, 38px);
}

.hero-title-slider .hero-title-slide.is-active > i {
  animation: heroSlideTextIn .7s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-title-slider .hero-title-slide.is-active > em {
  animation: heroSlideTextIn .74s cubic-bezier(.22, 1, .36, 1) .12s both;
}

@keyframes heroSlideTextIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-title span,
.hero-title strong {
  opacity: 0;
  transform: translateY(18px);
}

.hero-title-slider span,
.hero-title-slider strong {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.hero-title.show span {
  animation: titleRiseIn .72s cubic-bezier(.22, 1, .36, 1) .08s both;
}

.hero-title.show strong {
  animation: titleRiseIn .78s cubic-bezier(.22, 1, .36, 1) .22s both;
}

.hero-title.show strong::after {
  transform-origin: center;
  animation: titleUnderlineIn .72s cubic-bezier(.22, 1, .36, 1) .58s both;
}

.mobile-feature-head h2,
.app-panel-text h2,
.app-panel-text p {
  opacity: 1;
  transform: translateY(0);
}

.mobile-feature-head.reveal h2,
.app-panel-text h2.reveal,
.app-panel-text p.reveal {
  opacity: 1;
  transform: translateY(0);
}

.mobile-feature-head.show h2 {
  animation: titleRiseIn .72s cubic-bezier(.22, 1, .36, 1) .06s both;
}

.app-panel-text h2.show {
  animation: titleRiseIn .72s cubic-bezier(.22, 1, .36, 1) both;
}

.app-panel-text p.show {
  animation: titleRiseIn .72s cubic-bezier(.22, 1, .36, 1) .12s both;
}

@keyframes titleRiseIn {
  from {
    opacity: .35;
    transform: translateY(14px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes titleUnderlineIn {
  from {
    opacity: 0;
    transform: scaleX(.2);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.phone-mine-user {
  gap: 0 !important;
}

.phone-mine-user > span {
  display: none !important;
}

.phone-brand-logo b,
#phoneLogoText {
  display: none !important;
}

body:has(.article-body) .footer-qrs .footer-qr,
body.article-page .footer-qrs .footer-qr {
  display: block !important;
}

body:has(.article-body) .footer-main,
body.article-page .footer-main {
  grid-template-columns: 380px 140px minmax(420px, 1fr) !important;
  gap: 24px 34px !important;
}

body:has(.article-body) .footer-contact,
body.article-page .footer-contact {
  padding-left: 28px;
}

body:has(.article-body) .footer-columns,
body.article-page .footer-columns {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.article-page .footer-contact-info {
  min-width: 0;
  display: grid;
  gap: 8px;
}

body.article-page .footer-contact p {
  margin: 0;
  white-space: nowrap;
}

.float-tools {
  overflow: visible !important;
  z-index: 1000;
}

.float-item {
  overflow: visible !important;
}

.float-pop {
  z-index: 1001;
  visibility: hidden;
  border-radius: 18px;
  border-color: rgba(219, 227, 241, .86);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 42px rgba(15, 23, 42, .16);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.float-pop::after {
  border-radius: 3px;
  background: rgba(255, 255, 255, .96);
}

.float-pop--qr {
  padding: 14px;
  border-radius: 20px;
}

.float-pop--qr .qr-tile {
  border-radius: 14px;
}

.float-item:hover .float-pop,
.float-item:focus-visible .float-pop,
.float-item:focus-within .float-pop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.float-pop--qr .qr-tile {
  width: 126px;
  height: 126px;
}

.phone-screen {
  isolation: isolate;
}

.phone-pages {
  z-index: 1;
}

.phone-tabbar {
  position: relative !important;
  z-index: 50 !important;
  pointer-events: auto !important;
}

.phone-tab {
  pointer-events: auto !important;
  user-select: none;
}

.phone-home-indicator {
  pointer-events: none !important;
  z-index: 2 !important;
}

@media (max-width: 1080px) {
  .kys-feature-wrap {
    width: min(100% - 36px, 920px);
  }
  .kys-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .kys-feature-wrap {
    width: min(100% - 24px, 520px);
  }
  .kys-feature-grid {
    grid-template-columns: 1fr;
  }
  .kys-feature-card,
  .kys-feature-card--wide {
    min-height: 250px;
    padding: 160px 20px 22px;
  }
  .kys-connect {
    width: min(300px, calc(100% - 34px));
  }
}

/* Mobile app feature screenshots. */
.mobile-feature-showcase {
  padding: 0 0 58px;
  background:
    linear-gradient(180deg, #ddecff 0%, #f5faff 82%, #fff 100%);
  overflow: hidden;
}

.mobile-feature-wrap {
  width: min(1520px, 100%);
}

.mobile-feature-head {
  text-align: center;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  padding: 6px 18px 22px;
  margin-bottom: 0;
}

.mobile-feature-head p {
  margin: 0 0 6px;
  color: #2f7df6;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.mobile-feature-head h2 {
  margin: 0;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  color: #10243f;
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.15;
  font-weight: 900;
}

.mobile-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1460px, calc(100% - 48px));
  margin: 0 auto;
}

.mobile-feature-grid--five {
  grid-template-columns: repeat(5, minmax(230px, 1fr));
  width: min(1680px, calc(100% - 36px));
  gap: 14px;
}

.mobile-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  border: 1px solid rgba(124, 177, 245, .8);
  border-radius: 14px;
  background:
    linear-gradient(140deg, rgba(255,255,255,.1) 0 28%, transparent 28%),
    radial-gradient(80px 80px at 16% 34%, rgba(255,255,255,.08), transparent 72%),
    #2f6df5;
  box-shadow: 0 24px 54px rgba(34, 95, 180, .14);
  transform: translateY(0);
  transition: transform .36s ease, border-color .36s ease, box-shadow .36s ease, filter .36s ease;
  will-change: transform;
}

.mobile-feature-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(220px 160px at var(--mx, 50%) var(--my, 24%), rgba(255,255,255,.34), transparent 68%),
    linear-gradient(120deg, transparent 0 34%, rgba(255,255,255,.24) 42%, transparent 52%);
  transition: opacity .36s ease;
}

.mobile-feature-card:hover,
.mobile-feature-card:focus-within,
.mobile-feature-card.is-active {
  z-index: 2;
  border-color: rgba(255,255,255,.86);
  box-shadow: 0 34px 72px rgba(28, 91, 190, .24);
  transform: translateY(-10px);
}

.mobile-feature-card:hover::before,
.mobile-feature-card:focus-within::before,
.mobile-feature-card.is-active::before {
  opacity: 1;
}

.mobile-card-hero {
  position: relative;
  z-index: 1;
  min-height: 650px;
  padding: 14px 34px 0;
}

.mobile-card-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 20px;
  margin: 0 -18px 30px;
  color: #031634;
  font-size: 12px;
  line-height: 1;
}

.mobile-card-status i {
  flex: 1;
  height: 12px;
  margin: 0 10px;
  background:
    radial-gradient(circle, #111827 0 2px, transparent 2.5px) 0 50% / 18px 12px repeat-x,
    linear-gradient(90deg, transparent, rgba(17,24,39,.28), transparent);
  opacity: .95;
}

.mobile-card-status span:last-child {
  position: relative;
  padding-right: 20px;
}

.mobile-card-status span:last-child::after {
  content: "";
  position: absolute;
  top: 1px;
  right: 0;
  width: 18px;
  height: 10px;
  border-radius: 2px;
  background: #8ef45a;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.18);
}

.mobile-feature-card h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(24px, 2.15vw, 34px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0;
}

.mobile-feature-card p {
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.55;
}

.feature-phone {
  position: absolute;
  left: 34px;
  right: 34px;
  top: 204px;
  height: 446px;
  padding: 16px 18px;
  border-radius: 16px 16px 0 0;
  background: #fff;
  color: #111827;
  box-shadow: 0 18px 42px rgba(16, 36, 63, .18);
  transition: transform .38s ease, box-shadow .38s ease;
  transform-origin: center bottom;
}

.mobile-feature-card:hover .feature-phone,
.mobile-feature-card:focus-within .feature-phone,
.mobile-feature-card.is-active .feature-phone {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 26px 58px rgba(16, 36, 63, .28);
}

.mobile-feature-grid--five .mobile-card-hero {
  padding: 34px 18px 0;
}

.mobile-feature-grid--five .mobile-feature-card h3 {
  font-size: clamp(22px, 1.6vw, 30px);
}

.mobile-feature-grid--five .mobile-feature-card p {
  font-size: clamp(14px, 1vw, 17px);
}

.mobile-feature-grid--five .feature-phone {
  left: 18px;
  right: 18px;
  top: 178px;
  height: 472px;
}

.feature-phone--image {
  padding: 0;
  overflow: hidden;
  background: #f5f7fb;
}

.feature-phone--image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1);
  transition: transform 1.2s ease, object-position 1.2s ease;
}

.mobile-feature-card:hover .feature-phone--image img,
.mobile-feature-card:focus-within .feature-phone--image img,
.mobile-feature-card.is-active .feature-phone--image img {
  transform: scale(1.045);
}

.feature-phone-bar,
.feature-tabs,
.feature-phone-title,
.feature-withdraw-title,
.feature-shop-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-phone-bar {
  height: 18px;
  margin-bottom: 16px;
  font-size: 11px;
  color: #111827;
}

.feature-phone-bar span:last-child {
  width: 36px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #111827 0 24%, transparent 24% 34%, #111827 34% 58%, transparent 58% 66%, #111827 66%);
}

.feature-phone-title,
.feature-withdraw-title,
.feature-shop-title {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 800;
}

.feature-phone-title i,
.feature-shop-title i {
  width: 42px;
  height: 16px;
  background: linear-gradient(90deg, #111827 0 12px, transparent 12px 18px, #111827 18px 30px, transparent 30px 34px, #111827 34px);
  border-radius: 999px;
}

.feature-search,
.feature-filter {
  height: 28px;
  margin-bottom: 12px;
  border-radius: 4px;
  background: #f1f3f7;
}

.feature-search {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a6afbd;
  font-size: 10px;
}

.feature-message-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-message-list li {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
}

.feature-message-list b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f2f4f8;
  color: #8b95a5;
  font-size: 12px;
}

.feature-message-list span {
  font-size: 13px;
  font-weight: 700;
}

.feature-message-list small {
  display: block;
  max-width: 120px;
  margin-top: 5px;
  color: #8c96a5;
  font-size: 10px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feature-message-list em {
  color: #9aa4b2;
  font-size: 10px;
  font-style: normal;
}

.feature-message-list mark {
  position: absolute;
  right: 2px;
  bottom: 1px;
  display: grid;
  place-items: center;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  border-radius: 999px;
  background: #ff4d6d;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
}

.feature-phone--message {
  padding: 14px 14px 0;
  overflow: hidden;
  background: #fff;
}

.feature-phone--message .feature-phone-bar {
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 700;
}

.feature-phone--message .feature-phone-title {
  margin-bottom: 24px;
  font-size: 21px;
}

.feature-phone--message .feature-phone-title span {
  flex: 1;
}

.feature-phone--message .feature-phone-title i,
.feature-phone--message .feature-phone-title b {
  position: relative;
  width: 24px;
  height: 24px;
  background: none;
  border-radius: 0;
}

.feature-phone--message .feature-phone-title i::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 13px;
  height: 12px;
  border: 2px solid #111827;
  border-radius: 7px 7px 4px 4px;
}

.feature-phone--message .feature-phone-title i::after {
  content: "62";
  position: absolute;
  right: -1px;
  top: -5px;
  min-width: 15px;
  height: 15px;
  border-radius: 999px;
  background: #3b82f6;
  color: #fff;
  font-size: 8px;
  line-height: 15px;
  text-align: center;
}

.feature-phone--message .feature-phone-title b::before,
.feature-phone--message .feature-phone-title b::after {
  content: "";
  position: absolute;
  border: 2px solid #111827;
}

.feature-phone--message .feature-phone-title b::before {
  left: 5px;
  top: 6px;
  width: 12px;
  height: 11px;
  border-radius: 1px;
}

.feature-phone--message .feature-phone-title b::after {
  left: 9px;
  top: 2px;
  width: 10px;
  height: 15px;
  border-left: 0;
  border-bottom: 0;
}

.feature-phone--message .feature-search {
  height: 39px;
  margin-bottom: 20px;
  border-radius: 4px;
  background: #f4f5f8;
  font-size: 12px;
}

.feature-phone--message .feature-search span {
  position: relative;
  padding-left: 18px;
}

.feature-phone--message .feature-search span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid #c2c7d1;
  border-radius: 50%;
  transform: translateY(-50%);
}

.feature-phone--message .feature-search span::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: #c2c7d1;
  transform: translateY(4px) rotate(45deg);
}

.feature-phone--message .feature-message-list {
  gap: 21px;
}

.feature-phone--message .feature-message-list li {
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
}

.feature-phone--message .feature-message-list b {
  width: 44px;
  height: 44px;
  color: #aeb5c1;
  font-size: 15px;
  background: #f6f7fa;
}

.feature-phone--message .feature-message-list span {
  color: #111827;
  font-size: 15px;
}

.feature-phone--message .feature-message-list small {
  max-width: 150px;
  color: #808896;
  font-size: 11px;
}

.feature-phone--message .feature-message-list em {
  color: #a4acb8;
  font-size: 11px;
}

.feature-phone--message .feature-message-list mark {
  right: 0;
  bottom: 8px;
  min-width: 18px;
  height: 18px;
  background: #ff5b68;
  font-size: 9px;
  line-height: 18px;
}

.feature-message-tabbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 54px;
  border-top: 1px solid #eef0f4;
  background: rgba(255,255,255,.98);
}

.feature-message-tabbar span {
  position: relative;
  display: grid;
  place-items: end center;
  padding-bottom: 6px;
  color: #c3c9d5;
  font-size: 10px;
}

.feature-message-tabbar span::before {
  content: "";
  position: absolute;
  top: 8px;
  width: 19px;
  height: 17px;
  border-radius: 5px;
  background: currentColor;
  opacity: .85;
}

.feature-message-tabbar span:nth-child(4) {
  color: #3b82f6;
}

.feature-message-tabbar span:nth-child(4)::after {
  content: "99+";
  position: absolute;
  top: 3px;
  left: 50%;
  min-width: 22px;
  height: 13px;
  border-radius: 999px;
  background: #ff5b68;
  color: #fff;
  font-size: 8px;
  line-height: 13px;
}

.feature-tabs {
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 14px;
}

.feature-tabs b {
  font-size: 16px;
}

.feature-tabs span {
  color: #111827;
}

.feature-tabs button {
  margin-left: auto;
  width: 44px;
  height: 22px;
  border: 0;
  border-radius: 4px;
  background: #2f6df5;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.feature-filter {
  display: grid;
  grid-template-columns: .9fr 1.7fr .7fr;
  gap: 6px;
  background: transparent;
}

.feature-filter span {
  display: flex;
  align-items: center;
  min-width: 0;
  height: 28px;
  padding: 0 8px;
  border-radius: 14px;
  background: #f4f6fa;
  color: #8d97a6;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-order-item {
  position: relative;
  margin-top: 10px;
  padding: 11px 12px 12px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(21, 55, 110, .08);
}

.feature-order-item strong {
  display: block;
  color: #2563eb;
  font-size: 12px;
}

.feature-order-item small {
  display: block;
  max-width: 160px;
  margin-top: 7px;
  color: #a1aab8;
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feature-order-item em {
  position: absolute;
  top: 30px;
  right: 12px;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
}

.feature-order-item dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 10px;
  margin: 12px 0 0;
  color: #8b95a5;
  font-size: 9px;
}

.feature-order-item dt {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feature-order-item button {
  position: absolute;
  right: 10px;
  bottom: 10px;
  height: 24px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: #2f6df5;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.feature-balance span,
.feature-data-card span {
  display: block;
  color: #dbeafe;
  font-size: 12px;
}

.feature-balance strong {
  display: block;
  color: #fff;
  font-size: 31px;
  line-height: 1.1;
}

.feature-phone--withdraw {
  top: 218px;
  height: 432px;
  background: #f6f8fc;
}

.feature-phone--withdraw::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 128px;
  border-radius: 16px 16px 0 0;
  background: #2f6df5;
  z-index: 0;
}

.feature-phone--withdraw > * {
  position: relative;
  z-index: 1;
}

.feature-withdraw-title {
  color: #fff;
}

.feature-withdraw-title em {
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.feature-withdraw-box {
  margin-top: 14px;
  padding: 14px 12px 13px;
  border-radius: 8px;
  background: #fff;
}

.feature-withdraw-box small,
.feature-withdraw-box span {
  display: block;
  color: #334155;
  font-size: 10px;
}

.feature-withdraw-box a {
  float: right;
  margin-top: 11px;
  color: #2f6df5;
  font-size: 10px;
}

.feature-withdraw-box b {
  display: inline-block;
  margin-right: 10px;
  font-size: 28px;
  font-weight: 500;
}

.feature-withdraw-box i {
  display: inline-block;
  width: 2px;
  height: 28px;
  background: #1d4ed8;
  vertical-align: -5px;
}

.feature-withdraw-box button {
  display: block;
  width: 100%;
  height: 34px;
  margin-top: 18px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: #bfd0ff;
  font-weight: 700;
}

.feature-note {
  min-height: 92px;
  margin-top: 14px;
  padding: 10px 0;
  border-radius: 8px;
  background: transparent;
}

.feature-note strong {
  display: block;
  margin-bottom: 7px;
  color: #111827;
  font-size: 12px;
}

.feature-note p {
  margin: 0 0 5px;
  color: #667085;
  font-size: 9px;
  line-height: 1.45;
}

.feature-data-card {
  margin-bottom: 12px;
  padding: 15px 14px 12px;
  border-radius: 4px;
  background: #2f6df5;
  color: #fff;
}

.feature-data-card strong {
  display: inline-block;
  margin: 4px 12px 12px 0;
  font-size: 30px;
  line-height: 1;
}

.feature-data-card em {
  font-style: normal;
  font-size: 12px;
}

.feature-notice {
  height: 24px;
  margin-bottom: 12px;
  padding: 0 9px;
  border-radius: 3px;
  background: #f3f5f9;
  color: #4b5563;
  font-size: 9px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.feature-data-card ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-data-card li {
  color: rgba(255,255,255,.86);
  font-size: 9px;
}

.feature-data-card li b {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 11px;
}

.feature-actions,
.feature-icons {
  display: grid;
  gap: 8px;
}

.feature-actions {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 14px;
}

.feature-actions i,
.feature-icons i {
  display: grid;
  place-items: end center;
  height: 38px;
  padding-bottom: 4px;
  border-radius: 6px;
  background: #f5f7fb;
  color: #111827;
  font-size: 9px;
  font-style: normal;
  white-space: nowrap;
}

.feature-actions i {
  background:
    radial-gradient(circle at 50% 11px, #2f6df5 0 4px, transparent 5px),
    #fff;
  border: 1px solid #eef2f7;
}

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

.feature-icons i {
  height: 52px;
  background:
    radial-gradient(circle at 50% 15px, #4b8bff 0 6px, transparent 7px),
    linear-gradient(#f7f9fd, #f7f9fd);
}

.feature-module-title {
  margin-bottom: 10px;
  color: #111827;
  font-size: 12px;
  font-weight: 800;
}

.feature-phone--dashboard {
  top: 176px;
  height: 474px;
  padding: 12px 12px 56px;
  overflow: hidden;
  background:
    radial-gradient(180px 160px at 20% 8%, rgba(219, 234, 254, .9), transparent 70%),
    linear-gradient(180deg, #eef5ff 0%, #f7f8ff 100%);
}

.feature-phone--dashboard .feature-phone-bar {
  height: 18px;
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 800;
  transform: scale(.54);
  transform-origin: left center;
  width: 185%;
}

.feature-phone--dashboard .feature-phone-bar span:last-child {
  width: 62px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  line-height: 22px;
  text-align: center;
}

.dashboard-user {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 34px 25px 25px;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.dashboard-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 32%, #facc15 0 5px, transparent 6px),
    radial-gradient(circle at 64% 36%, #a78bfa 0 8px, transparent 9px),
    linear-gradient(135deg, #2f6df5, #111827);
}

.dashboard-user strong,
.dashboard-user em {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-user strong {
  color: #2b3442;
  font-size: 18px;
  line-height: 1.2;
}

.dashboard-user em {
  margin-top: 4px;
  color: #9aa4b2;
  font-size: 15px;
  font-style: normal;
}

.dashboard-msg {
  position: relative;
  width: 28px;
  height: 24px;
  border: 3px solid #374151;
  border-radius: 6px;
  font-style: normal;
}

.dashboard-msg::after {
  content: "99+";
  position: absolute;
  top: -16px;
  right: -15px;
  min-width: 28px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: #ef5350;
  color: #fff;
  font-size: 11px;
  line-height: 17px;
  text-align: center;
  box-shadow: 0 0 0 2px #fff;
}

.dashboard-gear {
  width: 25px;
  height: 25px;
  border: 4px solid #374151;
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px #eef5ff;
}

.dashboard-menu {
  width: 25px;
  height: 18px;
  background: repeating-linear-gradient(#374151 0 3px, transparent 3px 8px);
}

.dashboard-state {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  min-height: 88px;
  margin-bottom: 16px;
  padding: 20px 12px 14px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08) 0 30%, transparent 31%),
    linear-gradient(90deg, #3d72f1, #2f6df5);
  color: rgba(255,255,255,.72);
  text-align: center;
}

.dashboard-state span {
  min-width: 0;
  font-size: 10px;
  line-height: 1.3;
  white-space: nowrap;
}

.dashboard-state b {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 16px;
}

.dashboard-stats article {
  min-height: 86px;
  padding: 14px 11px;
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.dashboard-stats span,
.dashboard-stats em {
  display: block;
  color: #6b7280;
  font-size: 14px;
  font-style: normal;
}

.dashboard-stats strong {
  display: block;
  margin: 9px 0 8px;
  color: #111827;
  font-size: 25px;
  line-height: 1;
}

.dashboard-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  margin-bottom: 14px;
  padding: 0 16px;
  border-radius: 13px;
  background: #fff;
}

.dashboard-notice b {
  padding: 2px 6px;
  border-radius: 3px;
  background: #e8f1ff;
  color: #2f6df5;
  font-size: 12px;
}

.dashboard-notice span {
  flex: 1;
  color: #4b5563;
  font-size: 13px;
}

.dashboard-notice i {
  width: 9px;
  height: 9px;
  border-top: 2px solid #111827;
  border-right: 2px solid #111827;
  transform: rotate(45deg);
}

.dashboard-panel {
  margin-bottom: 12px;
  padding: 16px 16px 18px;
  border-radius: 13px;
  background: #fff;
}

.dashboard-panel h4 {
  margin: 0 0 16px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1;
}

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

.dashboard-grid i {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 62px;
  padding-top: 42px;
  color: #4b5563;
  font-size: 12px;
  font-style: normal;
  text-align: center;
  white-space: nowrap;
}

.dashboard-grid i::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  transform: translateX(-50%);
  background: #3b82f6;
}

.dashboard-grid--goods i:nth-child(1)::before { background: linear-gradient(180deg, #60a5fa, #2f6df5); }
.dashboard-grid--goods i:nth-child(2)::before { background: linear-gradient(180deg, #fbbf24, #fb923c); }
.dashboard-grid--goods i:nth-child(3)::before { background: linear-gradient(135deg, #34d399, #86efac); }
.dashboard-grid--orders i:nth-child(1)::before { background: linear-gradient(180deg, #93c5fd, #60a5fa); }
.dashboard-grid--orders i:nth-child(2)::before { background: linear-gradient(180deg, #fbbf24, #fb923c); }
.dashboard-grid--orders i:nth-child(3)::before { background: linear-gradient(180deg, #a5b4fc, #818cf8); }

.dashboard-panel--strategy {
  margin-bottom: 0;
}

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

.dashboard-grid--strategy i {
  min-height: 42px;
}

.dashboard-grid--strategy i::before {
  border-radius: 50%;
  background: linear-gradient(180deg, #fbbf24, #f59e0b);
}

.dashboard-tabbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 54px;
  border-top: 1px solid #eef2f7;
  background: rgba(255,255,255,.98);
}

.dashboard-tabbar span {
  position: relative;
  display: grid;
  place-items: end center;
  padding-bottom: 7px;
  color: #7b8494;
  font-size: 13px;
}

.dashboard-tabbar span::before {
  content: "";
  position: absolute;
  top: 7px;
  width: 21px;
  height: 18px;
  border: 3px solid currentColor;
  border-radius: 4px;
}

.dashboard-tabbar span:first-child {
  color: #3b82f6;
}

.feature-phone--dashboard {
  top: 150px;
  height: 500px;
  padding: 0;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: #eef5ff;
}

.dashboard-reference-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.mobile-feature-card::after {
  content: attr(data-title);
  display: none;
}

.mobile-feature-head.feature-enter,
.mobile-feature-card.feature-enter {
  opacity: 0 !important;
  transform: translateY(34px) scale(.985);
  filter: blur(6px);
  transition:
    opacity .72s cubic-bezier(.22, 1, .36, 1),
    transform .72s cubic-bezier(.22, 1, .36, 1),
    filter .72s cubic-bezier(.22, 1, .36, 1),
    box-shadow .28s ease,
    border-color .28s ease;
  transition-delay: var(--feature-delay, 0ms);
  will-change: opacity, transform, filter;
}

.mobile-feature-head.feature-entered,
.mobile-feature-card.feature-entered {
  opacity: 1 !important;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.mobile-feature-head.feature-enter p,
.mobile-feature-head.feature-enter h2,
.mobile-feature-card.feature-enter .mobile-card-hero h3,
.mobile-feature-card.feature-enter .mobile-card-hero p,
.mobile-feature-card.feature-enter .feature-phone {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .62s cubic-bezier(.22, 1, .36, 1),
    transform .62s cubic-bezier(.22, 1, .36, 1);
  transition-delay: calc(var(--feature-delay, 0ms) + 120ms);
}

.mobile-feature-card.feature-enter .feature-phone {
  transform: translateY(30px) scale(.985);
  transition-delay: calc(var(--feature-delay, 0ms) + 190ms);
}

.mobile-feature-head.feature-enter h2,
.mobile-feature-card.feature-enter .mobile-card-hero p {
  transition-delay: calc(var(--feature-delay, 0ms) + 180ms);
}

.mobile-feature-head.feature-entered p,
.mobile-feature-head.feature-entered h2,
.mobile-feature-card.feature-entered .mobile-card-hero h3,
.mobile-feature-card.feature-entered .mobile-card-hero p,
.mobile-feature-card.feature-entered .feature-phone {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mobile-feature-card.feature-entered:hover,
.mobile-feature-card.feature-entered:focus-within,
.mobile-feature-card.feature-entered.is-active {
  transform: translateY(-10px);
}

.mobile-feature-card.feature-entered:hover .feature-phone,
.mobile-feature-card.feature-entered:focus-within .feature-phone,
.mobile-feature-card.feature-entered.is-active .feature-phone {
  transform: translateY(-8px) scale(1.025);
}

@keyframes featureRiseIn {
  from {
    opacity: .18;
    transform: translateY(28px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes featureTextIn {
  from {
    opacity: .2;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .mobile-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mobile-feature-grid--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100% - 32px, 860px);
  }
}

@media (max-width: 640px) {
  .mobile-feature-showcase {
    padding: 0 0 42px;
  }
  .mobile-feature-wrap {
    width: 100%;
  }
  .mobile-feature-grid {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 420px);
  }
  .mobile-feature-grid--five {
    grid-template-columns: 1fr;
  }
  .mobile-card-hero {
    padding-inline: 24px;
  }
  .feature-phone {
    left: 24px;
    right: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-feature-card,
  .feature-phone,
  .feature-phone--image img {
    transition: none;
  }
  .mobile-feature-head.feature-enter,
  .mobile-feature-card.feature-enter,
  .mobile-feature-head.feature-entered,
  .mobile-feature-card.feature-entered,
  .mobile-feature-card.feature-entered .mobile-card-hero h3,
  .mobile-feature-card.feature-entered .mobile-card-hero p {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
  .mobile-feature-card:hover,
  .mobile-feature-card:focus-within,
  .mobile-feature-card.is-active,
  .mobile-feature-card:hover .feature-phone,
  .mobile-feature-card:focus-within .feature-phone,
  .mobile-feature-card.is-active .feature-phone,
  .mobile-feature-card:hover .feature-phone--image img,
  .mobile-feature-card:focus-within .feature-phone--image img,
  .mobile-feature-card.is-active .feature-phone--image img {
    transform: none;
  }
}

/* KYS exact proportion pass for the showcase block. */
.kys-feature-block {
  padding: 38px 0 40px;
  background:
    radial-gradient(70% 46% at 50% 0%, rgba(75, 139, 255, .14), transparent 70%),
    linear-gradient(180deg, #f4f9ff 0%, #eaf4ff 100%);
}

.kys-feature-wrap {
  width: min(1782px, calc(100% - 28px));
}

.kys-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.kys-feature-card {
  min-height: 382px;
  padding: 266px 34px 34px;
  border-radius: 16px;
  border-color: rgba(177, 202, 238, .68);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.92),
    0 22px 58px rgba(39, 91, 160, .08);
}

.kys-feature-card--wide {
  grid-column: span 2;
}

.kys-feature-card h3 {
  font-size: 34px;
  line-height: 1.12;
  margin-bottom: 14px;
  color: #10243f;
}

.kys-feature-card p {
  font-size: 22px;
  line-height: 1.52;
  color: #4f6078;
}

.kys-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.kys-window {
  left: 34px;
  right: 34px;
  top: 30px;
  height: 232px;
  padding: 28px 28px 24px;
  border-radius: 16px;
}

.kys-window-head {
  margin-bottom: 42px;
  font-size: 18px;
}

.kys-window-head i {
  width: 12px;
  height: 12px;
}

.kys-bars {
  height: 126px;
  gap: 14px;
}

.kys-bars i {
  border-radius: 7px 7px 0 0;
}

.kys-line-chart {
  inset: 50px 42px auto;
  height: 180px;
}

.kys-line {
  stroke-width: 4;
}

.kys-line-dot {
  stroke-width: 5;
}

.kys-orbit {
  top: 64px;
  width: 230px;
  height: 230px;
}

.kys-orbit b {
  width: 10px;
  height: 10px;
}

.kys-core {
  top: 58px;
  width: 260px;
  height: 180px;
}

.kys-core-row {
  gap: 18px;
}

.kys-core-row span {
  width: 56px;
  height: 56px;
  border-radius: 14px;
}

.kys-core-row em {
  width: 34px;
}

.kys-core-line {
  top: 68px;
  height: 52px;
}

.kys-core strong {
  width: 82px;
  height: 82px;
  border-radius: 18px;
  font-size: 20px;
}

.kys-material {
  inset: 56px 36px auto;
  height: 180px;
}

.kys-material span {
  font-size: 18px;
  margin-bottom: 18px;
}

.kys-material div {
  gap: 16px;
}

.kys-material i {
  height: 72px;
  border-radius: 14px;
}

.kys-connect {
  top: 58px;
  width: min(540px, calc(100% - 150px));
  height: 208px;
}

.kys-connect::before,
.kys-connect::after {
  left: 98px;
  right: 98px;
  top: 104px;
}

.kys-connect span {
  width: 82px;
  height: 82px;
  font-size: 20px;
  color: #52627a;
}

.kys-connect strong {
  width: 72px;
  height: 72px;
  border-radius: 16px;
}

.kys-connect img {
  max-width: 54px;
  max-height: 54px;
}

.kys-connect strong:empty::before,
.kys-connect img[src=""] {
  display: none;
}

.kys-connect b {
  display: none !important;
}

.kys-feature-tags {
  margin-top: 30px;
  gap: 16px;
}

.kys-feature-tags span {
  padding: 12px 30px;
  font-size: 18px;
}

.support-page {
  background: #edf4ff;
  color: #10243f;
}

.support-main {
  min-height: 70vh;
}

.support-hero {
  padding: 138px 0 72px;
  background:
    radial-gradient(520px 260px at 22% 44%, rgba(96, 165, 250, .24), transparent 72%),
    radial-gradient(460px 240px at 78% 36%, rgba(147, 197, 253, .18), transparent 72%),
    #254a7c;
  color: #fff;
  text-align: center;
}

.support-hero-inner p {
  margin: 0 0 10px;
  color: rgba(219, 234, 254, .88);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
}

.support-hero-inner h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: 0;
}

.support-hero-inner span {
  display: block;
  margin-top: 16px;
  color: rgba(239, 246, 255, .88);
  font-size: 17px;
}

.support-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, .86fr) minmax(230px, .72fr);
  gap: 18px;
  margin-top: -42px;
  position: relative;
  z-index: 2;
}

.support-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(207, 220, 238, .92);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 52px rgba(37, 74, 124, .12);
}

.support-card--primary {
  background:
    radial-gradient(340px 180px at 80% 0%, rgba(96, 165, 250, .14), transparent 70%),
    #fff;
}

.support-card-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: #eef5ff;
  color: #2563eb;
}

.support-card-icon svg {
  width: 25px;
  height: 25px;
}

.support-card h2 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 24px;
  line-height: 1.25;
}

.support-card p {
  margin: 0 0 10px;
  color: #536176;
  font-size: 15px;
  line-height: 1.72;
}

.support-card a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 700;
}

.support-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  background: #2563eb;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(37, 99, 235, .24);
}

.support-qr-card {
  text-align: center;
}

.support-qr {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  margin: 0 auto 16px;
  padding: 8px;
  border: 1px solid #dbe5f3;
  border-radius: 18px;
  background: #fff;
}

.support-qr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.support-time-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 20px;
  align-items: stretch;
  padding: 34px 0 10px;
}

.support-time-copy {
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(207, 220, 238, .88);
  box-shadow: 0 18px 48px rgba(37, 74, 124, .1);
}

.support-time-copy p {
  margin: 0 0 10px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
}

.support-time-copy h2 {
  margin: 0 0 12px;
  color: #10243f;
  font-size: 30px;
  line-height: 1.2;
}

.support-time-copy span {
  display: block;
  color: #64748b;
  font-size: 15px;
  line-height: 1.8;
}

.support-time-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.support-time-cards article {
  min-height: 172px;
  padding: 26px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(207, 220, 238, .86);
  box-shadow: 0 18px 48px rgba(37, 74, 124, .09);
}

.support-time-cards strong,
.support-time-cards span,
.support-time-cards em {
  display: block;
}

.support-time-cards strong {
  color: #10243f;
  font-size: 20px;
}

.support-time-cards span {
  margin-top: 10px;
  color: #64748b;
  font-size: 14px;
}

.support-time-cards em {
  margin-top: 26px;
  color: #2563eb;
  font-size: 17px;
  font-style: normal;
  font-weight: 800;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 34px 0 78px;
}

.support-grid article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(207, 220, 238, .86);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
}

.support-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #10243f;
  font-size: 18px;
}

.support-grid p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.72;
}

@media (max-width: 980px) {
  .support-panel,
  .support-grid,
  .support-time-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .support-time-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .support-hero {
    padding: 116px 0 56px;
  }
  .support-panel,
  .support-grid,
  .support-time-section,
  .support-time-cards {
    grid-template-columns: 1fr;
  }
  .support-card {
    min-height: auto;
    padding: 22px;
  }
}

/* Final floating contact popup shape. */
.float-pop {
  border-radius: 22px !important;
  overflow: hidden;
}

.float-pop::after {
  border-radius: 4px !important;
}

.float-pop--qr {
  min-width: 150px;
  padding: 16px !important;
  border-radius: 24px !important;
}

.float-pop--qr .qr-tile,
.float-pop--qr .qr-tile img {
  border-radius: 18px !important;
}

@media (max-width: 1200px) {
  .kys-feature-wrap {
    width: min(100% - 36px, 1000px);
  }
  .kys-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .kys-feature-card {
    min-height: 320px;
    padding: 212px 28px 28px;
  }
  .kys-window {
    height: 178px;
  }
}

@media (max-width: 640px) {
  .kys-feature-wrap {
    width: min(100% - 24px, 520px);
  }
  .kys-feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .kys-feature-card,
  .kys-feature-card--wide {
    grid-column: auto;
    min-height: 272px;
    padding: 172px 20px 22px;
  }
  .kys-feature-card h3 {
    font-size: 22px;
  }
  .kys-feature-card p {
    font-size: 15px;
  }
  .kys-window {
    left: 16px;
    right: 16px;
    top: 18px;
    height: 138px;
    padding: 16px;
  }
  .kys-connect {
    top: 28px;
    width: min(300px, calc(100% - 34px));
    height: 128px;
  }
  .kys-connect span {
    width: 56px;
    height: 56px;
    font-size: 14px;
  }
  .kys-connect strong {
    width: 58px;
    height: 58px;
  }
}

/* Last override: hero title must stay visible and cycle. */
.hero-title.hero-title-slider {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  filter: none !important;
}

.hero-title.hero-title-slider .hero-title-slide {
  opacity: 0;
  transform: translateY(24px) scale(.96);
  filter: blur(8px);
  animation: heroTitleAutoPlay 9s cubic-bezier(.22, 1, .36, 1) infinite;
}

.hero-title.hero-title-slider .hero-title-slide:nth-child(1) { animation-delay: 0s; }
.hero-title.hero-title-slider .hero-title-slide:nth-child(2) { animation-delay: 3s; }
.hero-title.hero-title-slider .hero-title-slide:nth-child(3) { animation-delay: 6s; }

/* Last override at EOF: restore merchant button glass style and readable text. */
.nav-pill .nav-login,
.nav-pill .nav-login:visited {
  color: #1d4ed8 !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 252, 255, 0.68)) !important;
  border-color: rgba(191, 219, 254, 0.9) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 0 3px rgba(147, 197, 253, 0.18),
    0 8px 22px rgba(77, 142, 247, 0.16) !important;
}

.nav-pill .nav-login svg,
.nav-pill .nav-login span {
  color: inherit !important;
  opacity: 1 !important;
}

.nav-pill .nav-login:hover {
  color: #1e40af !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.88)) !important;
  border-color: rgba(147, 197, 253, 0.95) !important;
}

/* Last override at EOF: remove hero text sweep and make first line gradient blue. */
.hero-title.hero-title-slider .hero-title-slide > i,
.hero-title.hero-title-slider .hero-title-slide > em {
  overflow: visible !important;
}

.hero-title.hero-title-slider .hero-title-slide > i::after,
.hero-title.hero-title-slider .hero-title-slide > em::before {
  content: none !important;
  display: none !important;
  animation: none !important;
}

.hero-title.hero-title-slider .hero-title-slide > i {
  color: transparent !important;
  background: linear-gradient(112deg, #0f172a 0%, #1d4ed8 24%, #2563eb 52%, #1e40af 78%, #0f172a 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  text-shadow: 0 12px 28px rgba(37, 99, 235, .12) !important;
}

/* Operation title background model. */
.operation-bg-model {
  position: absolute;
  left: 50%;
  top: 60%;
  width: min(1060px, 88vw);
  height: 250px;
  transform: translate(-50%, -50%) perspective(980px) rotateX(58deg);
  transform-style: preserve-3d;
  z-index: 0;
  pointer-events: none;
  opacity: .98;
  filter: saturate(1.18);
}

.operation-bg-model::before,
.operation-bg-model::after,
.operation-model-platform,
.operation-model-beam,
.operation-model-core,
.operation-model-chip,
.operation-model-card,
.operation-model-track {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-style: preserve-3d;
  pointer-events: none;
}

.operation-bg-model::before,
.operation-bg-model::after {
  content: "";
  border-radius: 999px;
}

.operation-bg-model::before {
  width: 760px;
  height: 188px;
  margin: -94px 0 0 -380px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(37,99,235,.22), rgba(59,130,246,.12) 40%, transparent 72%);
  filter: blur(12px);
  transform: translateZ(-18px);
}

.operation-bg-model::after {
  width: 420px;
  height: 118px;
  margin: -59px 0 0 -210px;
  border: 1px solid rgba(37,99,235,.28);
  background: rgba(59,130,246,.05);
  box-shadow:
    inset 0 0 30px rgba(37,99,235,.16),
    0 0 42px rgba(59,130,246,.18);
  transform: translateZ(6px);
  animation: operationModelPulse 3.8s ease-in-out infinite;
}

.operation-model-platform {
  width: 620px;
  height: 152px;
  margin: -76px 0 0 -310px;
  border-radius: 999px;
  border: 1px solid rgba(37,99,235,.36);
  background:
    linear-gradient(90deg, transparent, rgba(37,99,235,.18), transparent),
    radial-gradient(ellipse at center, rgba(255,255,255,.54), rgba(219,234,254,.32) 46%, rgba(37,99,235,.08) 78%, transparent 100%);
  box-shadow:
    inset 0 0 34px rgba(59,130,246,.18),
    0 22px 54px rgba(37,99,235,.18);
  transform: translateZ(2px);
}

.operation-model-platform::before,
.operation-model-platform::after {
  content: "";
  position: absolute;
  inset: 20px 64px;
  border-radius: inherit;
  border: 1px dashed rgba(37,99,235,.32);
}

.operation-model-platform::after {
  inset: 45px 150px;
  border-style: solid;
  opacity: .72;
}

.operation-model-beam {
  width: 2px;
  height: 118px;
  margin: -112px 0 0 -1px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(37,99,235,.42), transparent);
  box-shadow: 0 0 18px rgba(59,130,246,.34);
  transform: translateZ(18px);
  opacity: .76;
}

.operation-model-beam--one {
  transform: translate3d(-206px, -10px, 16px);
}

.operation-model-beam--two {
  height: 150px;
  margin-top: -138px;
  transform: translate3d(0, 0, 22px);
}

.operation-model-beam--three {
  transform: translate3d(206px, -10px, 16px);
}

.operation-model-core {
  width: 168px;
  height: 168px;
  margin: -84px 0 0 -84px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.9), rgba(219,234,254,.56)),
    linear-gradient(45deg, rgba(37,99,235,.36), rgba(96,165,250,.48));
  border: 1px solid rgba(37,99,235,.42);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.86),
    inset 0 -34px 52px rgba(59,130,246,.22),
    0 26px 74px rgba(37,99,235,.3),
    0 0 54px rgba(59,130,246,.22);
  transform: translateZ(56px) rotateZ(45deg);
  animation: operationModelCore 8s ease-in-out infinite;
}

.operation-model-core::before,
.operation-model-core::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 28px;
  border: 1px solid rgba(37,99,235,.34);
  background: radial-gradient(circle at 50% 50%, rgba(59,130,246,.32), transparent 64%);
}

.operation-model-core::after {
  inset: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(29,78,216,.78), rgba(147,197,253,.36));
  box-shadow: 0 0 34px rgba(59,130,246,.42);
}

.operation-model-chip {
  width: 96px;
  height: 42px;
  margin: -21px 0 0 -48px;
  border-radius: 14px;
  border: 1px solid rgba(37,99,235,.4);
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(219,234,254,.54));
  box-shadow: 0 14px 34px rgba(37,99,235,.18);
  transform: translate3d(-214px, -106px, 68px) rotateZ(-8deg);
  animation: operationModelChip 5.6s ease-in-out infinite;
}

.operation-model-chip::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 44px;
  height: 6px;
  border-radius: 999px;
  background: rgba(37,99,235,.35);
}

.operation-model-chip--two {
  width: 108px;
  transform: translate3d(214px, -104px, 68px) rotateZ(8deg);
  animation-delay: -2.8s;
}

.operation-model-card {
  width: 208px;
  height: 88px;
  margin: -44px 0 0 -104px;
  border-radius: 22px;
  border: 1px solid rgba(37,99,235,.42);
  background:
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(226,239,255,.58));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.86),
    0 20px 44px rgba(37,99,235,.18);
  animation: operationModelCard 7.2s ease-in-out infinite;
}

.operation-model-card::before,
.operation-model-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 9px;
  border-radius: 999px;
  background: rgba(37,99,235,.34);
}

.operation-model-card::before {
  top: 20px;
  width: 52%;
}

.operation-model-card::after {
  top: 40px;
  width: 72%;
  opacity: .64;
}

.operation-model-card--one {
  transform: translate3d(-352px, -18px, 48px) rotateZ(-8deg);
}

.operation-model-card--two {
  width: 188px;
  height: 82px;
  transform: translate3d(352px, -16px, 48px) rotateZ(8deg);
  animation-delay: -2.2s;
}

.operation-model-card--three {
  width: 168px;
  height: 76px;
  transform: translate3d(10px, 112px, 38px) rotateZ(2deg);
  animation-delay: -4.4s;
}

.operation-model-track {
  width: 900px;
  height: 210px;
  margin: -105px 0 0 -450px;
  border-radius: 50%;
  border: 1px solid rgba(37,99,235,.3);
  box-shadow:
    inset 0 0 24px rgba(37,99,235,.1),
    0 0 28px rgba(37,99,235,.13);
  animation: operationModelTrack 11s linear infinite;
}

.operation-model-track::before,
.operation-model-track::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(37,99,235,.72);
  box-shadow: 0 0 22px rgba(37,99,235,.54);
}

.operation-model-track::before {
  left: 9%;
  top: 34%;
}

.operation-model-track::after {
  right: 12%;
  bottom: 28%;
}

.operation-model-track--two {
  width: 720px;
  height: 158px;
  margin: -79px 0 0 -360px;
  transform: rotateZ(15deg) translateZ(8px);
  opacity: .86;
  animation-duration: 14s;
  animation-direction: reverse;
}

.operation-snapshot .operation-top:hover .operation-bg-model {
  opacity: 1;
}

.operation-snapshot .operation-top:hover .operation-model-core {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    inset 0 -26px 42px rgba(59,130,246,.16),
    0 30px 74px rgba(37,99,235,.2);
}

.operation-snapshot .operation-intro {
  z-index: 3 !important;
}

.operation-snapshot .operation-intro h2,
.operation-snapshot .operation-intro p {
  position: relative;
  z-index: 3;
  text-shadow:
    0 1px 0 rgba(255,255,255,.72),
    0 14px 34px rgba(255,255,255,.72);
}

.operation-snapshot .operation-top .operation-bg-model {
  z-index: 1 !important;
  opacity: .98 !important;
}

.operation-snapshot .operation-top::before,
.operation-snapshot .operation-top::after {
  z-index: 0;
}

@keyframes operationModelCore {
  0%, 100% {
    transform: translateZ(56px) rotateZ(45deg) translateY(0);
  }
  50% {
    transform: translateZ(76px) rotateZ(48deg) translateY(-10px);
  }
}

@keyframes operationModelPulse {
  0%, 100% {
    opacity: .58;
    transform: translateZ(6px) scale(.98);
  }
  50% {
    opacity: .94;
    transform: translateZ(14px) scale(1.04);
  }
}

@keyframes operationModelChip {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.08);
  }
}

@keyframes operationModelCard {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.05);
  }
}

@keyframes operationModelTrack {
  to {
    rotate: 360deg;
  }
}

@media (max-width: 980px) {
  .operation-bg-model {
    width: 700px;
    opacity: .5;
  }
}

@media (max-width: 640px) {
  .operation-bg-model {
    top: 58%;
    width: 520px;
    height: 170px;
    opacity: .36;
  }

  .operation-model-core {
    width: 98px;
    height: 98px;
    margin: -49px 0 0 -49px;
    border-radius: 26px;
  }

  .operation-model-card {
    width: 118px;
    height: 54px;
    margin: -27px 0 0 -59px;
    border-radius: 14px;
  }

  .operation-model-card--one {
    transform: translate3d(-190px, -20px, 18px) rotateZ(-8deg);
  }

  .operation-model-card--two {
    transform: translate3d(190px, -18px, 14px) rotateZ(8deg);
  }

  .operation-model-card--three {
    transform: translate3d(10px, 64px, 10px) rotateZ(2deg);
  }

  .operation-model-track {
    width: 470px;
    height: 118px;
    margin: -59px 0 0 -235px;
  }

  .operation-model-track--two {
    width: 390px;
    height: 98px;
    margin: -49px 0 0 -195px;
  }
}

/* Mobile-only polish: keep desktop layout untouched. */
@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .wrap {
    width: min(100% - 28px, 430px);
  }

  .topbar {
    padding: 10px 0;
  }

  .topbar-inner {
    width: min(100% - 20px, 430px);
  }

  .topbar-inner::before {
    height: 58px;
    filter: blur(8px);
  }

  .nav-pill {
    min-height: 54px;
    padding: 8px 9px 8px 10px;
    gap: 8px;
    border-radius: 24px;
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand-logo {
    width: 104px;
    height: 34px;
    transform: none;
  }

  .brand:hover .brand-logo {
    transform: scale(1.02);
  }

  .nav-menu {
    justify-content: flex-start;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 2px;
  }

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

  .nav-menu a {
    padding: 8px 10px;
    font-size: 12px;
  }

  .nav-pill .nav-login {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
  }

  .nav-pill .nav-login span {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 92px 0 46px;
  }

  .hero-content {
    min-height: auto;
    padding: 32px 0 28px;
    align-items: flex-start;
    text-align: left;
  }

  .badge {
    max-width: 100%;
    gap: 8px;
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 999px;
  }

  .hero-title.hero-title-slider {
    width: 100%;
    min-height: 132px;
    margin: 18px 0 12px;
    text-align: left;
  }

  .hero-title.hero-title-slider .hero-title-slide {
    align-items: flex-start;
    width: 100%;
  }

  .hero-title.hero-title-slider .hero-title-slide > i {
    font-size: clamp(31px, 9.6vw, 42px) !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
    white-space: normal;
  }

  .hero-title.hero-title-slider .hero-title-slide > em {
    margin-top: 6px;
    font-size: clamp(36px, 11.4vw, 50px) !important;
    line-height: 1.04 !important;
    letter-spacing: 0 !important;
    white-space: normal;
  }

  .hero-title.hero-title-slider .hero-title-slide:nth-child(2) > i,
  .hero-title.hero-title-slider .hero-title-slide:nth-child(3) > i {
    font-size: clamp(34px, 10.8vw, 48px) !important;
  }

  .hero-title.hero-title-slider .hero-title-slide:nth-child(2) > em,
  .hero-title.hero-title-slider .hero-title-slide:nth-child(3) > em {
    font-size: clamp(24px, 7.8vw, 36px) !important;
  }

  .sub {
    max-width: 100%;
    margin: 0;
    font-size: 14px;
    line-height: 1.72;
    text-align: left;
  }

  .cta-row {
    width: 100%;
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .cta-row a,
  .cta-row button {
    min-width: 0;
    width: 100%;
    padding: 12px 10px;
    font-size: 14px;
    border-radius: 16px;
  }

  .feature-cards {
    width: 100%;
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-cards article {
    min-height: auto;
    padding: 18px 18px 16px;
    border-radius: 20px;
  }

  .feature-cards h3 {
    font-size: 18px;
  }

  .feature-cards p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.6;
  }

  .operation-snapshot {
    padding: 48px 0 42px;
  }

  .operation-snapshot .operation-top {
    padding: 42px 0 30px;
  }

  .operation-snapshot .operation-intro h2 {
    font-size: clamp(24px, 7.2vw, 32px);
    line-height: 1.25;
  }

  .operation-snapshot .operation-intro p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.68;
  }

  .operation-snapshot .operation-band {
    border-radius: 26px;
    margin: -6px auto 0;
    width: min(100% - 24px, 430px);
  }

  .operation-snapshot .operation-band-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 14px;
  }

  .operation-snapshot .operation-band-grid article {
    min-height: 84px;
    padding: 14px 16px;
    border-radius: 20px;
  }

  .operation-snapshot .operation-icon {
    width: 42px;
    height: 42px;
  }

  .operation-snapshot .operation-band-grid strong {
    font-size: 17px;
  }

  .operation-snapshot .operation-band-grid em {
    margin-top: 4px;
    font-size: 11px;
  }

  .operation-snapshot .operation-data {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
  }

  .operation-snapshot .operation-data article {
    padding: 18px 16px;
    border-radius: 22px;
  }

  .operation-snapshot .operation-data strong {
    font-size: clamp(28px, 9vw, 38px);
  }

  .operation-snapshot .operation-digits {
    justify-content: flex-start;
    gap: 5px;
  }

  .operation-snapshot .operation-digits span {
    min-width: 22px;
    height: 34px;
    padding: 0 5px;
    font-size: 24px;
    border-radius: 10px;
  }

  .operation-snapshot .operation-digits small {
    margin: 0 3px 0 1px;
    font-size: 14px;
  }

  .mobile-feature-showcase {
    padding: 54px 0 46px;
  }

  .mobile-feature-head {
    margin-bottom: 22px;
    text-align: left;
  }

  .mobile-feature-head .eyebrow {
    font-size: 12px;
  }

  .mobile-feature-head h2 {
    margin-top: 8px;
    font-size: clamp(25px, 8vw, 34px);
    line-height: 1.22;
  }

  .mobile-feature-grid,
  .mobile-feature-grid--five {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .mobile-feature-card,
  .mobile-feature-card--image {
    min-height: auto;
    border-radius: 24px;
    padding: 18px;
    overflow: hidden;
  }

  .mobile-card-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-phone,
  .feature-phone--image {
    width: min(100%, 300px);
    margin: 0 auto;
    border-radius: 26px;
  }

  .feature-phone img {
    width: 100%;
    height: auto;
    border-radius: 22px;
  }

  .mobile-feature-card h3 {
    font-size: 21px;
    line-height: 1.28;
  }

  .mobile-feature-card p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.65;
  }

  .app-download {
    padding: 52px 0 54px;
  }

  .app-download-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .app-copy {
    text-align: left;
  }

  .app-copy h2 {
    font-size: clamp(25px, 8vw, 34px);
    line-height: 1.22;
  }

  .app-copy p {
    font-size: 14px;
    line-height: 1.68;
  }

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

  .store-btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding: 12px 10px;
    border-radius: 16px;
    font-size: 14px;
  }

  .phone-stage {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .phone-frame {
    width: min(100%, 336px);
    max-width: 336px;
    border-radius: 34px;
    padding: 12px;
  }

  .phone-screen {
    border-radius: 26px;
  }

  .phone-header,
  .phone-pages,
  .phone-tabbar {
    padding-left: 14px;
    padding-right: 14px;
  }

  .phone-tabbar {
    gap: 4px;
    border-radius: 0 0 26px 26px;
  }

  .phone-tab {
    min-width: 0;
    padding: 8px 4px;
    border-radius: 14px;
    cursor: pointer;
  }

  .phone-tab svg {
    width: 18px;
    height: 18px;
  }

  .phone-tab em {
    margin-top: 3px;
    font-size: 11px;
  }
}

/* Product download page */
.download-page {
  background: #edf4ff;
  color: #10243f;
}

.download-main {
  min-height: 70vh;
}

.download-hero {
  padding: 138px 0 72px;
  background:
    radial-gradient(520px 260px at 22% 44%, rgba(96, 165, 250, .24), transparent 72%),
    radial-gradient(460px 240px at 78% 36%, rgba(147, 197, 253, .18), transparent 72%),
    #254a7c;
  color: #fff;
  text-align: center;
}

.download-hero-inner p {
  margin: 0 0 10px;
  color: rgba(219, 234, 254, .88);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
}

.download-hero-inner h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.12;
  font-weight: 850;
}

.download-hero-inner > span {
  display: block;
  max-width: 640px;
  margin: 16px auto 0;
  color: rgba(239, 246, 255, .9);
  font-size: 17px;
  line-height: 1.7;
}

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

.download-hero-actions .cta {
  min-width: 168px;
}

.download-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: -36px;
  position: relative;
  z-index: 2;
  padding-bottom: 8px;
}

.download-highlights article {
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(207, 220, 238, .92);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 52px rgba(37, 74, 124, .1);
}

.download-highlights strong {
  display: block;
  margin-bottom: 10px;
  color: #10243f;
  font-size: 18px;
}

.download-highlights p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.72;
}

.download-page .mobile-feature-showcase {
  padding-top: 48px;
}

.download-page .app-download {
  padding-top: 24px;
  padding-bottom: 72px;
}

.download-hero-guide {
  margin: 18px 0 0;
  font-size: 14px;
}

.download-hero-guide a {
  color: rgba(219, 234, 254, .95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.download-hero-guide a:hover {
  color: #fff;
}

.ios-install-guide {
  padding: 40px 0 16px;
}

.ios-install-head {
  text-align: center;
  margin-bottom: 28px;
}

.ios-install-head p {
  margin: 0 0 8px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
}

.ios-install-head h2 {
  margin: 0 0 12px;
  color: #10243f;
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.2;
}

.ios-install-head > span {
  display: block;
  max-width: 720px;
  margin: 0 auto;
  color: #64748b;
  font-size: 15px;
  line-height: 1.75;
}

.ios-install-notice {
  margin-bottom: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(147, 197, 253, .55);
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
}

.ios-install-notice strong {
  display: block;
  margin-bottom: 10px;
  color: #1e40af;
  font-size: 16px;
}

.ios-install-notice ul {
  margin: 0;
  padding-left: 1.2em;
  color: #475569;
  font-size: 14px;
  line-height: 1.8;
}

.ios-install-steps {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 16px;
}

.ios-install-step {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(207, 220, 238, .92);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 16px 40px rgba(37, 74, 124, .08);
}

.ios-install-step-num {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, #3b82f6, #2563eb);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
}

.ios-install-step-body h3 {
  margin: 0 0 10px;
  color: #10243f;
  font-size: 18px;
}

.ios-install-step-body p {
  margin: 0 0 8px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.75;
}

.ios-install-step-body code {
  padding: 2px 6px;
  border-radius: 6px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 13px;
}

.ios-install-tip {
  color: #94a3b8 !important;
  font-size: 13px !important;
}

.ios-install-path {
  padding: 8px 12px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #334155 !important;
  font-weight: 600;
}

.ios-install-path--alt {
  margin-top: 6px;
  font-weight: 500 !important;
}

.ios-install-link {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #2563eb;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37, 99, 235, .22);
}

.ios-install-faq {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(207, 220, 238, .92);
  box-shadow: 0 16px 40px rgba(37, 74, 124, .08);
}

.ios-install-faq h3 {
  margin: 0 0 16px;
  color: #10243f;
  font-size: 20px;
}

.ios-install-faq dl {
  margin: 0;
  display: grid;
  gap: 14px;
}

.ios-install-faq dt {
  margin-bottom: 6px;
  color: #1e293b;
  font-size: 15px;
  font-weight: 700;
}

.ios-install-faq dd {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.72;
}

.download-page .topbar {
  background: transparent;
}

.download-page .topbar.is-scrolled .nav-pill {
  background: rgba(255, 255, 255, .78);
}

@media (max-width: 980px) {
  .download-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .download-hero {
    padding: 116px 0 56px;
  }
  .download-highlights {
    grid-template-columns: 1fr;
    margin-top: -24px;
  }
  .download-hero-actions .cta {
    width: 100%;
    max-width: 280px;
  }
  .ios-install-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ios-install-step-num {
    width: 44px;
    height: 44px;
    font-size: 13px;
  }
}
