:root {
  --lp-ink: #101827;
  --lp-text: #4c5a70;
  --lp-muted: #7a879b;
  --lp-line: #dbe3ee;
  --lp-line-soft: #e9eef5;
  --lp-blue: #155eef;
  --lp-blue-dark: #104cc5;
  --lp-blue-soft: #edf4ff;
  --lp-cyan: #0b8fa8;
  --lp-green: #0f956d;
  --lp-red: #e22e37;
  --lp-navy: #0e1a2c;
  --lp-surface: #ffffff;
  --lp-bg: #f5f7fb;
  --lp-shadow: 0 24px 70px rgba(24, 50, 88, 0.12);
}

html { scroll-behavior: smooth; }

body.yp-page {
  overflow-x: hidden;
  color: var(--lp-ink);
  background: #fff !important;
  font-family: "Inter", "PingFang SC", "Noto Sans SC", "Microsoft YaHei UI", system-ui, -apple-system, sans-serif;
}

.lp-shell {
  width: min(1220px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

#capabilities,
#new,
#workflow,
#trust { scroll-margin-top: 96px; }

.lp-header-wrap {
  position: sticky;
  z-index: 100;
  top: 14px;
  width: min(1220px, calc(100% - 48px));
  margin: 14px auto 0;
  border: 1px solid rgba(215, 224, 237, 0.88);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 36px rgba(21, 45, 82, 0.09);
  backdrop-filter: blur(20px) saturate(150%);
}

.lp-header {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 18px;
}

.lp-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--lp-ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.lp-brand:hover { color: var(--lp-ink); }

.lp-brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(220, 36, 47, 0.16);
}

.lp-brand span {
  display: block;
  margin-top: 1px;
  color: var(--lp-muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.lp-nav,
.lp-nav-links,
.lp-nav-actions {
  display: flex;
  align-items: center;
}

.lp-nav { gap: 30px; }
.lp-nav-links { gap: 27px; }
.lp-nav-actions { gap: 14px; }

.lp-nav a {
  color: #536176;
  font-size: 13px;
  font-weight: 700;
}

.lp-nav-links a:hover,
.lp-nav-actions > a:not(.lp-button):hover { color: var(--lp-blue); }

.lp-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid var(--lp-blue);
  border-radius: 12px;
  color: #fff !important;
  background: var(--lp-blue);
  box-shadow: 0 9px 24px rgba(21, 94, 239, 0.21);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.005em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.lp-button:hover {
  border-color: var(--lp-blue-dark);
  color: #fff;
  background: var(--lp-blue-dark);
  box-shadow: 0 14px 30px rgba(21, 94, 239, 0.28);
  transform: translateY(-2px);
}

.lp-button:active { transform: translateY(0); }

.lp-button.secondary {
  border-color: #cfd9e7;
  color: #26364e !important;
  background: #fff;
  box-shadow: none;
}

.lp-button.secondary:hover {
  border-color: #9bb8e8;
  color: var(--lp-blue) !important;
  background: #f7faff;
  box-shadow: 0 10px 24px rgba(24, 50, 88, 0.08);
}

.lp-button-sm {
  min-height: 40px;
  padding: 0 17px;
  border-radius: 10px;
  font-size: 13px;
}

.lp-nav-toggle,
.lp-mobile-nav-link { display: none; }

.lp-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  align-items: center;
  gap: 62px;
  min-height: 675px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.lp-hero::before {
  position: absolute;
  z-index: -1;
  top: -180px;
  left: -340px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 94, 239, 0.08), transparent 69%);
  content: "";
}

.lp-hero-copy { min-width: 0; }

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 11px;
  border: 1px solid #d5e2f8;
  border-radius: 8px;
  color: #315b9d;
  background: #f5f8fe;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.lp-live-dot,
.lp-console-brand i,
.lp-status-pill i,
.lp-chat-sample span i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-green);
  box-shadow: 0 0 0 4px rgba(15, 149, 109, 0.11);
}

