/* Lexa Shield deck — presentation UI (1280×720, fixed type scale) */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Sora:wght@600;700;800&display=swap");

:root {
  --ls-navy: #0d1b3d;
  --ls-navy-2: #162447;
  --ls-cyan: #48c1e2;
  --ls-ink: #12141f;
  --ls-muted: #5c6478;
  --ls-line: #d5dae6;
  --ls-soft: #eef1f6;
  --ls-red: #c81e2a;
  --ls-orange: #d97706;
  --ls-green: #15803d;
  --ls-purple: #5b4d8a;
  --ls-slide-w: 1280px;
  --ls-slide-h: 720px;
  --ls-pad: 48px;
  --ls-logo-h: 40px;
  --ls-gap: 24px;
  --ls-font: "Manrope", "Segoe UI", sans-serif;
  --ls-display: "Sora", "Manrope", sans-serif;
}

/* ===== Deck chrome (viewer) — full viewport hero ===== */
.story-deck {
  position: relative;
  width: 100%;
  max-width: none;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background: linear-gradient(145deg, #101322 0%, #1f2342 48%, #2a2f56 100%);
  box-shadow: none;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  font-family: var(--ls-font);
}
.story-deck-stage {
  position: relative;
  overflow: hidden;
  min-height: 0;
  perspective: 1800px;
}
.story-deck:fullscreen,
.story-deck:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  margin: 0;
  border-radius: 0;
  min-height: 100vh;
  border: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
}
.story-deck:fullscreen .story-deck-stage,
.story-deck:-webkit-full-screen .story-deck-stage {
  min-height: 0;
  padding-bottom: 8px;
}
.story-deck:fullscreen .story-deck-ui,
.story-deck:-webkit-full-screen .story-deck-ui {
  position: relative;
  z-index: 80;
  flex-shrink: 0;
  padding: 10px 18px calc(18px + env(safe-area-inset-bottom, 0px));
  background: rgba(8, 12, 22, 0.98);
  box-shadow: 0 -10px 28px rgba(0, 0, 0, 0.35);
  max-height: none;
  overflow: visible;
}
.story-deck:fullscreen .story-btn,
.story-deck:-webkit-full-screen .story-btn {
  min-height: 44px;
}
.story-deck-stage {
  position: relative;
  overflow: hidden;
  min-height: 0;
  perspective: 1800px;
}
.story-camera {
  position: absolute;
  inset: 0;
  transform-origin: 0 0;
  will-change: transform;
}
.story-world { position: absolute; left: 0; top: 0; width: 1px; height: 1px; }
.story-vignette {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 3;
  background: radial-gradient(circle at center, transparent 55%, rgba(10, 12, 22, 0.28) 100%);
}
.story-deck-ui {
  display: grid;
  gap: 12px;
  padding: 14px 18px 16px;
  background: linear-gradient(180deg, rgba(16, 19, 34, 0.15), rgba(16, 19, 34, 0.94));
  color: #fff;
  z-index: 4;
}
.story-deck-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.story-deck-top .eyebrow { color: rgba(177, 180, 194, 0.95); margin: 0; }
.story-deck-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}
.story-dots { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; }
.story-dot {
  width: 10px; height: 10px; border-radius: 999px; border: 0;
  background: rgba(255, 255, 255, 0.28); cursor: pointer; padding: 0;
}
.story-dot.active {
  background: var(--ls-cyan);
  box-shadow: 0 0 0 3px rgba(72, 193, 226, 0.28);
  width: 22px;
}
.story-deck-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.story-deck-actions-left,
.story-deck-actions-right {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.story-edition {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 6px 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.story-edition-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.78;
}
.story-edition select {
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 700;
  min-height: 36px;
  min-width: 12rem;
  max-width: min(42vw, 22rem);
  padding: 0 28px 0 4px;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: calc(100% - 14px) 55%, calc(100% - 9px) 55%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.story-edition select:focus-visible {
  outline: 2px solid var(--ls-cyan);
  outline-offset: 2px;
  border-radius: 8px;
}
.story-edition option {
  color: #102038;
  background: #fff;
}
.story-btn {
  min-height: 40px; min-width: 42px; padding: 0 14px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28); background: rgba(255, 255, 255, 0.08);
  color: #fff; font-weight: 700; cursor: pointer; font-family: inherit;
}
.story-btn:hover { background: rgba(255, 255, 255, 0.16); }
.story-btn.primary { background: var(--ls-cyan); border-color: var(--ls-cyan); color: #102038; }
.story-btn.ghost { background: transparent; }
.story-btn.is-on { background: rgba(72, 193, 226, 0.22); border-color: var(--ls-cyan); }

/* ===== Slide frame ===== */
.story-slide {
  position: absolute;
  left: 0; top: 0;
  width: var(--ls-slide-w);
  height: var(--ls-slide-h);
  transform-origin: top left;
  opacity: 0.28;
  filter: saturate(0.7);
  transition: opacity .5s ease, filter .5s ease;
  pointer-events: none;
}
.story-slide.is-active {
  opacity: 1;
  filter: none;
  z-index: 2;
  pointer-events: auto;
}
.ls-frame {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  position: relative;
  border: 2px solid #9aa6b8;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.75),
    0 0 0 1px rgba(180, 190, 205, 0.55);
}
.ls-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(
    125deg,
    #f8fafc 0%,
    #c5ceda 22%,
    #8e9aab 40%,
    #eef2f7 55%,
    #a7b2c2 72%,
    #f5f7fa 90%,
    #7f8b9c 100%
  );
  background-size: 240% 240%;
  animation: ls-metal-sheen 8s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 24;
}
@keyframes ls-metal-sheen {
  0% { background-position: 0% 40%; }
  100% { background-position: 100% 60%; }
}
.story-slide.is-active .ls-frame {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(180, 190, 205, 0.65);
}

.ls-slide {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: var(--ls-pad);
  position: relative;
  overflow: hidden;
  background: #fff;
  color: var(--ls-ink);
  font-family: var(--ls-font);
  display: flex;
  flex-direction: column;
}

/* Brand + chrome */
.ls-brand {
  display: block;
  height: var(--ls-logo-h);
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
  position: relative;
  z-index: 3;
}
.ls-brand--light {
  filter: brightness(0) invert(1);
}
.ls-rule {
  height: 1px;
  background: var(--ls-line);
  margin: 14px 0 18px;
  flex: 0 0 auto;
}
.ls-tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 6px;
  background: var(--ls-navy);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  width: fit-content;
  margin-bottom: 12px;
}
.ls-title {
  margin: 0;
  font-family: var(--ls-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ls-ink);
  max-width: 18ch;
}
.ls-title.wide { max-width: 26ch; }
.ls-title.navy { color: var(--ls-navy); }
.ls-title.sm { font-size: 32px; }
.ls-body {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
  color: #2f3545;
}
.ls-caption {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: var(--ls-muted);
}

/* Entrance — opacity only, no travel that causes overlap */
.story-slide .anim {
  opacity: 0;
  transition: opacity .45s ease;
}
.story-slide.is-active .anim { opacity: 1; }
.story-slide.is-active .anim-d1 { transition-delay: .06s; }
.story-slide.is-active .anim-d2 { transition-delay: .12s; }
.story-slide.is-active .anim-d3 { transition-delay: .18s; }
.story-slide.is-active .anim-d4 { transition-delay: .24s; }
.story-slide.is-active .anim-d5 { transition-delay: .3s; }
.story-slide.is-active .anim-d6 { transition-delay: .36s; }

@keyframes ls-bar-rise {
  from { transform: scaleY(0.15); opacity: 0.4; }
  to { transform: scaleY(1); opacity: 1; }
}
@keyframes ls-glow-soft {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(72, 193, 226, 0.35)); }
  50% { filter: drop-shadow(0 0 22px rgba(72, 193, 226, 0.7)); }
}
@keyframes ls-scan-bg {
  0% { background-position: 0 0; }
  100% { background-position: 0 64px; }
}

