/* RayMark — the R monogram, and its draw-in for the pre-load screen. */
.ray-mark { display: block; flex-shrink: 0; overflow: visible; }
.ray-mark__leg { transition: transform 0.4s cubic-bezier(.16,1,.3,1); }
a:hover > .ray-mark .ray-mark__leg, .lp-logo:hover .ray-mark__leg { transform: translate(2px, 2px); }

/* Draw-in: the R is written in one stroke (≈ 96 units long), then the leg
   (≈ 22 units) shoots out and settles. */
.ray-mark.is-animating .ray-mark__r {
  stroke-dasharray: 100; stroke-dashoffset: 100;
  animation: ray-mark-draw 0.75s cubic-bezier(.65,0,.35,1) 0.1s forwards;
}
.ray-mark.is-animating .ray-mark__leg {
  stroke-dasharray: 30; stroke-dashoffset: 30;
  animation: ray-mark-leg 0.45s cubic-bezier(.16,1,.3,1) 0.7s forwards;
  transform-origin: 33px 34px;
}
@keyframes ray-mark-draw { to { stroke-dashoffset: 0; } }
@keyframes ray-mark-leg {
  0%   { stroke-dashoffset: 30; }
  70%  { stroke-dashoffset: 0; transform: translate(1.5px, 1.5px); }
  100% { stroke-dashoffset: 0; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .ray-mark.is-animating .ray-mark__r, .ray-mark.is-animating .ray-mark__leg { animation: none; stroke-dashoffset: 0; }
}

/* The app's own loading screen: paper, the mark drawing itself, nothing else. */
.ray-splash { min-height: 100vh; display: grid; place-items: center; background: #f5f6f8; color: #0b0d12; }
.ray-splash.is-ink { background: #0b0d12; color: #fff; }
/* ══════════════════════════════════════════════════════════════════════════
   ray-crm.com — landing page design system
   ──────────────────────────────────────────────────────────────────────────
   One accent, spent in a few places; everything else is paper, ink and
   hairlines. The page composes from tokens below; components never reach
   for a raw colour of their own.
   ══════════════════════════════════════════════════════════════════════════ */

.lp {
  --lp-paper:   #f5f6f8;   /* cool off-white ground                     */
  --lp-white:   #ffffff;
  --lp-ink:     #0b0d12;   /* near-black, slightly blue                  */
  --lp-ink-2:   #14171f;   /* raised surfaces on ink                     */
  --lp-graph:   #3a3d45;   /* body text                                  */
  --lp-mist:    #858a96;   /* secondary text, eyebrows                   */
  --lp-line:    #e2e4e9;   /* hairlines                                  */
  --lp-line-2:  rgba(255,255,255,0.10); /* hairlines on ink            */
  --lp-accent:  #2b4cff;   /* cobalt — the one colour                    */
  --lp-accent-2:#1b37d9;   /* pressed / hover                            */
  --lp-accent-soft: #e8ecff;

  --lp-font-he: 'Noto Sans Hebrew', 'Segoe UI', Tahoma, Arial, sans-serif;
  --lp-font-lat: 'Outfit', 'Inter', 'Segoe UI', Arial, sans-serif;

  --lp-ease: cubic-bezier(.16, 1, .3, 1);
  --lp-ease-io: cubic-bezier(.76, 0, .24, 1);
  --lp-gutter: clamp(1.25rem, 4vw, 3rem);
  --lp-max: 1200px;

  font-family: var(--lp-font-he);
  color: var(--lp-ink);
  background: var(--lp-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.lp *, .lp *::before, .lp *::after { box-sizing: border-box; }
.lp ::-moz-selection { background: var(--lp-accent); color: #fff; }
.lp ::selection { background: var(--lp-accent); color: #fff; }

.lp-wrap { width: 100%; max-width: var(--lp-max); margin-inline: auto; padding-inline: var(--lp-gutter); }

/* ── Type ──────────────────────────────────────────────────────────────── */
.lp-eyebrow {
  font-family: var(--lp-font-lat);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lp-mist);
  display: inline-flex; align-items: center; gap: 0.75rem;
  direction: ltr; justify-self: start; align-self: start;
}
.lp-eyebrow::before { content: ''; width: 2rem; height: 1px; background: currentColor; opacity: 0.6; }
.lp-eyebrow.is-accent { color: var(--lp-accent); }
.lp-on-ink .lp-eyebrow { color: rgba(255,255,255,0.55); }

.lp-h1 {
  font-size: clamp(2.5rem, 5.2vw, 4.5rem); font-weight: 800; line-height: 1.04;
  letter-spacing: -0.035em; margin: 0; text-wrap: balance;
}
.lp-h2 {
  font-size: clamp(2rem, 4.2vw, 3.3rem); font-weight: 800; line-height: 1.08;
  letter-spacing: -0.03em; margin: 0; text-wrap: balance;
}
.lp-h3 { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.01em; margin: 0; line-height: 1.25; }
.lp-lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.65; color: var(--lp-graph); margin: 0; max-width: 34rem; }
.lp-body { font-size: 0.98rem; line-height: 1.7; color: var(--lp-graph); margin: 0; }
.lp-on-ink .lp-lead, .lp-on-ink .lp-body { color: rgba(255,255,255,0.68); }
.lp-num {
  font-family: var(--lp-font-lat); font-variant-numeric: tabular-nums; font-weight: 600;
  letter-spacing: -0.03em; direction: ltr; unicode-bidi: isolate;
}
.lp-mark { position: relative; white-space: nowrap; }
.lp-mark::after {
  content: ''; position: absolute; inset-inline: 0; bottom: 0.06em; height: 0.16em;
  background: var(--lp-accent); z-index: -1; transform: scaleX(0); transform-origin: 100% 50%;
  transition: transform 0.9s var(--lp-ease) 0.7s;
}
.is-in .lp-mark::after, .lp-hero.is-ready .lp-mark::after { transform: scaleX(1); }

/* ── Sections ──────────────────────────────────────────────────────────── */
.lp-section { position: relative; padding-block: clamp(4.5rem, 10vw, 8.5rem); }
.lp-section.is-white { background: var(--lp-white); }
.lp-section.is-paper { background: var(--lp-paper); }
.lp-section.is-ink   { background: var(--lp-ink); color: #fff; }
.lp-section.is-accent{ background: var(--lp-accent); color: #fff; }
.lp-hairline-top { border-top: 1px solid var(--lp-line); }
.lp-on-ink .lp-hairline-top { border-top-color: var(--lp-line-2); }

.lp-head { display: grid; gap: 1.25rem; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); max-width: 46rem; }
.lp-head.is-split {
  max-width: none; grid-template-columns: 1fr; align-items: end;
}
@media (min-width: 900px) {
  .lp-head.is-split { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 3rem; }
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.lp-btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.6rem; border-radius: 4px; border: 1px solid transparent;
  font: inherit; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: color 0.35s, border-color 0.35s, transform 0.35s var(--lp-ease);
}
.lp-btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  transform: translateY(101%); transition: transform 0.5s var(--lp-ease);
}
.lp-btn:hover::before, .lp-btn:focus-visible::before { transform: translateY(0); }
.lp-btn:active { transform: translateY(1px); }
.lp-btn svg { width: 1em; height: 1em; transition: transform 0.4s var(--lp-ease); }
.lp-btn:hover svg.lp-arrow { transform: translateX(-4px); }
[dir="ltr"] .lp-btn:hover svg.lp-arrow { transform: translateX(4px); }

.lp-btn--ink   { background: var(--lp-ink); color: #fff; }
.lp-btn--ink::before { background: var(--lp-accent); }
.lp-btn--accent{ background: var(--lp-accent); color: #fff; }
.lp-btn--accent::before { background: var(--lp-ink); }
.lp-btn--white { background: #fff; color: var(--lp-ink); }
.lp-btn--white::before { background: var(--lp-ink); }
.lp-btn--white:hover { color: #fff; }
.lp-btn--ghost { background: transparent; color: var(--lp-ink); border-color: var(--lp-line); }
.lp-btn--ghost::before { background: var(--lp-ink); }
.lp-btn--ghost:hover { color: #fff; border-color: var(--lp-ink); }
.lp-on-ink .lp-btn--ghost { color: #fff; border-color: rgba(255,255,255,0.28); }
.lp-on-ink .lp-btn--ghost::before { background: #fff; }
.lp-on-ink .lp-btn--ghost:hover { color: var(--lp-ink); border-color: #fff; }
.lp-btn--sm { padding: 0.6rem 1rem; font-size: 0.85rem; }

.lp-link {
  position: relative; display: inline-block; color: inherit; text-decoration: none; font-weight: 600;
}
.lp-link::after {
  content: ''; position: absolute; inset-inline: 0; bottom: -2px; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: 100% 50%; transition: transform 0.4s var(--lp-ease);
}
[dir="ltr"] .lp-link::after { transform-origin: 0 50%; }
.lp-link:hover::after, .lp-link:focus-visible::after { transform: scaleX(1); }

.lp :focus-visible { outline: 2px solid var(--lp-accent); outline-offset: 3px; }

/* ── Preloader — a short curtain, once per visit ───────────────────────── */
.lp-preloader {
  position: fixed; inset: 0; z-index: 1000; background: var(--lp-ink);
  display: grid; place-items: center;
  transition: transform 0.9s var(--lp-ease-io), visibility 0s linear 0.9s;
}
.lp-preloader.is-done { transform: translateY(-101%); visibility: hidden; }
@keyframes lp-bars { from { transform: scaleY(0.3); opacity: 0.4; } to { transform: scaleY(1); opacity: 1; } }

/* ── Header ────────────────────────────────────────────────────────────── */
.lp-header {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  padding-block: 1.1rem; color: var(--lp-ink);
  transition: padding 0.45s var(--lp-ease), background 0.45s, box-shadow 0.45s, transform 0.5s var(--lp-ease);
  background: transparent;
}
.lp-header.is-scrolled {
  padding-block: 0.7rem;
  background: rgba(245,246,248,0.86);
  backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--lp-line);
}
.lp-header.is-hidden { transform: translateY(-110%); }
/* while the mobile menu is open the header floats over ink, so it turns white */
.lp-header.is-menu { color: #fff; background: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
.lp-header.is-menu .lp-logo__word small { color: rgba(255,255,255,0.6); }
.lp-header__row { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.lp-logo { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; color: inherit; }
.lp-logo__mark { display: grid; place-items: center; color: inherit; }
.lp-logo__word { font-family: var(--lp-font-lat); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.02em; direction: ltr; }
.lp-logo__word small { font-weight: 500; color: var(--lp-mist); margin-inline-start: 0.35em; font-size: 0.85em; }

.lp-nav { display: none; align-items: center; gap: 1.9rem; }
.lp-nav a { position: relative; color: var(--lp-graph); font-size: 0.92rem; font-weight: 600; text-decoration: none; padding-block: 0.3rem; }
.lp-nav a::after {
  content: ''; position: absolute; inset-inline: 0; bottom: 0; height: 1px; background: var(--lp-ink);
  transform: scaleX(0); transform-origin: 100% 50%; transition: transform 0.4s var(--lp-ease);
}
[dir="ltr"] .lp-nav a::after { transform-origin: 0 50%; }
.lp-nav a:hover { color: var(--lp-ink); }
.lp-nav a:hover::after { transform: scaleX(1); }
.lp-header__cta { display: none; align-items: center; gap: 0.6rem; }
.lp-lang {
  font-family: var(--lp-font-lat); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em;
  border: 1px solid var(--lp-line); border-radius: 999px; padding: 0.35rem 0.75rem; background: transparent;
  color: var(--lp-graph); cursor: pointer; transition: background 0.3s, color 0.3s, border-color 0.3s;
  direction: ltr;
}
.lp-lang:hover { background: var(--lp-ink); color: #fff; border-color: var(--lp-ink); }
.lp-burger {
  width: 44px; height: 44px; border: 0; background: transparent; position: relative; cursor: pointer; color: inherit;
}
.lp-burger span {
  position: absolute; left: 12px; right: 12px; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform 0.4s var(--lp-ease), opacity 0.3s;
}
.lp-burger span:nth-child(1) { top: 15px; }
.lp-burger span:nth-child(2) { top: 21px; }
.lp-burger span:nth-child(3) { top: 27px; }
.lp-burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.lp-burger.is-open span:nth-child(2) { opacity: 0; }
.lp-burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 900px) {
  .lp-nav, .lp-header__cta { display: flex; }
  .lp-burger { display: none; }
}

.lp-mobile {
  position: fixed; inset: 0; z-index: 90; background: var(--lp-ink); color: #fff;
  display: flex; flex-direction: column; justify-content: center; gap: 2rem;
  padding: 6rem var(--lp-gutter) 3rem;
  clip-path: inset(0 0 100% 0); visibility: hidden;
  transition: clip-path 0.7s var(--lp-ease-io), visibility 0s linear 0.7s;
}
.lp-mobile.is-open { clip-path: inset(0); visibility: visible; transition: clip-path 0.7s var(--lp-ease-io); }
.lp-mobile ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.lp-mobile li a {
  display: inline-block; color: inherit; text-decoration: none;
  font-size: clamp(1.9rem, 7vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15;
  transform: translateY(28px); opacity: 0; transition: transform 0.6s var(--lp-ease), opacity 0.6s;
}
.lp-mobile.is-open li:nth-child(1) a { transition-delay: .25s; }
.lp-mobile.is-open li:nth-child(2) a { transition-delay: .31s; }
.lp-mobile.is-open li:nth-child(3) a { transition-delay: .37s; }
.lp-mobile.is-open li:nth-child(4) a { transition-delay: .43s; }
.lp-mobile.is-open li a { transform: translateY(0); opacity: 1; }
.lp-mobile__cta { display: grid; gap: 0.6rem; }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.lp-hero { position: relative; overflow: hidden; padding-top: clamp(7rem, 16vw, 11rem); padding-bottom: clamp(3rem, 6vw, 5rem); background: var(--lp-paper); }
.lp-hero__grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1000px) { .lp-hero__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 4rem; align-items: center; } }
.lp-hero__copy { display: grid; gap: 1.6rem; }
.lp-hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-top: 0.4rem; }
@media (max-width: 640px) { .lp-hero__cta .lp-btn { flex: 1 1 100%; } }
.lp-hero__meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; color: var(--lp-mist); font-size: 0.84rem; font-weight: 500;
  border-top: 1px solid var(--lp-line); padding-top: 1.1rem; margin-top: 0.4rem;
}
.lp-hero__meta span { display: inline-flex; align-items: center; gap: 0.45rem; }
.lp-hero__meta i { width: 6px; height: 6px; border-radius: 50%; background: var(--lp-accent); }

/* word-by-word rise for the headline */
.lp-rise { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.lp-rise > span { display: inline-block; transform: translateY(110%); transition: transform 0.9s var(--lp-ease); }
.lp-hero.is-ready .lp-rise > span { transform: translateY(0); }
.lp-fade { opacity: 0; transform: translateY(18px); transition: opacity 0.8s var(--lp-ease), transform 0.8s var(--lp-ease); }
.lp-hero.is-ready .lp-fade { opacity: 1; transform: none; }

/* the dashboard: curtain wipe on load, gentle drift on scroll */
.lp-shot { position: relative; }
.lp-shot__frame {
  position: relative; overflow: hidden; border-radius: 10px; background: var(--lp-white);
  border: 1px solid var(--lp-line);
  box-shadow: 0 30px 80px -30px rgba(11,13,18,0.28), 0 2px 6px rgba(11,13,18,0.05);
}
.lp-shot__frame::after {
  content: ''; position: absolute; inset: 0; z-index: 5; background: var(--lp-accent);
  transform-origin: 50% 0; transition: transform 1.1s var(--lp-ease-io) 0.35s;
}
.lp-hero.is-ready .lp-shot__frame::after { transform: scaleY(0); }
.lp-shot__bar { display: flex; align-items: center; gap: 0.6rem; padding: 0.6rem 0.9rem; border-bottom: 1px solid var(--lp-line); background: var(--lp-paper); }
.lp-shot__bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--lp-line); }
.lp-shot__url {
  margin-inline: auto; font-family: var(--lp-font-lat); font-size: 0.7rem; color: var(--lp-mist);
  background: #fff; border: 1px solid var(--lp-line); border-radius: 4px; padding: 0.15rem 0.7rem; direction: ltr;
}
.lp-shot__body { padding: 1rem; display: grid; gap: 0.9rem; }
.lp-shot__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.lp-shot__stat { border: 1px solid var(--lp-line); border-radius: 6px; padding: 0.7rem 0.75rem; background: #fff; }
.lp-shot__stat b { display: block; font-size: 1.15rem; line-height: 1.1; }
.lp-shot__stat small { display: block; color: var(--lp-mist); font-size: 0.66rem; margin-top: 0.25rem; font-weight: 600; }
.lp-shot__stat em { font-style: normal; font-family: var(--lp-font-lat); font-size: 0.66rem; font-weight: 600; color: var(--lp-mist); direction: ltr; unicode-bidi: isolate; }
.lp-shot__stat.is-accent b, .lp-shot__stat.is-accent em { color: var(--lp-accent); }
.lp-shot__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
.lp-shot__col { border: 1px solid var(--lp-line); border-radius: 6px; padding: 0.6rem; background: #fff; display: grid; gap: 0.45rem; align-content: start; }
.lp-shot__col header { display: flex; align-items: center; gap: 0.4rem; font-size: 0.68rem; font-weight: 700; color: var(--lp-graph); }
.lp-shot__col header i { width: 6px; height: 6px; border-radius: 50%; background: var(--lp-mist); }
.lp-shot__col header.is-accent i { background: var(--lp-accent); }
.lp-shot__col header span { margin-inline-start: auto; font-family: var(--lp-font-lat); color: var(--lp-mist); font-weight: 500; }
.lp-shot__lead { border: 1px solid var(--lp-line); border-radius: 4px; padding: 0.45rem 0.5rem; background: var(--lp-paper); font-size: 0.68rem; font-weight: 600; }
.lp-shot__lead u { display: block; height: 2px; margin-top: 0.4rem; background: var(--lp-line); border-radius: 2px; overflow: hidden; text-decoration: none; }
.lp-shot__lead u i { display: block; height: 100%; background: var(--lp-graph); border-radius: 2px; }
.lp-shot__lead.is-hot { border-color: var(--lp-accent); }
.lp-shot__lead.is-hot u i { background: var(--lp-accent); }
.lp-shot__lead.is-hot::after { content: 'AI · 92'; float: inline-end; font-family: var(--lp-font-lat); font-size: 0.6rem; color: var(--lp-accent); font-weight: 600; }
@media (max-width: 480px) {
  .lp-shot__stats { grid-template-columns: repeat(2, 1fr); }
  .lp-shot__cols { grid-template-columns: 1fr 1fr; }
  .lp-shot__col:nth-child(3) { display: none; }
}
/* the note floating off the frame — the one flourish */
.lp-shot__note {
  position: absolute; inset-inline-start: -1.25rem; bottom: -1.1rem; z-index: 6;
  background: var(--lp-ink); color: #fff; border-radius: 6px; padding: 0.7rem 0.9rem;
  display: flex; align-items: center; gap: 0.7rem; font-size: 0.78rem; font-weight: 600;
  box-shadow: 0 16px 40px -12px rgba(11,13,18,0.5);
  opacity: 0; transform: translateY(14px); transition: opacity 0.7s var(--lp-ease) 1.5s, transform 0.7s var(--lp-ease) 1.5s;
}
.lp-hero.is-ready .lp-shot__note { opacity: 1; transform: none; }
.lp-shot__note i { width: 8px; height: 8px; border-radius: 50%; background: var(--lp-accent); box-shadow: 0 0 0 0 rgba(43,76,255,0.6); animation: lp-pulse 2s infinite; }
.lp-shot__note small { display: block; font-weight: 500; color: rgba(255,255,255,0.6); font-size: 0.68rem; }
@keyframes lp-pulse { 0% { box-shadow: 0 0 0 0 rgba(43,76,255,0.55); } 100% { box-shadow: 0 0 0 10px rgba(43,76,255,0); } }
@media (max-width: 999px) { .lp-shot__note { inset-inline-start: 0.75rem; bottom: -1rem; } }

.lp-cue {
  display: none; align-items: center; gap: 0.7rem; color: var(--lp-mist); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  margin-top: 3rem;
}
@media (min-width: 1000px) { .lp-cue { display: inline-flex; } }
.lp-cue i { position: relative; width: 1px; height: 44px; background: var(--lp-line); overflow: hidden; }
.lp-cue i::after { content: ''; position: absolute; inset: 0; background: var(--lp-ink); transform: translateY(-100%); animation: lp-cue 2s var(--lp-ease-io) infinite; }
@keyframes lp-cue { 0% { transform: translateY(-100%); } 60% { transform: translateY(100%); } 100% { transform: translateY(100%); } }

/* ── Live feed ─────────────────────────────────────────────────────────── */
.lp-feed { background: var(--lp-ink); color: #fff; border-block: 1px solid var(--lp-line-2); padding-block: 1.25rem; overflow: hidden; }
.lp-feed__grid { display: grid; gap: 0.9rem; align-items: start; }
@media (min-width: 800px) { .lp-feed__grid { grid-template-columns: auto 1fr; gap: 3rem; } }
.lp-feed__label {
  display: inline-flex; align-items: center; gap: 0.6rem; padding-top: 0.15rem;
  font-family: var(--lp-font-lat); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); white-space: nowrap;
}
.lp-feed__label i { width: 7px; height: 7px; border-radius: 50%; background: var(--lp-accent); animation: lp-pulse 2s infinite; }
.lp-feed__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.lp-feed__row {
  display: grid; grid-template-columns: 4.5rem auto 1fr; gap: 0 1rem; align-items: baseline;
  font-size: 0.9rem; line-height: 1.5; animation: lp-feed-in 0.6s var(--lp-ease) both; transition: opacity 0.6s;
}
.lp-feed__row:nth-child(2) { opacity: 0.55; }
.lp-feed__row:nth-child(3) { opacity: 0.28; }
.lp-feed__time { font-size: 0.78rem; color: rgba(255,255,255,0.5); white-space: nowrap; }
.lp-feed__who {
  font-size: 0.7rem; font-weight: 700; white-space: nowrap; border: 1px solid; border-radius: 999px; padding: 0.05rem 0.55rem;
  color: var(--lp-accent); border-color: rgba(43,76,255,0.55);
}
.lp-feed__who.is-marketing { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.28); }
.lp-feed__text { font-weight: 600; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@keyframes lp-feed-in { from { opacity: 0; transform: translateY(-10px); } to { transform: none; } }
@media (max-width: 480px) {
  .lp-feed__row { grid-template-columns: auto 1fr; }
  .lp-feed__time { display: none; }
}

/* ── Reveal on scroll ──────────────────────────────────────────────────── */
.lp-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--lp-ease), transform 0.9s var(--lp-ease); will-change: transform, opacity; }
.lp-reveal.is-in { opacity: 1; transform: none; }
.lp-reveal--img { position: relative; overflow: hidden; opacity: 1; transform: none; }
.lp-reveal--img::after { content: ''; position: absolute; inset: 0; z-index: 3; background: var(--lp-ink); transform-origin: 50% 100%; transition: transform 1s var(--lp-ease-io); }
.lp-reveal--img.is-in::after { transform: scaleY(0); }
.lp-on-ink .lp-reveal--img::after { background: var(--lp-accent); }

/* ── Intro: statement + three numbers ──────────────────────────────────── */
.lp-intro { display: grid; gap: 3rem; }
@media (min-width: 900px) { .lp-intro { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 5rem; align-items: start; } }
.lp-figures { display: grid; gap: 0; border-top: 1px solid var(--lp-line); }
.lp-figure { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: baseline; padding-block: 1.35rem; border-bottom: 1px solid var(--lp-line); }
.lp-figure b { font-size: clamp(2.2rem, 3.6vw, 3rem); line-height: 1; }
.lp-figure span { color: var(--lp-graph); font-size: 0.95rem; font-weight: 500; }
.lp-figure:first-child b { color: var(--lp-accent); }

/* ── Agents (ink) ──────────────────────────────────────────────────────── */
.lp-agents { display: grid; gap: 3rem; }
@media (min-width: 900px) { .lp-agents { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.lp-agent { display: grid; gap: 1.5rem; align-content: start; }
.lp-agent__head { display: flex; align-items: center; gap: 1rem; }
.lp-agent__num { font-family: var(--lp-font-lat); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em; color: var(--lp-accent); direction: ltr; }
.lp-agent__status { margin-inline-start: auto; display: inline-flex; align-items: center; gap: 0.45rem; font-family: var(--lp-font-lat); font-size: 0.7rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); direction: ltr; }
.lp-agent__status i { width: 7px; height: 7px; border-radius: 50%; background: var(--lp-accent); animation: lp-pulse 2s infinite; }
.lp-rows { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--lp-line-2); }
.lp-row {
  position: relative; display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start;
  padding: 1.15rem 0.9rem; border-bottom: 1px solid var(--lp-line-2); overflow: hidden; isolation: isolate;
  transition: color 0.4s;
}
.lp-row::before {
  content: ''; position: absolute; inset: 0; z-index: -1; background: #fff;
  transform: translateY(100%); transition: transform 0.5s var(--lp-ease);
}
.lp-row:hover::before { transform: translateY(0); }
.lp-row:hover { color: var(--lp-ink); }
.lp-row:hover .lp-row__desc { color: var(--lp-graph); }
.lp-row:hover .lp-row__icon { color: var(--lp-accent); }
.lp-row__icon { color: rgba(255,255,255,0.55); margin-top: 0.15rem; transition: color 0.4s; }
.lp-row__title { font-weight: 700; font-size: 1rem; margin: 0; }
.lp-row__desc { font-size: 0.88rem; line-height: 1.6; color: rgba(255,255,255,0.6); margin: 0.25rem 0 0; transition: color 0.4s; }

/* ── How it works: sticky headline, numbered steps ─────────────────────── */
.lp-how { display: grid; gap: 3rem; }
@media (min-width: 900px) { .lp-how { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 5rem; } }
.lp-how__side { display: grid; gap: 1.25rem; align-content: start; }
@media (min-width: 900px) { .lp-how__side { position: sticky; top: 7rem; } }
.lp-steps { display: grid; border-top: 1px solid var(--lp-line); }
.lp-step { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; padding-block: 2.2rem; border-bottom: 1px solid var(--lp-line); }
.lp-step__num { font-family: var(--lp-font-lat); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; color: var(--lp-mist); direction: ltr; padding-top: 0.35rem; }
.lp-step h3 { margin: 0 0 0.6rem; }
.lp-step ul { list-style: none; margin: 1rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.45rem; }
.lp-step li { font-size: 0.8rem; font-weight: 600; color: var(--lp-graph); border: 1px solid var(--lp-line); border-radius: 999px; padding: 0.3rem 0.75rem; background: #fff; }
.lp-step.is-in .lp-step__num { color: var(--lp-accent); }

/* ── Modules grid ──────────────────────────────────────────────────────── */
.lp-tiles { display: grid; gap: 1px; background: var(--lp-line); border: 1px solid var(--lp-line); }
@media (min-width: 640px) { .lp-tiles { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .lp-tiles { grid-template-columns: repeat(3, 1fr); } }
.lp-tile {
  position: relative; overflow: hidden; background: #fff; padding: 2rem 1.75rem; display: grid; gap: 0.9rem; align-content: start;
  transition: background 0.4s;
}
.lp-tile::after { content: ''; position: absolute; inset-inline: 0; bottom: 0; height: 2px; background: var(--lp-accent); transform: scaleX(0); transform-origin: 100% 50%; transition: transform 0.5s var(--lp-ease); }
[dir="ltr"] .lp-tile::after { transform-origin: 0 50%; }
.lp-tile:hover { background: var(--lp-paper); }
.lp-tile:hover::after { transform: scaleX(1); }
.lp-tile__icon { width: 40px; height: 40px; border: 1px solid var(--lp-line); border-radius: 8px; display: grid; place-items: center; color: var(--lp-ink); background: #fff; transition: background 0.4s, color 0.4s, border-color 0.4s; }
.lp-tile:hover .lp-tile__icon { background: var(--lp-ink); color: #fff; border-color: var(--lp-ink); }
.lp-tile p { margin: 0; }

/* ── Quotes ────────────────────────────────────────────────────────────── */
.lp-quotes { display: grid; gap: 0; border-top: 1px solid var(--lp-line); }
@media (min-width: 900px) { .lp-quotes { grid-template-columns: repeat(3, 1fr); } }
.lp-quote { display: grid; gap: 1.5rem; align-content: space-between; padding: 2rem 0; border-bottom: 1px solid var(--lp-line); }
@media (min-width: 900px) {
  .lp-quote { padding: 2.2rem; border-bottom: 0; border-inline-end: 1px solid var(--lp-line); }
  .lp-quote:last-child { border-inline-end: 0; }
}
.lp-quote blockquote { margin: 0; font-size: 1.08rem; line-height: 1.65; font-weight: 500; letter-spacing: -0.01em; }
.lp-quote blockquote::before { content: '״'; display: block; color: var(--lp-accent); font-size: 2.4rem; line-height: 0.6; margin-bottom: 0.9rem; }
.lp-quote footer { display: flex; align-items: center; gap: 0.8rem; font-size: 0.85rem; }
.lp-quote footer i { width: 36px; height: 36px; border-radius: 50%; background: var(--lp-ink); color: #fff; display: grid; place-items: center; font-style: normal; font-weight: 800; font-size: 0.85rem; }
.lp-quote footer b { display: block; }
.lp-quote footer span { color: var(--lp-mist); }

/* ── Pricing ───────────────────────────────────────────────────────────── */
.lp-plans { display: grid; gap: 1rem; align-items: stretch; }
@media (min-width: 900px) { .lp-plans { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.lp-plan {
  position: relative; display: grid; gap: 1.5rem; align-content: start; padding: 2rem 1.75rem;
  border: 1px solid var(--lp-line); border-radius: 10px; background: #fff;
  transition: transform 0.5s var(--lp-ease), box-shadow 0.5s var(--lp-ease), border-color 0.4s;
}
.lp-plan:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(11,13,18,0.35); border-color: var(--lp-mist); }
.lp-plan.is-featured { background: var(--lp-ink); color: #fff; border-color: var(--lp-ink); }
.lp-plan.is-featured .lp-plan__desc, .lp-plan.is-featured .lp-plan__vat, .lp-plan.is-featured .lp-plan__per { color: rgba(255,255,255,0.6); }
.lp-plan__badge {
  position: absolute; top: -0.7rem; inset-inline-start: 1.5rem; background: var(--lp-accent); color: #fff;
  font-family: var(--lp-font-lat); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 3px; direction: ltr;
}
.lp-plan__name { font-family: var(--lp-font-lat); font-size: 1rem; font-weight: 600; letter-spacing: 0.02em; unicode-bidi: isolate; }
.lp-plan__desc { font-size: 0.88rem; color: var(--lp-graph); margin: 0.2rem 0 0; }
.lp-plan__price { display: flex; align-items: baseline; gap: 0.35rem; direction: ltr; justify-content: flex-end; }
[dir="ltr"] .lp-plan__price { justify-content: flex-start; }
.lp-plan__price b { font-size: 2.8rem; line-height: 1; }
.lp-plan__price span { font-family: var(--lp-font-lat); font-size: 1.1rem; color: inherit; }
.lp-plan__per { font-size: 0.85rem; color: var(--lp-mist); }
.lp-plan__vat { font-size: 0.75rem; color: var(--lp-mist); margin: 0.35rem 0 0; }
.lp-plan__actions { display: grid; gap: 0.5rem; }
.lp-plan ul { list-style: none; margin: 0; padding: 1.25rem 0 0; border-top: 1px solid var(--lp-line); display: grid; gap: 0.6rem; }
.lp-plan.is-featured ul { border-top-color: var(--lp-line-2); }
.lp-plan li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; }
.lp-plan li svg { flex-shrink: 0; color: var(--lp-accent); }
.lp-plans__note { text-align: center; color: var(--lp-mist); font-size: 0.85rem; margin: 2rem 0 0; }

/* ── Closing CTA (accent) ──────────────────────────────────────────────── */
.lp-close { text-align: start; display: grid; gap: 2rem; }
@media (min-width: 900px) { .lp-close { grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); align-items: end; } }
.lp-close .lp-h2 { color: #fff; font-size: clamp(2.2rem, 5.4vw, 4.4rem); }
.lp-close__actions { display: grid; gap: 0.8rem; justify-items: start; }
@media (min-width: 900px) { .lp-close__actions { justify-items: end; } }
.lp-close__meta { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.lp-section.is-accent .lp-eyebrow { color: rgba(255,255,255,0.7); }

/* ── Contact (wraps the existing form) ─────────────────────────────────── */
.lp-contact { display: grid; gap: 2.5rem; }
@media (min-width: 1000px) { .lp-contact { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 4rem; align-items: start; } }
.lp-contact__side { display: grid; gap: 1.25rem; align-content: start; }
@media (min-width: 1000px) { .lp-contact__side { position: sticky; top: 7rem; } }
.lp-contact__lines { display: grid; gap: 0.6rem; border-top: 1px solid var(--lp-line); padding-top: 1.25rem; font-size: 0.92rem; }
.lp-contact__lines a { color: inherit; }
.lp-form-card { background: #fff; border: 1px solid var(--lp-line); border-radius: 10px; padding: clamp(1.25rem, 3vw, 2.25rem); }
.lp-field {
  width: 100%; border: 1px solid var(--lp-line); border-radius: 6px; background: #fff; padding: 0.8rem 0.9rem;
  font: inherit; font-size: 0.95rem; color: var(--lp-ink); transition: border-color 0.3s, box-shadow 0.3s;
}
.lp-field::-moz-placeholder { color: var(--lp-mist); }
.lp-field::placeholder { color: var(--lp-mist); }
.lp-field:focus { outline: 0; border-color: var(--lp-ink); box-shadow: 0 0 0 3px rgba(43,76,255,0.12); }
.lp-label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--lp-graph); margin-bottom: 0.4rem; }
.lp-check { accent-color: var(--lp-accent); }

/* ── Footer ────────────────────────────────────────────────────────────── */
.lp-footer { background: var(--lp-white); border-top: 1px solid var(--lp-line); padding-block: 3.5rem 2rem; color: var(--lp-graph); font-size: 0.88rem; }
.lp-footer__grid { display: grid; gap: 2.5rem; }
@media (min-width: 800px) { .lp-footer__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr); gap: 3rem; } }
.lp-footer h4 { font-family: var(--lp-font-lat); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lp-mist); margin: 0 0 1rem; unicode-bidi: isolate; }
.lp-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.lp-footer a { color: inherit; text-decoration: none; }
.lp-footer a:hover { color: var(--lp-ink); }
.lp-footer address { font-style: normal; display: grid; gap: 0.55rem; }
.lp-footer__legal { margin-top: 1.25rem; font-size: 0.8rem; color: var(--lp-mist); line-height: 1.6; }
.lp-footer__bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--lp-line); display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--lp-mist); }
.lp-footer__bottom nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.lp-status { display: inline-flex; align-items: center; gap: 0.45rem; font-family: var(--lp-font-lat); direction: ltr; }
.lp-status i { width: 6px; height: 6px; border-radius: 50%; background: #16a34a; }

/* ── Motion off ────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .lp *, .lp *::before, .lp *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .lp-preloader { display: none; }
  .lp-reveal, .lp-rise > span, .lp-fade { opacity: 1; transform: none; }
  .lp-shot__frame::after, .lp-reveal--img::after { display: none; }
  .lp-shot__note { opacity: 1; transform: none; }
  .lp-mark::after { transform: scaleX(1); }
}

/* ── Auth screens (AuthShell) ──────────────────────────────────────────── */
.lp-auth { min-height: 100vh; display: grid; place-items: center; padding: 2rem 1.25rem; background: var(--lp-paper); }
.lp-auth__grid { width: 100%; max-width: 26rem; display: grid; gap: 1.5rem; justify-items: center; }
.lp-auth__logo { justify-self: center; }
.lp-auth__logo .lp-logo__mark { width: 44px; height: 44px; }
.lp-auth__logo .lp-logo__mark b { width: 40px; height: 40px; border-radius: 9px; background: var(--lp-ink); color: #fff; display: grid; place-items: center; font-family: var(--lp-font-lat); font-weight: 700; }
.lp-auth__img { width: 40px; height: 40px; border-radius: 9px; -o-object-fit: contain; object-fit: contain; background: #fff; border: 1px solid var(--lp-line); padding: 2px; }
.lp-auth__ws { display: grid; line-height: 1.15; }
.lp-auth__ws b { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; }
.lp-auth__ws small { font-size: 0.7rem; color: var(--lp-mist); font-weight: 500; }
.lp-auth__card { width: 100%; }
.lp-auth__fields { display: grid; gap: 1.1rem; }
.lp-auth__field { position: relative; }
.lp-auth__field .lp-field { padding-inline-start: 2.4rem; }
.lp-auth__field .lp-auth__icon { position: absolute; inset-inline-start: 0.85rem; top: 50%; transform: translateY(-50%); color: var(--lp-mist); pointer-events: none; }
.lp-auth__field .lp-auth__eye { position: absolute; inset-inline-end: 0.6rem; top: 50%; transform: translateY(-50%); border: 0; background: transparent; color: var(--lp-mist); cursor: pointer; padding: 0.3rem; display: grid; }
.lp-auth__field .lp-auth__eye:hover { color: var(--lp-ink); }
.lp-auth__error { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.84rem; font-weight: 600; color: #b3402f; background: #fbeeec; border: 1px solid #f1d2cd; border-radius: 6px; padding: 0.7rem 0.85rem; }
.lp-auth__ok { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.86rem; font-weight: 600; color: #0f6b4a; background: #e8f6ef; border: 1px solid #c6e8d6; border-radius: 6px; padding: 0.7rem 0.85rem; }
.lp-auth__submit { width: 100%; margin-top: 0.4rem; }
.lp-auth__links { display: grid; gap: 0.4rem; justify-items: center; margin-top: 1.1rem; font-size: 0.85rem; color: var(--lp-graph); }
.lp-auth__footer { display: grid; gap: 0.5rem; justify-items: center; font-size: 0.88rem; color: var(--lp-graph); text-align: center; }
.lp-auth__footer .lp-link { color: var(--lp-ink); }
.lp-auth__legal { margin: 0; font-size: 0.74rem; color: var(--lp-mist); }
.lp-auth__row { display: grid; gap: 1.1rem; }
@media (min-width: 560px) { .lp-auth__row { grid-template-columns: 1fr 1fr; } }

.lp-accent-text { color: var(--lp-accent); }
.lp-auth__steps { display: flex; gap: 6px; margin-bottom: 1.5rem; }
.lp-auth__steps i { flex: 1; height: 3px; border-radius: 3px; background: var(--lp-line); }
.lp-auth__steps i.is-on { background: var(--lp-accent); }

/* ─── Hero mock: the control room (chat above, agents below) ──────────── */
.lp-room { padding: 14px 14px 12px; display: grid; gap: 12px; background: #fbfbfd; }
.lp-room__chat { display: grid; gap: 8px; }
.lp-room__msg { max-width: 88%; padding: 8px 12px; border-radius: 14px; font-size: 12.5px; line-height: 1.45; opacity: 0; transform: translateY(6px); animation: lp-room-in .5s ease forwards; }
.lp-room__msg.is-user { background: #eef1ff; color: var(--lp-ink); margin-inline-start: auto; animation-delay: 300ms; }
.lp-room__msg.is-ray { background: var(--lp-ink); color: #fff; animation-delay: 650ms; }
.lp-room__msg b { display: block; font-family: var(--lp-font-lat); font-size: 10px; letter-spacing: .12em; opacity: .6; margin-bottom: 2px; }
.lp-room__msg u { display: inline-block; margin-top: 6px; padding: 4px 10px; border-radius: 999px; background: var(--lp-accent); text-decoration: none; font-weight: 700; font-size: 11.5px; }
.lp-room__floor { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; padding-top: 6px; border-top: 1px dashed var(--lp-line); }
.lp-room__agent { display: grid; justify-items: center; gap: 4px; text-align: center; opacity: 0; transform: translateY(10px) scale(.9); animation: lp-room-in .5s cubic-bezier(.2,.8,.2,1) forwards; }
.lp-room__agent i { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-style: normal; font-size: 17px; box-shadow: 0 6px 16px rgba(11,13,18,.14); }
.lp-room__agent small { font-size: 10px; font-weight: 700; color: var(--lp-ink); }
.lp-room__bubble { font-size: 9.5px; line-height: 1.3; color: var(--lp-ink); background: #fff; border: 1px solid var(--lp-line); border-radius: 10px; padding: 4px 6px; min-height: 30px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
@keyframes lp-room-in { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .lp-room__msg, .lp-room__agent { animation: none; opacity: 1; transform: none; } }

/* ─── Public shell (demo, industry, agent pages) ─────────────────────────── */
.ps-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,0.86); backdrop-filter: blur(12px); border-bottom: 1px solid var(--lp-line); }
.ps-header__row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 64px; }
.ps-nav { display: none; gap: 1.5rem; }
.ps-nav a { font-size: 0.9rem; font-weight: 600; color: var(--lp-graph); }
.ps-nav a:hover { color: var(--lp-ink); }
@media (min-width: 900px) { .ps-nav { display: flex; } }
.ps-header__cta { display: flex; gap: 0.5rem; }
.ps-main { min-height: 60vh; }
.ps-hero { padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 5vw, 3.5rem); background: #fff; }
.ps-hero .lp-eyebrow { margin-bottom: 1.25rem; }
.ps-hero .lp-lead { max-width: 40rem; margin-top: 1.25rem; }
.ps-hero .lp-hero__cta { margin-top: 1.75rem; }
.ps-hero__emoji { display: inline-block; font-size: 0.8em; margin-inline-end: 0.25em; }
.ps-numbers { display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--lp-line); }
.ps-numbers b { display: block; font-size: 2rem; line-height: 1; color: var(--lp-accent); }
.ps-numbers span { display: block; margin-top: 0.4rem; font-size: 0.85rem; color: var(--lp-graph); font-weight: 600; }
.ps-section { padding: clamp(3rem, 7vw, 5.5rem) 0; background: #fff; }
.ps-section.is-paper { background: var(--lp-paper); }
.ps-section.is-ink { background: var(--lp-ink); color: #fff; }
.ps-section.is-accent { background: var(--lp-accent); color: #fff; }
.ps-section .lp-eyebrow { margin-bottom: 1rem; }
.ps-two { display: grid; gap: 2rem; }
@media (min-width: 900px) { .ps-two { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 4rem; align-items: start; } }
.ps-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.ps-list li { padding: 1rem 0; border-bottom: 1px solid var(--lp-line); font-size: 1.02rem; line-height: 1.6; padding-inline-start: 1.5rem; position: relative; }
.ps-list li::before { content: ""; position: absolute; inset-inline-start: 0; top: 1.55rem; width: 8px; height: 8px; border-radius: 50%; background: var(--lp-accent); }
.ps-cards { display: grid; gap: 1px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.12); margin-top: 2rem; }
@media (min-width: 640px) { .ps-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .ps-cards { grid-template-columns: repeat(3, 1fr); } }
.ps-card { display: grid; gap: 0.6rem; padding: 1.6rem; background: var(--lp-ink); color: #fff; text-decoration: none; transition: background .2s; }
.ps-card:hover { background: #151925; }
.ps-card__emoji { font-size: 1.8rem; }
.ps-card b { font-size: 1.05rem; }
.ps-card p { margin: 0; color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.55; }
.ps-card__more { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; color: #9db0ff; font-weight: 700; margin-top: 0.25rem; }
.ps-pages { display: grid; gap: 0.75rem; }
.ps-page { display: grid; grid-template-columns: auto 1fr; gap: 0.25rem 1rem; align-items: center; padding: 1.1rem 1.25rem; border: 1px solid var(--lp-line); background: #fff; }
.ps-page span { grid-row: span 2; font-size: 1.6rem; }
.ps-page b { font-size: 1rem; }
.ps-page small { color: var(--lp-graph); font-size: 0.85rem; }
.ps-steps { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 0; }
@media (min-width: 900px) { .ps-steps { grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--lp-line); border: 1px solid var(--lp-line); } }
.ps-steps li { display: grid; gap: 0.6rem; padding: 1.5rem; background: #fff; font-size: 0.98rem; line-height: 1.55; border-bottom: 1px solid var(--lp-line); }
@media (min-width: 900px) { .ps-steps li { border-bottom: 0; } }
.ps-steps li span { font-family: var(--lp-font-lat); font-size: 0.75rem; letter-spacing: 0.15em; color: var(--lp-accent); font-weight: 700; direction: ltr; }
.ps-faq details { border-bottom: 1px solid var(--lp-line); padding: 1rem 0; }
.ps-faq summary { cursor: pointer; font-weight: 700; font-size: 1.02rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.ps-faq summary::after { content: "+"; color: var(--lp-accent); font-size: 1.3rem; font-weight: 400; }
.ps-faq details[open] summary::after { content: "−"; }
.ps-faq p { margin: 0.75rem 0 0; color: var(--lp-graph); line-height: 1.7; }
.ps-cta { display: grid; gap: 1.5rem; }
.ps-cta .lp-hero__cta { margin: 0; }
.ps-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.ps-chips a { padding: 0.5rem 0.9rem; border: 1px solid var(--lp-line); border-radius: 999px; font-size: 0.88rem; font-weight: 600; color: var(--lp-ink); background: #fff; text-decoration: none; }
.ps-chips a:hover { border-color: var(--lp-ink); }
.ps-split { display: grid; gap: 1rem; margin-top: 2rem; }
@media (min-width: 800px) { .ps-split { grid-template-columns: 1fr 1fr; } }
.ps-split__col { padding: 1.5rem; border: 1px solid var(--lp-line); background: #fff; }
.ps-split__col.is-alone { border-top: 3px solid #0f9d58; }
.ps-split__col.is-asks { border-top: 3px solid #d97706; }
.ps-split__col ul { margin: 1rem 0 0; padding-inline-start: 1.1rem; display: grid; gap: 0.5rem; color: var(--lp-graph); line-height: 1.55; }
.ps-example { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 1.5rem; }
.ps-example span { display: inline-block; font-size: 0.72rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.55); margin-bottom: 0.75rem; font-family: var(--lp-font-lat); }
.ps-example p { margin: 0; font-size: 1.05rem; line-height: 1.7; }
.ps-footer { border-top: 1px solid var(--lp-line); padding: 1.5rem 0; font-size: 0.82rem; color: var(--lp-graph); }
.ps-footer__row { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.ps-footer nav { display: flex; gap: 1rem; }
.ps-footer a { color: var(--lp-graph); }

/* ─── Live demo ─────────────────────────────────────────────────────────── */
.demo { padding: clamp(2rem, 5vw, 3.5rem) 0 4rem; background: var(--lp-paper); }
.demo__head { max-width: 44rem; margin-bottom: 2rem; }
.demo__head .lp-eyebrow { margin-bottom: 1rem; }
.demo__head .lp-lead { margin-top: 1rem; }
.demo__grid { display: grid; gap: 1rem; }
@media (min-width: 1000px) { .demo__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: start; } }
.demo__chat, .demo__floor-wrap { background: #fff; border: 1px solid var(--lp-line); border-radius: 22px; overflow: hidden; box-shadow: 0 24px 60px rgba(11,13,18,0.07); }
.demo__bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1rem; background: var(--lp-ink); color: #fff; font-size: 0.85rem; font-weight: 700; }
.demo__bar.is-light { background: #fff; color: var(--lp-ink); border-bottom: 1px solid var(--lp-line); }
.demo__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lp-accent); box-shadow: 0 0 0 4px rgba(43,76,255,0.25); }
.demo__dot.is-green { background: #0f9d58; box-shadow: 0 0 0 4px rgba(15,157,88,0.2); }
.demo__tools { margin-inline-start: auto; display: flex; gap: 0.25rem; }
.demo__tools button { width: 30px; height: 30px; border-radius: 8px; border: 0; background: rgba(255,255,255,0.12); color: #fff; display: grid; place-items: center; cursor: pointer; }
.demo__msgs { height: min(52vh, 520px); overflow-y: auto; padding: 1rem; display: grid; gap: 0.6rem; align-content: start; }
.demo__msg { max-width: 88%; padding: 0.7rem 0.95rem; border-radius: 16px; font-size: 0.95rem; line-height: 1.55; animation: demo-in .35s ease both; }
.demo__msg.is-ray { background: var(--lp-paper); color: var(--lp-ink); justify-self: start; border-bottom-right-radius: 4px; }
.demo__msg.is-you { background: var(--lp-ink); color: #fff; justify-self: end; border-bottom-left-radius: 4px; }
.demo__msg.is-typing { display: flex; gap: 4px; padding: 0.8rem 1rem; }
.demo__msg.is-typing i { width: 6px; height: 6px; border-radius: 50%; background: rgba(11,13,18,0.35); animation: demo-dot 1s infinite; }
.demo__msg.is-typing i:nth-child(2) { animation-delay: .15s } .demo__msg.is-typing i:nth-child(3) { animation-delay: .3s }
@keyframes demo-dot { 0%, 100% { transform: translateY(0); opacity: .4 } 50% { transform: translateY(-4px); opacity: 1 } }
@keyframes demo-in { from { opacity: 0; transform: translateY(6px) } to { opacity: 1; transform: none } }
.demo__card { background: var(--lp-ink); color: #fff; border-radius: 18px; padding: 1.1rem 1.2rem; display: grid; gap: 0.6rem; animation: demo-in .4s ease both; }
.demo__card-title { font-weight: 900; font-size: 1.05rem; }
.demo__card-row { display: grid; gap: 0.15rem; font-size: 0.88rem; line-height: 1.5; }
.demo__card-row b { font-size: 0.72rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); }
.demo__card .lp-btn { justify-self: start; margin-top: 0.4rem; }
.demo__chips { display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0 1rem 0.75rem; }
.demo__chips button { padding: 0.45rem 0.85rem; border-radius: 999px; border: 1px solid rgba(43,76,255,0.25); background: #eef1ff; color: var(--lp-accent); font-weight: 700; font-size: 0.88rem; cursor: pointer; }
.demo__chips button:hover { background: var(--lp-accent); color: #fff; }
.demo__input { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1rem; border-top: 1px solid var(--lp-line); }
.demo__input input { flex: 1; border: 1px solid var(--lp-line); border-radius: 12px; padding: 0.65rem 0.9rem; font: inherit; font-size: 0.95rem; outline: none; background: var(--lp-paper); }
.demo__input input:focus { border-color: var(--lp-accent); }
.demo__send { width: 40px; height: 40px; border-radius: 12px; border: 0; background: var(--lp-ink); color: #fff; display: grid; place-items: center; cursor: pointer; }
.demo__mic { position: relative; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--lp-line); background: #fff; color: var(--lp-graph); display: grid; place-items: center; cursor: pointer; }
.demo__mic:disabled { opacity: .4; cursor: not-allowed; }
.demo__mic.is-on { background: var(--lp-accent); color: #fff; border-color: var(--lp-accent); box-shadow: 0 0 0 6px rgba(43,76,255,0.18); }
.demo__eq { position: absolute; inset: -12px; border-radius: 50%; display: flex; align-items: center; justify-content: center; gap: 2px; pointer-events: none; }
.demo__eq i { width: 3px; height: 8px; background: var(--lp-accent); border-radius: 2px; animation: demo-eq .8s ease-in-out infinite; opacity: .7; }
.demo__eq i:nth-child(2) { animation-delay: .1s } .demo__eq i:nth-child(3) { animation-delay: .2s } .demo__eq i:nth-child(4) { animation-delay: .3s } .demo__eq i:nth-child(5) { animation-delay: .4s }
@keyframes demo-eq { 0%, 100% { transform: scaleY(1) } 50% { transform: scaleY(2.6) } }
.demo__floor { position: relative; height: min(52vh, 520px); background: radial-gradient(ellipse at 50% 30%, #fbfbfd 0%, #eef0f4 100%); }
.demo__dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(11,13,18,0.08) 1px, transparent 1px); background-size: 22px 22px; }
.demo__empty { position: absolute; inset: 0; display: grid; place-items: center; padding: 2rem; text-align: center; color: var(--lp-graph); font-size: 0.95rem; }
.demo__lines { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.demo__lines line { stroke: var(--lp-accent); stroke-width: 1.5; stroke-dasharray: 4 4; opacity: .6; animation: demo-flow 1s linear infinite; }
@keyframes demo-flow { to { stroke-dashoffset: -16 } }
.demo__pulse { position: absolute; width: 12px; height: 12px; margin: -6px 0 0 -6px; border-radius: 50%; background: var(--lp-accent); box-shadow: 0 0 0 4px rgba(43,76,255,0.2); animation: demo-pulse 2s ease-in-out both; pointer-events: none; }
@keyframes demo-pulse { from { left: var(--x1); top: var(--y1); opacity: 0 } 15% { opacity: 1 } 85% { opacity: 1 } to { left: var(--x2); top: var(--y2); opacity: 0 } }
.demo__agent { position: absolute; width: 150px; transform: translate(-50%, -50%) scale(.6); opacity: 0; display: grid; justify-items: center; gap: 4px; transition: opacity .5s, transform .5s cubic-bezier(.2,.8,.2,1); }
.demo__agent.is-in { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.demo__agent i { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; font-style: normal; font-size: 24px; box-shadow: 0 8px 20px rgba(11,13,18,0.18); }
.demo__agent small { font-size: 11px; font-weight: 700; color: var(--lp-ink); text-align: center; line-height: 1.2; }
.demo__bubble { position: relative; background: #fff; border: 1px solid var(--lp-line); border-radius: 12px; padding: 6px 8px; font-size: 10.5px; line-height: 1.35; color: var(--lp-ink); text-align: center; max-width: 150px; box-shadow: 0 6px 16px rgba(11,13,18,0.06); animation: demo-in .35s ease both; display: grid; gap: 4px; }
.demo__bubble.is-approval { border-color: #fcd34d; background: #fffbeb; }
.demo__bubble.is-approved { border-color: #a7f3d0; background: #ecfdf5; }
.demo__bubble button { justify-self: center; display: inline-flex; align-items: center; gap: 3px; padding: 2px 8px; border-radius: 999px; border: 0; background: var(--lp-ink); color: #fff; font-size: 10px; font-weight: 700; cursor: pointer; }
.demo__feed { list-style: none; margin: 0; padding: 0.75rem 1rem; border-top: 1px solid var(--lp-line); display: grid; gap: 0.35rem; font-size: 0.82rem; color: var(--lp-graph); }
.demo__feed b { color: var(--lp-ink); }

/* ─── Landing additions: typewriter, stats, dot grid, industries, team, cases, FAQ, RAY online ── */
.lp-type { color: var(--lp-accent); font-weight: 800; border-inline-end: 2px solid var(--lp-accent); padding-inline-end: 3px; animation: lp-caret 1s step-end infinite; }
@keyframes lp-caret { 50% { border-color: transparent } }
.lp-hero { position: relative; }
.lp-hero__grid, .lp-hero .lp-cue { position: relative; }
.lp-grid { position: absolute; inset: 0; pointer-events: none; background-image: radial-gradient(rgba(11,13,18,0.07) 1px, transparent 1px); background-size: 26px 26px; mask-image: radial-gradient(ellipse at 60% 40%, #000 30%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse at 60% 40%, #000 30%, transparent 75%); animation: lp-grid 18s linear infinite; }
@keyframes lp-grid { to { background-position: 26px 26px } }
.lp-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--lp-line); border: 1px solid var(--lp-line); margin-top: 2.5rem; }
@media (min-width: 900px) { .lp-stats { grid-template-columns: repeat(4, 1fr); } }
.lp-stat { background: #fff; padding: 1.4rem 1.5rem; display: grid; gap: 0.3rem; }
.lp-stat b { font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1; color: var(--lp-ink); }
.lp-stat b em { font-style: normal; color: var(--lp-accent); font-size: 0.6em; margin-inline-start: 2px; }
.lp-stat span { font-size: 0.85rem; color: var(--lp-graph); font-weight: 600; }
.lp-stats__note { font-size: 0.78rem; color: var(--lp-graph); margin-top: 0.75rem; }
.lp-industries { display: grid; gap: 1px; background: var(--lp-line); border: 1px solid var(--lp-line); margin-top: 2.5rem; }
@media (min-width: 640px) { .lp-industries { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .lp-industries { grid-template-columns: repeat(4, 1fr); } }
.lp-industry { background: #fff; padding: 1.5rem; display: grid; gap: 0.5rem; text-decoration: none; color: var(--lp-ink); transition: background .2s; }
.lp-industry:hover { background: var(--lp-paper); }
.lp-industry b { font-size: 1.05rem; }
.lp-industry p { margin: 0; font-size: 0.88rem; color: var(--lp-graph); line-height: 1.5; }
.lp-industry small { color: var(--lp-accent); font-weight: 700; font-size: 0.8rem; }
.lp-team { display: grid; gap: 1px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); margin-top: 2.5rem; }
@media (min-width: 640px) { .lp-team { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .lp-team { grid-template-columns: repeat(5, 1fr); } }
.lp-team a { background: var(--lp-ink); color: #fff; padding: 1.25rem; display: grid; gap: 0.4rem; text-decoration: none; transition: background .2s; }
.lp-team a:hover { background: #151925; }
.lp-team a i { font-style: normal; font-size: 1.6rem; }
.lp-team a b { font-size: 0.95rem; }
.lp-team a p { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.lp-cases { display: grid; gap: 1px; background: var(--lp-line); border: 1px solid var(--lp-line); margin-top: 2.5rem; }
@media (min-width: 1000px) { .lp-cases { grid-template-columns: repeat(3, 1fr); } }
.lp-case { background: #fff; padding: 1.75rem; display: grid; gap: 1rem; align-content: start; }
.lp-case__name { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--lp-graph); font-weight: 700; }
.lp-case h3 { margin: 0; font-size: 1.1rem; }
.lp-case p { margin: 0; font-size: 0.92rem; line-height: 1.6; color: var(--lp-graph); }
.lp-case p b { color: var(--lp-ink); }
.lp-case blockquote { margin: 0; padding: 0.9rem 1rem; background: var(--lp-paper); border-inline-start: 3px solid var(--lp-accent); font-size: 0.98rem; line-height: 1.55; }
.lp-case__nums { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.lp-case__nums div { display: grid; gap: 0.2rem; }
.lp-case__nums b { font-size: 1.3rem; color: var(--lp-accent); line-height: 1; }
.lp-case__nums span { font-size: 0.72rem; color: var(--lp-graph); font-weight: 600; }
.lp-faq { margin-top: 2rem; }
.lp-online { position: fixed; bottom: 22px; left: 22px; z-index: 60; display: flex; align-items: center; gap: 0.6rem; padding: 0.55rem 0.9rem 0.55rem 0.6rem; border-radius: 999px; background: var(--lp-ink); color: #fff; text-decoration: none; box-shadow: 0 12px 32px rgba(11,13,18,0.28); font-size: 0.85rem; font-weight: 700; animation: lp-online 5s ease-in-out infinite; }
.lp-online i { position: relative; width: 34px; height: 34px; border-radius: 50%; background: var(--lp-accent); display: grid; place-items: center; font-style: normal; font-size: 0.7rem; letter-spacing: 0.05em; }
.lp-online i::after { content: ""; position: absolute; right: -1px; top: -1px; width: 10px; height: 10px; border-radius: 50%; background: #22c55e; border: 2px solid var(--lp-ink); }
.lp-online small { display: block; font-weight: 500; color: rgba(255,255,255,0.65); font-size: 0.72rem; }
@keyframes lp-online { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-4px) } }
@media (prefers-reduced-motion: reduce) { .lp-type, .lp-grid, .lp-online, .demo__agent, .demo__pulse, .demo__lines line, .demo__eq i { animation: none; transition: none; } }

/* ─── Hero board: the brain in the middle, the agents around it, talking ── */
@media (min-width: 1000px) { .lp-hero__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 3rem; } }
.lp-board { position: relative; aspect-ratio: 1 / 0.92; border-radius: 28px; background: radial-gradient(ellipse at 50% 45%, #ffffff 0%, #f0f1f5 100%); border: 1px solid var(--lp-line); box-shadow: 0 30px 80px rgba(11,13,18,0.10); overflow: visible; }
.lp-board__dots { position: absolute; inset: 0; border-radius: inherit; background-image: radial-gradient(rgba(11,13,18,0.09) 1px, transparent 1px); background-size: 22px 22px; }
.lp-board__lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.lp-board__lines line { stroke: rgba(11,13,18,0.12); stroke-width: 0.35; vector-effect: non-scaling-stroke; stroke-width: 1px; transition: stroke .3s; }
.lp-board__lines line.is-hot { stroke: var(--lp-accent); stroke-dasharray: 4 4; animation: demo-flow 1s linear infinite; }
.lp-board__lines line.is-talk { stroke-width: 1.5px; }
.lp-board__pulse { position: absolute; width: 14px; height: 14px; margin: -7px 0 0 -7px; border-radius: 50%; background: var(--lp-accent); box-shadow: 0 0 0 5px rgba(43,76,255,0.2); animation: demo-pulse 1.6s ease-in-out both; pointer-events: none; z-index: 3; }
.lp-board__brain { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); display: grid; justify-items: center; gap: 6px; z-index: 2; }
.lp-board__brain i { width: clamp(64px, 9vw, 96px); height: clamp(64px, 9vw, 96px); border-radius: 50%; background: var(--lp-ink); color: #fff; display: grid; place-items: center; font-style: normal; font-family: var(--lp-font-lat); font-weight: 800; font-size: clamp(0.9rem, 1.4vw, 1.2rem); letter-spacing: 0.06em; box-shadow: 0 0 0 10px rgba(43,76,255,0.08), 0 16px 40px rgba(11,13,18,0.3); animation: lp-breathe 4s ease-in-out infinite; }
.lp-board__brain small { font-size: 0.75rem; font-weight: 800; color: var(--lp-ink); }
@keyframes lp-breathe { 50% { box-shadow: 0 0 0 18px rgba(43,76,255,0.06), 0 16px 40px rgba(11,13,18,0.3); } }
.lp-board__agent { position: absolute; transform: translate(-50%, -50%); display: grid; justify-items: center; gap: 5px; width: 120px; z-index: 2; }
.lp-board__agent i { width: clamp(46px, 6vw, 62px); height: clamp(46px, 6vw, 62px); border-radius: 50%; display: grid; place-items: center; font-style: normal; font-size: clamp(20px, 2.6vw, 28px); transition: box-shadow .3s, transform .3s; }
.lp-board__agent.is-active i { transform: scale(1.08); }
.lp-board__agent small { font-size: 0.72rem; font-weight: 800; color: var(--lp-ink); }
.lp-board__say { position: absolute; bottom: calc(100% + 4px); left: 50%; transform: translateX(-50%); width: -moz-max-content; width: max-content; max-width: 170px; padding: 6px 10px; border-radius: 12px; background: #fff; border: 1px solid var(--lp-line); color: var(--lp-ink); font-size: 0.74rem; line-height: 1.35; text-align: center; box-shadow: 0 8px 20px rgba(11,13,18,0.08); animation: demo-in .35s ease both; z-index: 4; }
.lp-board__say.is-brain { background: var(--lp-ink); color: #fff; border-color: var(--lp-ink); font-weight: 700; }
@media (max-width: 999px) { .lp-board { aspect-ratio: 1 / 1; } .lp-board__agent { width: 96px; } .lp-board__say { max-width: 130px; font-size: 0.68rem; } }
@media (prefers-reduced-motion: reduce) { .lp-board__brain i, .lp-board__lines line.is-hot, .lp-board__pulse { animation: none; } }

/* ─── Solutions grid ────────────────────────────────────────────────────── */
.lp-solutions { display: grid; gap: 1px; background: var(--lp-line); border: 1px solid var(--lp-line); margin-top: 2.5rem; }
@media (min-width: 640px) { .lp-solutions { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .lp-solutions { grid-template-columns: repeat(4, 1fr); } }
.lp-solution { background: #fff; padding: 1.6rem 1.5rem; display: grid; gap: 0.55rem; align-content: start; text-decoration: none; color: var(--lp-ink); transition: background .2s, transform .2s; }
.lp-solution:hover { background: var(--lp-paper); transform: translateY(-2px); }
.lp-solution__icon { font-size: 1.7rem; }
.lp-solution b { font-size: 1.05rem; }
.lp-solution p { margin: 0; font-size: 0.9rem; color: var(--lp-graph); line-height: 1.55; }
.lp-solution small { color: var(--lp-accent); font-weight: 700; font-size: 0.8rem; margin-top: 0.25rem; }

/* ─── Solutions: header dropdown, index card, one section each ──────────── */
.lp-nav__dd { position: relative; }
.lp-nav__dd > a { display: inline-flex; align-items: center; gap: 0.25rem; }
.lp-nav__menu { position: absolute; top: calc(100% + 10px); inset-inline-start: -1rem; width: 340px; background: #fff; border: 1px solid var(--lp-line); border-radius: 18px; box-shadow: 0 24px 60px rgba(11,13,18,0.14); padding: 0.5rem; display: grid; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s, transform .18s, visibility .18s; z-index: 60; }
.lp-nav__dd:hover .lp-nav__menu, .lp-nav__dd:focus-within .lp-nav__menu { opacity: 1; visibility: visible; transform: none; }
.lp-nav__menu a { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; -moz-column-gap: 0.6rem; column-gap: 0.6rem; align-items: center; padding: 0.55rem 0.7rem; border-radius: 12px; text-decoration: none; }
.lp-nav__menu a::after { display: none; }
.lp-nav__menu a:hover { background: var(--lp-paper); }
.lp-nav__menu a span { grid-row: span 2; font-size: 1.2rem; }
.lp-nav__menu a b { font-size: 0.9rem; color: var(--lp-ink); }
.lp-nav__menu a em { font-style: normal; font-size: 0.68rem; font-weight: 800; color: var(--lp-accent); margin-inline-start: 0.4rem; }
.lp-nav__menu a small { grid-column: 2; font-size: 0.74rem; color: var(--lp-graph); line-height: 1.35; }
.lp-nav__menu a.is-flag { background: #eef1ff; }
.lp-nav__menu .lp-nav__all { display: block; text-align: center; font-size: 0.82rem; font-weight: 700; color: var(--lp-accent); padding: 0.55rem; border-top: 1px solid var(--lp-line); margin-top: 0.25rem; border-radius: 0; }
.lp-mobile__sub { list-style: none; margin: 0.25rem 0 0.5rem; padding: 0 1rem 0 0; display: grid; gap: 0.1rem; }
.lp-mobile__sub a { font-size: 1rem !important; font-weight: 600 !important; opacity: 0.85; }
.lp-solution.is-flag { grid-column: 1 / -1; background: var(--lp-ink); color: #fff; padding: 2rem 1.75rem; }
.lp-solution.is-flag:hover { background: #151925; }
.lp-solution.is-flag b { font-size: 1.5rem; }
.lp-solution.is-flag p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 40rem; }
.lp-solution.is-flag small { color: #9db0ff; }
.lp-solution em { font-style: normal; font-size: 0.74rem; font-weight: 800; color: var(--lp-accent); letter-spacing: 0.02em; }
.lp-solution.is-flag em { color: #9db0ff; }
.lp-sol__icon { display: inline-block; font-size: 0.8em; margin-inline-end: 0.2em; }
.lp-sol__tag { margin: 0; font-size: 1.1rem; font-weight: 700; color: var(--lp-ink); line-height: 1.5; }
.lp-on-ink .lp-sol__tag { color: rgba(255,255,255,0.85); }
.lp-sol__tiles { margin-top: 2.25rem; }
.lp-on-ink .lp-tiles { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.12); }
.lp-on-ink .lp-tile { background: var(--lp-ink); }
.lp-on-ink .lp-tile .lp-h3 { color: #fff; }
.lp-on-ink .lp-tile .lp-body { color: rgba(255,255,255,0.65); }
.lp-sol__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.75rem; }
.lp-sol__agents { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.lp-sol__agents a { font-size: 0.8rem; font-weight: 700; padding: 0.35rem 0.7rem; border-radius: 999px; border: 1px solid var(--lp-line); color: var(--lp-ink); text-decoration: none; background: #fff; }
.lp-on-ink .lp-sol__agents a { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: #fff; }
.lp-sol.is-flag .lp-h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