.lp-title {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--lp-ink);
  font-size: clamp(46px, 4.6vw, 66px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.07;
  text-wrap: balance;
}

.lp-title span {
  color: transparent;
  background: linear-gradient(100deg, #155eef 6%, #087ea4 82%);
  background-clip: text;
  -webkit-background-clip: text;
}

.lp-lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--lp-text);
  font-size: 17px;
  line-height: 1.78;
}

.lp-hero-points {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px 24px;
  margin-top: 25px;
}

.lp-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #314159;
  font-size: 13px;
  font-weight: 700;
}

.lp-hero-points i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lp-blue);
  box-shadow: 0 0 0 4px #e8f0ff;
}

.lp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 31px;
}

.lp-note {
  margin: 15px 0 0;
  color: var(--lp-muted);
  font-size: 11.5px;
  line-height: 1.7;
}

.lp-note span { color: var(--lp-green); font-weight: 900; }

.lp-console {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid #cdd9e8;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--lp-shadow), 0 0 0 8px rgba(233, 239, 248, 0.72);
  animation: lp-rise 620ms ease both;
}

.lp-console::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(21, 94, 239, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.lp-console-bar {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border-bottom: 1px solid var(--lp-line-soft);
  background: #fbfcfe;
}

.lp-console-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #273850;
  font-size: 12px;
  font-weight: 850;
}

.lp-console-demo {
  padding: 4px 8px;
  border: 1px solid #dce4ef;
  border-radius: 6px;
  color: var(--lp-muted);
  font-size: 10px;
  font-weight: 750;
}

.lp-console-tabs {
  display: flex;
  gap: 22px;
  min-height: 44px;
  align-items: flex-end;
  padding: 0 20px;
  border-bottom: 1px solid var(--lp-line-soft);
}

.lp-console-tabs span {
  position: relative;
  padding-bottom: 12px;
  color: #8190a5;
  font-size: 11px;
  font-weight: 750;
}

.lp-console-tabs .active { color: var(--lp-blue); }

.lp-console-tabs .active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--lp-blue);
  content: "";
}

.lp-console-body { padding: 22px 20px 18px; }

.lp-console-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.lp-console-heading div { display: grid; gap: 3px; }
.lp-console-heading small {
  color: #8493a8;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.lp-console-heading strong { font-size: 16px; letter-spacing: -0.02em; }

.lp-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 9px;
  border: 1px solid #c9e9df;
  border-radius: 7px;
  color: #147e61;
  background: #f2fbf8;
  font-size: 10px;
  font-weight: 800;
}

.lp-status-pill i {
  width: 5px;
  height: 5px;
  box-shadow: none;
}

.lp-signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 18px;
}

.lp-signal-row > div {
  min-width: 0;
  padding: 12px;
  border: 1px solid #e1e7f0;
  border-radius: 10px;
  background: #f9fbfd;
}