/* ========== 01 Cover ========== */
.ls-s01 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  gap: 0;
}
.ls-s01-left {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
}
.ls-s01-left .ls-brand { height: 44px; max-width: 200px; }
.ls-s01-tagline {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--ls-muted);
  font-weight: 600;
}
.ls-s01 h2 {
  margin: 0;
  font-family: var(--ls-display);
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ls-ink);
  max-width: 14ch;
}
.ls-s01 .sub {
  margin: 16px 0 0;
  font-size: 20px;
  line-height: 1.4;
  color: #2a2f3a;
  max-width: 28ch;
}
.ls-s01 .copy {
  font-size: 12px;
  color: #9aa1b2;
  margin: 0;
  line-height: 1.35;
}
.ls-s01-right {
  position: relative;
  background: linear-gradient(160deg, #07101f 0%, #0d1b3d 50%, #14305a 100%);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.ls-s01-right::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(72, 193, 226, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 193, 226, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  animation: ls-scan-bg 14s linear infinite;
}
.ls-s01-shield {
  position: relative;
  z-index: 1;
  width: 220px;
  height: 250px;
  animation: ls-glow-soft 3.2s ease-in-out infinite;
}

/* ========== 02 Company ========== */
.ls-s02 { padding-bottom: 0; }
.ls-s02 .ls-title { margin-bottom: 28px; }
.ls-s02-band {
  margin-top: auto;
  margin-left: calc(-1 * var(--ls-pad));
  margin-right: calc(-1 * var(--ls-pad));
  background: var(--ls-navy);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 280px;
}
.ls-s02-band > div {
  padding: 36px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.ls-s02-band > div:first-child { border-right: 1px solid rgba(255, 255, 255, 0.28); }
.ls-s02-band h3 {
  margin: 0;
  font-family: var(--ls-display);
  font-size: 22px;
}
.ls-s02-band p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

/* ========== 03 Problem ========== */
.ls-s03-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 32px;
  min-height: 0;
  align-items: stretch;
}
.ls-s03 .ls-title { margin-bottom: 12px; }
.ls-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.ls-bullets li {
  display: grid;
  grid-template-columns: 5px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 18px;
  line-height: 1.35;
  color: #2a2f3a;
}
.ls-bullets li::before {
  content: "";
  width: 5px;
  min-height: 1.35em;
  height: 100%;
  background: #4a5166;
  border-radius: 2px;
  margin-top: 4px;
}
.ls-stat-stack {
  display: grid;
  gap: 14px;
  align-content: start;
}
.ls-stat {
  padding: 14px 16px 14px 18px;
  border-left: 4px solid var(--ls-cyan);
  background: var(--ls-soft);
  border-radius: 0 10px 10px 0;
}
.ls-stat h4 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 800;
}
.ls-stat p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: #3a4154;
}
.ls-stat .src {
  margin-top: 8px;
  font-size: 12px;
  color: #8a91a3;
}
.ls-stat .big {
  display: inline-block;
  font-family: var(--ls-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--ls-navy);
  line-height: 1;
  margin-right: 4px;
  vertical-align: -2px;
}

/* ========== 04 Solution ========== */
.ls-s04 { gap: 0; }
.ls-s04-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  min-height: 0;
  margin-top: 8px;
  align-items: stretch;
}
.ls-mock {
  background: var(--ls-soft);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.ls-mock-screen {
  position: absolute;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #d5dae8;
  box-shadow: 0 10px 24px rgba(16, 24, 48, 0.12);
  overflow: hidden;
}
.ls-mock-screen.main {
  width: 78%;
  height: 62%;
  left: 11%;
  bottom: 12%;
  z-index: 2;
}
.ls-mock-screen.back {
  width: 52%;
  height: 44%;
  right: 8%;
  top: 10%;
  z-index: 1;
  opacity: 0.92;
}
.ls-mock-ui {
  display: grid;
  grid-template-columns: 44px 1fr;
  height: 100%;
}
.ls-mock-side { background: var(--ls-navy); }
.ls-mock-body { padding: 10px; display: grid; gap: 8px; align-content: start; }
.ls-mock-bar {
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(90deg, #b8c4de, #e8edf7);
  transform-origin: left center;
}
.story-slide.is-active .ls-mock-bar { animation: ls-bar-rise .9s ease forwards; }
.ls-mock-row {
  height: 16px;
  border-radius: 4px;
  background: #f1f4fa;
  border: 1px solid #e4e8f2;
}
.ls-s04-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.ls-s04-copy .box {
  background: var(--ls-soft);
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 800;
  font-size: 18px;
  color: #333a4d;
}
.ls-s04-copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  color: #3a4154;
}
.ls-s04-tools {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.ls-tool {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 16px;
  color: var(--ls-navy);
  background: #fff;
  border: 1px solid var(--ls-line);
  border-radius: 10px;
  padding: 10px 12px;
}
.ls-mini-chart {
  width: 40px;
  height: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  align-items: end;
}
.ls-mini-chart i {
  display: block;
  background: var(--ls-cyan);
  border-radius: 2px 2px 0 0;
  height: var(--h, 50%);
  transform-origin: bottom;
}
.story-slide.is-active .ls-mini-chart i { animation: ls-bar-rise .85s ease forwards; }
.ls-how {
  margin: 18px calc(-1 * var(--ls-pad)) 0;
  background: var(--ls-navy);
  color: #fff;
  padding: 18px 48px 20px;
  position: relative;
  flex: 0 0 auto;
}
.ls-how-tab {
  position: absolute;
  left: 48px;
  top: -12px;
  background: #fff;
  color: var(--ls-navy);
  font-weight: 800;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 6px 6px 0 0;
}
.ls-how-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.ls-how-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
}
.ls-how-ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(72, 193, 226, 0.2);
  display: grid;
  place-items: center;
  font-size: 16px;
}
.ls-how-chevron { opacity: 0.65; font-size: 18px; }

/* ========== 05 Pipeline ========== */
.ls-s05-flow {
  flex: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
  min-height: 0;
  margin-top: 8px;
}
.ls-s05-top {
  display: grid;
  grid-template-columns: 1fr auto 1.15fr;
  gap: 16px;
  align-items: center;
}
.ls-node-card {
  background: var(--ls-soft);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  border: 2px solid transparent;
}
.ls-node-card h4 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.06em;
  font-weight: 800;
}
.ls-node-card.origem { border-color: rgba(200, 30, 42, 0.35); }
.ls-node-card.origem h4 { color: var(--ls-red); }
.ls-node-card.core {
  background: var(--ls-navy);
  color: #fff;
  border-color: var(--ls-navy);
  padding: 20px 18px;
}
.ls-node-card.core h4 { color: var(--ls-cyan); }
.ls-node-card.core .ls-brand {
  height: 32px;
  max-width: 160px;
  margin: 0 auto 12px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.ls-node-card small {
  display: block;
  font-size: 13px;
  line-height: 1.35;
  color: inherit;
  opacity: 0.9;
}
.ls-node-card.core strong { color: #fff; font-size: 15px; }
.ls-origem-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.ls-origem-tags span {
  font-size: 12px;
  font-weight: 700;
  background: #fff;
  border: 1px solid var(--ls-line);
  border-radius: 999px;
  padding: 4px 8px;
  color: #445;
}
.ls-flow-arrow {
  font-size: 28px;
  font-weight: 800;
  color: var(--ls-navy);
}
.ls-s05-out {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ls-out {
  background: #fff;
  border: 1px solid var(--ls-line);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
  display: grid;
  gap: 8px;
  justify-items: center;
}
.ls-out .ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  border: 2px solid currentColor;
  background: #fff;
}
.ls-out h4 {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 800;
  line-height: 1.25;
}
.ls-out.rev { color: var(--ls-orange); }
.ls-out.pub { color: var(--ls-purple); }
.ls-out.grc { color: #0e7490; }
.ls-out.aud { color: var(--ls-red); }
.ls-pipe-foot {
  margin-top: 10px;
  text-align: right;
  font-size: 14px;
  font-weight: 700;
  color: var(--ls-muted);
}

/* ========== 06 Why different ========== */
.ls-s06-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 20px;
  min-height: 0;
  margin-top: 4px;
  align-items: stretch;
}
.ls-feat-card {
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 12px;
}
.ls-feat-card:last-child { margin-bottom: 0; }
.ls-feat-card.orange { background: #f8ebe0; }
.ls-feat-card.green { background: #e6f5ec; }
.ls-feat-card .head {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.ls-feat-card.orange .head { background: var(--ls-orange); }
.ls-feat-card.green .head { background: var(--ls-green); }
.ls-feat-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  align-content: start;
  justify-content: start;
  font-size: 14px;
  color: #3a4154;
  font-weight: 700;
  line-height: 1.3;
}
.ls-ui-panel {
  display: grid;
  grid-template-rows: minmax(160px, 1fr) auto auto;
  gap: 10px;
  min-height: 0;
}
.ls-ui-shell {
  background: linear-gradient(160deg, #1a2140, #2a3358);
  border-radius: 14px;
  padding: 10px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px;
  min-height: 320px;
  height: 100%;
  color: #fff;
}
.ls-ui-nav {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px 8px;
  display: grid;
  gap: 8px;
  align-content: start;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}
.ls-ui-nav span {
  padding: 7px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}
.ls-ui-nav span.on { background: rgba(72, 193, 226, 0.22); color: #fff; }
.ls-ui-main {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ls-ink);
  border-radius: 10px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-content: start;
  font-size: 14px;
  min-height: 0;
}
.ls-ui-main strong { font-size: 15px; }
.ls-callouts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ls-callout {
  background: #fff;
  border: 1px solid var(--ls-line);
  border-radius: 10px;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.3;
  color: #2f3545;
}
.ls-callout strong {
  display: block;
  background: var(--ls-navy);
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.ls-callout .pad { padding: 8px 10px; }
.ls-callout .pct {
  font-family: var(--ls-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--ls-navy);
  line-height: 1.1;
}

/* ========== 07 AI ========== */
.ls-s07-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  min-height: 0;
  margin-top: 8px;
}
.ls-brain-col {
  background: var(--ls-soft);
  border-radius: 14px;
  padding: 16px 16px 14px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
  min-height: 0;
}
.ls-brain-col.gen { background: #f8e9ea; }
.ls-brain-col > h3 {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.3;
  min-height: 2.6em;
  display: grid;
  place-items: center;
}
.ls-brain-col.gen > h3 { color: var(--ls-red); font-size: 13px; }
.ls-brain {
  width: 96px;
  height: 96px;
  margin: 0 auto;
  border-radius: 50% 50% 46% 46%;
  display: grid;
  place-items: center;
}
.ls-brain.blue {
  background: linear-gradient(160deg, #2a4d8a, #0d1b3d);
  box-shadow: 0 0 28px rgba(72, 193, 226, 0.3);
}
.ls-brain.red {
  background: linear-gradient(160deg, #c23a45, #6d1218);
  box-shadow: 0 0 28px rgba(200, 30, 42, 0.25);
}
.ls-brain .core {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  color: var(--ls-navy);
  line-height: 1.15;
  padding: 4px;
}
.ls-brain.red .core { color: #7a1520; font-size: 10px; }
.ls-chip {
  background: #fff;
  border: 1px solid var(--ls-line);
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  color: #2f3545;
  text-align: center;
}
.ls-chip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  align-content: start;
  overflow: auto;
  min-height: 0;
}
.ls-brain-col.gen .ls-chip {
  border-color: #f0c2c5;
  color: #9a1d28;
  background: #fff;
}

/* ========== 08 DEMO ========== */
.ls-s08 {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ls-s08 .ls-brand { align-self: flex-start; }
.ls-s08 .ls-rule { width: 100%; }
.ls-demo-wrap {
  flex: 1;
  display: grid;
  place-items: center;
  position: relative;
}
.ls-demo-word {
  margin: 0;
  font-family: var(--ls-display);
  font-size: 96px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #1e5fa8;
  position: relative;
  z-index: 1;
}
.ls-demo-ring {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 2px dashed rgba(30, 95, 168, 0.28);
  border-radius: 50%;
  z-index: 0;
}

/* ========== 09 Use cases ========== */
.ls-usecases {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(115deg, #0c1428 0%, #1a2748 55%, #2c3f66 100%);
  color: #fff;
  display: grid;
  align-content: center;
  padding: 32px 36px;
  margin-top: 8px;
  min-height: 0;
}
.ls-usecases ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  max-width: 36ch;
}
.ls-usecases li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 18px;
  line-height: 1.25;
}
.ls-usecases li i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ls-cyan);
  box-shadow: 0 0 10px var(--ls-cyan);
  flex: 0 0 auto;
}
.ls-disclaimer {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--ls-muted);
  line-height: 1.35;
}

/* ========== 10 Laws ========== */
.ls-laws {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  max-width: 58ch;
}
.ls-laws li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  color: #2f3545;
  font-size: 18px;
  line-height: 1.3;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--ls-soft);
  border-left: 4px solid var(--ls-navy);
}
.ls-laws li span {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--ls-navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  flex: 0 0 auto;
}

/* ========== 11 Security ========== */
.ls-s11-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 20px;
  min-height: 0;
  margin-top: 8px;
}
.ls-sec-left {
  background: var(--ls-navy);
  color: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  display: grid;
  gap: 28px;
  align-content: center;
}
.ls-sec-block { display: grid; gap: 8px; }
.ls-sec-block .ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ls-cyan);
  display: grid;
  place-items: center;
  font-size: 18px;
  margin-bottom: 4px;
}
.ls-sec-block h4 { margin: 0; font-size: 18px; }
.ls-sec-block p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}
.ls-sec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-content: center;
}
.ls-sec-grid div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 700;
  color: #2f3545;
  line-height: 1.35;
  background: var(--ls-soft);
  border-radius: 10px;
  padding: 14px 12px;
}
.ls-sec-grid i {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  background: var(--ls-cyan);
  border-radius: 2px;
  flex: 0 0 auto;
}

