/* Lexora public home — preview layout + shared RvLexora blue theme */
.lx-rv {
  --ink: var(--lx-ink, #132238);
  --ink-2: var(--lx-navy-2, #25364d);
  --muted: var(--lx-muted, #637083);
  --line: var(--lx-line, #dfe5ec);
  --paper: var(--lx-surface, #ffffff);
  --mist: var(--lx-bg, #f4f7fa);
  --blue: var(--lx-blue, #1f5eff);
  --blue-dark: var(--lx-blue-hover, #1745bd);
  --blue-soft: var(--lx-blue-soft, #edf2ff);
  --warm: #c8b28c;
  --success: var(--lx-green, #1f7a4f);
  --shadow: var(--lx-shadow, 0 24px 70px rgba(19, 34, 56, 0.13));
  --radius: 22px;
  --max: 1180px;
  --hero-grad: var(--lx-cta-grad, linear-gradient(135deg, #17345b, #1f5eff));
  color: var(--ink);
  background: var(--paper);
  font-family: var(--lx-font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.lx-rv *,
.lx-rv *::before,
.lx-rv *::after {
  box-sizing: border-box;
}

.lx-rv a {
  color: inherit;
  text-decoration: none;
}

.lx-rv button,
.lx-rv input,
.lx-rv select {
  font: inherit;
}

.lx-rv img {
  display: block;
  max-width: 100%;
}

.lx-rv .container {
  width: min(var(--max), calc(100% - (var(--lx-site-gutter, 1.25rem) * 2)));
  margin-inline: auto;
}

.lx-rv .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.lx-rv .eyebrow:before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--blue);
}

.lx-rv h1,
.lx-rv h2,
.lx-rv h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.lx-rv h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 750;
}

.lx-rv h2 {
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  font-weight: 740;
}

.lx-rv h3 {
  font-size: 1.3rem;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.lx-rv p {
  margin: 0;
  color: var(--muted);
}

.lx-rv .lead {
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.lx-rv .btn {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 750;
  cursor: pointer;
  transition: 0.24s ease;
}

.lx-rv .btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 25px var(--lx-blue-glow, rgba(50, 138, 159, 0.22));
}

.lx-rv .btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  color: white;
}

.lx-rv .btn-secondary {
  background: white;
  border-color: var(--line);
  color: var(--ink);
}

.lx-rv .btn-secondary:hover {
  background: var(--mist);
  transform: translateY(-2px);
  color: var(--ink);
}

.lx-rv .announcement,
.lx-rv > .lx-site-announcement {
  padding: 9px 20px;
  text-align: center;
  background: #eef3ff;
  color: #31517d;
  font-size: 0.86rem;
  font-weight: 650;
  border-bottom: 1px solid #dfe7f7;
}

.lx-rv > header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(223, 229, 236, 0.9);
}

.lx-rv > .lx-site-nav-shell > .lx-site-nav {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.lx-rv .nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lx-rv .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 780;
  font-size: 1.18rem;
  color: var(--ink);
  font-family: var(--lx-font);
}

.lx-rv .brand:has(.brand-logo),
.lx-rv .brand:has(.lx-brand__logo) {
  height: 56px;
  overflow: hidden;
}

.lx-rv .brand-logo {
  height: calc(56px / 0.46);
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
}

.lx-rv .brand-mark {
  width: 39px;
  height: 39px;
  border-radius: 11px;
  background: var(--ink);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -0.05em;
  flex-shrink: 0;
  font-family: var(--lx-font);
}

.lx-rv .brand-text-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lx-rv .nav-links {
  display: flex;
  gap: 28px;
  color: #48596d;
  font-size: 0.94rem;
  font-weight: 650;
}

.lx-rv .nav-links a:hover {
  color: var(--blue);
}

.lx-rv .nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lx-rv .nav-actions .login {
  font-weight: 700;
  color: #48596d;
  padding: 0 8px;
}

.lx-rv .nav-actions .login:hover {
  color: var(--blue);
}

.lx-rv .hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 74px;
  background: linear-gradient(180deg, #fbfdff 0%, #fff 76%);
}

.lx-rv .hero:before {
  content: "";
  position: absolute;
  width: 590px;
  height: 590px;
  border-radius: 50%;
  right: -190px;
  top: -230px;
  background: radial-gradient(circle, rgba(31, 94, 255, 0.13), rgba(31, 94, 255, 0) 67%);
}

.lx-rv .hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 64px;
}

.lx-rv .hero-copy {
  position: relative;
  z-index: 2;
}

.lx-rv .hero-copy h1 {
  max-width: 760px;
  margin-top: 20px;
}

.lx-rv .hero-copy h1 span {
  color: var(--blue);
}

.lx-rv .hero-copy .lead {
  max-width: 650px;
  margin-top: 26px;
}

.lx-rv .hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.lx-rv .hero-microcopy {
  margin-top: 12px;
  color: #667386;
  font-size: 0.86rem;
  font-weight: 650;
}

.lx-rv .hero-followup {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-top: 15px;
  color: #647286;
  font-size: 0.88rem;
  font-weight: 700;
}

.lx-rv .hero-followup a,
.lx-rv .walkthrough-link {
  color: var(--blue);
}

.lx-rv .walkthrough-link {
  padding: 0;
  border: 0;
  background: transparent;
  font-weight: 750;
  cursor: pointer;
}

.lx-rv .hero-followup a:hover,
.lx-rv .walkthrough-link:hover {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lx-rv .trustline {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 25px;
  color: #5e6c7e;
  font-size: 0.9rem;
  font-weight: 650;
}

.lx-rv .trustline span:before {
  content: "\2713";
  color: var(--success);
  margin-right: 7px;
}

.lx-rv .hero-visual {
  position: relative;
  min-height: 560px;
}

.lx-rv .hero-product {
  position: absolute;
  inset: 15px 0 40px 22px;
  border-radius: 26px;
  overflow: hidden;
  background: #111d2d;
  border: 1px solid #25364d;
  box-shadow: var(--shadow);
}

.lx-rv .hero-product__chrome {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 15px;
  color: #a8b7ca;
}

.lx-rv .hero-product__chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #516278;
}

.lx-rv .hero-product__chrome small {
  margin-left: auto;
  font-size: 0.69rem;
  font-weight: 700;
}

.lx-rv .hero-product__app {
  display: grid;
  grid-template-columns: 52px 1fr;
  height: calc(100% - 42px);
  margin: 0 9px 9px;
  overflow: hidden;
  border-radius: 17px;
  background: #f4f7fb;
}

.lx-rv .hero-product__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding-top: 17px;
  background: #172a43;
}

.lx-rv .hero-product__rail b {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 8px;
  color: #fff;
  background: #1f5eff;
  font-size: 0.72rem;
}

.lx-rv .hero-product__rail i {
  width: 17px;
  height: 7px;
  border-radius: 99px;
  background: #6b7e96;
  opacity: 0.75;
}

.lx-rv .hero-product__main {
  min-width: 0;
  padding: 22px;
}

.lx-rv .hero-product__head,
.lx-rv .hero-product__panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lx-rv .hero-product__head small,
.lx-rv .hero-product__head strong {
  display: block;
}

.lx-rv .hero-product__head small {
  color: #8491a3;
  font-size: 0.67rem;
}

.lx-rv .hero-product__head strong {
  margin-top: 2px;
  color: var(--ink);
  font-size: 1.05rem;
}

.lx-rv .hero-product__head > span {
  padding: 6px 10px;
  border: 1px solid #dce3ec;
  border-radius: 999px;
  color: #526175;
  background: #fff;
  font-size: 0.65rem;
  font-weight: 800;
}

.lx-rv .hero-product__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 18px;
}

.lx-rv .hero-product__metrics > div {
  min-width: 0;
  padding: 13px 11px;
  border: 1px solid #e0e6ed;
  border-radius: 12px;
  background: #fff;
}

.lx-rv .hero-product__metrics small,
.lx-rv .hero-product__metrics strong,
.lx-rv .hero-product__metrics em {
  display: block;
}

.lx-rv .hero-product__metrics small {
  color: #8793a3;
  font-size: 0.58rem;
}

.lx-rv .hero-product__metrics strong {
  overflow: hidden;
  margin-top: 5px;
  color: var(--ink);
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lx-rv .hero-product__metrics em {
  margin-top: 4px;
  color: #1f7a4f;
  font-size: 0.56rem;
  font-style: normal;
}

.lx-rv .hero-product__panel {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid #e0e6ed;
  border-radius: 13px;
  background: #fff;
}

.lx-rv .hero-product__panel-head {
  padding-bottom: 9px;
  color: var(--ink);
  font-size: 0.72rem;
}

.lx-rv .hero-product__panel-head span {
  color: var(--blue);
  font-size: 0.6rem;
  font-weight: 750;
}

.lx-rv .hero-product__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px 54px;
  gap: 7px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #edf0f4;
  color: #33445a;
  font-size: 0.61rem;
}

.lx-rv .hero-product__row span,
.lx-rv .hero-product__row small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lx-rv .hero-product__row small {
  margin-top: 2px;
  color: #8793a3;
}

.lx-rv .hero-product__row b {
  color: var(--ink);
  text-align: right;
}

.lx-rv .hero-product__row em {
  padding: 4px 5px;
  border-radius: 999px;
  color: #1f7a4f;
  background: #eaf8f0;
  font-size: 0.53rem;
  font-style: normal;
  font-weight: 750;
  text-align: center;
}

.lx-rv .hero-product__play {
  position: absolute;
  z-index: 6;
  right: 22px;
  bottom: 14px;
  display: grid;
  grid-template-columns: 38px auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(223, 229, 236, 0.95);
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 32px rgba(19, 34, 56, 0.17);
  cursor: pointer;
  transition: 0.2s ease;
}

.lx-rv .hero-product__play:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(19, 34, 56, 0.21);
}

.lx-rv .hero-product__play > span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding-left: 2px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
}

.lx-rv .hero-product__play strong {
  font-size: 0.76rem;
  text-align: left;
}

.lx-rv .hero-product__play small {
  color: #7b8797;
  font-size: 0.65rem;
  text-align: left;
}

.lx-rv .floating {
  position: absolute;
  z-index: 4;
  background: white;
  border: 1px solid rgba(223, 229, 236, 0.9);
  border-radius: 17px;
  box-shadow: 0 18px 45px rgba(19, 34, 56, 0.16);
  padding: 17px 18px;
}

.lx-rv .floating.invoice {
  left: 0;
  bottom: 0;
  width: 255px;
}

.lx-rv .floating.payment {
  right: -13px;
  top: 48px;
  width: 205px;
}

.lx-rv .floating .label {
  color: #7b8797;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lx-rv .floating .amount {
  font-size: 1.55rem;
  font-weight: 800;
  margin-top: 4px;
  color: var(--ink);
}

.lx-rv .status {
  display: inline-flex;
  margin-top: 7px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #eaf8f0;
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 750;
}

.lx-rv .brand-strip {
  border-block: 1px solid var(--line);
  padding: 24px 0;
  background: #fff;
}

.lx-rv .brand-strip-inner {
  display: flex;
  justify-content: center;
  gap: 42px;
  flex-wrap: wrap;
  color: #6a7687;
  font-weight: 700;
  font-size: 0.92rem;
}

.lx-rv .cross-border {
  background: #f7f9fc;
}

.lx-rv .cross-border-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 72px;
  align-items: center;
}

.lx-rv .cross-border h2 {
  margin-top: 16px;
}

.lx-rv .cross-border .lead {
  margin-top: 22px;
}

.lx-rv .cross-border-cards {
  display: grid;
  gap: 13px;
}

.lx-rv .cross-border-cards article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.lx-rv .cross-border-cards h3 {
  font-size: 1.08rem;
}

.lx-rv .cross-border-cards p {
  margin-top: 5px;
  font-size: 0.9rem;
}

.lx-rv .market-flag {
  display: grid;
  place-items: center;
  width: 46px;
  height: 38px;
  border-radius: 10px;
  color: #fff;
  background: #1f5eff;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.lx-rv .market-flag--tax {
  background: #0f766e;
}

.lx-rv .market-flag--split {
  color: var(--blue);
  background: var(--blue-soft);
  font-size: 1.1rem;
}

.lx-rv section:not(.lx-sales-chat) {
  padding: 100px 0;
}

.lx-rv .section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.lx-rv .section-head h2 {
  margin-top: 16px;
}

.lx-rv .section-head p {
  margin-top: 20px;
  font-size: 1.07rem;
}

.lx-rv .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.lx-rv .story-photo {
  position: relative;
}

.lx-rv .story-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.lx-rv .story-note {
  position: absolute;
  right: -24px;
  bottom: 30px;
  background: var(--ink);
  color: #fff;
  max-width: 270px;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 20px 45px rgba(19, 34, 56, 0.22);
}

.lx-rv .story-note strong {
  font-size: 1.45rem;
  color: #fff;
}

.lx-rv .story-note p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 6px;
}

.lx-rv .story-copy h2 {
  margin-top: 16px;
}

.lx-rv .story-copy > p {
  margin-top: 22px;
  font-size: 1.07rem;
}

.lx-rv .benefits {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.lx-rv .benefit {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: start;
}

.lx-rv .benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.lx-rv .benefit p {
  font-size: 0.94rem;
  margin-top: 4px;
}

.lx-rv .features {
  background: var(--mist);
}

.lx-rv .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lx-rv .feature-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: 0.25s ease;
  min-height: 245px;
}

.lx-rv .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(19, 34, 56, 0.09);
}

.lx-rv .feature-icon {
  width: 45px;
  height: 45px;
  border-radius: 13px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 850;
}

.lx-rv .feature-card h3 {
  margin-top: 38px;
}

.lx-rv .feature-card p {
  margin-top: 12px;
}

.lx-rv .product-showcase {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: center;
}

.lx-rv .product-tabs {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.lx-rv .product-tab {
  width: 100%;
  text-align: left;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 17px 18px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 750;
  transition: 0.2s;
}

.lx-rv .product-tab.active {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--blue);
}

.lx-rv .product-screen {
  background: #111d2d;
  border-radius: 28px;
  padding: 12px;
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateY(-2deg);
}

.lx-rv .screen-top {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
}

.lx-rv .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3b4b60;
}

.lx-rv .screen-body {
  background: #f6f8fb;
  border-radius: 19px;
  min-height: 515px;
  padding: 24px;
}

.lx-rv .screen-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lx-rv .mock-title {
  height: 12px;
  width: 145px;
  border-radius: 8px;
  background: #25364d;
}

.lx-rv .metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.lx-rv .metric {
  background: #fff;
  border: 1px solid #e4e9ef;
  border-radius: 14px;
  padding: 16px;
}

.lx-rv .metric small {
  color: #8290a2;
}

.lx-rv .metric strong {
  display: block;
  font-size: 1.35rem;
  margin-top: 5px;
  color: var(--ink);
}

.lx-rv .mock-panel {
  margin-top: 14px;
  background: #fff;
  border: 1px solid #e4e9ef;
  border-radius: 15px;
  padding: 18px;
  color: var(--ink);
}

.lx-rv .invoice-line {
  display: grid;
  grid-template-columns: 1fr 120px 75px;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid #edf0f4;
  font-size: 0.84rem;
  align-items: center;
}

.lx-rv .invoice-line:last-child {
  border-bottom: 0;
}

.lx-rv .pill {
  padding: 4px 8px;
  border-radius: 999px;
  background: #eaf8f0;
  color: var(--success);
  font-size: 0.7rem;
  text-align: center;
  font-weight: 750;
}

.lx-rv .security {
  background: var(--ink);
  color: white;
  overflow: hidden;
}

.lx-rv .security .eyebrow {
  color: #8fb0ff;
}

.lx-rv .security .eyebrow:before {
  background: #8fb0ff;
}

.lx-rv .security-head {
  max-width: 780px;
}

.lx-rv .security-head h2 {
  margin-top: 16px;
  color: #fff;
}

.lx-rv .security-head p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.06rem;
}

