:root {
  --theme-color: #3f98f4;
  --lxkd-primary: var(--theme-color);
  --lxkd-primary-deep: #176fc7;
  --lxkd-primary-dark: #1059a5;
  --lxkd-primary-soft: #eaf4ff;
  --lxkd-ink: #172033;
  --lxkd-muted: #647086;
  --lxkd-line: #d9e2ec;
  --lxkd-paper: #ffffff;
  --lxkd-canvas: #f7f9fc;
  --lxkd-night: #12253c;
  --lxkd-radius-sm: 10px;
  --lxkd-radius-md: 18px;
  --lxkd-radius-lg: 28px;
  --lxkd-shadow: 0 2px 8px rgba(26, 71, 116, 0.1);
  --lxkd-shell: 1180px;
  --lxkd-header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--lxkd-header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--lxkd-ink);
  background: var(--lxkd-canvas);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei",
    "Noto Sans SC", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

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

figure {
  margin: 0;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: 0;
}

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

:focus-visible {
  outline: 3px solid #f6b84c;
  outline-offset: 4px;
}

::selection {
  color: #fff;
  background: var(--lxkd-primary-deep);
}

.lxkd-shell {
  width: min(calc(100% - 40px), var(--lxkd-shell));
  margin-inline: auto;
}

.lxkd-skip {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--lxkd-night);
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.lxkd-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--lxkd-header-height);
  background: rgba(247, 249, 252, 0.93);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lxkd-header.is-scrolled {
  border-bottom-color: rgba(23, 32, 51, 0.09);
  box-shadow: 0 2px 8px rgba(23, 32, 51, 0.05);
}

.lxkd-header__inner {
  min-height: var(--lxkd-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.lxkd-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 800;
}

.lxkd-brand img {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  box-shadow: var(--lxkd-shadow);
}

.lxkd-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #48566c;
  font-size: 15px;
  font-weight: 600;
}

.lxkd-nav a,
.lxkd-nav__home {
  position: relative;
  padding: 9px 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.lxkd-nav a:not(.lxkd-nav__download)::after,
.lxkd-nav__home::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--lxkd-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.lxkd-nav a:hover::after,
.lxkd-nav__home:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.lxkd-nav a.lxkd-nav__download {
  padding: 10px 19px !important;
  color: #fff;
  background: var(--lxkd-primary);
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(63, 152, 244, 0.25);
}

.lxkd-nav a.lxkd-nav__download:hover {
  background: var(--lxkd-primary-deep);
}

.lxkd-nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--lxkd-line);
  border-radius: 8px;
  cursor: pointer;
}

.lxkd-nav-toggle i {
  font-size: 21px;
}

.lxkd-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 48px;
  background:
    linear-gradient(90deg, rgba(63, 152, 244, 0.07) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(63, 152, 244, 0.07) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--lxkd-canvas);
  isolation: isolate;
}

.lxkd-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50px;
  right: -80px;
  width: 430px;
  height: 430px;
  background: var(--lxkd-primary-soft);
  border-radius: 50%;
}

.lxkd-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 38px;
  min-height: 610px;
}

.lxkd-hero__copy {
  position: relative;
  z-index: 3;
  padding-bottom: 44px;
}

.lxkd-section-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--lxkd-primary-deep);
}

.lxkd-section-mark span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--lxkd-primary);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.lxkd-section-mark p {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.lxkd-section-mark--light {
  color: #b8dbff;
}

.lxkd-section-mark--light span {
  color: var(--lxkd-primary-dark);
  background: #fff;
}

.lxkd-eyebrow {
  margin-bottom: 14px;
  color: var(--lxkd-primary-deep);
  font-size: 14px;
  font-weight: 800;
}

.lxkd-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(60px, 7.4vw, 104px);
  font-weight: 900;
}

.lxkd-hero__lead {
  max-width: 600px;
  margin-bottom: 34px;
  color: #536176;
  font-size: 18px;
  line-height: 1.85;
}

.lxkd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lxkd-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.lxkd-button--primary {
  color: #fff;
  background: var(--lxkd-primary);
  border-color: var(--lxkd-primary);
  box-shadow: 0 3px 8px rgba(63, 152, 244, 0.25);
}

.lxkd-button--primary:hover {
  background: var(--lxkd-primary-deep);
  border-color: var(--lxkd-primary-deep);
}

.lxkd-button--ghost {
  background: #fff;
  border-color: var(--lxkd-line);
}