/* ========== 12 Benefits ========== */
.ls-benefits {
  flex: 1;
  background: var(--ls-soft);
  border-radius: 14px;
  padding: 28px 22px 18px;
  position: relative;
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
  min-height: 0;
}
.ls-benefits-tab {
  position: absolute;
  left: 18px;
  top: -12px;
  background: #4a5166;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 6px;
}
.ls-ben-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  align-content: start;
}
.ls-ben-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  color: #2a2f3a;
}
.ls-arrow-ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  flex: 0 0 auto;
  margin-top: 1px;
}
.ls-arrow-ico.down { background: var(--ls-red); }
.ls-arrow-ico.up { background: var(--ls-green); }

/* ========== 13 Personalization ========== */
.ls-s13-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 16px;
  min-height: 0;
  margin-top: 8px;
}
.ls-mod-box {
  background: var(--ls-soft);
  border-radius: 14px;
  padding: 18px 20px;
  overflow: auto;
}
.ls-mod-box h3 { margin: 0 0 6px; font-size: 20px; }
.ls-mod-box .hint { margin: 0 0 14px; color: var(--ls-muted); font-size: 14px; line-height: 1.35; }
.ls-mod-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
}
.ls-mod-cols p {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  color: #333a4d;
}
.ls-mod-cols strong { color: var(--ls-ink); }
.ls-side-cards {
  display: grid;
  gap: 12px;
  grid-template-rows: 1fr 1fr;
}
.ls-side-card {
  background: var(--ls-navy);
  color: #fff;
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.ls-side-card h4 { margin: 0; font-size: 18px; }
.ls-side-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

/* ========== 14 Thanks ========== */
.ls-s14 {
  background:
    radial-gradient(circle at 18% 18%, rgba(72, 193, 226, 0.14), transparent 36%),
    var(--ls-navy);
  color: #fff;
  gap: 20px;
}
.ls-s14 .eyebrow {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}
.ls-s14 h2 {
  margin: 0;
  font-family: var(--ls-display);
  font-size: 36px;
  max-width: 18ch;
  line-height: 1.2;
}
.ls-quote {
  margin: 8px 0 0;
  background: #e8eaf0;
  color: #1c2233;
  border-radius: 12px;
  padding: 22px 28px 22px 28px;
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  max-width: 900px;
  position: relative;
}
.ls-quote::before {
  content: "“";
  position: absolute;
  left: 14px;
  top: 4px;
  font-size: 42px;
  font-style: normal;
  font-weight: 800;
  color: var(--ls-navy);
  opacity: 0.25;
  line-height: 1;
}
.ls-contact {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  font-size: 16px;
}
.ls-contact a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.ls-contact a:hover { border-bottom-color: var(--ls-cyan); }
.ls-contact strong { display: inline-block; min-width: 6rem; }
.ls-contact-gap { margin-top: 14px; }
.ls-social { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.li-ico {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
}
.li-ico svg { width: 18px; height: 18px; display: block; }

/* ===== v4 enhancements ===== */
.ls-s02 { padding-bottom: 0; }
.ls-s02 .ls-title { margin-bottom: 16px; }
.ls-s02-band--raised {
  min-height: 280px;
  margin-top: auto !important;
  box-shadow: none;
}
.ls-mv-ico {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(72, 193, 226, 0.2);
  color: var(--ls-cyan);
  display: grid;
  place-items: center;
}
.ls-mv-ico svg { width: 24px; height: 24px; }
.story-slide.is-active .ls-mv-ico { animation: ls-glow-soft 2.8s ease-in-out infinite; }

@keyframes ls-snow-grow {
  from { transform: scale(0.55); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@keyframes ls-snow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 30, 42, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(200, 30, 42, 0); }
}
.ls-snowball {
  margin-top: 12px;
  display: grid;
  gap: 10px;
  position: relative;
  padding-left: 8px;
}
.ls-snowball::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 18px;
  bottom: 52px;
  width: 3px;
  background: linear-gradient(180deg, #9aa3b8, var(--ls-red));
  border-radius: 999px;
}
.ls-snow-step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ls-snow-orb {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4a5166;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: grid;
  place-items: center;
  justify-self: center;
}
.ls-snow-step[data-step="1"] .ls-snow-orb { width: 28px; height: 28px; font-size: 12px; background: #6b7388; }
.ls-snow-step[data-step="2"] .ls-snow-orb { width: 34px; height: 34px; background: #555e75; }
.ls-snow-step[data-step="3"] .ls-snow-orb { width: 40px; height: 40px; background: #3f465c; }
.ls-snow-orb.danger {
  width: 46px;
  height: 46px;
  background: var(--ls-red);
  font-size: 16px;
}
.story-slide.is-active .ls-snow-orb {
  animation: ls-snow-grow .55s ease both;
}
.story-slide.is-active .ls-snow-step[data-step="2"] .ls-snow-orb { animation-delay: .12s; }
.story-slide.is-active .ls-snow-step[data-step="3"] .ls-snow-orb { animation-delay: .24s; }
.story-slide.is-active .ls-snow-step[data-step="4"] .ls-snow-orb {
  animation: ls-snow-grow .55s ease .36s both, ls-snow-pulse 1.8s ease .9s infinite;
}
.ls-snow-step p {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  color: #2a2f3a;
}
.ls-snow-result {
  margin-left: 52px;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(200, 30, 42, 0.12);
  color: var(--ls-red);
  font-weight: 800;
  font-size: 13px;
  width: fit-content;
}

.ls-dash-shot,
.ls-dash-mini {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--ls-line);
  background: var(--ls-soft);
  box-shadow: 0 14px 32px rgba(16, 24, 48, 0.12);
}
.ls-dash-shot {
  min-height: 280px;
  position: relative;
}
.ls-dash-shot img,
.ls-dash-mini img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.ls-dash-shot img { min-height: 280px; max-height: 320px; }
.ls-dash-mini { height: 88px; }
.ls-dash-mini img { max-height: 88px; }
.ls-tool-ico {
  width: 22px;
  height: 22px;
  color: var(--ls-navy);
  display: inline-grid;
  place-items: center;
}
.ls-tool-ico svg { width: 20px; height: 20px; }

/* Timeline progression */
.ls-timeline {
  flex: 1;
  display: grid;
  grid-template-columns: 1.2fr 1.35fr repeat(4, 0.85fr);
  gap: 10px;
  align-items: start;
  position: relative;
  margin-top: 10px;
  padding-top: 8px;
  min-height: 0;
}
.ls-tl-line {
  position: absolute;
  left: 8%;
  right: 4%;
  top: 118px;
  height: 4px;
  border-radius: 999px;
  background: #d0d6e4;
  z-index: 0;
}
.story-slide.is-active .ls-tl-line {
  background: linear-gradient(90deg, #c81e2a, #0d1b3d 28%, #d97706 48%, #5b4d8a 66%, #0e7490 82%, #c81e2a);
  background-size: 200% 100%;
  animation: ls-scan-bg 3.2s linear infinite;
}
.ls-tl-node {
  position: relative;
  z-index: 1;
  text-align: center;
  display: grid;
  gap: 8px;
  justify-items: center;
}
.ls-tl-node h4 {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 800;
  min-height: 2.4em;
  display: grid;
  align-items: end;
}
.ls-tl-node.origem h4 { color: var(--ls-red); }
.ls-tl-node.core h4 { color: var(--ls-navy); }
.ls-tl-node.rev h4 { color: var(--ls-orange); }
.ls-tl-node.pub h4 { color: var(--ls-purple); }
.ls-tl-node.grc h4 { color: #0e7490; }
.ls-tl-node.aud h4 { color: var(--ls-red); }
.ls-tl-orb {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 3px solid currentColor;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(16, 24, 48, 0.12);
  color: inherit;
  font-size: 22px;
}
.ls-tl-node.origem .ls-tl-orb { width: 118px; height: 118px; color: var(--ls-red); }
.ls-tl-node.core .ls-tl-orb {
  width: 130px;
  height: 130px;
  background: var(--ls-navy);
  border-color: var(--ls-navy);
  color: #fff;
}
.ls-tl-node.core .ls-tl-orb.solid .ls-brand {
  height: 28px;
  max-width: 120px;
  filter: brightness(0) invert(1);
}
.ls-tl-node.rev .ls-tl-orb { color: var(--ls-orange); }
.ls-tl-node.pub .ls-tl-orb { color: var(--ls-purple); }
.ls-tl-node.grc .ls-tl-orb { color: #0e7490; }
.ls-tl-node.aud .ls-tl-orb { color: var(--ls-red); }
.ls-tl-node small {
  font-size: 12px;
  color: var(--ls-muted);
  line-height: 1.3;
  max-width: 16ch;
}
.ls-tl-node.core small { color: var(--ls-navy); max-width: 18ch; }
.ls-tl-node.core strong { color: var(--ls-navy); font-size: 13px; }
.ls-origem-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  padding: 8px;
}
.ls-origem-tags span {
  font-size: 10px;
  font-weight: 700;
  background: #f4f6fb;
  border-radius: 999px;
  padding: 3px 6px;
  color: #445;
}

/* AI compare redesign */
.ls-ai-compare {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-height: 0;
  margin-top: 6px;
}
.ls-ai-col {
  border-radius: 14px;
  padding: 14px 14px 12px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  min-height: 0;
  overflow: hidden;
}
.ls-ai-col.control {
  background: linear-gradient(180deg, #e8eef8, #f5f7fb);
  border: 1px solid #c9d4e8;
}
.ls-ai-col.open {
  background: linear-gradient(180deg, #f8e9ea, #fdf6f6);
  border: 1px solid #f0c2c5;
}
.ls-ai-col header {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
}
.ls-ai-col h3 {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1.25;
}
.ls-ai-col.open h3 { color: var(--ls-red); font-size: 12px; }
.ls-ai-kicker {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--ls-muted);
}
.ls-ai-col.open .ls-ai-kicker { color: #9a1d28; }
.ls-ai-hero {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ls-navy);
  color: var(--ls-cyan);
  display: grid;
  place-items: center;
  position: relative;
}
.ls-ai-hero.warn { background: #8b1e28; color: #fff; }
.ls-ai-ring {
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(72, 193, 226, 0.45);
  border-radius: 50%;
  animation: ls-spin-slow 12s linear infinite;
  border-top-color: transparent;
}
.ls-ai-noise {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.25), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(255,200,200,.2), transparent 45%);
  animation: ls-scan-bg 4s linear infinite;
}
.ls-ai-core {
  position: relative;
  z-index: 1;
  font-weight: 800;
  font-size: 22px;
  display: grid;
  place-items: center;
}
.ls-ai-core svg { width: 28px; height: 28px; }
.ls-ai-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  align-content: start;
  overflow: auto;
  min-height: 0;
}
.ls-ai-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 8px;
  padding: 7px 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  color: #2f3545;
  border: 1px solid #dfe5f0;
}
.ls-ai-list.warn li {
  border-color: #f0c2c5;
  color: #9a1d28;
}
.ls-ai-list .ico {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ls-navy);
  color: #fff;
  font-size: 10px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.ls-ai-list.warn .ico { background: var(--ls-red); }

/* Use cases + laws */
.ls-usecases--split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  align-items: center;
}
.ls-usecases--split ul { max-width: none; }
.ls-usecases li .uc-ico {
  width: 22px;
  text-align: center;
  opacity: 0.9;
}
.ls-law-mods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ls-law-mods article {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(72, 193, 226, 0.35);
  border-radius: 12px;
  padding: 12px 10px;
  color: #fff;
  display: grid;
  gap: 4px;
  justify-items: start;
}
.ls-law-mods .mod-ico {
  width: 28px;
  height: 28px;
  color: var(--ls-cyan);
  display: grid;
  place-items: center;
}
.ls-law-mods .mod-ico svg { width: 20px; height: 20px; }
.ls-law-mods strong { font-size: 13px; line-height: 1.25; }
.ls-law-mods small { font-size: 11px; opacity: 0.85; }

/* Security v2 */
.ls-sec-v2 .ls-sec-left .ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ls-cyan);
  color: var(--ls-navy);
  display: grid;
  place-items: center;
}
.ls-sec-v2 .ls-sec-left .ico svg { width: 22px; height: 22px; }
.ls-sec-v2 .ls-sec-left .ico.pulse { animation: ls-glow-soft 2.6s ease-in-out infinite; }
.ls-sec-v2 .ls-sec-left .ico.delay { animation-delay: .4s; }
.ls-sec-tile {
  background: var(--ls-soft);
  border-radius: 12px;
  padding: 16px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 700;
  color: #2f3545;
  line-height: 1.35;
  border: 1px solid transparent;
  transition: border-color .3s ease, transform .3s ease;
}
.story-slide.is-active .ls-sec-tile {
  animation: ls-snow-grow .45s ease both;
}
.story-slide.is-active .ls-sec-tile:nth-child(2) { animation-delay: .06s; }
.story-slide.is-active .ls-sec-tile:nth-child(3) { animation-delay: .12s; }
.story-slide.is-active .ls-sec-tile:nth-child(4) { animation-delay: .18s; }
.story-slide.is-active .ls-sec-tile:nth-child(5) { animation-delay: .24s; }
.story-slide.is-active .ls-sec-tile:nth-child(6) { animation-delay: .3s; }
.ls-sec-tile i {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  background: var(--ls-cyan);
  border-radius: 2px;
  flex: 0 0 auto;
}

/* ROI */
.ls-roi {
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  padding-bottom: 14px;
  position: relative;
}
.ls-roi .ls-ben-list { gap: 12px; }
.ls-roi .ls-ben-list li { font-size: 14px; line-height: 1.35; padding: 2px 0; }
.ls-roi-figures {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 4px;
}
.ls-roi-figures .fig {
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--ls-line);
  font-size: 13px;
  font-weight: 700;
  color: #2f3545;
}
.ls-roi-figures .fig strong {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
  flex: 0 0 auto;
}
.ls-roi-figures .fig.down strong { background: var(--ls-red); }
.ls-roi-figures .fig.up strong { background: var(--ls-green); }
.ls-roi-figures .fig.ctrl strong { background: var(--ls-navy); }