.lx-rv .security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.lx-rv .security-grid article {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.055);
}

.lx-rv .security-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #fff;
  background: #1f5eff;
  font-size: 0.72rem;
  font-weight: 850;
}

.lx-rv .security-grid h3 {
  margin-top: 28px;
  color: #fff;
}

.lx-rv .security-grid p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.lx-rv .faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
}

.lx-rv .faq-list {
  border-top: 1px solid var(--line);
}

.lx-rv .faq-item {
  border-bottom: 1px solid var(--line);
}

.lx-rv .faq-question {
  width: 100%;
  border: 0;
  background: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  text-align: left;
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
}

.lx-rv .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.lx-rv .faq-answer p {
  padding-bottom: 22px;
}

.lx-rv .faq-item.open .faq-answer {
  max-height: 220px;
}

.lx-rv .faq-item.open .plus {
  transform: rotate(45deg);
}

.lx-rv .plus {
  font-size: 1.4rem;
  transition: 0.25s;
}

.lx-rv .cta-wrap {
  padding: 0 0 90px;
}

.lx-rv .cta {
  border-radius: 30px;
  background: var(--hero-grad);
  color: white;
  padding: 65px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
}

.lx-rv .cta h2 {
  max-width: 690px;
  color: #fff;
}

.lx-rv .cta p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 14px;
}

