body.lp-page {
  --lp-bg: #070a0c;
  --lp-bg-2: #0b1013;
  --lp-panel: rgba(15, 19, 22, 0.74);
  --lp-panel-strong: rgba(18, 23, 27, 0.92);
  --lp-card: rgba(244, 246, 243, 0.045);
  --lp-card-hover: rgba(244, 246, 243, 0.07);
  --lp-ink: #f4f6f3;
  --lp-muted: rgba(244, 246, 243, 0.66);
  --lp-muted-2: rgba(244, 246, 243, 0.48);
  --lp-line: rgba(244, 246, 243, 0.12);
  --lp-line-strong: rgba(244, 246, 243, 0.22);
  --lp-emerald: #35c992;
  --lp-emerald-soft: rgba(53, 201, 146, 0.14);
  --lp-amber: #d9a456;
  --lp-blue: #5d8fe8;
  display: block;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background:
    radial-gradient(circle at 16% 0%, rgba(53, 201, 146, 0.08), transparent 28%),
    radial-gradient(rgba(244, 246, 243, 0.075) 1px, transparent 1px),
    linear-gradient(180deg, var(--lp-bg) 0%, #050708 100%);
  background-size: auto, 28px 28px, auto;
  color: var(--lp-ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.lp-page::before { content: none; }
body.lp-page a { color: inherit; text-decoration: none; }

body.lp-page .lp-nav,
body.lp-page .lp-statusbar,
body.lp-page .lp-section,
body.lp-page .lp-final,
body.lp-page .lp-hero__content {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

body.lp-page .lp-nav {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  margin-top: 12px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(244, 246, 243, 0.13);
  border-radius: 12px;
  background: rgba(7, 10, 12, 0.72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px) saturate(1.08);
}

body.lp-page .lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 14px;
  font-weight: 800;
}

body.lp-page .lp-brand__logo {
  display: block;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 1px solid rgba(53, 201, 146, 0.24);
  border-radius: 9px;
  object-fit: cover;
  object-position: center;
  background: #050607;
}

body.lp-page .lp-nav__links {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(244, 246, 243, 0.09);
  border-radius: 10px;
  background: rgba(244, 246, 243, 0.04);
  color: var(--lp-muted);
  font-size: 13px;
  font-weight: 800;
}

body.lp-page .lp-nav__links a {
  padding: 8px 10px;
  border-radius: 7px;
  transition: background 160ms ease, color 160ms ease;
}

body.lp-page .lp-nav__links a:hover {
  background: rgba(244, 246, 243, 0.08);
  color: var(--lp-ink);
}

body.lp-page .lp-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--lp-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

body.lp-page .lp-button span {
  position: relative;
  z-index: 2;
  color: inherit;
  white-space: nowrap;
}

body.lp-page .lp-button:hover {
  transform: translateY(-1px);
}

body.lp-page .lp-button--nav,
body.lp-page .lp-button--primary {
  background: #f4f6f3;
  color: #070a0c;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

body.lp-page .lp-button--nav span,
body.lp-page .lp-button--primary span { color: #070a0c; }

body.lp-page .lp-button--ghost {
  border-color: var(--lp-line-strong);
  background: rgba(244, 246, 243, 0.07);
  color: var(--lp-ink);
}

body.lp-page .lp-button--ghost:hover {
  border-color: rgba(53, 201, 146, 0.34);
  background: rgba(53, 201, 146, 0.08);
}

body.lp-page .lp-button--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg, transparent 0%, rgba(53, 201, 146, 0.28) 42%, transparent 72%);
  transform: translateX(-120%);
}

body.lp-page .lp-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
  margin-top: -86px;
  overflow: hidden;
  isolation: isolate;
}

body.lp-page .lp-hero__image,
body.lp-page .lp-hero__shade,
body.lp-page .lp-hero__grid,
body.lp-page .lp-hero__vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body.lp-page .lp-hero__image {
  z-index: -4;
  object-fit: cover;
  object-position: center right;
  opacity: 0.92;
  filter: contrast(1.08) saturate(0.96) brightness(0.92);
}

body.lp-page .lp-hero__shade {
  z-index: -3;
  background:
    linear-gradient(90deg,
      rgba(7, 10, 12, 0.97) 0%,
      rgba(7, 10, 12, 0.90) 38%,
      rgba(7, 10, 12, 0.48) 70%,
      rgba(7, 10, 12, 0.24) 100%
    ),
    linear-gradient(0deg,
      #070a0c 0%,
      rgba(7, 10, 12, 0.18) 48%,
      rgba(7, 10, 12, 0.72) 100%
    );
}

body.lp-page .lp-hero__vignette {
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 65% 44%, transparent 0%, rgba(0, 0, 0, 0.22) 42%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 28%, rgba(0, 0, 0, 0.48));
}

body.lp-page .lp-hero__grid {
  z-index: -1;
  opacity: 0.09;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(244, 246, 243, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 246, 243, 0.10) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
}

body.lp-page .lp-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
  gap: 48px;
  align-items: center;
  padding: 150px 0 94px;
}

body.lp-page .lp-hero__copy { min-width: 0; }

body.lp-page .lp-eyebrow,
body.lp-page .lp-kicker {
  margin: 0;
  color: var(--lp-emerald);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

body.lp-page .lp-hero h1 {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--lp-ink);
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

body.lp-page .lp-hero__lead {
  max-width: 670px;
  margin: 28px 0 0;
  color: rgba(244, 246, 243, 0.83);
  font-size: 20px;
  line-height: 1.56;
}

body.lp-page .lp-hero__sub {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(244, 246, 243, 0.68);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

body.lp-page .lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

body.lp-page .lp-hero-console,
body.lp-page .lp-news-terminal {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 246, 243, 0.13);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(244, 246, 243, 0.07), rgba(244, 246, 243, 0.028)),
    rgba(13, 17, 20, 0.86);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.62),
    0 0 46px rgba(53, 201, 146, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(24px) saturate(1.04);
}

body.lp-page .lp-hero-console::before,
body.lp-page .lp-news-terminal::before,
body.lp-page .lp-insight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(53, 201, 146, 0.09), transparent 36%, rgba(93, 143, 232, 0.045) 82%, transparent);
  opacity: 0.78;
}

body.lp-page .lp-hero-console {
  width: min(100%, 500px);
  justify-self: end;
  padding: 12px;
  transform-style: preserve-3d;
}

body.lp-page .lp-console__top,
body.lp-page .lp-news-terminal__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 26px;
  color: rgba(244, 246, 243, 0.74);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

body.lp-page .lp-console__top strong,
body.lp-page .lp-news-terminal__top strong { margin-left: auto; }

body.lp-page .lp-hero-console .lp-console__top em { margin-left: auto; margin-right: 0; }
body.lp-page .lp-console__top em,
body.lp-page .lp-news-terminal__top em {
  margin-left: 8px;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(53, 201, 146, 0.11);
  color: var(--lp-emerald);
  font-style: normal;
}

body.lp-page .lp-console__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-emerald);
  box-shadow: 0 0 14px rgba(53, 201, 146, 0.58);
}
body.lp-page .lp-console__dot:nth-child(2) { background: var(--lp-amber); box-shadow: none; }
body.lp-page .lp-console__dot:nth-child(3) { background: var(--lp-blue); box-shadow: none; }

body.lp-page .lp-demo-tabs {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 12px;
}

body.lp-page .lp-demo-tabs span {
  min-width: 0;
  border: 1px solid rgba(244, 246, 243, 0.10);
  border-radius: 9px;
  padding: 8px 7px;
  background: rgba(244, 246, 243, 0.045);
  color: rgba(244, 246, 243, 0.68);
  font-size: 10.5px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

body.lp-page .lp-demo-tabs span.is-active {
  border-color: rgba(93, 143, 232, 0.42);
  background: rgba(93, 143, 232, 0.20);
  color: var(--lp-ink);
}

body.lp-page .lp-demo-limits {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

body.lp-page .lp-demo-limits div,
body.lp-page .lp-demo-panel,
body.lp-page .lp-demo-table {
  border: 1px solid rgba(244, 246, 243, 0.11);
  border-radius: 13px;
  background: rgba(244, 246, 243, 0.05);
}

body.lp-page .lp-demo-limits div {
  min-width: 0;
  padding: 11px;
}

body.lp-page .lp-demo-limits small,
body.lp-page .lp-demo-panel small {
  display: block;
  overflow: hidden;
  color: var(--lp-muted-2);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

body.lp-page .lp-demo-limits strong {
  display: block;
  margin-top: 7px;
  color: var(--lp-ink);
  font-size: 17px;
  line-height: 1;
}

body.lp-page .lp-demo-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(150px, 0.72fr);
  gap: 10px;
  margin-top: 10px;
}

body.lp-page .lp-demo-main,
body.lp-page .lp-demo-side {
  display: grid;
  gap: 10px;
  min-width: 0;
}

body.lp-page .lp-demo-panel {
  min-width: 0;
  padding: 13px;
}

body.lp-page .lp-demo-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--lp-muted);
  font-size: 11px;
  font-weight: 800;
}

