:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface2: #f5f7fb;
  --border: #e6e9f2;

  --brand: #2a6bff;
  --brandHover: #1f57dd;
  --brandSoft: rgba(42, 107, 255, 0.10);
  --accent: #2a6bff;
  --accent2: #2a6bff;

  --text: #0b1220;
  --muted: #22304a;
  --subtle: #5b667a;

  --shadow: 0 10px 28px rgba(16, 24, 40, 0.10);
  --shadowSm: 0 6px 14px rgba(16, 24, 40, 0.08);

  --radiusCard: 14px;
  --radiusBtn: 12px;
  --container: 1200px;
  --navH: 74px;
  --gap: 44px;
  --gradient: linear-gradient(180deg, var(--brand), var(--brand));
  --glow: 0 12px 28px rgba(42, 107, 255, 0.20);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  padding-top: var(--navH);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--brandHover);
}

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

.lcw-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.lcw-main {
  display: block;
}

.lcw-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 10px 12px;
  border-radius: var(--radiusBtn);
  background: #0b1220;
  color: #ffffff;
  z-index: 9999;
}

.lcw-skip:focus {
  left: 16px;
  top: 16px;
}

.lcw-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--navH);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(230, 232, 238, 0.92);
}

.lcw-header__inner {
  height: var(--navH);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.lcw-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
}

.lcw-brand__logo {
  height: 32px;
  width: auto;
  filter: none;
}

.lcw-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lcw-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lcw-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 500;
  transition: all 0.2s ease;
}

.lcw-link:hover {
  background: var(--brandSoft);
  color: var(--brand);
}

.lcw-nav__toggle {
  display: none;
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: var(--radiusBtn);
  padding: 10px 10px;
  cursor: pointer;
  color: var(--text);
}

.lcw-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lcw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: var(--radiusBtn);
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  white-space: nowrap;
}

.lcw-btn--primary {
  border: 1px solid rgba(42, 107, 255, 0.20);
  background: var(--brand);
  color: #ffffff;
  box-shadow: var(--glow);
}

.lcw-btn--primary:hover {
  transform: translateY(-1px);
  background: var(--brandHover);
  box-shadow: 0 16px 40px rgba(42, 107, 255, 0.22);
}

/* 商业化下载按钮动效 */
.lcw-btn--download-pulse {
  position: relative;
  overflow: hidden;
}

.lcw-btn--download-pulse::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.lcw-btn--download-pulse:hover::after {
  left: 100%;
  transition: 0.5s;
}

.lcw-btn--ghost {
  background: transparent;
}

.lcw-btn--block {
  width: 100%;
}

.lcw-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--brandSoft);
  color: var(--brand);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(42, 107, 255, 0.18);
}

.lcw-h1 {
  margin: 0;
  font-size: clamp(36px, 5.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text);
}

.lcw-h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.lcw-h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

.lcw-lead {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
}

.lcw-muted {
  color: var(--muted);
}

.lcw-subtle {
  color: var(--subtle);
}

.lcw-text-sm {
  font-size: 14px;
}

.lcw-section {
  padding: 56px 0;
}

.lcw-pageHero {
  padding: 96px 0 34px;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.lcw-pageHero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 18px;
  align-items: start;
}

.lcw-pageHero__lead {
  margin-top: 14px;
  font-size: 16px;
  color: var(--muted);
}

.lcw-metaRow {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lcw-downloadGrid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lcw-downloadCard {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radiusCard);
  background: var(--surface);
}

.lcw-downloadCard:hover {
  border-color: rgba(42, 107, 255, 0.30);
  background: #ffffff;
}

.lcw-downloadCard__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brandSoft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex: 0 0 auto;
}

.lcw-downloadCard__t {
  font-weight: 900;
  letter-spacing: -0.2px;
}

.lcw-downloadCard__d {
  margin-top: 2px;
  color: var(--subtle);
  font-size: 13px;
}

.lcw-steps {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.lcw-step {
  border: 1px solid var(--border);
  border-radius: var(--radiusCard);
  background: var(--surface);
  padding: 18px;
}

.lcw-step__n {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brandSoft);
  color: var(--brand);
  font-weight: 900;
}