/* Modules icons */
.ls-mod-visual p {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  align-items: start;
}
.ls-mod-visual .m-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--ls-line);
  display: grid;
  place-items: center;
  font-size: 14px;
}
.ls-side-card .side-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(72, 193, 226, 0.2);
  color: var(--ls-cyan);
  display: grid;
  place-items: center;
  margin-bottom: 4px;
}
.ls-side-card .side-ico svg { width: 20px; height: 20px; }

/* Thanks animated quote mark */
.ls-quote-mark {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(72, 193, 226, 0.45);
  display: grid;
  place-items: center;
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
}
.ls-quote-mark span {
  font-size: 56px;
  line-height: 1;
  color: var(--ls-cyan);
  font-family: Georgia, serif;
  transform: translateY(8px);
}
.story-slide.is-active .ls-quote-mark {
  animation: ls-glow-soft 2.8s ease-in-out infinite;
}
.ls-quote-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(72, 193, 226, 0.25), transparent 70%);
  animation: ls-scan-bg 3.5s linear infinite;
}

/* ===== Polish v5 — layout, motion, metallic rim helpers ===== */
.ls-title-oneline {
  max-width: none !important;
  white-space: nowrap;
  font-size: 26px !important;
  letter-spacing: -0.015em;
}
.ls-s01-shield-img {
  position: relative;
  z-index: 1;
  width: min(260px, 58%);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(72, 193, 226, 0.45));
  animation: ls-glow-soft 3.2s ease-in-out infinite, ls-soft-zoom 5.5s ease-in-out infinite;
}
@keyframes ls-soft-zoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.045); }
}
@keyframes ls-float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes ls-box-shine {
  0% { box-shadow: 0 0 0 0 rgba(72, 193, 226, 0.15); }
  50% { box-shadow: 0 0 22px 2px rgba(72, 193, 226, 0.35); }
  100% { box-shadow: 0 0 0 0 rgba(72, 193, 226, 0.15); }
}
@keyframes ls-arrow-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}
@keyframes ls-arrow-bob-up {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Problema — vertical snowball spread */
.ls-s03-grid > div:first-child {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}
.ls-snowball--spread {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 0;
  margin-top: 4px;
  padding-bottom: 2px;
}
.ls-snowball--spread::before {
  top: 22px;
  bottom: 86px;
}
.ls-snowball--spread > .ls-snow-step {
  flex: 0 0 auto;
}
.ls-snow-bottom {
  margin-top: auto;
  padding-top: 28px;
  display: grid;
  gap: 8px;
  flex: 0 0 auto;
}
.ls-snowball--spread .ls-snow-result {
  margin-left: 52px;
}

/* Solução how bar v2 */
.ls-how--v2 {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.ls-how--v2 .ls-how-left {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
}
.ls-how--v2 .ls-how-tab {
  position: static;
  justify-self: center;
  border-radius: 8px;
  padding: 8px 16px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 8px 18px rgba(0, 0, 0, 0.2);
}
.ls-how--v2 .ls-how-steps {
  margin-top: 0;
  justify-content: flex-end;
  gap: 14px;
}

/* Pipeline shield + live strip */
.ls-tl-brand {
  min-height: 28px;
  display: grid;
  place-items: end center;
}
.ls-tl-brand .ls-brand {
  height: 26px;
  max-width: 140px;
  filter: none;
}
.ls-tl-orb--lg {
  width: 132px !important;
  height: 132px !important;
}
.ls-shield-mark {
  width: 64px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(72, 193, 226, 0.55));
  animation: ls-soft-zoom 4.2s ease-in-out infinite;
}
.ls-tl-node.core .ls-tl-orb.solid {
  overflow: hidden;
}
.ls-pulse-orb {
  animation: ls-glow-soft 2.8s ease-in-out infinite;
}
.ls-tl-live {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(13, 27, 61, 0.06), rgba(72, 193, 226, 0.12), rgba(13, 27, 61, 0.06));
  border: 1px solid rgba(72, 193, 226, 0.28);
  font-size: 13px;
  font-weight: 700;
  color: var(--ls-navy);
}
.ls-tl-live b {
  color: #0b7ea6;
  font-variant-numeric: tabular-nums;
  min-width: 2.2ch;
  display: inline-block;
  text-align: right;
}