.lx-rv .cta .btn {
  background: white;
  color: var(--ink);
  white-space: nowrap;
}

.lx-rv .cta .btn:hover {
  background: #f4f7fa;
  color: var(--ink);
}

.lx-rv .cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lx-rv .cta .btn-demo {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}

.lx-rv .cta .btn-demo:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.lx-rv > footer {
  padding: 45px 0;
  border-top: 1px solid var(--line);
}

.lx-rv .footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.lx-rv .footer-brand-text {
  font-size: 0.78rem;
  color: #718093;
  font-weight: 500;
}

.lx-rv .footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: #667386;
  font-size: 0.92rem;
  align-items: center;
}

.lx-rv .footer-links a:hover {
  color: var(--blue);
}

.lx-rv .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.lx-rv .reveal.visible {
  opacity: 1;
  transform: none;
}

.lx-rv .mobile-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--ink);
}

.lx-rv .nav-links.is-open {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  top: 72px;
  flex-direction: column;
  gap: 0;
  background: white;
  border-bottom: 1px solid var(--line);
  padding: 12px 20px 20px;
  box-shadow: 0 16px 30px rgba(19, 34, 56, 0.08);
}

.lx-rv .nav-links.is-open a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 980px) {
  .lx-rv .hero-grid,
  .lx-rv .story-grid,
  .lx-rv .cross-border-grid,
  .lx-rv .product-showcase,
  .lx-rv .faq-layout {
    grid-template-columns: 1fr;
  }

  .lx-rv .hero-visual {
    min-height: 520px;
  }

  .lx-rv .hero-product {
    inset: 0 15px 40px 35px;
  }

  .lx-rv .security-grid {
    grid-template-columns: 1fr;
  }

  .lx-rv .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lx-rv > .lx-site-nav-shell .lx-site-nav__brand {
    max-width: none;
  }

  .lx-rv .story-note {
    right: 10px;
  }

  .lx-rv .product-screen {
    transform: none;
  }
}