.lcw-step__t {
  margin-top: 10px;
  font-weight: 900;
}

.lcw-step__d {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.lcw-section--alt {
  background: var(--surface);
}

.lcw-hero {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, #ffffff, #ffffff);
}

.lcw-hero__inner {
  text-align: center;
}

.lcw-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 26px;
  align-items: center;
}

.lcw-hero__copy {
  text-align: left;
}

.lcw-hero__meta {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--subtle);
  font-size: 13px;
}

.lcw-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
}

.lcw-keywords {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lcw-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(42, 107, 255, 0.22);
  background: rgba(42, 107, 255, 0.08);
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

.lcw-mini {
  border: 1px solid var(--border);
  border-radius: var(--radiusCard);
  background: rgba(255, 255, 255, 0.88);
  padding: 14px;
}

.lcw-mini__t {
  font-weight: 800;
  letter-spacing: -0.2px;
}

.lcw-mini__d {
  margin-top: 6px;
  font-size: 13px;
  color: var(--subtle);
}

.lcw-hero__actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lcw-heroBiz,
.lcw-heroWps {
  padding: 96px 0 36px;
  background:
    radial-gradient(860px 520px at 18% 22%, rgba(42, 107, 255, 0.18), rgba(255, 255, 255, 0) 60%),
    radial-gradient(760px 520px at 86% 18%, rgba(0, 180, 255, 0.14), rgba(255, 255, 255, 0) 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(245, 247, 251, 0.85));
  border-bottom: 1px solid var(--border);
}

.lcw-heroBiz__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 34px;
  align-items: start;
}

.lcw-heroBiz__copy {
  padding-top: 14px;
}