body.lp-page .lp-demo-panel__head strong {
  flex: 0 0 auto;
  color: var(--lp-emerald);
  font-size: 13px;
}

body.lp-page .lp-demo-chart {
  position: relative;
  overflow: hidden;
  height: 108px;
  margin-top: 10px;
  border: 1px solid rgba(244, 246, 243, 0.08);
  border-radius: 11px;
  background:
    linear-gradient(rgba(244, 246, 243, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 246, 243, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 64% 22%, rgba(93, 143, 232, 0.18), transparent 42%),
    rgba(4, 8, 10, 0.46);
  background-size: 100% 27px, 52px 100%, auto, auto;
}

body.lp-page .lp-demo-chart::before,
body.lp-page .lp-demo-chart::after {
  content: "";
  position: absolute;
  inset: 14px 12px 12px;
  pointer-events: none;
}

body.lp-page .lp-demo-chart::before {
  border-bottom: 2px solid rgba(93, 143, 232, 0.84);
  border-left: 2px solid transparent;
  clip-path: polygon(0 68%, 18% 52%, 36% 58%, 56% 34%, 76% 46%, 100% 24%, 100% 28%, 76% 50%, 56% 38%, 36% 62%, 18% 56%, 0 72%);
  background: rgba(93, 143, 232, 0.28);
}

body.lp-page .lp-demo-chart::after {
  clip-path: polygon(0 68%, 18% 52%, 36% 58%, 56% 34%, 76% 46%, 100% 24%, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(93, 143, 232, 0.22), transparent);
}

body.lp-page .lp-demo-chart span {
  position: absolute;
  z-index: 2;
  left: calc(12px + var(--x) * (100% - 24px));
  top: calc(14px + var(--y) * (100% - 26px));
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lp-emerald);
  box-shadow: 0 0 12px rgba(53, 201, 146, 0.54);
  transform: translate(-50%, -50%);
}

body.lp-page .lp-demo-chart span.is-active {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 16px rgba(53, 201, 146, 0.72);
}

body.lp-page .lp-demo-chart span.is-active::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(53, 201, 146, 0.55);
  animation: lpDotPulse 2.4s ease-out infinite;
}

@keyframes lpDotPulse {
  0%   { transform: scale(0.6); opacity: 0.85; }
  100% { transform: scale(2.6); opacity: 0; }
}

body.lp-page .lp-demo-table {
  overflow: hidden;
}

body.lp-page .lp-demo-row {
  display: grid;
  grid-template-columns: minmax(70px, 0.9fr) minmax(88px, 1.1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 36px;
  border-top: 1px solid rgba(244, 246, 243, 0.07);
  padding: 7px 10px;
  color: var(--lp-muted);
  font-size: 11px;
  font-weight: 800;
}

body.lp-page .lp-demo-row:first-child { border-top: 0; }

body.lp-page .lp-demo-row--head {
  min-height: 30px;
  color: var(--lp-muted-2);
  font-size: 10px;
  text-transform: uppercase;
}

body.lp-page .lp-demo-row strong {
  overflow: hidden;
  color: var(--lp-ink);
  text-overflow: ellipsis;
}

body.lp-page .lp-demo-row span {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-width: 0;
}

body.lp-page .lp-demo-row i {
  border-radius: 999px;
  padding: 4px 6px;
  background: rgba(53, 201, 146, 0.13);
  color: #bfeeda;
  font-style: normal;
  font-size: 9.5px;
  line-height: 1;
}

body.lp-page .lp-demo-row em {
  font-style: normal;
  font-variant-numeric: tabular-nums;
}

body.lp-page .lp-demo-row em.is-win { color: var(--lp-emerald); }
body.lp-page .lp-demo-row em.is-loss { color: #ff8f8f; }

body.lp-page .lp-demo-panel strong {
  display: block;
  margin-top: 8px;
  color: var(--lp-ink);
  font-size: 13px;
  line-height: 1.25;
}

body.lp-page .lp-demo-panel p {
  margin: 8px 0 0;
  color: var(--lp-muted);
  font-size: 11.5px;
  line-height: 1.38;
}

body.lp-page .lp-demo-panel--ai     { border-left: 2px solid rgba(93, 143, 232, 0.55); }
body.lp-page .lp-demo-panel--ai small     { color: var(--lp-blue); }
body.lp-page .lp-demo-panel--screener { border-left: 2px solid rgba(53, 201, 146, 0.55); }
body.lp-page .lp-demo-panel--screener small { color: var(--lp-emerald); }
body.lp-page .lp-demo-panel--news   { border-left: 2px solid rgba(217, 164, 86, 0.55); }
body.lp-page .lp-demo-panel--news small   { color: var(--lp-amber); }

body.lp-page .lp-console__chart {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  gap: 10px;
  height: 150px;
  margin-top: 14px;
  border: 1px solid rgba(244, 246, 243, 0.09);
  border-radius: 13px;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(53, 201, 146, 0.18), transparent 64%),
    rgba(6, 10, 11, 0.62);
}

body.lp-page .lp-console__chart span {
  flex: 1;
  height: var(--h);
  min-height: 22px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(180deg, #66d6ad 0%, rgba(53, 201, 146, 0.60) 44%, rgba(53, 201, 146, 0.16) 100%);
  box-shadow: 0 0 24px rgba(53, 201, 146, 0.16);
}

body.lp-page .lp-console__insight {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  border: 1px solid rgba(244, 246, 243, 0.12);
  border-radius: 13px;
  padding: 15px;
  background: rgba(244, 246, 243, 0.055);
}

body.lp-page .lp-console__insight small,
body.lp-page .lp-review-card span,
body.lp-page .lp-news-item small {
  display: block;
  color: var(--lp-emerald);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

body.lp-page .lp-console__insight strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.16;
}

body.lp-page .lp-console__insight p {
  margin: 10px 0 0;
  color: var(--lp-muted);
  font-size: 13px;
  line-height: 1.45;
}

body.lp-page .lp-console__chips {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

body.lp-page .lp-console__chips span {
  border: 1px solid rgba(244, 246, 243, 0.13);
  border-radius: 999px;
  padding: 7px 9px;
  background: rgba(244, 246, 243, 0.06);
  color: rgba(244, 246, 243, 0.76);
  font-size: 11px;
  font-weight: 800;
}

body.lp-page .lp-statusbar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: -58px;
  overflow: hidden;
  border: 1px solid var(--lp-line);
  border-radius: 12px;
  background: var(--lp-line);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.2);
}

body.lp-page .lp-statusbar span {
  position: relative;
  overflow: hidden;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 14px 14px 28px;
  background: rgba(14, 18, 21, 0.94);
  color: rgba(244, 246, 243, 0.74);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

body.lp-page .lp-statusbar span::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-emerald);
  box-shadow: 0 0 16px rgba(53, 201, 146, 0.55);
}

body.lp-page .lp-statusbar span::after,
body.lp-page .lp-feature::after,
body.lp-page .lp-system-card::after,
body.lp-page .lp-review-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 0%, rgba(53, 201, 146, 0.10) 42%, transparent 72%);
  transform: translateX(-120%);
}

body.lp-page .lp-section { padding: 100px 0 0; }

/* ── Section radial accents ────────────────────────────────────── */
body.lp-page #platform,
body.lp-page #workflow,
body.lp-page #system,
body.lp-page #review,
body.lp-page #news,
body.lp-page .lp-insight,
body.lp-page .lp-final { position: relative; }