/* Why different — cleaner motion */
.ls-s06-grid .ls-ui-panel {
  grid-template-rows: minmax(180px, 1fr) auto;
}
.ls-glow-card {
  position: relative;
  overflow: hidden;
}
.story-slide.is-active .ls-glow-card {
  animation: ls-box-shine 3.4s ease-in-out infinite;
}
.story-slide.is-active .ls-glow-card:nth-child(2) { animation-delay: .2s; }
.story-slide.is-active .ls-glow-card:nth-child(3) { animation-delay: .4s; }
.story-slide.is-active .ls-glow-card:nth-child(4) { animation-delay: .6s; }
.story-slide.is-active .ls-ui-shell {
  animation: ls-soft-zoom 6s ease-in-out infinite;
  transform-origin: center;
}

/* Nossa IA motion extras */
.story-slide.is-active .ls-ai-col.control {
  animation: ls-box-shine 4s ease-in-out infinite;
}
.story-slide.is-active .ls-ai-hero {
  animation: ls-soft-zoom 4.5s ease-in-out infinite;
}
.ls-live-num {
  font-variant-numeric: tabular-nums;
  color: inherit;
}

/* Use cases — denser law grid + white subtitles + shine */
.ls-law-mods--many {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  max-height: 360px;
  overflow: auto;
  padding-right: 4px;
}
.ls-law-mods--many article {
  padding: 10px 8px;
  min-height: 0;
}
.ls-law-mods--many strong { font-size: 12px; }
.ls-law-mods--many small {
  font-size: 10px;
  color: #fff !important;
  opacity: 0.95;
}
.ls-shine {
  position: relative;
  overflow: hidden;
}
.ls-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.28), transparent 65%);
  transform: translateX(-120%);
  animation: ls-shine-sweep 3.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ls-shine-sweep {
  0%, 35% { transform: translateX(-120%); }
  55% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}
.story-slide.is-active .ls-shine {
  animation: ls-box-shine 3.6s ease-in-out infinite;
}
.story-slide.is-active .ls-shine:nth-child(2n) { animation-delay: .25s; }
.story-slide.is-active .ls-shine:nth-child(3n) { animation-delay: .5s; }

/* Security — viz on top, tiles bottom-aligned */
.ls-sec-v2 {
  align-items: stretch;
}
.ls-sec-right {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 12px;
  min-height: 0;
  height: 100%;
}
.ls-sec-viz {
  position: relative;
  border-radius: 14px;
  min-height: 168px;
  background:
    radial-gradient(circle at 50% 55%, rgba(72, 193, 226, 0.22), transparent 42%),
    linear-gradient(160deg, #0c1428, #1a2748 55%, #243a63);
  overflow: hidden;
  border: 1px solid rgba(72, 193, 226, 0.28);
}
.ls-sec-radar {
  position: absolute;
  inset: 12% 18%;
  border-radius: 50%;
  border: 1px solid rgba(72, 193, 226, 0.35);
  box-shadow: inset 0 0 0 28px rgba(72, 193, 226, 0.05);
  animation: ls-soft-zoom 5s ease-in-out infinite;
}
.ls-sec-radar::before,
.ls-sec-radar::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px dashed rgba(72, 193, 226, 0.4);
}
.ls-sec-radar::after { inset: 34%; border-style: solid; }
.ls-sec-nodes span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ls-cyan);
  box-shadow: 0 0 10px var(--ls-cyan);
  animation: ls-float-y 2.8s ease-in-out infinite;
}
.ls-sec-nodes span:nth-child(1) { left: 18%; top: 28%; animation-delay: 0s; }
.ls-sec-nodes span:nth-child(2) { left: 72%; top: 22%; animation-delay: .3s; }
.ls-sec-nodes span:nth-child(3) { left: 80%; top: 58%; animation-delay: .55s; }
.ls-sec-nodes span:nth-child(4) { left: 22%; top: 68%; animation-delay: .2s; }
.ls-sec-nodes span:nth-child(5) { left: 48%; top: 16%; animation-delay: .7s; }
.ls-sec-nodes span:nth-child(6) { left: 58%; top: 74%; animation-delay: .45s; }
.ls-sec-shield {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 58px;
  height: auto;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 14px rgba(72, 193, 226, 0.55));
  animation: ls-glow-soft 2.6s ease-in-out infinite;
}
.ls-sec-scan {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(72, 193, 226, 0.85), transparent);
  animation: ls-scan-y 3.2s linear infinite;
}
@keyframes ls-scan-y {
  0% { top: 18%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: 82%; opacity: 0; }
}
.ls-sec-live {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
}
.ls-sec-live b { color: var(--ls-cyan); margin-right: 4px; }
.ls-sec-v2 .ls-sec-grid {
  align-content: end;
  margin-top: 0;
}