.lcw-heroBiz__frame {
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.lcw-heroBiz__frame img {
  width: 100%;
  height: auto;
}

.lcw-heroBiz__meta {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

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

.lcw-kpi {
  border: 1px solid var(--border);
  border-radius: var(--radiusCard);
  background: var(--surface);
  padding: 14px 14px;
}

.lcw-kpi__t {
  font-weight: 900;
  letter-spacing: -0.2px;
}

.lcw-kpi__d {
  margin-top: 4px;
  font-size: 13px;
  color: var(--subtle);
}

.lcw-trust {
  padding: 18px 0;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}

.lcw-trust__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.lcw-trust__l {
  font-weight: 700;
  color: var(--muted);
}

.lcw-trust__r {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lcw-actions {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.lcw-mt-10 {
  margin-top: 10px;
}

.lcw-mt-12 {
  margin-top: 12px;
}

.lcw-mt-16 {
  margin-top: 16px;
}

.lcw-mt-28 {
  margin-top: 28px;
}

.lcw-hero__shot {
  margin: 34px auto 0;
  max-width: 980px;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ffffff;
}

.lcw-hero__shot img {
  width: 100%;
  height: auto;
}

.lcw-phone {
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ffffff;
}

.lcw-phone__inner {
  padding: 10px;
  background: linear-gradient(180deg, #ffffff, var(--surface));
}

.lcw-phone__inner img {
  border-radius: 18px;
  border: 1px solid var(--border);
}

.lcw-grid3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.lcw-pricing {
  padding: 56px 0;
  background: #ffffff;
}

.lcw-pricing__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lcw-pricing__layout {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.lcw-pricing__aside {
  position: sticky;
  top: calc(var(--navH) + 18px);
  border: 1px solid var(--border);
  border-radius: var(--radiusCard);
  background: var(--surface);
  padding: 22px;
}

.lcw-pricing__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lcw-pricing__cards .lcw-plan--featured {
  grid-column: 1 / -1;
}

.lcw-plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radiusCard);
}

.lcw-plan__inner {
  padding: 22px;
}

.lcw-plan__name {
  font-weight: 800;
  letter-spacing: -0.2px;
}

.lcw-plan__price {
  margin-top: 10px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.4px;
  color: var(--text);
}

.lcw-plan__price small {
  font-size: 14px;
  font-weight: 700;
  color: var(--subtle);
}

.lcw-plan__desc {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.lcw-plan__list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.lcw-plan--featured {
  border-color: rgba(42, 107, 255, 0.28);
  box-shadow: 0 14px 30px rgba(42, 107, 255, 0.10);
}

.lcw-plan__cta {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.lcw-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radiusCard);
  box-shadow: none;
}

.lcw-card__inner {
  padding: 18px 18px;
}

.lcw-product {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.lcw-product__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--brandSoft);
  color: var(--brandHover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex: 0 0 auto;
}

.lcw-product__body {
  flex: 1 1 auto;
  min-width: 0;
}

.lcw-product__name {
  font-weight: 750;
  margin: 0;
}

.lcw-product__desc {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.lcw-product__actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lcw-feature {
  display: grid;
  gap: 10px;
}

.lcw-feature__emoji {
  font-size: 22px;
}

.lcw-feature__t {
  font-weight: 750;
}

.lcw-feature__d {
  color: var(--muted);
  font-size: 14px;
}

.lcw-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--subtle);
}

.lcw-breadcrumb a {
  color: var(--muted);
}

.lcw-breadcrumb a:hover {
  color: var(--brandHover);
}

.lcw-breadcrumb__sep {
  opacity: 0.6;
}

.lcw-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.lcw-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: center;
}

.lcw-split--top {
  align-items: start;
}

.lcw-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.lcw-pn {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lcw-sideLinks {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.lcw-sideLink {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
}

.lcw-sideLink:hover {
  border-color: rgba(42, 107, 255, 0.26);
  background: rgba(42, 107, 255, 0.06);
}

.lcw-sideLink__t {
  color: var(--text);
  font-weight: 650;
}

.lcw-sideLink__d {
  color: var(--subtle);
  white-space: nowrap;
}

.lcw-aside {
  position: sticky;
  top: calc(var(--navH) + 18px);
}

.lcw-prose {
  color: var(--text);
}

.lcw-prose h2,
.lcw-prose h3 {
  margin: 18px 0 10px;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

.lcw-prose p {
  margin: 10px 0;
}

.lcw-prose a {
  color: var(--brandHover);
  text-decoration: underline;
  text-decoration-color: rgba(42, 107, 255, 0.42);
  text-underline-offset: 3px;
}

.lcw-prose ul,
.lcw-prose ol {
  margin: 10px 0;
  padding-left: 18px;
}

.lcw-news {
  display: grid;
  gap: 12px;
}

.lcw-newsItem {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.lcw-newsItem__img {
  width: 120px;
  height: 84px;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--surface);
}

.lcw-newsItem__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lcw-newsItem__t {
  font-weight: 750;
  color: var(--text);
}

.lcw-newsItem__t a:hover {
  color: var(--brandHover);
}

.lcw-newsItem__meta {
  margin-top: 6px;
  color: var(--subtle);
  font-size: 12px;
}

.lcw-newsItem__d {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.lcw-pagination {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  padding: 12px 0;
}

.lcw-pagination a,
.lcw-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  margin: 0 4px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--muted);
}

.lcw-pagination .current,
.lcw-pagination .active {
  border-color: rgba(42, 107, 255, 0.32);
  background: var(--brandSoft);
  color: var(--brand);
}

.lcw-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b1220;
  color: rgba(255, 255, 255, 0.84);
}

.lcw-footer__top {
  padding: 40px 0;
}

.lcw-footer__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lcw-footer__title {
  font-weight: 800;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
  color: #ffffff;
}

.lcw-footer__list {
  margin: 0;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.70);
}

.lcw-footer__list a {
  color: rgba(255, 255, 255, 0.72);
}

.lcw-footer__list a:hover {
  color: #ffffff;
}

.lcw-subfooter {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.68);
}

/* Telegram-like */
.lct-hero {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #ffffff, #ffffff);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.lct-hero__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.lct-hero__copy {
  max-width: 800px;
  text-align: center;
}

.lct-winHero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: center;
  text-align: left;
}