/* bottom padding so separator sits in the gap between sections */
body.lp-page #platform,
body.lp-page #workflow,
body.lp-page #system,
body.lp-page #review,
body.lp-page .lp-insight,
body.lp-page #news { padding-bottom: 90px; }

body.lp-page #platform::before,
body.lp-page #workflow::before,
body.lp-page #system::before,
body.lp-page #review::before,
body.lp-page #news::before,
body.lp-page .lp-insight::before,
body.lp-page .lp-final::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
}

/* emerald — top-right */
body.lp-page #platform::before {
  background: radial-gradient(ellipse 52% 75% at 92% 12%, rgba(53, 201, 146, 0.13), transparent);
}
/* blue — top-left */
body.lp-page #workflow::before {
  background: radial-gradient(ellipse 50% 70% at 6% 18%, rgba(93, 143, 232, 0.12), transparent);
}
/* amber — bottom-right */
body.lp-page #system::before {
  background: radial-gradient(ellipse 48% 65% at 90% 72%, rgba(217, 164, 86, 0.11), transparent);
}
/* blue — left-center */
body.lp-page #review::before {
  background: radial-gradient(ellipse 50% 68% at 8% 38%, rgba(93, 143, 232, 0.11), transparent);
}
/* amber — right */
body.lp-page #news::before {
  background: radial-gradient(ellipse 46% 72% at 88% 50%, rgba(217, 164, 86, 0.10), transparent);
}
/* emerald — center soft */
body.lp-page .lp-insight::before {
  background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(53, 201, 146, 0.08), transparent);
}
/* emerald — strong center CTA */
body.lp-page .lp-final::before {
  background: radial-gradient(ellipse 65% 100% at 50% 80%, rgba(53, 201, 146, 0.14), transparent);
}

/* ── Section separators ─────────────────────────────────────────── */
body.lp-page #platform::after,
body.lp-page #workflow::after,
body.lp-page #system::after,
body.lp-page #review::after,
body.lp-page .lp-insight::after,
body.lp-page #news::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  pointer-events: none;
}

/* emerald */
body.lp-page #platform::after,
body.lp-page .lp-insight::after {
  background: linear-gradient(90deg,
    transparent 4%,
    rgba(53, 201, 146, 0.40) 28%,
    rgba(53, 201, 146, 0.40) 72%,
    transparent 96%);
  box-shadow: 0 0 32px 5px rgba(53, 201, 146, 0.13);
}

/* blue */
body.lp-page #workflow::after,
body.lp-page #review::after {
  background: linear-gradient(90deg,
    transparent 4%,
    rgba(93, 143, 232, 0.38) 28%,
    rgba(93, 143, 232, 0.38) 72%,
    transparent 96%);
  box-shadow: 0 0 32px 5px rgba(93, 143, 232, 0.12);
}

/* amber */
body.lp-page #system::after,
body.lp-page #news::after {
  background: linear-gradient(90deg,
    transparent 4%,
    rgba(217, 164, 86, 0.36) 28%,
    rgba(217, 164, 86, 0.36) 72%,
    transparent 96%);
  box-shadow: 0 0 32px 5px rgba(217, 164, 86, 0.11);
}

body.lp-page .lp-section__head {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 30px;
}

body.lp-page .lp-section h2,
body.lp-page .lp-news h2 {
  margin: 0;
  color: var(--lp-ink);
  font-size: clamp(34px, 4.2vw, 48px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

body.lp-page .lp-feature-grid,
body.lp-page .lp-system-grid,
body.lp-page .lp-flow {
  display: grid;
  gap: 12px;
}

body.lp-page .lp-feature-grid { grid-template-columns: repeat(3, 1fr); }
body.lp-page .lp-system-grid { grid-template-columns: repeat(4, 1fr); }
body.lp-page .lp-flow { grid-template-columns: repeat(4, 1fr); }
body.lp-page .lp-flow.lp-flow--six { grid-template-columns: repeat(6, minmax(0, 1fr)); }

body.lp-page .lp-feature,
body.lp-page .lp-system-card,
body.lp-page .lp-flow div,
body.lp-page .lp-review-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--lp-line);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(244, 246, 243, 0.048), rgba(244, 246, 243, 0.032)),
    rgba(12, 16, 18, 0.72);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

body.lp-page .lp-feature { min-height: 270px; display: flex; flex-direction: column; justify-content: space-between; padding: 22px; }
body.lp-page .lp-system-card { min-height: 270px; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; }
body.lp-page .lp-flow div { min-height: 142px; padding: 18px; }

body.lp-page .lp-feature:hover,
body.lp-page .lp-system-card:hover,
body.lp-page .lp-flow div:hover,
body.lp-page .lp-review-card:hover,
body.lp-page .lp-news-terminal:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 201, 146, 0.30);
  background: rgba(244, 246, 243, 0.065);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

body.lp-page .lp-feature span,
body.lp-page .lp-system-card span {
  color: var(--lp-blue);
  font-size: 12px;
  font-weight: 800;
}

body.lp-page .lp-feature h3,
body.lp-page .lp-system-card h3,
body.lp-page .lp-review-card h3 {
  margin: auto 0 0;
  color: var(--lp-ink);
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

body.lp-page .lp-feature p,
body.lp-page .lp-system-card p,
body.lp-page .lp-review-card p {
  margin: 18px 0 0;
  color: var(--lp-muted);
  font-size: 15px;
  line-height: 1.55;
}

body.lp-page .lp-feature__link {
  width: fit-content;
  margin-top: 18px;
  color: var(--lp-emerald);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

body.lp-page .lp-feature__link:hover {
  color: var(--lp-ink);
}

body.lp-page .lp-review-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
  gap: 12px;
}

body.lp-page .lp-review-card { min-height: 250px; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; }
body.lp-page .lp-review-card--wide {
  background:
    radial-gradient(circle at 18% 12%, rgba(53, 201, 146, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(244, 246, 243, 0.06), rgba(244, 246, 243, 0.03)),
    rgba(12, 16, 18, 0.72);
}

body.lp-page .lp-insight {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 430px);
  gap: 44px;
  align-items: center;
}

body.lp-page .lp-insight__copy p:not(.lp-kicker) {
  max-width: 670px;
  margin: 22px 0 0;
  color: var(--lp-muted);
  font-size: 18px;
  line-height: 1.62;
}

body.lp-page .lp-insight-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(244, 246, 243, 0.15);
  border-radius: 16px;
  padding: 22px;
  background:
    radial-gradient(circle at 20% 8%, rgba(53, 201, 146, 0.12), transparent 52%),
    rgba(15, 19, 22, 0.84);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.3);
}

body.lp-page .lp-insight-card strong,
body.lp-page .lp-insight-card span,
body.lp-page .lp-insight-card small { position: relative; z-index: 2; }
body.lp-page .lp-insight-card strong { font-size: 22px; }
body.lp-page .lp-insight-card span {
  border-left: 3px solid var(--lp-emerald);
  padding: 10px 0 10px 13px;
  color: rgba(244, 246, 243, 0.82);
  font-size: 15px;
  font-weight: 800;
}
body.lp-page .lp-insight-card small {
  margin-top: 6px;
  color: var(--lp-muted);
  font-size: 13px;
  line-height: 1.45;
}

body.lp-page .lp-news {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 56px;
  align-items: center;
}

body.lp-page .lp-news-terminal {
  min-height: 500px;
  padding: 16px;
}

body.lp-page .lp-news-item,
body.lp-page .lp-news-mood {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  border: 1px solid rgba(244, 246, 243, 0.11);
  border-radius: 13px;
  padding: 16px;
  background: rgba(244, 246, 243, 0.05);
}

body.lp-page .lp-news-item {
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

body.lp-page .lp-news-item--active {
  border-color: rgba(53, 201, 146, 0.28);
  background: rgba(53, 201, 146, 0.075);
}

body.lp-page .lp-news-item strong {
  display: block;
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.2;
}

body.lp-page .lp-news-item p {
  margin: 10px 0 0;
  color: var(--lp-muted);
  font-size: 13px;
  line-height: 1.45;
}

body.lp-page .lp-news-item > span {
  align-self: start;
  border: 1px solid rgba(93, 143, 232, 0.28);
  border-radius: 999px;
  padding: 5px 8px;
  color: #b9cdfa;
  font-size: 11px;
  font-weight: 800;
}

body.lp-page .lp-news-mood span,
body.lp-page .lp-news-mood strong { display: block; }
body.lp-page .lp-news-mood span { color: var(--lp-muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
body.lp-page .lp-news-mood strong { margin-top: 10px; color: var(--lp-ink); font-size: 34px; }
body.lp-page .lp-news-mood div {
  overflow: hidden;
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(244, 246, 243, 0.08);
}
body.lp-page .lp-news-mood i {
  display: block;
  width: var(--w);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lp-amber), var(--lp-blue));
}

body.lp-page .lp-news__copy p:not(.lp-kicker) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--lp-muted);
  font-size: 18px;
  line-height: 1.62;
}