@media (max-width: 640px) {
  .lx-rv .container {
    width: min(100% - 26px, var(--max));
  }

  .lx-rv .announcement {
    font-size: 0.78rem;
  }

  .lx-rv .nav {
    height: 64px;
  }

  .lx-rv .nav-actions .btn {
    display: none;
  }

  .lx-rv .hero {
    padding: 66px 0 54px;
  }

  .lx-rv .hero-grid {
    gap: 40px;
  }

  .lx-rv .hero-visual {
    min-height: 455px;
  }

  .lx-rv .hero-product {
    inset: 0 0 44px 18px;
  }

  .lx-rv .floating.payment {
    right: 0;
    top: 20px;
    width: 175px;
  }

  .lx-rv .floating.invoice {
    width: 220px;
  }

  .lx-rv section:not(.lx-sales-chat) {
    padding: 76px 0;
  }

  .lx-rv .feature-grid {
    grid-template-columns: 1fr;
  }

  .lx-rv .story-photo img {
    height: 430px;
  }

  .lx-rv .metrics {
    grid-template-columns: 1fr;
  }

  .lx-rv .screen-body {
    padding: 14px;
    min-height: 475px;
  }

  .lx-rv .invoice-line {
    grid-template-columns: 1fr 62px;
  }

  .lx-rv .invoice-line .pill {
    display: none;
  }

  .lx-rv .hero-product__main {
    padding: 14px;
  }

  .lx-rv .hero-product__metrics {
    grid-template-columns: 1fr 1fr;
  }

  .lx-rv .hero-product__metrics > div:last-child {
    display: none;
  }

  .lx-rv .hero-product__row {
    grid-template-columns: minmax(0, 1fr) 68px;
  }

  .lx-rv .hero-product__row em {
    display: none;
  }

  .lx-rv .cta {
    padding: 46px 26px;
    display: block;
  }

  .lx-rv .cta .btn {
    margin-top: 24px;
  }

  .lx-rv .brand-strip-inner {
    gap: 22px;
  }
}