.lxkd-button--ghost:hover {
  border-color: var(--lxkd-primary);
}

.lxkd-button--white {
  color: var(--lxkd-primary-dark);
  background: #fff;
  border-color: #fff;
}

.lxkd-hero__support {
  margin: 18px 0 0;
  color: var(--lxkd-muted);
  font-size: 14px;
}

.lxkd-pocket-stage {
  position: relative;
  min-width: 0;
  height: 610px;
}

.lxkd-pocket-stage__stamp {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 64px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  color: var(--lxkd-primary-dark);
  background: #fff;
  border: 1px solid #cfe5fb;
  border-radius: 8px;
  box-shadow: var(--lxkd-shadow);
}

.lxkd-pocket-stage__stamp span {
  font-size: 11px;
  font-weight: 800;
}

.lxkd-pocket-stage__stamp strong {
  font-size: 21px;
}

.lxkd-pocket-stage__screens {
  position: absolute;
  z-index: 2;
  inset: 45px 55px 86px 12px;
}

.lxkd-pocket-screen {
  position: absolute;
  overflow: hidden;
  background: #fff;
  border: 8px solid #fff;
  border-radius: 18px 18px 6px 6px;
  box-shadow: 0 8px 18px rgba(16, 59, 100, 0.18);
}

.lxkd-pocket-screen img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.lxkd-pocket-screen--back {
  bottom: 67px;
  left: 10px;
  width: 190px;
  transform: rotate(-4deg);
}

.lxkd-pocket-screen--front {
  z-index: 2;
  right: 24px;
  bottom: 0;
  width: 238px;
  transform: rotate(2deg);
}

.lxkd-pocket-stage__base {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 235px;
  padding: 108px 42px 30px;
  color: #fff;
  background: linear-gradient(145deg, #59aafd, var(--lxkd-primary) 58%, var(--lxkd-primary-deep));
  border-radius: 22px 22px 34px 34px;
  clip-path: polygon(0 24%, 47% 4%, 100% 20%, 100% 100%, 0 100%);
  box-shadow: 0 8px 18px rgba(47, 126, 208, 0.18);
}

.lxkd-pocket-stage__base p {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
}

.lxkd-pocket-stage__base > i {
  position: absolute;
  right: 38px;
  bottom: 28px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--lxkd-primary-dark);
  background: #fff;
  border-radius: 50%;
  font-size: 19px;
}

.lxkd-pocket-stage__line {
  display: block;
  width: 46px;
  height: 3px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.lxkd-pocket-stage__tabs {
  position: absolute;
  z-index: 4;
  right: -32px;
  bottom: 112px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lxkd-pocket-stage__tabs li {
  padding: 7px 12px;
  color: var(--lxkd-primary-dark);
  background: #fff;
  border: 1px solid #cfe5fb;
  border-radius: 0 8px 8px 0;
  font-size: 12px;
  font-weight: 800;
  box-shadow: var(--lxkd-shadow);
}

.lxkd-hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--lxkd-line);
  border-radius: 14px;
  box-shadow: var(--lxkd-shadow);
}

.lxkd-hero-meta div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 76px;
  padding: 16px 24px;
  border-right: 1px solid var(--lxkd-line);
}

.lxkd-hero-meta div:last-child {
  border-right: 0;
}

.lxkd-hero-meta span {
  color: var(--lxkd-muted);
  font-size: 12px;
}

.lxkd-hero-meta strong {
  font-size: 15px;
}

.lxkd-section {
  padding: 112px 0;
}

.lxkd-section-head {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 32px;
  margin-bottom: 56px;
}

.lxkd-section-head .lxkd-section-mark {
  margin-bottom: 7px;
}

.lxkd-section-head h2,
.lxkd-route h2,
.lxkd-screens h2,
.lxkd-scenarios h2,
.lxkd-faq h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 900;
}

.lxkd-section-head > p {
  margin: 0;
  color: var(--lxkd-muted);
}

.lxkd-types {
  background: #fff;
}

.lxkd-type-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--lxkd-line);
  border-bottom: 1px solid var(--lxkd-line);
}

.lxkd-type-track li {
  position: relative;
  min-height: 320px;
  padding: 34px 26px 30px;
  border-right: 1px solid var(--lxkd-line);
  transition: color 0.2s ease, background 0.2s ease;
}

.lxkd-type-track li:last-child {
  border-right: 0;
}