body.lp-page .lp-news__list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

body.lp-page .lp-news__list span {
  border-left: 3px solid var(--lp-amber);
  padding: 11px 0 11px 14px;
  color: rgba(244, 246, 243, 0.82);
  font-size: 15px;
  font-weight: 800;
}

body.lp-page .lp-flow strong,
body.lp-page .lp-flow small,
body.lp-page .lp-flow span { display: block; }
body.lp-page .lp-flow small { color: var(--lp-blue); font-size: 11px; font-weight: 800; }
body.lp-page .lp-flow strong { color: var(--lp-emerald); font-size: 22px; }
body.lp-page .lp-flow span { margin-top: 18px; color: var(--lp-muted); line-height: 1.45; }

body.lp-page .lp-final {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 104px;
  margin-bottom: 48px;
  border: 1px solid var(--lp-line);
  border-radius: 18px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(244, 246, 243, 0.055), rgba(244, 246, 243, 0.022)),
    rgba(13, 17, 20, 0.72);
  box-shadow: 0 24px 84px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

body.lp-page .lp-final::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 0%, rgba(53, 201, 146, 0.10), transparent 34%);
}

body.lp-page .lp-final__copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

body.lp-page .lp-final h2 {
  margin: 10px 0 0;
  color: var(--lp-ink);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

body.lp-page .lp-final p:not(.lp-kicker) {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(244, 246, 243, 0.66);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

body.lp-page .lp-final .lp-button {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

body.lp-page .lp-reveal,
body.lp-page .lp-reveal-item {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 760ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 760ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  filter: blur(8px);
}

body.lp-page .lp-reveal.is-visible,
body.lp-page .lp-reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

body.lp-page .lp-reveal.is-exiting,
body.lp-page .lp-reveal-item.is-exiting {
  transition-duration: 380ms, 380ms, 380ms;
}

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

@keyframes lpFadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lpHeroDrift {
  0%, 100% { transform: scale(1) translate3d(0, 0, 0); }
  50% { transform: scale(1.025) translate3d(0.8%, -0.5%, 0); }
}

@keyframes lpSweep { to { transform: translateX(120%); } }
@keyframes lpPulse {
  0%, 100% { opacity: 0.56; transform: scale(0.88); }
  50% { opacity: 1; transform: scale(1); }
}
@keyframes lpFloat {
  0%, 100% { transform: translateY(0) rotateX(0deg); }
  50% { transform: translateY(-8px) rotateX(1.5deg); }
}

@media (prefers-reduced-motion: no-preference) {
  body.lp-page .lp-nav { animation: lpFadeDown 520ms ease both; }
  body.lp-page .lp-hero__image { animation: lpHeroDrift 20s ease-in-out infinite; will-change: transform; }
  body.lp-page .lp-hero__copy > *,
  body.lp-page .lp-hero-console {
    opacity: 0;
    animation: lpFadeUp 720ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }
  body.lp-page .lp-eyebrow { animation-delay: 90ms; }
  body.lp-page .lp-hero h1 { animation-delay: 180ms; }
  body.lp-page .lp-hero__lead { animation-delay: 270ms; }
  body.lp-page .lp-hero__sub { animation-delay: 350ms; }
  body.lp-page .lp-hero__actions { animation-delay: 430ms; }
  body.lp-page .lp-hero-console { animation-delay: 520ms, 0ms; animation-name: lpFadeUp, lpFloat; animation-duration: 720ms, 7s; animation-timing-function: cubic-bezier(0.2, 0.7, 0.2, 1), ease-in-out; animation-fill-mode: both, none; animation-iteration-count: 1, infinite; }
  body.lp-page .lp-button--primary::after,
  body.lp-page .lp-statusbar span::after,
  body.lp-page .lp-feature:hover::after,
  body.lp-page .lp-system-card:hover::after,
  body.lp-page .lp-review-card:hover::after { animation: lpSweep 3.9s ease-in-out infinite; }
  body.lp-page .lp-statusbar span::before,
  body.lp-page .lp-console__dot:first-child { animation: lpPulse 1.9s ease-in-out infinite; }
}

@media (prefers-reduced-motion: reduce) {
  body.lp-page *,
  body.lp-page *::before,
  body.lp-page *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
  body.lp-page .lp-reveal,
  body.lp-page .lp-reveal-item { opacity: 1; transform: none; filter: none; }
}

@media (max-width: 1020px) {
  body.lp-page .lp-hero { min-height: 760px; }
  body.lp-page .lp-hero__content { grid-template-columns: 1fr; gap: 34px; align-items: start; }
  body.lp-page .lp-hero-console { justify-self: start; max-width: 640px; }
  body.lp-page .lp-statusbar,
  body.lp-page .lp-feature-grid,
  body.lp-page .lp-system-grid,
  body.lp-page .lp-flow { grid-template-columns: repeat(2, 1fr); }
  body.lp-page .lp-flow.lp-flow--six { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  body.lp-page .lp-section__head,
  body.lp-page .lp-insight,
  body.lp-page .lp-news { grid-template-columns: 1fr; }
  body.lp-page .lp-review-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body.lp-page .lp-nav,
  body.lp-page .lp-statusbar,
  body.lp-page .lp-section,
  body.lp-page .lp-final,
  body.lp-page .lp-hero__content { width: min(100% - 24px, 1160px); }
  body.lp-page .lp-nav { top: 8px; min-height: 58px; }
  body.lp-page .lp-brand { gap: 8px; }
  body.lp-page .lp-brand__logo { width: 34px; height: 34px; }
  body.lp-page .lp-nav__links { display: none; }
  body.lp-page .lp-hero { min-height: 740px; margin-top: -78px; }
  body.lp-page .lp-hero__image { object-position: 68% center; opacity: 0.62; }
  body.lp-page .lp-hero__shade {
    background:
      linear-gradient(90deg, rgba(7, 10, 12, 0.94) 0%, rgba(7, 10, 12, 0.74) 100%),
      linear-gradient(0deg, #070a0c 0%, rgba(7, 10, 12, 0.14) 44%, rgba(7, 10, 12, 0.62) 100%);
  }
  body.lp-page .lp-hero__content { padding: 126px 0 62px; }
  body.lp-page .lp-hero h1 { font-size: 50px; line-height: 1; }
  body.lp-page .lp-hero__lead { font-size: 17px; }
  body.lp-page .lp-hero__sub { font-size: 14px; }
  body.lp-page .lp-button { width: 100%; }
  body.lp-page .lp-button--nav { width: auto; }
  body.lp-page .lp-hero-console,
  body.lp-page .lp-statusbar,
  body.lp-page .lp-feature-grid,
  body.lp-page .lp-system-grid,
  body.lp-page .lp-flow { grid-template-columns: 1fr; }
  body.lp-page .lp-console__chart { height: 122px; }
  body.lp-page .lp-statusbar { margin-top: -18px; }
  body.lp-page .lp-statusbar span { min-height: 56px; }
  body.lp-page .lp-section { padding-top: 72px; }
  body.lp-page .lp-feature,
  body.lp-page .lp-system-card,
  body.lp-page .lp-review-card { min-height: 220px; }
  body.lp-page .lp-news { gap: 30px; }
  body.lp-page .lp-news-terminal { min-height: auto; }
  body.lp-page .lp-final { flex-direction: column; align-items: stretch; margin-top: 74px; padding: 22px; }
  body.lp-page .lp-final h2 { font-size: 32px; }
  body.lp-page .lp-final p:not(.lp-kicker) { font-size: 15px; }
}

/* =========================================================
   Mobile-first optimization layer — 2026 responsive polish
   Drop-in safe: overrides only, desktop layout preserved.
   ========================================================= */

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 86px;
}

body.lp-page {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.lp-page .lp-button,
body.lp-page .lp-nav__links a {
  -webkit-tap-highlight-color: transparent;
}

body.lp-page .lp-button:focus-visible,
body.lp-page .lp-nav__links a:focus-visible,
body.lp-page .lp-brand:focus-visible {
  outline: 2px solid rgba(53, 201, 146, 0.72);
  outline-offset: 3px;
}

@supports (height: 100svh) {
  body.lp-page .lp-hero {
    min-height: 100svh;
  }
}

@media (max-width: 1180px) {
  body.lp-page .lp-nav,
  body.lp-page .lp-statusbar,
  body.lp-page .lp-section,
  body.lp-page .lp-final,
  body.lp-page .lp-hero__content {
    width: min(100% - 32px, 1080px);
  }

  body.lp-page .lp-hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 450px);
    gap: 36px;
  }

  body.lp-page .lp-hero h1 {
    font-size: clamp(48px, 5.8vw, 76px);
  }
}

@media (max-width: 920px) {
  html { scroll-padding-top: 78px; }

  body.lp-page .lp-nav {
    top: 10px;
    min-height: 58px;
    padding: 8px 10px 8px 12px;
    border-radius: 14px;
  }

  body.lp-page .lp-nav__links {
    display: none;
  }

  body.lp-page .lp-brand span {
    font-size: 13px;
  }

  body.lp-page .lp-button--nav {
    min-height: 40px;
    padding-inline: 16px;
    font-size: 13px;
  }

  body.lp-page .lp-hero {
    min-height: auto;
    margin-top: -78px;
  }

  body.lp-page .lp-hero__image {
    object-position: 68% center;
    opacity: 0.72;
    filter: contrast(1.08) saturate(0.92) brightness(0.82);
  }

  body.lp-page .lp-hero__shade {
    background:
      linear-gradient(180deg,
        rgba(7, 10, 12, 0.84) 0%,
        rgba(7, 10, 12, 0.62) 34%,
        rgba(7, 10, 12, 0.88) 78%,
        #070a0c 100%
      ),
      linear-gradient(90deg,
        rgba(7, 10, 12, 0.94) 0%,
        rgba(7, 10, 12, 0.72) 48%,
        rgba(7, 10, 12, 0.46) 100%
      );
  }

  body.lp-page .lp-hero__vignette {
    background:
      radial-gradient(circle at 74% 24%, transparent 0%, rgba(0, 0, 0, 0.18) 36%, rgba(0, 0, 0, 0.70) 100%),
      linear-gradient(180deg, rgba(0,0,0,0.24), transparent 34%, rgba(0,0,0,0.62));
  }

  body.lp-page .lp-hero__grid {
    opacity: 0.055;
    background-size: 72px 72px;
  }

  body.lp-page .lp-hero__content {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 132px 0 48px;
  }

  body.lp-page .lp-hero__copy {
    max-width: 680px;
  }

  body.lp-page .lp-eyebrow,
  body.lp-page .lp-kicker {
    font-size: 11px;
    letter-spacing: 0.01em;
  }

  body.lp-page .lp-hero h1 {
    max-width: 680px;
    margin-top: 16px;
    font-size: clamp(42px, 9vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  body.lp-page .lp-hero__lead {
    max-width: 590px;
    margin-top: 22px;
    font-size: clamp(17px, 2.7vw, 19px);
    line-height: 1.52;
  }

  body.lp-page .lp-hero__sub {
    max-width: 590px;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  body.lp-page .lp-hero__actions {
    gap: 10px;
    margin-top: 24px;
  }

  body.lp-page .lp-hero-console {
    width: min(100%, 520px);
    justify-self: start;
    border-radius: 18px;
    padding: 12px;
    transform: none !important;
  }

  body.lp-page .lp-console__chart {
    height: 128px;
  }

  body.lp-page .lp-statusbar {
    grid-template-columns: repeat(5, minmax(152px, 1fr));
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-top: 0;
  }

  body.lp-page .lp-statusbar::-webkit-scrollbar { display: none; }

  body.lp-page .lp-statusbar span {
    scroll-snap-align: start;
    min-height: 60px;
    white-space: nowrap;
  }

  body.lp-page .lp-section {
    padding-top: 76px;
  }

  body.lp-page .lp-section__head {
    gap: 12px;
    margin-bottom: 22px;
  }

  body.lp-page .lp-section h2,
  body.lp-page .lp-news h2,
  body.lp-page .lp-insight h2 {
    font-size: clamp(32px, 6.6vw, 46px);
    line-height: 1.04;
    letter-spacing: -0.045em;
  }

  body.lp-page .lp-feature-grid,
  body.lp-page .lp-system-grid,
  body.lp-page .lp-flow,
  body.lp-page .lp-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.lp-page .lp-flow.lp-flow--six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.lp-page .lp-feature,
  body.lp-page .lp-system-card,
  body.lp-page .lp-review-card,
  body.lp-page .lp-flow div {
    min-height: auto;
  }

  body.lp-page .lp-news,
  body.lp-page .lp-insight {
    gap: 28px;
  }

  body.lp-page .lp-news-terminal {
    order: 2;
  }

  body.lp-page .lp-news__copy {
    order: 1;
  }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 72px; }

  body.lp-page {
    background: #070a0c;
  }

  body.lp-page .lp-nav,
  body.lp-page .lp-statusbar,
  body.lp-page .lp-section,
  body.lp-page .lp-final,
  body.lp-page .lp-hero__content {
    width: min(100% - 22px, 1160px);
  }

  body.lp-page .lp-nav {
    top: 8px;
    min-height: 54px;
    margin-top: 8px;
    gap: 10px;
    padding: 7px 8px 7px 10px;
    border-radius: 14px;
  }

  body.lp-page .lp-brand {
    gap: 8px;
  }

  body.lp-page .lp-brand__logo {
    width: 31px;
    height: 31px;
    border-radius: 8px;
  }

  body.lp-page .lp-brand span {
    max-width: 128px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 12px;
  }

  body.lp-page .lp-button {
    min-height: 46px;
    padding-inline: 16px;
    touch-action: manipulation;
  }

  body.lp-page .lp-button--nav {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 12px;
  }

  body.lp-page .lp-hero {
    margin-top: -70px;
    overflow: visible;
    isolation: isolate;
  }

  body.lp-page .lp-hero__image {
    position: absolute;
    height: 58%;
    min-height: 430px;
    object-position: 70% top;
    opacity: 0.56;
    filter: contrast(1.1) saturate(0.88) brightness(0.78);
  }

  body.lp-page .lp-hero__shade,
  body.lp-page .lp-hero__vignette,
  body.lp-page .lp-hero__grid {
    height: 62%;
    min-height: 460px;
  }

  body.lp-page .lp-hero__shade {
    background:
      linear-gradient(180deg,
        rgba(7, 10, 12, 0.78) 0%,
        rgba(7, 10, 12, 0.74) 26%,
        rgba(7, 10, 12, 0.93) 72%,
        #070a0c 100%
      ),
      linear-gradient(90deg,
        rgba(7, 10, 12, 0.94) 0%,
        rgba(7, 10, 12, 0.72) 100%
      );
  }

  body.lp-page .lp-hero__vignette {
    background: linear-gradient(180deg, rgba(0,0,0,0.18), transparent 24%, rgba(0,0,0,0.70));
  }

  body.lp-page .lp-hero__grid {
    display: none;
  }

  body.lp-page .lp-hero__content {
    padding: 112px 0 34px;
    gap: 22px;
  }

  body.lp-page .lp-eyebrow {
    max-width: 280px;
    line-height: 1.35;
  }

  body.lp-page .lp-hero h1 {
    max-width: 100%;
    margin-top: 14px;
    font-size: clamp(38px, 12vw, 52px);
    line-height: 0.98;
    letter-spacing: -0.06em;
  }

  body.lp-page .lp-hero__lead {
    margin-top: 18px;
    font-size: 16.5px;
    line-height: 1.5;
  }

  body.lp-page .lp-hero__sub {
    margin-top: 12px;
    color: rgba(244, 246, 243, 0.66);
    font-size: 13.5px;
    line-height: 1.48;
  }

  body.lp-page .lp-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  body.lp-page .lp-hero__actions .lp-button {
    width: 100%;
  }

  body.lp-page .lp-hero-console {
    width: 100%;
    margin-top: 4px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(16, 21, 24, 0.86);
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.44), 0 0 42px rgba(53, 201, 146, 0.055);
    backdrop-filter: blur(16px) saturate(1.04);
  }

  body.lp-page .lp-console__top {
    min-height: 28px;
  }

  body.lp-page .lp-console__top strong {
    font-size: 10px;
  }

  body.lp-page .lp-console__chart {
    height: 96px;
    border-radius: 12px;
    padding: 12px 12px 10px;
  }

  body.lp-page .lp-console__chart span {
    border-radius: 10px 10px 0 0;
  }

  body.lp-page .lp-console__insight {
    margin-top: 10px;
    border-radius: 12px;
    padding: 12px;
  }

  body.lp-page .lp-console__insight strong {
    font-size: 15px;
    line-height: 1.16;
  }

  body.lp-page .lp-console__insight p {
    margin-top: 8px;
    font-size: 12.5px;
    line-height: 1.38;
  }

  body.lp-page .lp-console__chips {
    gap: 6px;
    margin-top: 10px;
  }

  body.lp-page .lp-console__chips span {
    padding: 6px 8px;
    font-size: 10.5px;
  }

  body.lp-page .lp-statusbar {
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    grid-template-columns: repeat(5, minmax(142px, 1fr));
    margin-top: 16px;
  }

  body.lp-page .lp-statusbar span {
    min-height: 52px;
    padding: 12px 12px 12px 26px;
    font-size: 12px;
  }

  body.lp-page .lp-section {
    padding-top: 62px;
  }

  body.lp-page .lp-section__head {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
    margin-bottom: 18px;
  }

  body.lp-page .lp-section h2,
  body.lp-page .lp-news h2,
  body.lp-page .lp-insight h2 {
    font-size: clamp(29px, 8.6vw, 38px);
    line-height: 1.06;
    letter-spacing: -0.045em;
  }

  body.lp-page .lp-feature-grid,
  body.lp-page .lp-system-grid,
  body.lp-page .lp-flow,
  body.lp-page .lp-review-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body.lp-page .lp-flow.lp-flow--six,
  body.lp-page .lp-demo-grid {
    grid-template-columns: 1fr;
  }

  body.lp-page .lp-demo-table,
  body.lp-page .lp-demo-side {
    display: none;
  }

  body.lp-page .lp-demo-tabs span {
    font-size: 10px;
  }

  body.lp-page .lp-demo-limits div,
  body.lp-page .lp-demo-panel {
    padding: 10px;
  }

  body.lp-page .lp-demo-chart {
    height: 86px;
  }

  body.lp-page .lp-feature,
  body.lp-page .lp-system-card,
  body.lp-page .lp-review-card,
  body.lp-page .lp-flow div {
    padding: 17px;
    border-radius: 14px;
  }

  body.lp-page .lp-feature h3,
  body.lp-page .lp-system-card h3,
  body.lp-page .lp-review-card h3 {
    margin-top: 28px;
    font-size: 21px;
    line-height: 1.13;
  }

  body.lp-page .lp-feature p,
  body.lp-page .lp-system-card p,
  body.lp-page .lp-review-card p {
    margin-top: 13px;
    font-size: 14px;
    line-height: 1.54;
  }

  body.lp-page .lp-review-card--wide {
    grid-column: auto;
  }

  body.lp-page .lp-insight {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  body.lp-page .lp-insight__copy p:not(.lp-kicker),
  body.lp-page .lp-news__copy p:not(.lp-kicker) {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.58;
  }

  body.lp-page .lp-insight-card {
    padding: 17px;
    border-radius: 15px;
  }

  body.lp-page .lp-insight-card strong {
    font-size: 18px;
  }

  body.lp-page .lp-insight-card span {
    padding: 12px 0 12px 14px;
    font-size: 13.5px;
  }

  body.lp-page .lp-news {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body.lp-page .lp-news-terminal {
    min-height: 0;
    padding: 12px;
    border-radius: 16px;
  }

  body.lp-page .lp-news-terminal__top {
    min-height: 30px;
  }

  body.lp-page .lp-news-item {
    gap: 10px;
    padding: 12px;
    border-radius: 13px;
  }

  body.lp-page .lp-news-item strong {
    font-size: 14px;
  }

  body.lp-page .lp-news-item p {
    font-size: 12.5px;
    line-height: 1.42;
  }

  body.lp-page .lp-news__list {
    gap: 8px;
    margin-top: 18px;
  }

  body.lp-page .lp-news__list span {
    padding: 10px 0 10px 12px;
    font-size: 13.5px;
    line-height: 1.45;
  }

  body.lp-page .lp-flow strong {
    font-size: 20px;
  }

  body.lp-page .lp-flow span {
    margin-top: 12px;
    font-size: 14px;
  }

  body.lp-page .lp-final {
    margin-top: 62px;
    margin-bottom: 26px;
    padding: 18px;
    border-radius: 16px;
    gap: 18px;
  }

  body.lp-page .lp-final h2 {
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.05;
  }

  body.lp-page .lp-final p:not(.lp-kicker) {
    font-size: 14px;
    line-height: 1.5;
  }

  body.lp-page .lp-final .lp-button {
    width: 100%;
  }

  body.lp-page .lp-reveal,
  body.lp-page .lp-reveal-item {
    transform: translateY(16px) scale(0.992);
    filter: blur(4px);
    transition-duration: 520ms;
  }
}

@media (max-width: 420px) {
  body.lp-page .lp-nav,
  body.lp-page .lp-section,
  body.lp-page .lp-final,
  body.lp-page .lp-hero__content {
    width: min(100% - 18px, 1160px);
  }

  body.lp-page .lp-brand span {
    max-width: 112px;
  }

  body.lp-page .lp-button--nav {
    padding-inline: 12px;
  }

  body.lp-page .lp-hero__content {
    padding-top: 106px;
  }

  body.lp-page .lp-hero h1 {
    font-size: clamp(35px, 11.6vw, 45px);
    letter-spacing: -0.058em;
  }

  body.lp-page .lp-hero__lead {
    font-size: 15.5px;
  }

  body.lp-page .lp-hero__sub {
    font-size: 13px;
  }

  body.lp-page .lp-console__chart {
    height: 84px;
  }

  body.lp-page .lp-console__chips span:nth-child(4) {
    display: none;
  }

  body.lp-page .lp-section {
    padding-top: 56px;
  }

  body.lp-page .lp-section h2,
  body.lp-page .lp-news h2,
  body.lp-page .lp-insight h2 {
    font-size: clamp(27px, 8.4vw, 34px);
  }
}


/* SEO context block: readable for search engines, visually quiet for users */
body.lp-page .lp-seo-copy {
  padding-top: 78px;
}

body.lp-page .lp-seo-copy__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body.lp-page .lp-seo-copy__body p {
  margin: 0;
  border: 1px solid rgba(244, 246, 243, 0.1);
  border-radius: 16px;
  padding: 18px;
  background: rgba(244, 246, 243, 0.035);
  color: rgba(244, 246, 243, 0.58);
  font-size: 14px;
  line-height: 1.62;
}

@media (max-width: 720px) {
  body.lp-page .lp-seo-copy {
    padding-top: 56px;
  }

  body.lp-page .lp-seo-copy__body {
    grid-template-columns: 1fr;
  }

  body.lp-page .lp-seo-copy__body p {
    font-size: 13px;
    line-height: 1.58;
    padding: 15px;
  }
}


/* =========================================================
   Mobile final rescue — clean hero for real phone screens
   ========================================================= */
body.lp-page .lp-title-mobile,
body.lp-page .lp-eyebrow-mobile {
  display: none;
}

@media (max-width: 720px) {
  html,
  body.lp-page {
    overflow-x: hidden;
  }

  body.lp-page .lp-title-desktop,
  body.lp-page .lp-eyebrow-desktop {
    display: none;
  }

  body.lp-page .lp-title-mobile,
  body.lp-page .lp-eyebrow-mobile {
    display: inline;
  }

  body.lp-page .lp-nav,
  body.lp-page .lp-section,
  body.lp-page .lp-final,
  body.lp-page .lp-hero__content {
    width: calc(100% - 32px);
  }

  body.lp-page .lp-nav {
    top: 10px;
    min-height: 58px;
    margin-top: 10px;
    padding: 8px 10px;
    border-radius: 18px;
  }

  body.lp-page .lp-brand span {
    display: none;
  }

  body.lp-page .lp-brand__logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  body.lp-page .lp-button--nav {
    min-height: 44px;
    padding-inline: 22px;
    border-radius: 999px;
    font-size: 15px;
  }

  body.lp-page .lp-hero {
    min-height: auto;
    margin-top: -78px;
  }

  body.lp-page .lp-hero__image {
    height: 520px;
    object-fit: cover;
    object-position: 70% top;
    opacity: 0.42;
    filter: contrast(1.08) saturate(0.85) brightness(0.78);
  }

  body.lp-page .lp-hero__shade,
  body.lp-page .lp-hero__vignette,
  body.lp-page .lp-hero__grid {
    height: 520px;
    min-height: 0;
  }

  body.lp-page .lp-hero__shade {
    background:
      linear-gradient(180deg,
        rgba(7, 10, 12, 0.76) 0%,
        rgba(7, 10, 12, 0.82) 46%,
        #070a0c 100%
      ),
      linear-gradient(90deg,
        rgba(7, 10, 12, 0.95) 0%,
        rgba(7, 10, 12, 0.76) 100%
      );
  }

  body.lp-page .lp-hero__vignette {
    background: linear-gradient(180deg, rgba(0,0,0,0.10), transparent 22%, rgba(0,0,0,0.68));
  }

  body.lp-page .lp-hero__grid {
    display: none;
  }

  body.lp-page .lp-hero__content {
    display: block;
    padding: 168px 0 28px;
  }

  body.lp-page .lp-hero__copy {
    max-width: 100%;
    text-align: center;
  }

  body.lp-page .lp-eyebrow {
    max-width: 100%;
    margin: 0;
    font-size: 12px;
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: #5ee0b0;
    text-wrap: balance;
  }

  body.lp-page .lp-hero h1 {
    max-width: 100%;
    margin-top: 18px;
    font-size: clamp(42px, 13.4vw, 56px);
    line-height: 0.96;
    letter-spacing: -0.065em;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }

  body.lp-page .lp-hero__lead {
    max-width: 100%;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.48;
    color: rgba(244, 246, 243, 0.82);
  }

  body.lp-page .lp-hero__sub {
    max-width: 100%;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.44;
    color: rgba(244, 246, 243, 0.62);
  }

  body.lp-page .lp-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 100%;
    margin-top: 22px;
  }

  body.lp-page .lp-hero__actions .lp-button {
    width: 100%;
    min-height: 48px;
  }

  body.lp-page .lp-hero-console {
    width: 100%;
    max-width: 100%;
    margin-top: 26px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(15, 20, 23, 0.88);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.44), 0 0 40px rgba(53, 201, 146, 0.055);
    transform: none !important;
  }

  body.lp-page .lp-console__chart {
    height: 84px;
    padding: 12px;
    border-radius: 12px;
  }

  body.lp-page .lp-console__insight strong {
    font-size: 15px;
  }

  body.lp-page .lp-console__insight p {
    font-size: 12px;
  }

  body.lp-page .lp-console__chips {
    display: flex;
    flex-wrap: wrap;
  }

  body.lp-page .lp-console__chips span {
    font-size: 10px;
    padding: 6px 8px;
  }

  body.lp-page .lp-statusbar {
    width: 100%;
    margin-top: 16px;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    grid-template-columns: repeat(5, minmax(142px, 1fr));
    overflow-x: auto;
    scrollbar-width: none;
  }

  body.lp-page .lp-statusbar::-webkit-scrollbar {
    display: none;
  }

  body.lp-page .lp-statusbar span {
    min-height: 52px;
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  body.lp-page .lp-nav,
  body.lp-page .lp-section,
  body.lp-page .lp-final,
  body.lp-page .lp-hero__content {
    width: calc(100% - 24px);
  }

  body.lp-page .lp-hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 12.5vw, 48px);
  }
}

/* =========================================================
   Hero clean hotfix — no duplicate desktop/mobile title
   ========================================================= */
body.lp-page .lp-title-mobile,
body.lp-page .lp-eyebrow-mobile {
  display: none !important;
}

body.lp-page .lp-title-desktop,
body.lp-page .lp-eyebrow-desktop {
  display: inline !important;
}

body.lp-page .lp-hero h1 {
  max-width: 760px;
}

@media (max-width: 720px) {
  body.lp-page .lp-hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 10.6vw, 48px);
    line-height: 1.01;
    letter-spacing: -0.055em;
  }

  body.lp-page .lp-hero .lp-eyebrow {
    margin-inline: auto;
  }

  body.lp-page .lp-eyebrow {
    max-width: 260px;
    font-size: 11px;
    line-height: 1.35;
  }
}

@media (max-width: 420px) {
  body.lp-page .lp-hero h1 {
    max-width: 330px;
    font-size: clamp(36px, 10.2vw, 44px);
  }
}

/* ═══════════════════════════════════════════════════════════════
   Premium Elevation — targeted UI/UX refinement
   ═══════════════════════════════════════════════════════════════ */

/* ── Typography: kicker + heading hierarchy ────────────────────── */
body.lp-page .lp-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: rgba(53, 201, 146, 0.68);
}