.lct-winHero__copy {
  min-width: 0;
}

.lct-winHero__media {
  min-width: 0;
}

.lct-winHero__frame {
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.lct-winHero__frame img {
  width: 100%;
  height: auto;
}

.lct-hero__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lct-shelf {
  padding: 40px 0;
  background: transparent;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lct-shelf__item {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: var(--radiusCard);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lct-shelf__item:hover {
  border-color: var(--brand);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.lct-shelf__item strong {
  color: var(--text);
}

.lct-shelf__item span {
  color: var(--subtle);
  font-size: 12px;
}

.lct-platforms {
  padding: 40px 0;
}

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

.lct-platform {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radiusCard);
  transition: all 0.3s ease;
}

.lct-platform:hover {
  background: var(--surface2);
  border-color: var(--brand);
  box-shadow: none;
}

.lct-platform__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--brandSoft);
  color: var(--brandHover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.lct-platform__t {
  font-weight: 750;
}

.lct-platform__d {
  color: var(--subtle);
  font-size: 12px;
}

.lct-features {
  padding: 40px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.lct-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: var(--radiusCard);
  transition: all 0.3s ease;
}

.lct-feature:hover {
  background: var(--surface2);
  border-color: var(--brand);
  box-shadow: var(--shadow);
}

.lct-feature__emoji {
  font-size: 22px;
}

.lct-feature__t {
  margin-top: 8px;
  font-weight: 750;
}

.lct-feature__d {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.lct-news {
  padding: 40px 0;
}

.lct-news__list {
  display: grid;
  gap: 12px;
}

.lct-newsItem {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radiusCard);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadowSm);
}

.lct-newsItem__img {
  width: 120px;
  height: 84px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.lct-newsItem__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lct-newsItem__t {
  font-weight: 750;
  color: var(--text);
}

.lct-newsItem__t a:hover {
  color: var(--brandHover);
}

.lct-newsItem__meta {
  margin-top: 6px;
  color: var(--subtle);
  font-size: 12px;
}

.lct-newsItem__d {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

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

.lct-postCard {
  border: 1px solid var(--border);
  border-radius: var(--radiusCard);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadowSm);
  overflow: hidden;
  display: grid;
}

.lct-postCard:hover {
  border-color: rgba(42, 107, 255, 0.30);
  box-shadow: var(--shadow);
}

.lct-postCard__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface);
}

.lct-postCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lct-postCard__body {
  padding: 16px;
}

.lct-postCard__title {
  font-weight: 850;
  letter-spacing: -0.2px;
  line-height: 1.25;
}

.lct-postCard__title a:hover {
  color: var(--brandHover);
}

.lct-postCard__meta {
  margin-top: 10px;
  color: var(--subtle);
  font-size: 12px;
}

.lct-postCard__desc {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lct-postCard__actions {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lct-testimonials {
  padding: 56px 0;
  background: var(--bg);
}

.lct-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lct-testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: var(--radiusCard);
}

.lct-testimonial__body {
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  position: relative;
}

.lct-testimonial__body::before {
  content: "“";
  font-size: 40px;
  color: var(--brandSoft);
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: -1;
}

.lct-testimonial__meta {
  margin-top: 16px;
  font-weight: 700;
  color: var(--brandHover);
  font-size: 14px;
  text-align: right;
}

.lct-article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

@media (max-width: 980px) {
  .lct-testimonials__grid {
    grid-template-columns: 1fr;
  }
}

.lct-article__main {
  min-width: 0;
}

.lct-article__aside {
  position: sticky;
  top: calc(var(--navH) + 18px);
}

.lct-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radiusCard);
}

.lct-panel__inner {
  padding: 18px 18px;
}

.lct-articleIntro {
  border: 1px solid rgba(42, 107, 255, 0.22);
  background: rgba(42, 107, 255, 0.06);
  border-radius: var(--radiusCard);
  padding: 16px;
}

.lct-articleIntro__text {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.lct-toc {
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radiusCard);
  background: rgba(255, 255, 255, 0.86);
  padding: 16px;
}