.lp-signal-row span,
.lp-signal-row small { display: block; }
.lp-signal-row span { color: #7a899d; font-size: 9px; font-weight: 700; }
.lp-signal-row strong { display: block; margin-top: 4px; color: #253650; font-size: 14px; }
.lp-signal-row small {
  margin-top: 4px;
  overflow: hidden;
  color: #8492a5;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-console-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 9px;
  margin-top: 9px;
}

.lp-mini-chart,
.lp-ai-brief {
  min-width: 0;
  padding: 13px;
  border: 1px solid #e1e7f0;
  border-radius: 10px;
}

.lp-mini-chart-head,
.lp-ai-brief-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.lp-mini-chart-head span,
.lp-ai-brief-head span { color: #2c3d56; font-size: 10px; font-weight: 850; }
.lp-mini-chart-head small,
.lp-ai-brief-head small { color: #92a0b2; font-size: 8px; }

.lp-chart-area {
  position: relative;
  height: 85px;
  margin-top: 10px;
  border-bottom: 1px solid #dce5f0;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 27px, #f0f3f8 28px);
}

.lp-chart-area i {
  position: absolute;
  bottom: 0;
  left: var(--x);
  width: 5%;
  height: var(--h);
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, rgba(21, 94, 239, 0.88), #4db3cd);
  opacity: 0.9;
}

.lp-chart-area > span {
  position: absolute;
  top: 32%;
  right: 4%;
  left: 4%;
  height: 2px;
  background: linear-gradient(90deg, #a8cdf8, #155eef 55%, #0f956d);
  box-shadow: 0 0 0 1px rgba(21, 94, 239, 0.03);
  clip-path: polygon(0 55%, 14% 83%, 27% 60%, 40% 76%, 53% 25%, 68% 46%, 82% 0, 100% 18%, 100% 100%, 82% 100%, 68% 100%, 53% 100%, 40% 100%, 27% 100%, 14% 100%, 0 100%);
}

.lp-chart-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  color: #96a3b4;
  font-size: 8px;
}

.lp-ai-brief { background: #f6f9fe; }
.lp-ai-brief p { margin: 13px 0 0; color: #59677b; font-size: 10px; line-height: 1.75; }
.lp-ai-brief p b { color: #21324a; }

.lp-source-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 13px;
}

.lp-source-row span {
  padding: 3px 6px;
  border: 1px solid #d8e3f2;
  border-radius: 5px;
  color: #5e7390;
  background: #fff;
  font-size: 8px;
  font-weight: 700;
}

.lp-console-foot {
  display: grid;
  grid-template-columns: max-content 1fr max-content 1fr max-content 1fr max-content;
  align-items: center;
  gap: 9px;
  min-height: 49px;
  padding: 0 19px;
  border-top: 1px solid #e0e7f0;
  background: #f8fafc;
}

.lp-console-foot span { color: #53647b; font-size: 9px; font-weight: 750; white-space: nowrap; }
.lp-console-foot b { margin-right: 3px; color: var(--lp-blue); }
.lp-console-foot > i { height: 1px; background: #cbd9ea; }

.lp-product-rail {
  border-top: 1px solid #e2e8f1;
  border-bottom: 1px solid #e2e8f1;
  background: #f8fafc;
}

.lp-rail-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }

.lp-rail-grid > a {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 11px;
  min-width: 0;
  min-height: 92px;
  padding: 16px 22px;
  border-right: 1px solid #e1e7ef;
  color: var(--lp-ink);
  transition: color 180ms ease, background 180ms ease;
}

.lp-rail-grid > a:first-child { border-left: 1px solid #e1e7ef; }
.lp-rail-grid > a:hover { color: var(--lp-blue); background: #fff; }
.lp-rail-grid > a > span { color: #9aa7b8; font-size: 11px; font-weight: 850; }
.lp-rail-grid > a > div { display: grid; min-width: 0; gap: 3px; }
.lp-rail-grid strong { font-size: 13px; }
.lp-rail-grid small { overflow: hidden; color: #8290a3; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.lp-rail-grid > a > i { color: #9aabc0; font-size: 13px; font-style: normal; }

.lp-section { padding-top: 112px; padding-bottom: 112px; }

.lp-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: end;
  gap: 72px;
}

.lp-kicker,
.lp-cap-label,
.lp-new-badge {
  color: var(--lp-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.lp-section-heading h2,
.lp-trust-intro h2,
.lp-final h2 {
  margin: 14px 0 0;
  color: var(--lp-ink);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.lp-section-heading > p {
  margin: 0 0 5px;
  color: var(--lp-text);
  font-size: 15px;
  line-height: 1.8;
}

.lp-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.lp-cap-card {
  position: relative;
  overflow: hidden;
  min-height: 475px;
  padding: 30px;
  border: 1px solid #d9e2ed;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(24, 50, 88, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.lp-cap-card:hover {
  border-color: #a9c1e9;
  box-shadow: 0 20px 42px rgba(24, 50, 88, 0.1);
  transform: translateY(-3px);
}

.lp-cap-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--cap-accent, var(--lp-blue));
  content: "";
}

.lp-cap-market { --cap-accent: #155eef; }
.lp-cap-research { --cap-accent: #0b8fa8; }
.lp-cap-review { --cap-accent: #7b59c5; }

.lp-cap-number {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #edf1f6;
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.lp-cap-card h3 {
  max-width: 280px;
  margin: 45px 0 0;
  color: #172237;
  font-size: 24px;
  letter-spacing: -0.035em;
  line-height: 1.28;
}

.lp-cap-card > p {
  min-height: 94px;
  margin: 15px 0 0;
  color: var(--lp-text);
  font-size: 13px;
  line-height: 1.75;
}

.lp-link-list {
  display: grid;
  margin-top: 24px;
  border-top: 1px solid #e7ecf2;
}

.lp-link-list a {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #e7ecf2;
  color: #34445b;
  font-size: 12px;
  font-weight: 750;
}

.lp-link-list a span { color: #9babc0; transition: transform 180ms ease, color 180ms ease; }
.lp-link-list a:hover { color: var(--lp-blue); }
.lp-link-list a:hover span { color: var(--lp-blue); transform: translateX(3px); }

.lp-latest {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(31, 109, 238, 0.18), transparent 27rem),
    radial-gradient(circle at 92% 84%, rgba(16, 164, 180, 0.12), transparent 24rem),
    var(--lp-navy);
}

.lp-section-heading-light h2 { color: #f6f9fe; }
.lp-section-heading-light > p { color: #aebbd0; }
.lp-section-heading-light .lp-kicker { color: #72a9ff; }

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

.lp-latest-main,
.lp-latest-side {
  border: 1px solid rgba(166, 190, 223, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.045);
}

.lp-latest-main {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
  align-items: center;
  gap: 50px;
  min-height: 490px;
  padding: 42px;
}

.lp-new-badge {
  display: inline-flex;
  padding: 6px 8px;
  border: 1px solid rgba(115, 169, 255, 0.3);
  border-radius: 6px;
  color: #8ab9ff;
  background: rgba(48, 111, 212, 0.12);
  letter-spacing: 0.07em;
}

.lp-latest-copy h3,
.lp-latest-side h3 {
  margin: 19px 0 0;
  color: #f8faff;
  font-size: 28px;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.lp-latest-copy > p,
.lp-latest-side > p {
  margin: 15px 0 0;
  color: #b3c0d3;
  font-size: 13px;
  line-height: 1.8;
}

.lp-latest-copy ul {
  display: grid;
  gap: 9px;
  margin: 19px 0 0;
  padding: 0;
  color: #d4deec;
  font-size: 12px;
  list-style: none;
}

.lp-latest-copy li { position: relative; padding-left: 19px; }
.lp-latest-copy li::before { position: absolute; left: 0; color: #55d2b1; content: "✓"; font-weight: 900; }
.lp-latest-copy > a,
.lp-text-link { display: inline-flex; gap: 8px; margin-top: 26px; color: #8ab9ff; font-size: 13px; font-weight: 800; }
.lp-latest-copy > a:hover,
.lp-text-link:hover { color: #bad5ff; }

.lp-kline-panel {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(190, 208, 234, 0.22);
  border-radius: 14px;
  background: #f9fbfe;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
}

.lp-kline-top {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 17px;
  border-bottom: 1px solid #dce4ee;
  color: #273750;
  background: #fff;
  font-size: 11px;
  font-weight: 850;
}

.lp-kline-top small { color: #8a98ab; font-size: 9px; font-weight: 650; }

.lp-kline-chart {
  position: relative;
  height: 270px;
  background:
    repeating-linear-gradient(to bottom, transparent 0, transparent 53px, #e9eef4 54px),
    repeating-linear-gradient(to right, transparent 0, transparent 72px, #eef2f6 73px),
    #fbfcfe;
}

.lp-kline-chart::after {
  position: absolute;
  right: 4%;
  bottom: 25%;
  left: 4%;
  height: 2px;
  background: linear-gradient(90deg, #91b8f2, #155eef 55%, #0ba383);
  clip-path: polygon(0 75%, 12% 84%, 22% 69%, 33% 75%, 43% 49%, 56% 52%, 66% 30%, 78% 41%, 89% 14%, 100% 0, 100% 100%, 0 100%);
  content: "";
  opacity: 0.5;
}

.lp-kline-chart > span {
  position: absolute;
  z-index: 1;
  top: var(--top);
  left: var(--x);
  width: 13px;
  height: var(--body);
  border: 1.5px solid currentColor;
  color: #d64950;
  background: currentColor;
}

.lp-kline-chart > span.down { color: #159474; background: #fff; }

.lp-kline-chart > span::before {
  position: absolute;
  top: calc((var(--wick) - var(--body)) / -2);
  left: 50%;
  width: 1px;
  height: var(--wick);
  background: currentColor;
  content: "";
  transform: translateX(-50%);
}

.lp-kline-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 7px;
  padding: 11px;
  border-top: 1px solid #dce4ee;
  background: #fff;
}

.lp-kline-actions span {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 8px;
  color: #fff;
  background: #d64950;
  font-size: 10px;
  font-weight: 800;
}

.lp-kline-actions span:nth-child(2) { background: #159474; }
.lp-kline-actions span.next { color: #32435a; background: #edf1f6; }
.lp-kline-actions b { opacity: 0.72; font-size: 8px; }

.lp-latest-side { min-height: 385px; padding: 32px; }

.lp-horizon-list { display: grid; margin-top: 25px; }

.lp-horizon-list a {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 13px;
  min-height: 66px;
  border-top: 1px solid rgba(174, 194, 219, 0.15);
  color: #eef4fd;
}

.lp-horizon-list a > span {
  display: grid;
  width: 42px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(123, 170, 237, 0.26);
  border-radius: 6px;
  color: #8fbaff;
  background: rgba(61, 112, 190, 0.11);
  font-size: 9px;
  font-weight: 800;
}

.lp-horizon-list div { display: grid; gap: 2px; }
.lp-horizon-list strong { font-size: 11px; }
.lp-horizon-list small { color: #8394ac; font-size: 9px; }
.lp-horizon-list i { color: #768aa5; font-size: 12px; font-style: normal; }
.lp-horizon-list a:hover strong,
.lp-horizon-list a:hover i { color: #8ab9ff; }

.lp-latest-ai {
  background: linear-gradient(145deg, rgba(29, 92, 156, 0.12), rgba(255, 255, 255, 0.045));
}

.lp-chat-sample {
  margin-top: 27px;
  padding: 16px;
  border: 1px solid rgba(157, 184, 220, 0.17);
  border-radius: 12px;
  background: rgba(6, 18, 34, 0.34);
}

.lp-chat-sample p { color: #eef4fd; font-size: 12px; line-height: 1.65; }
.lp-chat-sample span { display: flex; align-items: center; gap: 9px; margin-top: 13px; color: #8496ae; font-size: 9px; }
.lp-chat-sample span i { width: 5px; height: 5px; box-shadow: 0 0 0 3px rgba(15, 149, 109, 0.11); }

.lp-dayflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 50px;
  border: 1px solid #dce4ee;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(24, 50, 88, 0.055);
}

.lp-dayflow article {
  position: relative;
  min-height: 310px;
  padding: 30px 27px;
  border-right: 1px solid #e2e8f0;
}

.lp-dayflow article:last-child { border-right: 0; }
.lp-dayflow article::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: #d8e4f7;
  content: "";
}
.lp-dayflow article:nth-child(2)::after { background: #9dc4f8; }
.lp-dayflow article:nth-child(3)::after { background: #4a8ef1; }
.lp-dayflow article:nth-child(4)::after { background: #0f956d; }

.lp-dayflow time {
  display: block;
  color: var(--lp-blue);
  font-size: 28px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.06em;
}

.lp-dayflow article > span {
  display: block;
  margin-top: 4px;
  color: #8b98aa;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.lp-dayflow h3 { margin: 34px 0 0; font-size: 20px; letter-spacing: -0.03em; }
.lp-dayflow p { margin: 12px 0 0; color: var(--lp-text); font-size: 12px; line-height: 1.75; }
.lp-dayflow small { position: absolute; bottom: 27px; left: 27px; color: #8694a8; font-size: 9px; font-weight: 750; }

.lp-trust {
  border-top: 1px solid #e1e7ef;
  border-bottom: 1px solid #e1e7ef;
  background: #f5f7fa;
}

.lp-trust .lp-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  gap: 90px;
}

.lp-trust-intro h2 { font-size: clamp(34px, 3.8vw, 48px); }
.lp-trust-intro > p { max-width: 520px; margin: 23px 0 0; color: var(--lp-text); font-size: 14px; line-height: 1.85; }

.lp-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lp-trust-grid article {
  min-height: 180px;
  padding: 22px;
  border: 1px solid #dce4ee;
  border-radius: 12px;
  background: #fff;
}

.lp-trust-grid article > span { color: #9ba8b9; font-size: 10px; font-weight: 900; }
.lp-trust-grid h3 { margin: 22px 0 0; font-size: 15px; }
.lp-trust-grid p { margin: 9px 0 0; color: var(--lp-text); font-size: 11px; line-height: 1.75; }

.lp-privacy-line {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  margin-top: -50px;
  padding: 16px 19px;
  border: 1px solid #cfe3dc;
  border-radius: 10px;
  color: #567066;
  background: #f1faf7;
  font-size: 10px;
  line-height: 1.7;
}

.lp-privacy-line strong { color: #157a5e; font-size: 11px; }

.lp-faq-section { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 100px; }
.lp-faq-section .lp-section-heading { display: block; }
.lp-faq { border-top: 1px solid #dce4ee; }

.lp-faq details { border-bottom: 1px solid #dce4ee; }
.lp-faq summary {
  position: relative;
  padding: 23px 44px 23px 0;
  color: #1e2c42;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { position: absolute; top: 20px; right: 5px; color: #91a0b5; content: "+"; font-size: 22px; font-weight: 400; }
.lp-faq details[open] summary::after { content: "−"; }
.lp-faq details p { max-width: 690px; margin: -4px 0 23px; color: var(--lp-text); font-size: 12px; line-height: 1.8; }

.lp-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
  margin-bottom: 96px;
  padding: 48px 52px;
  border: 1px solid #bdd2f0;
  border-radius: 18px;
  background:
    radial-gradient(circle at 94% 10%, rgba(68, 169, 192, 0.14), transparent 17rem),
    linear-gradient(135deg, #f5f8ff, #edf5fb);
  box-shadow: 0 20px 50px rgba(24, 50, 88, 0.09);
}

.lp-final h2 { font-size: clamp(30px, 3.8vw, 44px); }
.lp-final p { max-width: 670px; margin: 16px 0 0; color: var(--lp-text); font-size: 13px; line-height: 1.75; }
.lp-final .lp-actions { min-width: 250px; flex-direction: column; margin-top: 0; }
.lp-final .lp-button { width: 100%; }

.lp-footer {
  padding: 44px 0 30px;
  border-top: 1px solid #e1e7ef;
  background: #f8fafc;
}

.lp-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.lp-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px 20px; }
.lp-footer nav a { color: #69788d; font-size: 11px; font-weight: 700; }
.lp-footer nav a:hover { color: var(--lp-blue); }

.lp-footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.lp-footer-meta p { max-width: 680px; color: #8996a8; font-size: 9px; line-height: 1.7; }
.lp-footer-meta a { color: inherit; }

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

@media (max-width: 1100px) {
  .lp-nav-links { gap: 18px; }
  .lp-nav { gap: 20px; }
  .lp-hero { grid-template-columns: 1fr; gap: 52px; min-height: 0; padding-top: 82px; padding-bottom: 82px; }
  .lp-hero-copy { max-width: 760px; }
  .lp-title { max-width: 720px; }
  .lp-lead { max-width: 700px; }
  .lp-console { width: min(100%, 780px); }
  .lp-capability-grid { grid-template-columns: 1fr; }
  .lp-cap-card { min-height: 0; }
  .lp-cap-card > p { min-height: 0; }
  .lp-latest-main { grid-template-columns: 1fr; }
  .lp-trust .lp-section { grid-template-columns: 1fr; gap: 48px; }
  .lp-privacy-line { margin-top: 0; }
}

@media (max-width: 900px) {
  .lp-header { position: relative; }
  .lp-nav-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #d5deea;
    border-radius: 9px;
    background: #fff;
    cursor: pointer;
  }
  .lp-nav-toggle > span { display: none; }
  .lp-nav-toggle > i,
  .lp-nav-toggle > i::before,
  .lp-nav-toggle > i::after {
    display: block;
    width: 17px;
    height: 1.5px;
    background: #46556a;
    content: "";
  }
  .lp-nav-toggle > i { position: relative; }
  .lp-nav-toggle > i::before { position: absolute; top: -5px; }
  .lp-nav-toggle > i::after { position: absolute; top: 5px; }
  .lp-nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    padding: 10px;
    border: 1px solid #d9e2ee;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 42px rgba(30, 64, 175, 0.14);
  }
  .lp-nav.is-open .lp-nav-links { display: flex; }
  .lp-nav-links a { padding: 11px 12px; border-radius: 8px; }
  .lp-nav-links a:hover { background: #f1f6fd; }
  .lp-rail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-rail-grid > a:nth-child(2) { border-right: 0; }
  .lp-rail-grid > a:nth-child(-n+2) { border-bottom: 1px solid #e1e7ef; }
  .lp-rail-grid > a:nth-child(3) { border-left: 1px solid #e1e7ef; }
  .lp-section-heading { grid-template-columns: 1fr; align-items: start; gap: 22px; }
  .lp-latest-grid { grid-template-columns: 1fr; }
  .lp-latest-side { min-height: 0; }
  .lp-dayflow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-dayflow article:nth-child(2) { border-right: 0; }
  .lp-dayflow article:nth-child(-n+2) { border-bottom: 1px solid #e2e8f0; }
  .lp-faq-section { grid-template-columns: 1fr; gap: 44px; }
  .lp-final { grid-template-columns: 1fr; }
  .lp-final .lp-actions { max-width: 360px; }
}

@media (max-width: 640px) {
  .lp-shell { width: min(100% - 30px, 1220px); }
  .lp-header-wrap { top: 9px; width: min(100% - 24px, 1220px); margin-top: 9px; }
  .lp-header { min-height: 60px; padding: 0 12px; }
  .lp-brand img { width: 34px; height: 34px; }
  .lp-brand span { display: none; }
  .lp-nav-actions { display: none; }
  .lp-mobile-nav-link { display: block; }
  .lp-mobile-nav-link.is-primary { margin-top: 4px; color: #fff; background: var(--lp-blue); }
  .lp-mobile-nav-link.is-primary:hover { color: #fff; background: var(--lp-blue-dark); }
  .lp-hero { gap: 42px; padding-top: 56px; padding-bottom: 55px; }
  .lp-eyebrow { align-items: flex-start; line-height: 1.45; }
  .lp-title { margin-top: 19px; font-size: clamp(38px, 11.2vw, 48px); line-height: 1.09; }
  .lp-title br { display: none; }
  .lp-title span { display: block; }
  .lp-lead { margin-top: 21px; font-size: 15px; line-height: 1.75; }
  .lp-hero-points { grid-template-columns: 1fr 1fr; gap: 10px 14px; }
  .lp-hero-points span { font-size: 11px; }
  .lp-actions { display: grid; }
  .lp-actions .lp-button { width: 100%; }
  .lp-note { font-size: 10px; }
  .lp-console { border-radius: 14px; box-shadow: 0 20px 46px rgba(24, 50, 88, 0.15), 0 0 0 5px rgba(233, 239, 248, 0.72); }
  .lp-console-body { padding: 17px 14px 14px; }
  .lp-console-heading { align-items: flex-start; }
  .lp-console-heading strong { font-size: 13px; }
  .lp-status-pill { padding: 5px 7px; }
  .lp-signal-row { grid-template-columns: 1fr; }
  .lp-signal-row > div { display: grid; grid-template-columns: 72px 1fr; align-items: center; gap: 2px 9px; padding: 9px 11px; }
  .lp-signal-row span { grid-row: 1 / span 2; }
  .lp-signal-row strong { margin-top: 0; font-size: 12px; }
  .lp-signal-row small { margin-top: 0; }
  .lp-console-grid { grid-template-columns: 1fr; }
  .lp-mini-chart { display: none; }
  .lp-console-foot { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 4px; padding: 0 10px; }
  .lp-console-foot > i { display: none; }
  .lp-console-foot span { font-size: 8px; text-align: center; }
  .lp-rail-grid { grid-template-columns: 1fr; }
  .lp-rail-grid > a,
  .lp-rail-grid > a:first-child,
  .lp-rail-grid > a:nth-child(3) { min-height: 74px; padding: 12px 16px; border-right: 1px solid #e1e7ef; border-bottom: 1px solid #e1e7ef; border-left: 1px solid #e1e7ef; }
  .lp-rail-grid > a:last-child { border-bottom: 0; }
  .lp-section { padding-top: 78px; padding-bottom: 78px; }
  .lp-section-heading h2,
  .lp-trust-intro h2 { font-size: 34px; }
  .lp-section-heading > p { font-size: 13px; }
  .lp-capability-grid,
  .lp-latest-grid { margin-top: 35px; }
  .lp-cap-card { padding: 25px 21px; }
  .lp-cap-card h3 { margin-top: 38px; font-size: 22px; }
  .lp-cap-number { right: 19px; font-size: 48px; }
  .lp-latest-main { gap: 34px; padding: 27px 20px; }
  .lp-latest-copy h3,
  .lp-latest-side h3 { font-size: 24px; }
  .lp-kline-top { align-items: flex-start; flex-direction: column; gap: 3px; padding: 11px 13px; }
  .lp-kline-chart { height: 205px; }
  .lp-kline-chart > span { width: 8px; }
  .lp-kline-actions { grid-template-columns: 1fr 1fr; }
  .lp-kline-actions span.next { grid-column: 1 / -1; }
  .lp-latest-side { padding: 26px 21px; }
  .lp-dayflow { grid-template-columns: 1fr; margin-top: 35px; }
  .lp-dayflow article,
  .lp-dayflow article:nth-child(2) { min-height: 245px; border-right: 0; border-bottom: 1px solid #e2e8f0; }
  .lp-dayflow article:last-child { border-bottom: 0; }
  .lp-dayflow h3 { margin-top: 24px; }
  .lp-trust .lp-section { gap: 36px; }
  .lp-trust-grid { grid-template-columns: 1fr; }
  .lp-trust-grid article { min-height: 0; }
  .lp-privacy-line { grid-template-columns: 1fr; gap: 7px; }
  .lp-faq-section { gap: 34px; }
  .lp-final { gap: 34px; margin-bottom: 64px; padding: 32px 23px; }
  .lp-final h2 { font-size: 32px; }
  .lp-final .lp-actions { max-width: none; }
  .lp-footer { padding-top: 34px; }
  .lp-footer-row,
  .lp-footer-meta { align-items: flex-start; flex-direction: column; gap: 24px; }
  .lp-footer nav { justify-content: flex-start; }
}