body.lp-page .lp-section h2,
body.lp-page .lp-news h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.042em;
}

/* ── Section head: structured two-column anchor ────────────────── */
body.lp-page .lp-section__head {
  grid-template-columns: 160px 1fr;
  align-items: start;
  margin-bottom: 44px;
}

/* ── Card index numbers: ghost style ───────────────────────────── */
body.lp-page .lp-feature span,
body.lp-page .lp-system-card span {
  color: rgba(244, 246, 243, 0.24);
  font-size: 11px;
  font-weight: 600;
}

/* ── Cards: content-first layout, no artificial stretch gaps ───── */
body.lp-page .lp-feature,
body.lp-page .lp-system-card {
  min-height: unset;
  justify-content: flex-start;
}

body.lp-page .lp-feature-grid > .lp-feature > h3,
body.lp-page .lp-system-grid > .lp-system-card > h3 {
  margin: 14px 0 0;
}

body.lp-page .lp-feature > p,
body.lp-page .lp-system-card > p {
  margin: 10px 0 0;
}

body.lp-page .lp-feature > .lp-feature__link {
  margin-top: 14px;
}

/* ── Cards: quieter borders at rest, subtle lift on hover ──────── */
body.lp-page .lp-feature,
body.lp-page .lp-system-card,
body.lp-page .lp-flow div,
body.lp-page .lp-review-card {
  border-color: rgba(244, 246, 243, 0.09);
}