.lxkd-type-track li::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 4px;
  background: var(--lxkd-primary);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.lxkd-type-track li:hover {
  background: var(--lxkd-primary-soft);
}

.lxkd-type-track li:hover::after {
  transform: scaleX(1);
}

.lxkd-type-track i {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--lxkd-primary-deep);
  background: var(--lxkd-primary-soft);
  border-radius: 12px;
  font-size: 25px;
}

.lxkd-type-track h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.lxkd-type-track p {
  margin: 0;
  color: var(--lxkd-muted);
  font-size: 14px;
}

.lxkd-route {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 78px 78px,
    var(--lxkd-night);
}

.lxkd-route__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 100px;
}

.lxkd-route__intro {
  align-self: start;
  position: sticky;
  top: calc(var(--lxkd-header-height) + 42px);
}

.lxkd-route .lxkd-eyebrow,
.lxkd-screens .lxkd-eyebrow {
  color: #8bc6ff;
}

.lxkd-route__intro > p:last-child {
  margin: 28px 0 0;
  color: #b5c1d0;
  font-size: 16px;
}

.lxkd-route__steps {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lxkd-route__steps::before {
  content: "";
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 75px;
  width: 1px;
  background: rgba(255, 255, 255, 0.19);
}

.lxkd-route__steps li {
  position: relative;
  display: grid;
  grid-template-columns: 44px 62px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  min-height: 160px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.lxkd-route__steps li:last-child {
  border-bottom: 0;
}

.lxkd-route__number {
  padding-top: 14px;
  color: #7f91a7;
  font-size: 12px;
  font-weight: 800;
}

.lxkd-route__steps i {
  position: relative;
  z-index: 1;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: #fff;
  background: var(--lxkd-primary);
  border: 6px solid var(--lxkd-night);
  border-radius: 50%;
  font-size: 24px;
}

.lxkd-route__steps h3 {
  margin: 7px 0 10px;
  font-size: 22px;
}

.lxkd-route__steps p {
  margin: 0;
  color: #aebccc;
}

.lxkd-capabilities {
  background: #fff;
}

.lxkd-capability-sheet {
  border-top: 2px solid var(--lxkd-ink);
}

.lxkd-capability-sheet article {
  display: grid;
  grid-template-columns: 48px 70px minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  min-height: 156px;
  padding: 24px 12px;
  border-bottom: 1px solid var(--lxkd-line);
}

.lxkd-capability-sheet__index {
  color: var(--lxkd-primary-deep);
  font-size: 13px;
  font-weight: 900;
}

.lxkd-capability-sheet__icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--lxkd-primary-deep);
  background: var(--lxkd-primary-soft);
  border-radius: 14px;
  font-size: 28px;
}

.lxkd-capability-sheet h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.lxkd-capability-sheet p {
  max-width: 700px;
  margin: 0;
  color: var(--lxkd-muted);
}

.lxkd-capability-sheet__tag {
  padding: 7px 12px;
  color: var(--lxkd-primary-deep);
  background: var(--lxkd-primary-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.lxkd-screens {
  overflow: hidden;
  color: #fff;
  background: var(--lxkd-night);
}

.lxkd-screens__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.54fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 58px;
}

.lxkd-screens__head .lxkd-section-mark {
  margin-bottom: 24px;
}

.lxkd-screens__head > p {
  margin: 0;
  color: #afbdcd;
}

.lxkd-screen-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.lxkd-app-screen {
  min-width: 0;
}

.lxkd-app-screen:nth-child(even) {
  padding-top: 52px;
}

.lxkd-app-screen img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
  border: 0;
  outline: 7px solid #fff;
  outline-offset: -7px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.lxkd-app-screen figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: #dce8f5;
  font-size: 14px;
  font-weight: 700;
}

.lxkd-app-screen figcaption span {
  color: #77baff;
  font-size: 11px;
}

.lxkd-screen-hint {
  display: none;
  margin: 24px 0 0;
  color: #afbdcd;
  font-size: 13px;
}

.lxkd-scenarios {
  background: #fff;
}

.lxkd-scenarios__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 92px;
}

.lxkd-scenarios header .lxkd-section-mark,
.lxkd-faq header .lxkd-section-mark {
  margin-bottom: 34px;
}

.lxkd-scenarios__list {
  border-top: 2px solid var(--lxkd-ink);
}