/* Landing shell resets (hide old public chrome styles) */
body.lx-body--landing {
  margin: 0;
  background: #fff;
}

body.lx-body--landing .lx-public--landing {
  min-height: 100vh;
  background: #fff;
}

body.lx-body--landing .lx-public--landing::before {
  display: none;
}

body.lx-body--landing .lx-public__main--landing {
  padding: 0;
  max-width: none;
  width: 100%;
}

/* Walkthrough modal — video embed slot is wired when the public URL is supplied. */
.walkthrough-modal {
  width: min(920px, calc(100vw - 28px));
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  color: #132238;
  background: #fff;
  box-shadow: 0 35px 90px rgba(9, 22, 40, 0.35);
}

.walkthrough-modal::backdrop {
  background: rgba(9, 22, 40, 0.7);
  backdrop-filter: blur(5px);
}

.walkthrough-modal__card {
  padding: 24px;
}

.walkthrough-modal__head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.walkthrough-modal__head .eyebrow {
  color: #1f5eff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.walkthrough-modal__head h2 {
  margin: 8px 0 0;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  letter-spacing: -0.035em;
}

.walkthrough-modal__close {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid #dfe5ec;
  border-radius: 50%;
  color: #526175;
  background: #fff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.walkthrough-modal__stage {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  margin-top: 20px;
  border-radius: 17px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(31, 94, 255, 0.35), transparent 34%),
    linear-gradient(145deg, #111d2d, #17345b);
}

.walkthrough-modal__placeholder {
  max-width: 500px;
  padding: 30px;
  color: #fff;
  text-align: center;
}

.walkthrough-modal__play {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  padding-left: 4px;
  border-radius: 50%;
  color: #1f5eff;
  background: #fff;
  font-size: 1.35rem;
}

.walkthrough-modal__placeholder strong {
  display: block;
  font-size: 1.25rem;
}

.walkthrough-modal__placeholder p {
  margin: 8px 0 22px;
  color: rgba(255, 255, 255, 0.72);
}

.walkthrough-modal__placeholder .btn {
  display: inline-flex;
  min-height: 46px;
  padding: 0 18px;
  align-items: center;
  border-radius: 999px;
  color: #fff;
  background: #1f5eff;
  font-weight: 750;
  text-decoration: none;
}

/* Sales assistant kept from app chrome */
.lx-rv .lx-sales-chat__fab,
.lx-rv ~ .lx-sales-chat__fab {
  z-index: 60;
}