body.lp-page .lp-feature:hover,
body.lp-page .lp-system-card:hover,
body.lp-page .lp-flow div:hover,
body.lp-page .lp-review-card:hover,
body.lp-page .lp-news-terminal:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 246, 243, 0.16);
  background: rgba(244, 246, 243, 0.062);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.22);
}

/* ── Platform: first feature card as featured horizontal row ───── */
body.lp-page .lp-feature-grid > .lp-feature:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 48px;
  row-gap: 0;
  min-height: 160px;
  padding: 28px 32px;
}

body.lp-page .lp-feature-grid > .lp-feature:first-child > span {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

body.lp-page .lp-feature-grid > .lp-feature:first-child > h3 {
  grid-column: 1;
  grid-row: 2;
  margin: 10px 0 0;
  font-size: 28px;
  align-self: start;
}

body.lp-page .lp-feature-grid > .lp-feature:first-child > p {
  grid-column: 2;
  grid-row: 1 / 4;
  margin: 0;
  padding-left: 40px;
  border-left: 1px solid rgba(244, 246, 243, 0.10);
  font-size: 16px;
  line-height: 1.6;
  align-self: center;
}

body.lp-page .lp-feature-grid > .lp-feature:first-child > .lp-feature__link {
  grid-column: 1;
  grid-row: 3;
  padding-left: 0;
  margin-top: 14px;
}

/* last card spans 2 cols to fill the row gap left by the featured card */
body.lp-page .lp-feature-grid > .lp-feature:last-child {
  grid-column: span 2;
}

/* ── System grid: 2 × 2 instead of 4-wide ─────────────────────── */
body.lp-page .lp-system-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* ── Workflow: progressive border-top accent (emerald → blue) ───── */
body.lp-page .lp-flow.lp-flow--six > div {
  border-top-width: 2px;
}

body.lp-page .lp-flow.lp-flow--six > div:nth-child(1) { border-top-color: rgba(53, 201, 146, 0.55); }
body.lp-page .lp-flow.lp-flow--six > div:nth-child(2) { border-top-color: rgba(53, 201, 146, 0.38); }
body.lp-page .lp-flow.lp-flow--six > div:nth-child(3) { border-top-color: rgba(100, 170, 220, 0.30); }
body.lp-page .lp-flow.lp-flow--six > div:nth-child(4) { border-top-color: rgba(93, 143, 232, 0.32); }
body.lp-page .lp-flow.lp-flow--six > div:nth-child(5) { border-top-color: rgba(93, 143, 232, 0.38); }
body.lp-page .lp-flow.lp-flow--six > div:nth-child(6) { border-top-color: rgba(93, 143, 232, 0.44); }

/* ── Section rhythm: staggered top-padding per section ──────────── */
@media (min-width: 721px) {
  body.lp-page #platform { padding-top: 120px; }
  body.lp-page #workflow { padding-top: 88px; }
  body.lp-page #system   { padding-top: 130px; }
  body.lp-page #review   { padding-top: 106px; }
  body.lp-page #news     { padding-top: 114px; }
}

/* ── Micro-metadata component (lp-fmeta) ────────────────────────── */
body.lp-page .lp-fmeta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(244, 246, 243, 0.08);
  border-radius: 8px;
  background: rgba(244, 246, 243, 0.03);
}