.lxkd-scenarios__list article {
  display: grid;
  grid-template-columns: 42px 56px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 180px;
  padding: 22px 0;
  border-bottom: 1px solid var(--lxkd-line);
}

.lxkd-scenarios__list article > span {
  color: var(--lxkd-muted);
  font-size: 12px;
  font-weight: 800;
}

.lxkd-scenarios__list i {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--lxkd-primary-deep);
  background: var(--lxkd-primary-soft);
  border-radius: 12px;
  font-size: 23px;
}

.lxkd-scenarios__list h3 {
  margin-bottom: 7px;
  font-size: 20px;
}

.lxkd-scenarios__list p {
  margin: 0;
  color: var(--lxkd-muted);
}

.lxkd-download {
  padding-top: 48px;
  background: #fff;
}

.lxkd-download__panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  color: #fff;
  background: var(--lxkd-primary);
  border-radius: var(--lxkd-radius-lg);
  box-shadow: 0 4px 12px rgba(39, 115, 191, 0.16);
}

.lxkd-download__intro {
  padding: 56px 58px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.lxkd-download__intro img {
  width: 72px;
  height: 72px;
  margin-bottom: 34px;
  border: 5px solid #fff;
  border-radius: 13px;
}

.lxkd-download__intro .lxkd-eyebrow {
  color: #d9ecff;
}

.lxkd-download__intro h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
}

.lxkd-download__intro > p:not(.lxkd-eyebrow) {
  max-width: 430px;
  margin-bottom: 30px;
  color: #e5f2ff;
}

.lxkd-download__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 54px;
}

.lxkd-download__facts div {
  padding: 24px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.lxkd-download__facts div:nth-child(2n) {
  border-right: 0;
}

.lxkd-download__facts div:last-child {
  grid-column: 1 / -1;
  border-right: 0;
  border-bottom: 0;
}

.lxkd-download__facts dt {
  margin-bottom: 7px;
  color: #d5eaff;
  font-size: 12px;
}

.lxkd-download__facts dd {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.lxkd-faq {
  background: #fff;
}

.lxkd-faq__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 98px;
}

.lxkd-faq__list {
  border-top: 2px solid var(--lxkd-ink);
}

.lxkd-faq details {
  border-bottom: 1px solid var(--lxkd-line);
}

.lxkd-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
  padding: 18px 2px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

.lxkd-faq summary::-webkit-details-marker {
  display: none;
}

.lxkd-faq summary i {
  flex: 0 0 auto;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--lxkd-primary-deep);
  background: var(--lxkd-primary-soft);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.lxkd-faq details[open] summary i {
  transform: rotate(45deg);
}

.lxkd-faq details p {
  max-width: 700px;
  margin: -2px 50px 24px 2px;
  color: var(--lxkd-muted);
}

.lxkd-footer {
  padding: 56px 0 28px;
  color: #c0cbd7;
  background: #0c1b2d;
}

.lxkd-footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 36px;
}

.lxkd-brand--footer {
  color: #fff;
}

.lxkd-footer__inner > div:first-child > p {
  margin: 15px 0 0;
  font-size: 14px;
}

.lxkd-footer__links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}