.lct-toc__title {
  font-weight: 850;
  letter-spacing: -0.2px;
}

.lct-toc__body {
  margin-top: 10px;
}

.lct-toc__body a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 14px;
}

.lct-toc__body a:hover {
  border-color: rgba(42, 107, 255, 0.20);
  background: rgba(42, 107, 255, 0.06);
  color: var(--brandHover);
}

.lct-toc__body a[data-depth="3"] {
  padding-left: 22px;
  font-size: 13px;
  color: var(--subtle);
}

.lct-ctaCard {
  margin-top: 22px;
  border: 1px solid rgba(42, 107, 255, 0.22);
  background:
    radial-gradient(540px 260px at 20% 30%, rgba(42, 107, 255, 0.18), rgba(255, 255, 255, 0) 60%),
    rgba(42, 107, 255, 0.06);
  border-radius: var(--radiusCard);
}

.lct-ctaCard__inner {
  padding: 22px;
  text-align: center;
}

@media (max-width: 980px) {
  :root {
    --navH: 66px;
  }

  body {
    padding-top: var(--navH);
  }

  .lcw-brand {
    min-width: 140px;
  }

  .lcw-nav__toggle {
    display: inline-flex;
  }

  .lcw-menu {
    position: absolute;
    top: calc(var(--navH) - 1px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 8px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }

  .lcw-menu[aria-hidden="true"] {
    display: none;
  }

  .lcw-hero__actions {
    justify-content: stretch;
  }

  .lcw-hero__actions .lcw-btn {
    flex: 1 1 auto;
  }

  .lcw-grid3 {
    grid-template-columns: 1fr;
  }

  .lcw-grid4 {
    grid-template-columns: 1fr;
  }

  .lcw-pricing__grid {
    grid-template-columns: 1fr;
  }

  .lcw-heroBiz,
  .lcw-heroWps {
    padding: 84px 0 28px;
  }

  .lcw-heroBiz__grid {
    grid-template-columns: 1fr;
  }

  .lcw-heroBiz__meta {
    justify-content: center;
  }

  .lcw-kpis {
    grid-template-columns: 1fr;
  }

  .lcw-trust__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .lcw-pricing__layout {
    grid-template-columns: 1fr;
  }

  .lcw-pricing__aside {
    position: static;
    top: auto;
  }

  .lcw-pricing__cards {
    grid-template-columns: 1fr;
  }

  .lcw-pageHero {
    padding: 84px 0 24px;
  }

  .lcw-pageHero__grid {
    grid-template-columns: 1fr;
  }

  .lcw-downloadGrid {
    grid-template-columns: 1fr;
  }

  .lcw-steps {
    grid-template-columns: 1fr;
  }

  .lcw-hero__grid {
    grid-template-columns: 1fr;
  }

  .lcw-hero__copy {
    text-align: center;
  }

  .lcw-hero__copy .lcw-actions {
    justify-content: center;
  }

  .lcw-hero__meta {
    justify-content: center;
  }

  .lcw-layout {
    grid-template-columns: 1fr;
  }

  .lct-postGrid {
    grid-template-columns: 1fr;
  }

  .lct-winHero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lcw-split {
    grid-template-columns: 1fr;
  }

  .lcw-aside {
    position: static;
    top: auto;
  }

  .lcw-pn {
    grid-template-columns: 1fr;
  }

  .lcw-newsItem {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .lcw-newsItem__img {
    width: 120px;
    height: 84px;
  }

  .lcw-footer__grid {
    grid-template-columns: 1fr;
  }

  .lct-hero__grid {
    grid-template-columns: 1fr;
  }

  .lct-hero__copy {
    text-align: center;
  }

  .lct-hero__meta {
    justify-content: center;
  }

  .lct-shelf__row {
    grid-template-columns: 1fr;
  }

  .lct-platforms__row {
    grid-template-columns: 1fr;
  }

  .lct-features__grid {
    grid-template-columns: 1fr;
  }

  .lct-article {
    grid-template-columns: 1fr;
  }

  .lct-article__aside {
    position: static;
    top: auto;
  }
}