body.lp-page .lp-fmeta__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.lp-page .lp-fmeta__label {
  font-size: 11px;
  color: rgba(244, 246, 243, 0.4);
  font-weight: 500;
}

body.lp-page .lp-fmeta__val {
  font-size: 11px;
  font-weight: 600;
  color: rgba(244, 246, 243, 0.65);
  font-variant-numeric: tabular-nums;
}

body.lp-page .lp-fmeta__val--neg { color: rgba(220, 80, 80, 0.8); }

body.lp-page .lp-fmeta__bar {
  height: 2px;
  background: rgba(244, 246, 243, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

body.lp-page .lp-fmeta__fill {
  height: 100%;
  background: var(--lp-amber);
  border-radius: 2px;
}

@keyframes lp-bar-pulse {
  0%, 100% { box-shadow: 0 0 0px rgba(217, 164, 86, 0); opacity: 1; }
  50%       { box-shadow: 0 0 7px rgba(217, 164, 86, 0.65); opacity: 0.85; }
}

body.lp-page .lp-fmeta__fill--live {
  animation: lp-bar-pulse 2.2s ease-in-out infinite;
}

body.lp-page .lp-fmeta__pill {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
}

body.lp-page .lp-fmeta__pill--ok {
  background: rgba(53, 201, 146, 0.12);
  color: rgba(53, 201, 146, 0.75);
}

body.lp-page .lp-fmeta__pill--warn {
  background: rgba(217, 164, 86, 0.14);
  color: rgba(217, 164, 86, 0.78);
}

/* AI variant */
body.lp-page .lp-fmeta--ai {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

/* AI live — cycling insights */
body.lp-page .lp-fmeta--ai-live {
  align-items: center;
}

body.lp-page .lp-ai-track {
  position: relative;
  flex: 1;
  height: 42px;
}

body.lp-page .lp-ai-track > .lp-fmeta__insight {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  text-align: center;
}


body.lp-page .lp-ai-track > .lp-fmeta__insight:nth-child(1) { animation: lp-ai-slide 16s  0s infinite; }
body.lp-page .lp-ai-track > .lp-fmeta__insight:nth-child(2) { animation: lp-ai-slide 16s  4s infinite; }
body.lp-page .lp-ai-track > .lp-fmeta__insight:nth-child(3) { animation: lp-ai-slide 16s  8s infinite; }
body.lp-page .lp-ai-track > .lp-fmeta__insight:nth-child(4) { animation: lp-ai-slide 16s 12s infinite; }

@keyframes lp-ai-slide {
  0%      { opacity: 0; transform: translateY(5px); }
  6%      { opacity: 1; transform: translateY(0); }
  19%     { opacity: 1; transform: translateY(0); }
  25%     { opacity: 0; transform: translateY(-4px); }
  100%    { opacity: 0; }
}

body.lp-page .lp-fmeta__chip {
  flex: 0 0 auto;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 2px 5px;
  border-radius: 4px;
  background: rgba(93, 143, 232, 0.18);
  color: rgba(93, 143, 232, 0.9);
  margin-top: 1px;
}

body.lp-page .lp-fmeta__insight {
  margin: 0;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(244, 246, 243, 0.55);
}

/* Alert items */
body.lp-page .lp-fmeta--alerts { gap: 7px; }

/* Ticker variant — scrolling alerts */
body.lp-page .lp-fmeta--ticker {
  position: relative;
  height: 66px;
  overflow: hidden;
  gap: 0;
}

body.lp-page .lp-fmeta--ticker::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12, 16, 18, 0.96) 0%,
    transparent 30%,
    transparent 72%,
    rgba(12, 16, 18, 0.96) 100%
  );
  z-index: 1;
  pointer-events: none;
  border-radius: 7px;
}