/* ROI motion */
.ls-roi-meters {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 4px;
}
.ls-roi-meters .meter {
  background: #fff;
  border: 1px solid var(--ls-line);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--ls-muted);
}
.ls-roi-meters .meter b {
  color: var(--ls-navy);
  font-size: 18px;
  font-variant-numeric: tabular-nums;
}
.story-slide.is-active .ls-arrow-ico.down {
  animation: ls-arrow-bob 1.4s ease-in-out infinite, ls-glow-soft 2.4s ease-in-out infinite;
}
.story-slide.is-active .ls-arrow-ico.up {
  animation: ls-arrow-bob-up 1.4s ease-in-out infinite, ls-glow-soft 2.4s ease-in-out infinite;
}
.ls-roi-figures .fig-ico {
  display: grid !important;
  place-items: center;
  color: #fff;
}
.ls-roi-figures .fig-ico svg {
  width: 18px;
  height: 18px;
}
.story-slide.is-active .ls-roi-figures .fig {
  animation: ls-box-shine 3.2s ease-in-out infinite;
}
.story-slide.is-active .ls-roi-figures .fig:nth-child(2) { animation-delay: .2s; }
.story-slide.is-active .ls-roi-figures .fig:nth-child(3) { animation-delay: .4s; }

/* Personalização — cell spacing / clean edges */
.ls-mod-visual {
  gap: 14px 20px !important;
}
.ls-mod-visual p {
  background: #fff;
  border: 1px solid #d9deed;
  border-radius: 12px;
  padding: 12px 12px 12px 10px;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
  align-items: center !important;
}
.ls-mod-visual .m-ico {
  flex: 0 0 auto;
  box-shadow: 0 4px 10px rgba(16, 24, 48, 0.06);
}
.ls-mod-box {
  overflow: auto;
  padding: 18px 18px 16px;
}

/* Thanks — vertically centered animated quote */
.ls-s14 {
  display: flex;
  flex-direction: column;
}
.ls-thanks-mid {
  flex: 1;
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 8px 0;
}
.ls-quote--alive {
  margin: 0;
  max-width: 920px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.story-slide.is-active .ls-quote--alive {
  animation: ls-float-y 4.5s ease-in-out infinite, ls-box-shine 3.8s ease-in-out infinite;
}
.ls-quote--alive::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(72, 193, 226, 0.22), transparent 70%);
  transform: translateX(-130%);
  animation: ls-shine-sweep 5s ease-in-out infinite;
  pointer-events: none;
}
.ls-s14 .ls-quote-mark { display: none !important; }

/* ===== Polish v6 ===== */
.ls-title + .ls-s04-main,
.ls-title + .ls-timeline,
.ls-title + .ls-s06-grid,
.ls-title + .ls-ai-compare,
.ls-title + .ls-usecases,
.ls-title + .ls-s11-grid,
.ls-title + .ls-benefits,
.ls-title + .ls-s13-grid,
.ls-slide > .ls-s04-main,
.ls-slide > .ls-timeline,
.ls-slide > .ls-s06-grid,
.ls-slide > .ls-ai-compare,
.ls-slide > .ls-usecases,
.ls-slide > .ls-s11-grid,
.ls-slide > .ls-benefits,
.ls-slide > .ls-s13-grid,
.ls-slide > .ls-demo-wrap {
  margin-top: 22px !important;
}
.ls-s02 .ls-title-oneline {
  margin-bottom: 0;
}
.ls-s02-band--raised {
  margin-top: auto;
}

/* Intro white shield + scan */
.ls-s01-scan-wrap {
  position: relative;
  width: min(280px, 70%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.ls-s01-radar {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(72, 193, 226, 0.35);
  box-shadow: inset 0 0 0 26px rgba(72, 193, 226, 0.05);
  animation: ls-soft-zoom 5s ease-in-out infinite;
}
.ls-s01-radar::before,
.ls-s01-radar::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px dashed rgba(72, 193, 226, 0.35);
}
.ls-s01-radar::after { inset: 34%; border-style: solid; }
.ls-s01-nodes span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ls-cyan);
  box-shadow: 0 0 8px var(--ls-cyan);
  animation: ls-float-y 2.8s ease-in-out infinite;
}
.ls-s01-nodes span:nth-child(1) { left: 18%; top: 30%; }
.ls-s01-nodes span:nth-child(2) { right: 16%; top: 26%; animation-delay: .25s; }
.ls-s01-nodes span:nth-child(3) { left: 22%; bottom: 22%; animation-delay: .45s; }
.ls-s01-nodes span:nth-child(4) { right: 20%; bottom: 28%; animation-delay: .65s; }
.ls-s01-shield-img {
  position: relative;
  z-index: 2;
  width: 58%;
  height: auto;
  background: transparent !important;
  filter: drop-shadow(0 0 16px rgba(72, 193, 226, 0.45));
  animation: none;
}
.ls-s01-scan {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 2px;
  z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(72, 193, 226, 0.9), transparent);
  animation: ls-scan-y 3.2s linear infinite;
}

/* Problema even spacing */
.ls-snowball--even {
  flex: 1;
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 0;
  min-height: 0;
  margin-top: 8px;
  padding-bottom: 0;
  align-content: stretch;
}
.ls-snowball--even::before {
  top: 10%;
  bottom: 10%;
}
.ls-snowball--even .ls-snow-step {
  align-content: center;
  min-height: 0;
}
.ls-snowball--even .ls-snow-step[data-step="1"],
.ls-snowball--even .ls-snow-step[data-step="2"],
.ls-snowball--even .ls-snow-step[data-step="3"],
.ls-snowball--even .ls-snow-step[data-step="4"] {
  align-content: center;
}
.ls-snow-step-copy {
  display: grid;
  gap: 8px;
  align-content: center;
}
.ls-snowball--even .ls-snow-result {
  margin-left: 0;
  margin-top: 0;
}