.lxkd-footer__links button {
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.lxkd-footer__links a:hover,
.lxkd-footer__links button:hover {
  color: #fff;
}

.lxkd-footer__copyright {
  grid-column: 1 / -1;
  margin: 30px 0 0;
  padding-top: 22px;
  color: #8290a0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.lxkd-js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.lxkd-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .lxkd-hero__layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(450px, 1.12fr);
    gap: 20px;
  }

  .lxkd-pocket-screen--back {
    width: 170px;
  }

  .lxkd-pocket-screen--front {
    width: 218px;
  }

  .lxkd-section-head {
    grid-template-columns: 120px minmax(0, 1fr) minmax(250px, 0.65fr);
  }

  .lxkd-type-track li {
    padding-inline: 20px;
  }

  .lxkd-route__layout,
  .lxkd-faq__layout {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  :root {
    --lxkd-header-height: 68px;
  }

  .lxkd-nav-toggle {
    display: inline-flex;
  }

  .lxkd-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--lxkd-line);
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(23, 32, 51, 0.12);
  }

  .lxkd-nav.is-open {
    display: flex;
  }

  .lxkd-nav a,
  .lxkd-nav__home {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    text-align: left;
    border-radius: 7px;
  }

  .lxkd-nav a:not(.lxkd-nav__download)::after,
  .lxkd-nav__home::after {
    display: none;
  }

  .lxkd-nav a:hover,
  .lxkd-nav__home:hover {
    background: var(--lxkd-primary-soft);
  }

  .lxkd-nav__download {
    text-align: center !important;
  }

  .lxkd-hero {
    padding-top: 50px;
  }

  .lxkd-hero__layout {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .lxkd-hero__copy {
    max-width: 670px;
    padding-bottom: 0;
  }

  .lxkd-hero h1 {
    font-size: clamp(58px, 12vw, 86px);
  }

  .lxkd-pocket-stage {
    width: min(100%, 620px);
    height: 590px;
    margin: 0 auto;
  }

  .lxkd-pocket-screen--back {
    width: 190px;
  }

  .lxkd-pocket-screen--front {
    width: 236px;
  }

  .lxkd-pocket-stage__tabs {
    right: 0;
  }

  .lxkd-hero-meta {
    grid-template-columns: repeat(2, 1fr);
  }

  .lxkd-hero-meta div:nth-child(2) {
    border-right: 0;
  }

  .lxkd-hero-meta div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--lxkd-line);
  }

  .lxkd-section {
    padding: 88px 0;
  }

  .lxkd-section-head {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .lxkd-section-head > p {
    grid-column: 2;
  }

  .lxkd-type-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .lxkd-type-track li {
    min-height: 255px;
    border-bottom: 1px solid var(--lxkd-line);
  }

  .lxkd-type-track li:nth-child(2n) {
    border-right: 0;
  }

  .lxkd-type-track li:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .lxkd-type-track i {
    margin-bottom: 30px;
  }

  .lxkd-route__layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .lxkd-route__intro {
    position: static;
    max-width: 650px;
  }

  .lxkd-capability-sheet article {
    grid-template-columns: 36px 60px minmax(0, 1fr);
  }

  .lxkd-capability-sheet__tag {
    display: none;
  }

  .lxkd-screens__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lxkd-scenarios__layout,
  .lxkd-faq__layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .lxkd-download__panel {
    grid-template-columns: 1fr;
  }

  .lxkd-download__intro {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
}

@media (max-width: 680px) {
  .lxkd-shell {
    width: min(calc(100% - 28px), var(--lxkd-shell));
  }

  .lxkd-brand span {
    font-size: 16px;
  }

  .lxkd-nav {
    right: 14px;
    left: 14px;
  }

  .lxkd-hero {
    padding: 36px 0 34px;
  }

  .lxkd-hero::before {
    top: 240px;
    right: -190px;
    width: 380px;
    height: 380px;
  }

  .lxkd-section-mark {
    margin-bottom: 22px;
  }

  .lxkd-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(50px, 15vw, 72px);
  }

  .lxkd-hero__lead {
    margin-bottom: 26px;
    font-size: 16px;
  }

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

  .lxkd-button {
    min-height: 48px;
    padding-inline: 15px;
  }

  .lxkd-pocket-stage {
    height: 500px;
    margin-top: 16px;
  }

  .lxkd-pocket-stage__stamp {
    top: 6px;
    right: 10px;
  }

  .lxkd-pocket-stage__screens {
    inset: 42px 22px 78px 2px;
  }

  .lxkd-pocket-screen {
    border-width: 6px;
    border-radius: 13px 13px 5px 5px;
  }

  .lxkd-pocket-screen--back {
    bottom: 58px;
    left: 4px;
    width: 146px;
  }

  .lxkd-pocket-screen--front {
    right: 18px;
    width: 184px;
  }

  .lxkd-pocket-stage__base {
    height: 190px;
    padding: 88px 24px 24px;
    border-radius: 18px 18px 24px 24px;
  }

  .lxkd-pocket-stage__base > i {
    right: 24px;
    bottom: 22px;
  }

  .lxkd-pocket-stage__tabs {
    right: 0;
    bottom: 78px;
  }

  .lxkd-pocket-stage__tabs li {
    padding: 5px 8px;
    font-size: 10px;
  }

  .lxkd-hero-meta div {
    min-height: 70px;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding: 14px 16px;
  }

  .lxkd-hero-meta strong {
    font-size: 14px;
  }

  .lxkd-section {
    padding: 72px 0;
  }

  .lxkd-section-head {
    display: block;
    margin-bottom: 38px;
  }

  .lxkd-section-head .lxkd-section-mark {
    margin-bottom: 24px;
  }

  .lxkd-section-head > p {
    margin-top: 18px;
  }

  .lxkd-section-head h2,
  .lxkd-route h2,
  .lxkd-screens h2,
  .lxkd-scenarios h2,
  .lxkd-faq h2 {
    font-size: 34px;
  }

  .lxkd-type-track {
    grid-template-columns: 1fr;
  }

  .lxkd-type-track li,
  .lxkd-type-track li:last-child {
    grid-column: auto;
    min-height: auto;
    padding: 26px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--lxkd-line);
  }

  .lxkd-type-track li:last-child {
    border-bottom: 0;
  }

  .lxkd-type-track i {
    float: left;
    width: 46px;
    height: 46px;
    margin: 0 17px 0 0;
  }

  .lxkd-type-track h3 {
    padding-top: 1px;
  }

  .lxkd-route__steps::before {
    left: 55px;
  }

  .lxkd-route__steps li {
    grid-template-columns: 28px 50px minmax(0, 1fr);
    gap: 14px;
    min-height: 150px;
  }

  .lxkd-route__steps i {
    width: 50px;
    height: 50px;
    border-width: 5px;
    font-size: 20px;
  }

  .lxkd-route__number {
    font-size: 10px;
  }

  .lxkd-route__steps h3 {
    margin-top: 3px;
    font-size: 19px;
  }

  .lxkd-route__steps p {
    font-size: 14px;
  }

  .lxkd-capability-sheet article {
    grid-template-columns: 34px 48px minmax(0, 1fr);
    gap: 12px;
    min-height: 150px;
    padding: 22px 0;
  }

  .lxkd-capability-sheet__icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    font-size: 22px;
  }

  .lxkd-capability-sheet h3 {
    font-size: 18px;
  }

  .lxkd-capability-sheet p {
    font-size: 14px;
  }

  .lxkd-screen-rail {
    display: flex;
    width: calc(100% + 14px);
    overflow-x: auto;
    gap: 14px;
    padding: 0 14px 16px 0;
    scroll-snap-type: x mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .lxkd-app-screen {
    flex: 0 0 min(76vw, 286px);
    scroll-snap-align: start;
  }

  .lxkd-app-screen:nth-child(even) {
    padding-top: 0;
  }

  .lxkd-screen-hint {
    display: block;
  }

  .lxkd-scenarios__list article {
    grid-template-columns: 28px 48px minmax(0, 1fr);
    gap: 12px;
    min-height: 132px;
  }

  .lxkd-scenarios__list i {
    width: 44px;
    height: 44px;
  }

  .lxkd-scenarios__list h3 {
    font-size: 18px;
  }

  .lxkd-scenarios__list p {
    font-size: 14px;
  }

  .lxkd-download {
    padding-top: 20px;
  }

  .lxkd-download__panel {
    border-radius: 20px;
  }

  .lxkd-download__intro {
    padding: 36px 28px;
  }

  .lxkd-download__intro img {
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
  }

  .lxkd-download__facts {
    padding: 16px 18px 24px;
  }

  .lxkd-download__facts div {
    padding: 17px 10px;
  }

  .lxkd-download__facts dd {
    font-size: 15px;
  }

  .lxkd-faq summary {
    min-height: 76px;
    font-size: 15px;
  }

  .lxkd-faq details p {
    margin-right: 24px;
    font-size: 14px;
  }

  .lxkd-footer__inner {
    grid-template-columns: 1fr;
  }

  .lxkd-footer__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .lxkd-footer__copyright {
    grid-column: auto;
    margin-top: 4px;
  }
}

@media (max-width: 380px) {
  .lxkd-nav-toggle__label {
    display: none;
  }

  .lxkd-hero__actions {
    grid-template-columns: 1fr;
  }

  .lxkd-pocket-stage {
    height: 460px;
  }

  .lxkd-pocket-screen--back {
    width: 132px;
  }

  .lxkd-pocket-screen--front {
    width: 164px;
  }

  .lxkd-pocket-stage__base {
    height: 175px;
    padding-top: 82px;
  }

  .lxkd-pocket-stage__base p {
    font-size: 12px;
  }

  .lxkd-download__facts {
    grid-template-columns: 1fr;
  }

  .lxkd-download__facts div,
  .lxkd-download__facts div:nth-child(2n),
  .lxkd-download__facts div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .lxkd-download__facts div:last-child {
    border-bottom: 0;
  }
}

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

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

  .lxkd-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