body.lp-page .lp-alerts-track {
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: lp-ticker 10s linear infinite;
}

@keyframes lp-ticker {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-132px); }
}

body.lp-page .lp-fmeta__alert {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: rgba(244, 246, 243, 0.52);
  font-variant-numeric: tabular-nums;
}

body.lp-page .lp-fmeta__dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex: 0 0 auto;
}

body.lp-page .lp-fmeta__dot--em { background: rgba(53, 201, 146, 0.85); }
body.lp-page .lp-fmeta__dot--am { background: rgba(217, 164, 86, 0.85); }

/* Checklist */
body.lp-page .lp-fmeta--check {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
}

body.lp-page .lp-fmeta__chk {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
}

body.lp-page .lp-fmeta__chk--ok {
  background: rgba(53, 201, 146, 0.11);
  color: rgba(53, 201, 146, 0.72);
}

body.lp-page .lp-fmeta__chk--ok::before { content: "✓ "; }

body.lp-page .lp-fmeta__chk--warn {
  background: rgba(217, 164, 86, 0.12);
  color: rgba(217, 164, 86, 0.75);
}

body.lp-page .lp-fmeta__chk--warn::before { content: "! "; }

/* Pattern counts */
body.lp-page .lp-fmeta__count {
  font-size: 11px;
  font-weight: 700;
  color: rgba(244, 246, 243, 0.45);
  font-variant-numeric: tabular-nums;
}

body.lp-page .lp-fmeta__count--warn { color: rgba(217, 164, 86, 0.78); }

/* Session tags */
body.lp-page .lp-fmeta--tags {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
}

body.lp-page .lp-fmeta__tag {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(244, 246, 243, 0.07);
  color: rgba(244, 246, 243, 0.45);
}

body.lp-page .lp-fmeta__tag--warn {
  background: rgba(217, 164, 86, 0.12);
  color: rgba(217, 164, 86, 0.65);
}

/* State metrics */
body.lp-page .lp-fmeta__metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.lp-page .lp-fmeta__dots {
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--lp-emerald);
  opacity: 0.7;
}

/* ── Responsive: featured card collapses to single column ─────── */
@media (max-width: 720px) {
  body.lp-page .lp-feature-grid > .lp-feature:first-child {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    column-gap: 0;
    min-height: unset;
    padding: 22px;
  }

  body.lp-page .lp-feature-grid > .lp-feature:first-child > h3 {
    grid-column: 1;
    grid-row: auto;
    margin-top: 8px;
    font-size: 24px;
  }

  body.lp-page .lp-feature-grid > .lp-feature:first-child > p {
    grid-column: 1;
    grid-row: auto;
    padding-left: 0;
    border-left: none;
    margin-top: 14px;
    font-size: 15px;
    align-self: auto;
  }

  body.lp-page .lp-feature-grid > .lp-feature:first-child > .lp-feature__link {
    grid-column: 1;
    grid-row: auto;
    padding-left: 0;
  }

  body.lp-page .lp-feature-grid > .lp-feature:last-child {
    grid-column: span 1;
  }
}