/* Solução dashboard breathe + how quarters */
.ls-s04-main {
  margin-top: 18px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: min(100%, 1120px);
  padding-top: 6px;
  justify-self: center;
}
.ls-dash-shot {
  margin-top: 8px;
  max-height: 268px;
  position: relative;
  overflow: hidden;
}
.ls-dash-shot img {
  min-height: 240px !important;
  max-height: none !important;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.ls-dash-live {
  isolation: isolate;
}
.ls-dash-scroll {
  height: 100%;
  max-height: 268px;
  overflow: hidden;
  border-radius: inherit;
}
.story-slide.is-active .ls-dash-scroll img {
  animation: ls-dash-pan 9s ease-in-out infinite;
  transform-origin: center top;
}
.ls-dash-cursor {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50% 50% 50% 0;
  background: #fff;
  border: 2px solid #0d1b3d;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  z-index: 5;
  pointer-events: none;
  top: 18%;
  left: 22%;
  transform: rotate(-20deg);
  opacity: 0;
}
.story-slide.is-active .ls-dash-cursor {
  opacity: 1;
  animation: ls-dash-cursor 9s ease-in-out infinite;
}
.ls-dash-clickpulse {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(72, 193, 226, 0.9);
  background: rgba(72, 193, 226, 0.2);
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  top: 34%;
  left: 48%;
}
.story-slide.is-active .ls-dash-clickpulse {
  animation: ls-dash-click 9s ease-in-out infinite;
}
@keyframes ls-dash-pan {
  0%, 12% { transform: translateY(0) scale(1.02); }
  38% { transform: translateY(-14%) scale(1.05); }
  62% { transform: translateY(-6%) scale(1.04); }
  82%, 100% { transform: translateY(0) scale(1.02); }
}
@keyframes ls-dash-cursor {
  0% { top: 16%; left: 18%; opacity: 0; }
  8% { opacity: 1; }
  22% { top: 34%; left: 48%; }
  28% { top: 34%; left: 48%; transform: rotate(-20deg) scale(0.88); }
  34% { transform: rotate(-20deg) scale(1); }
  52% { top: 58%; left: 30%; }
  70% { top: 42%; left: 68%; }
  88% { top: 22%; left: 40%; }
  100% { top: 16%; left: 18%; opacity: 0.85; }
}
@keyframes ls-dash-click {
  0%, 24% { opacity: 0; transform: scale(0.4); top: 34%; left: 48%; }
  28% { opacity: 1; transform: scale(1); }
  34% { opacity: 0; transform: scale(2.2); }
  66% { opacity: 0; transform: scale(0.4); top: 42%; left: 68%; }
  70% { opacity: 1; transform: scale(1); }
  76% { opacity: 0; transform: scale(2.2); }
  100% { opacity: 0; }
}
.ls-s04-tools {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  width: 100%;
  margin-top: 4px;
}
.ls-s04-tools .ls-tool {
  justify-self: start;
}
.ls-s04-tools .ls-tool[data-tool="api"] {
  justify-self: end;
}
.ls-signal {
  height: 3px;
  margin: 0 10px;
  border-radius: 999px;
  background: #d7dce8;
  position: relative;
  overflow: hidden;
}
.ls-signal i {
  position: absolute;
  top: 0;
  left: -35%;
  width: 35%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, #48c1e2, #7ad7ef, transparent);
  box-shadow: 0 0 10px rgba(72, 193, 226, 0.75);
  animation: ls-signal-flow 1.8s linear infinite;
}
@keyframes ls-signal-flow {
  0% { left: -35%; }
  100% { left: 100%; }
}
.ls-how--quarters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: center;
  padding: 16px 28px;
  margin-top: 14px;
}
.ls-how--quarters .ls-how-q {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  padding: 4px 8px;
  text-align: center;
}
.ls-how--quarters .ls-how-q.title {
  justify-content: center;
  font-weight: 800;
  color: var(--ls-navy);
  background: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* Pipeline core shrink, no glow, centered */
.ls-timeline--centered {
  align-items: start;
  margin-top: 28px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: min(100%, 1180px);
  flex: 1;
  padding-top: 12px;
  justify-self: center;
}
.ls-timeline--centered .ls-tl-node {
  grid-template-rows: 48px 100px auto;
  align-content: start;
  gap: 8px;
}
.ls-timeline--centered .ls-tl-node h4,
.ls-timeline--centered .ls-tl-core-spacer {
  min-height: 48px;
  height: 48px;
  align-items: end;
}
.ls-timeline--centered .ls-tl-orb {
  align-self: center;
}
.ls-timeline--centered .ls-tl-line {
  top: calc(12px + 48px + 50px);
  transform: none;
  left: 8.5%;
  right: 6.5%;
  height: 3px;
}
.ls-tl-orb--sm {
  width: 48px !important;
  height: 48px !important;
}
.ls-tl-orb--sm .ls-shield-mark {
  width: 28px !important;
  animation: none !important;
  filter: none !important;
}
.ls-timeline .ls-tl-orb {
  box-shadow: 0 6px 14px rgba(16, 24, 48, 0.1) !important;
  filter: none !important;
  animation: none !important;
}
.ls-tl-core-spacer {
  min-height: 2.4em;
  visibility: hidden;
}
.ls-tl-core-meta {
  display: grid;
  gap: 6px;
  justify-items: center;
  max-width: 20ch;
}
.ls-tl-tools {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ls-navy);
  font-size: 12px;
  font-weight: 800;
}
.ls-tl-tool {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ls-tl-tool .ls-tool-ico {
  width: 14px;
  height: 14px;
}
.ls-tl-tool .ls-tool-ico svg { width: 14px; height: 14px; }
.ls-tl-sep { opacity: 0.45; font-weight: 700; }
.ls-tl-bullet {
  position: relative;
  padding-left: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ls-navy);
  line-height: 1.3;
  text-align: left;
  width: 100%;
}
.ls-tl-bullet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ls-navy);
  box-shadow: 0 0 8px rgba(13, 27, 61, 0.55);
}
.ls-tl-live { display: none !important; }

/* Why different match inside mock */
.ls-ui-match {
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(13, 27, 61, 0.06);
  border-radius: 8px;
  padding: 8px 10px;
}
.ls-ui-match .ls-count {
  font-family: var(--ls-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ls-navy);
}
.ls-ui-match em {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  color: var(--ls-muted);
}

/* Nossa IA breathe */
.ls-ai-compare {
  margin-top: 24px !important;
  gap: 20px;
}

/* Use cases softer glow, no icons */
.ls-usecases { margin-top: 22px !important; }
.ls-usecases li i {
  box-shadow: 0 0 4px rgba(72, 193, 226, 0.28) !important;
  opacity: 0.75;
}
.ls-shine-soft {
  position: relative;
  overflow: hidden;
}
.ls-shine-soft::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 255, 255, 0.08), transparent 60%);
  transform: translateX(-120%);
  animation: ls-shine-sweep 6.5s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.35;
}
.story-slide.is-active .ls-shine-soft {
  animation: none;
  box-shadow: none;
}
.ls-law-mods--soft article {
  box-shadow: none !important;
}

/* Security bare shield */
.ls-sec-shield--bare {
  background: transparent !important;
  border-radius: 0 !important;
  width: 64px;
  filter: drop-shadow(0 0 12px rgba(72, 193, 226, 0.4));
}
.ls-s11-grid { margin-top: 22px !important; }

/* ROI quieter arrows + mini charts */
.story-slide.is-active .ls-arrow-ico.down,
.story-slide.is-active .ls-arrow-ico.up {
  animation: ls-arrow-bob 2.8s ease-in-out infinite !important;
  filter: none !important;
}
.story-slide.is-active .ls-arrow-ico.up {
  animation: ls-arrow-bob-up 2.8s ease-in-out infinite !important;
}
.ls-roi-meters .meter {
  display: grid;
  gap: 6px;
  padding: 10px 12px;
}
.ls-roi-meters .meter-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ls-mini-line {
  width: 100%;
  height: 28px;
  display: block;
}
.story-slide.is-active .ls-mini-line polyline {
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  animation: ls-draw-line 1.4s ease forwards;
}
@keyframes ls-draw-line {
  to { stroke-dashoffset: 0; }
}
@keyframes ls-spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.story-slide.is-active .ls-roi-figures .fig {
  animation: none !important;
  box-shadow: none;
}

/* Personalização tighter cells */
.ls-mod-tight {
  gap: 6px 8px !important;
}
.ls-mod-tight p {
  padding: 10px 10px !important;
  gap: 8px !important;
  align-items: center !important;
  grid-template-columns: 24px 1fr !important;
  min-height: 54px;
}
.ls-mod-box {
  padding: 10px 10px 8px !important;
}
.ls-mod-box .hint {
  margin-bottom: 8px !important;
}
.ls-mod-tight .m-ico {
  width: 22px !important;
  height: 22px !important;
  border-radius: 6px !important;
  font-size: 12px !important;
}
.ls-mod-tight span {
  font-size: 13px;
  line-height: 1.3;
  min-width: 0;
}

/* LinkedIn knockout already SVG; ensure size */
.ls-social .li-ico {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  vertical-align: -4px;
}
.ls-social .li-ico svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* ===== Polish v7 ===== */
.ls-s02 {
  display: flex;
  flex-direction: column;
}
.ls-s02-title {
  font-size: 24px !important;
  max-width: none !important;
  margin-bottom: 0 !important;
}
.ls-s02 .ls-s02-band {
  margin-top: auto !important;
  min-height: 280px;
}
.ls-s02 .ls-tag {
  margin-bottom: 10px;
}

.ls-ui-panel {
  grid-template-rows: 1fr !important;
}
.ls-callouts { display: none !important; }

.ls-demo-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ls-navy);
  font-family: var(--ls-display);
  font-size: clamp(64px, 9vw, 96px);
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 12px 28px;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
}
.ls-demo-btn:hover {
  transform: scale(1.04);
  color: #0a4f86;
  box-shadow: 0 0 0 3px rgba(72, 193, 226, 0.35);
}
.ls-demo-btn:focus-visible {
  outline: 3px solid var(--ls-cyan);
  outline-offset: 4px;
}

.ls-law-mods .mod-ico {
  color: #fff !important;
}
.ls-law-mods .mod-ico svg { color: #fff; fill: currentColor; }

/* Intro richer scan HUD */
.ls-s01-gridglow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(72, 193, 226, 0.18), transparent 55%),
    linear-gradient(rgba(72, 193, 226, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 193, 226, 0.08) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  animation: ls-scan-bg 12s linear infinite;
  opacity: 0.9;
}
.ls-s01-radar--outer {
  inset: 0% !important;
  border-style: dashed !important;
  opacity: 0.55;
  animation: ls-spin-slow 18s linear infinite;
}
.ls-s01-hud {
  position: absolute;
  inset: 12%;
  pointer-events: none;
  z-index: 1;
}
.ls-s01-hud i {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(72, 193, 226, 0.7);
}
.ls-s01-hud i:nth-child(1) { left: 0; top: 0; border-right: 0; border-bottom: 0; }
.ls-s01-hud i:nth-child(2) { right: 0; top: 0; border-left: 0; border-bottom: 0; }
.ls-s01-hud i:nth-child(3) { left: 0; bottom: 0; border-right: 0; border-top: 0; }
.ls-s01-hud i:nth-child(4) { right: 0; bottom: 0; border-left: 0; border-top: 0; }
.ls-s01-scan--delay { animation-delay: 1.4s; opacity: 0.55; }
.ls-s01-readouts {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 6%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
}
.ls-s01-readouts b { color: var(--ls-cyan); margin-left: 4px; }
.ls-s01-nodes span:nth-child(5) { left: 46%; top: 10%; animation-delay: .15s; }
.ls-s01-nodes span:nth-child(6) { left: 50%; bottom: 12%; animation-delay: .8s; }

.story-camera {
  transform-style: preserve-3d;
  will-change: transform;
}
.topbar--after-deck {
  margin-top: 0;
  border-radius: 0;
}

.ls-mod-fill {
  height: 100%;
}
.ls-mod-box .ls-mod-tight {
  flex: 1;
}
.ls-mod-box {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.ls-mod-tight p {
  min-height: 64px;
  padding: 12px 12px !important;
}

@media (max-width: 1100px) {
  .ls-roi-meters { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .story-deck {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
  }
  .story-deck-stage { min-height: 0; }
  :root {
    --ls-slide-w: 1100px;
    --ls-slide-h: 620px;
    --ls-pad: 36px;
  }
  .ls-title-oneline { font-size: 22px !important; white-space: normal; }
  .ls-law-mods--many { grid-template-columns: 1fr 1fr; }
  .ls-how--quarters { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ls-s02-title { white-space: normal !important; font-size: 22px !important; }
}

/* ===== Polish v9 ===== */
.ls-s02 {
  display: flex;
  flex-direction: column;
  padding-bottom: 28px !important;
}
.ls-s02 .ls-s02-band--mid {
  margin-top: auto !important;
  margin-bottom: auto !important;
  min-height: 250px;
  border-radius: 0;
  align-self: stretch;
}
.ls-s02 .ls-s02-band--mid > div {
  padding: 32px 36px;
}

.ls-tl-orb--cover {
  position: relative;
  z-index: 3;
  background: #fff !important;
  isolation: isolate;
}
.ls-tl-node.core .ls-tl-orb--cover.solid {
  background: var(--ls-navy) !important;
}
.ls-timeline--centered .ls-tl-node.origem {
  grid-template-rows: auto auto auto;
  overflow: visible;
}
.ls-timeline--centered .ls-tl-node.origem h4 {
  position: relative;
  z-index: 4;
  margin-bottom: 6px;
  min-height: auto;
  height: auto;
  padding: 0 4px;
  line-height: 1.2;
}
.ls-timeline--centered .ls-tl-node.origem .ls-tl-orb {
  width: 112px;
  height: 112px;
  margin-top: 2px;
}
.ls-tl-caption {
  position: relative;
  z-index: 4;
  display: block;
  max-width: 22ch !important;
  margin-top: 6px;
  padding: 0 2px;
  font-size: 11px !important;
  line-height: 1.35 !important;
  color: var(--ls-muted);
  overflow: visible;
  white-space: normal;
}
.ls-tl-core-label {
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.ls-timeline--centered .ls-tl-line {
  z-index: 0;
}

.ls-ui-meta-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  align-content: end;
  flex: 1;
  align-items: end;
}
.ls-ui-meta-card {
  grid-column: span 2;
  background: #f3f5f9;
  border: 1px solid #d9dee8;
  border-radius: 8px;
  padding: 8px 10px;
  display: grid;
  gap: 4px;
  min-height: 58px;
}
.ls-ui-meta-card:nth-child(4) {
  grid-column: 2 / span 2;
}
.ls-ui-meta-card:nth-child(5) {
  grid-column: 4 / span 2;
}
.ls-ui-meta-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #6a7388;
}
.ls-ui-meta-card strong {
  font-size: 11.5px !important;
  font-weight: 800;
  color: var(--ls-navy);
  line-height: 1.25;
  word-break: break-word;
}
.ls-s01-code {
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
  font-family: "Consolas", "Cascadia Code", "Courier New", monospace;
  font-size: 10px;
  line-height: 1.28;
  color: rgba(140, 210, 235, 0.34);
  pointer-events: none;
  overflow: hidden;
}
.ls-s01-code-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 100%;
  animation: ls-code-drift 22s linear infinite;
}
.ls-s01-code-col--delay {
  animation-duration: 26s;
  animation-direction: reverse;
  opacity: 0.85;
  transform: translateY(8px);
}
.ls-s01-code code {
  display: block;
  white-space: nowrap;
  font: inherit;
  color: inherit;
  opacity: 0.7;
}
.ls-s01-code code:nth-child(3n) { opacity: 0.42; }
.ls-s01-code code:nth-child(4n) { opacity: 0.85; }
.ls-s01-code code:nth-child(5n) { opacity: 0.55; }
.ls-s01-scan-wrap {
  position: relative;
  z-index: 2;
}
@keyframes ls-code-drift {
  0% { transform: translateY(0); }
  50% { transform: translateY(-28px); }
  100% { transform: translateY(0); }
}

.ls-stat p strong {
  font-weight: 800;
  font-size: inherit;
  color: inherit;
}

.ls-s06-feats {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  gap: 12px;
}
.ls-s06-feats .ls-feat-card {
  margin-bottom: 0;
}
.ls-s06-feats .ls-feat-card.green {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-bottom: 18px;
  box-sizing: border-box;
}
/* Absorb leftover height below the list — never between rows */
.ls-s06-feats .ls-feat-card.green::after {
  content: "";
  flex: 1 1 auto;
  min-height: 0;
  pointer-events: none;
}
.ls-s06-feats .ls-feat-card ul {
  flex: 0 0 auto;
  align-content: start;
  justify-content: start;
  gap: 5px;
  line-height: 1.25;
}
.ls-feat-card [data-glow] {
  cursor: default;
  transition: background .18s ease, box-shadow .18s ease, color .18s ease;
  border-radius: 6px;
}
.ls-feat-card ul li[data-glow] {
  list-style: none;
  margin-left: -6px;
  padding: 3px 8px;
}
.ls-feat-card ul {
  padding-left: 8px;
}
.ls-feat-card .head.is-hot,
.ls-feat-card li.is-hot {
  box-shadow: 0 0 0 2px rgba(72, 193, 226, 0.55);
  background: rgba(72, 193, 226, 0.16);
}
.ls-ui-main--map {
  gap: 8px;
}
.ls-mock-map {
  display: grid;
  gap: 8px;
  flex: 1;
  min-height: 0;
  overflow: auto;
}
.ls-mock-sec {
  border: 1px solid #d9dee8;
  border-radius: 8px;
  padding: 8px;
  background: #f7f8fb;
  display: grid;
  gap: 4px;
  transition: box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.ls-mock-sec-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ls-navy);
}
.ls-mock-row-item {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 6px;
  align-items: baseline;
  padding: 4px 6px;
  border-radius: 6px;
  transition: box-shadow .18s ease, background .18s ease, border-color .18s ease;
  border: 1px solid transparent;
}
.ls-mock-row-item b {
  font-size: 9.5px;
  letter-spacing: 0.02em;
  color: #3a4154;
}
.ls-mock-row-item em {
  font-style: normal;
  font-size: 10px;
  color: #6a7388;
  text-align: right;
}
.ls-mock-sec.is-glow,
.ls-mock-row-item.is-glow {
  background: rgba(72, 193, 226, 0.18);
  border-color: rgba(72, 193, 226, 0.7);
  box-shadow: 0 0 0 2px rgba(72, 193, 226, 0.35), 0 0 16px rgba(72, 193, 226, 0.28);
}
.ls-ui-meta-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 4px;
  flex: 0 0 auto;
}
.ls-ui-meta-grid--compact .ls-ui-meta-card {
  grid-column: auto;
  min-height: 46px;
}

.ls-ui-match {
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 8px !important;
  padding: 10px 12px !important;
}
.ls-ui-match-main {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.ls-ui-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 10.5px;
  line-height: 1.4;
  color: #5c6478;
}
.ls-ui-meta span {
  white-space: nowrap;
}
.ls-ui-meta b {
  font-weight: 700;
  color: var(--ls-navy);
  margin-right: 4px;
}

.ls-benefits-tab {
  display: none !important;
}

.ls-sheen-card {
  position: relative;
  overflow: hidden;
}
.ls-sheen-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 62%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: ls-card-sheen 5.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.ls-sheen-card > * {
  position: relative;
  z-index: 2;
}
@keyframes ls-card-sheen {
  0% { background-position: 120% 0; opacity: 0.35; }
  40% { opacity: 0.85; }
  100% { background-position: -120% 0; opacity: 0.35; }
}

.ls-scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid #c5ccd8;
  border-radius: 999px;
  background: #e8ecf2;
  color: #5a6478;
  font-family: var(--ls-display, "Segoe UI", sans-serif);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(16, 24, 48, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}
.ls-scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.ls-scroll-top:hover {
  background: #dde3ec;
  color: #3d4658;
}
.ls-scroll-top-ico {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  font-size: 14px;
  line-height: 1;
}

.ls-click-ripple {
  position: fixed;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  border: 2px solid rgba(72, 193, 226, 0.85);
  background: rgba(72, 193, 226, 0.22);
  pointer-events: none;
  z-index: 10000;
  animation: ls-click-ripple 0.55s ease-out forwards;
}
@keyframes ls-click-ripple {
  0% { transform: scale(0.4); opacity: 1; }
  100% { transform: scale(2.6); opacity: 0; }
}
