:root {
  --lp-bg: #050910;
  --lp-bg-elev: #0a1320;
  --lp-surface: rgba(14, 21, 33, 0.8);
  --lp-surface-2: rgba(13, 23, 38, 0.92);
  --lp-border: rgba(154, 171, 196, 0.24);
  --lp-text: #f2f6ff;
  --lp-text-soft: #b6c2d5;
  --lp-indigo: #8759df;
  --lp-indigo-strong: #7042c8;
  --lp-indigo-soft: #af94e8;
  --lp-accent: #89a6ff;
  --lp-success: #85f0cc;
  --lp-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

body {
  background:
    radial-gradient(circle at 8% 10%, rgba(63, 92, 157, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 90% 16%, rgba(103, 68, 176, 0.18) 0%, transparent 40%),
    linear-gradient(180deg, #03070d 0%, #07101b 52%, #050910 100%);
  color: var(--lp-text);
}

.landing-page {
  overflow-x: clip;
}

main {
  position: relative;
  z-index: 1;
}

.lp-navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  transition: background-color 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.lp-navbar-wrap.scrolled {
  background-color: rgba(5, 9, 16, 0.88);
  border-color: rgba(143, 167, 202, 0.2);
}

.lp-navbar {
  padding: 0.9rem 0;
}

.lp-nav-shell {
  background: rgba(10, 18, 29, 0.72);
  border: 1px solid rgba(145, 167, 198, 0.2);
  border-radius: 16px;
  padding: 0.45rem 0.8rem;
}

.lp-nav-links .nav-link {
  color: var(--lp-text-soft);
  font-weight: 500;
  padding: 0.4rem 0.85rem;
}

.lp-nav-links .nav-link:hover,
.lp-nav-links .nav-link:focus {
  color: var(--lp-text);
}

.lp-nav-cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.section-shell {
  padding: 4.2rem 0;
}

.lp-hero {
  padding-top: 3.25rem;
  padding-bottom: 5rem;
}

.lp-hero h1 {
  font-size: clamp(1.85rem, 3.2vw, 2.8rem);
  margin-bottom: 0.85rem;
  max-width: 18ch;
}

.lp-hero .section-lead {
  max-width: 56ch;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--lp-indigo-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.compact-center {
  text-align: center;
  margin-inline: auto;
}

h1,
h2,
h3,
strong {
  color: var(--lp-text);
}

h1 {
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  line-height: 1.08;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  line-height: 1.14;
  margin-bottom: 0.85rem;
}

h3 {
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  margin-bottom: 0.55rem;
}

p {
  color: var(--lp-text-soft);
  line-height: 1.6;
  margin: 0;
}

.section-lead {
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  max-width: 620px;
}

.lp-btn-primary,
.lp-btn-ghost,
.lp-btn-outline {
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.93rem;
  padding: 0.74rem 1.22rem;
}

.lp-btn-primary {
  color: #fff;
  border: 1px solid transparent;
  background: linear-gradient(140deg, var(--lp-indigo), var(--lp-indigo-strong));
  box-shadow: 0 12px 28px rgba(98, 65, 177, 0.38);
}

.lp-btn-primary:hover,
.lp-btn-primary:focus {
  color: #fff;
  filter: brightness(1.08);
}

.lp-btn-ghost {
  border: 1px solid rgba(150, 172, 203, 0.35);
  color: var(--lp-text);
  background: transparent;
}

.lp-btn-outline:hover,
.lp-btn-outline:focus,
.lp-btn-ghost:hover,
.lp-btn-ghost:focus {
  color: var(--lp-text);
  background: rgba(128, 106, 188, 0.14);
  border-color: rgba(170, 191, 225, 0.55);
}

.hero-cta-group {
  margin-top: 1.75rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-proof-list {
  list-style: none;
  padding: 0;
  margin: 1.55rem 0 0;
  display: grid;
  gap: 0.78rem;
}

.hero-proof-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--lp-text);
}

.hero-proof-list i {
  color: var(--lp-success);
  font-size: 1.14rem;
}

.hero-product-frame {
  border-radius: 18px;
  border: 1px solid rgba(153, 175, 207, 0.28);
  background: linear-gradient(165deg, rgba(13, 23, 38, 0.96), rgba(8, 14, 24, 0.98));
  box-shadow: var(--lp-shadow);
  padding: 1rem;
}

.hero-frame-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  border-radius: 12px;
  padding: 0.6rem 0.75rem;
  font-size: 0.83rem;
  color: var(--lp-text-soft);
  border: 1px solid rgba(143, 164, 193, 0.2);
  background: rgba(21, 34, 53, 0.76);
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.status-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--lp-accent);
  box-shadow: 0 0 0 3px rgba(137, 166, 255, 0.22);
}

.hero-frame-screen {
  border-radius: 14px;
  border: 1px solid rgba(138, 163, 197, 0.2);
  min-height: 300px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 72px 1fr;
}

.screen-sidebar {
  background: rgba(16, 27, 44, 0.9);
  padding: 0.65rem;
  display: grid;
  gap: 0.52rem;
  align-content: start;
}

.screen-sidebar span {
  display: block;
  height: 26px;
  border-radius: 7px;
  background: linear-gradient(90deg, rgba(130, 151, 182, 0.2), rgba(108, 132, 170, 0.38));
}

.screen-main {
  background: rgba(7, 13, 23, 0.95);
  padding: 0.75rem;
  display: grid;
  gap: 0.75rem;
  grid-template-rows: auto 1fr 62px;
}

.screen-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.screen-kpis article {
  border: 1px solid rgba(134, 158, 193, 0.24);
  border-radius: 8px;
  padding: 0.5rem;
  background: rgba(17, 29, 46, 0.8);
}

.screen-kpis small {
  display: block;
  color: var(--lp-text-soft);
  font-size: 0.68rem;
  margin-bottom: 0.2rem;
}

.screen-kpis strong {
  font-size: 0.86rem;
}

.screen-chart {
  border: 1px solid rgba(129, 153, 189, 0.26);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(84, 103, 136, 0.16) 0%, rgba(7, 13, 23, 0.02) 100%),
    linear-gradient(90deg, rgba(131, 151, 181, 0.2) 1px, transparent 1px),
    linear-gradient(0deg, rgba(131, 151, 181, 0.13) 1px, transparent 1px);
  background-size: auto, 24px 100%, 100% 18px;
}

.screen-grid {
  border-radius: 8px;
  border: 1px solid rgba(127, 151, 188, 0.2);
  background: repeating-linear-gradient(
    0deg,
    rgba(16, 26, 40, 0.85),
    rgba(16, 26, 40, 0.85) 11px,
    rgba(35, 50, 71, 0.6) 11px,
    rgba(35, 50, 71, 0.6) 22px
  );
}

.video-placeholder {
  margin-top: 0.82rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--lp-text);
  font-size: 0.9rem;
}

.video-placeholder i {
  color: var(--lp-indigo-soft);
  font-size: 1.35rem;
}

.logo-marquee {
  overflow: hidden;
  border: 1px solid rgba(146, 168, 199, 0.24);
  border-radius: 14px;
  background: rgba(10, 17, 27, 0.76);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0;
  animation: logo-scroll 48s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  border: 1px solid rgba(132, 155, 189, 0.26);
  background: rgba(17, 29, 45, 0.84);
  color: #dce6f6;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.84rem;
  white-space: nowrap;
}

.logo-item-brand {
  width: 196px;
  height: 62px;
  padding: 0.4rem 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-item-brand img {
  display: block;
  width: auto;
  height: auto;
  max-width: 186px;
  max-height: 42px;
  object-fit: contain;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.pain-grid,
.how-timeline {
  display: grid;
  gap: 1rem;
}

.glass-card {
  border-radius: 14px;
  border: 1px solid rgba(145, 166, 196, 0.24);
  background: linear-gradient(165deg, rgba(14, 24, 38, 0.92), rgba(9, 15, 25, 0.96));
  padding: 1.1rem;
}

.lp-pains {
  position: relative;
}

.lp-pains::before {
  content: "";
  position: absolute;
  inset: 16% 0 auto;
  height: 68%;
  background: linear-gradient(180deg, rgba(17, 31, 49, 0.78), rgba(7, 13, 23, 0));
  pointer-events: none;
  z-index: 0;
}

.lp-pains .container {
  position: relative;
  z-index: 1;
}

.pain-editorial {
  border: 1px solid rgba(148, 170, 200, 0.3);
  background: linear-gradient(160deg, rgba(14, 25, 39, 0.92), rgba(7, 13, 22, 0.98));
  border-radius: 20px;
  padding: clamp(1.2rem, 3vw, 2.4rem);
  display: grid;
  grid-template-columns: 1.05fr 1.4fr;
  gap: 1.1rem 1.2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.pain-lead {
  align-self: center;
}

.pain-lead h2 {
  margin-bottom: 0.8rem;
}

.pain-lead p {
  max-width: 44ch;
}

.pain-stack {
  display: grid;
  gap: 0.8rem;
}

.pain-impact {
  border-radius: 14px;
  border: 1px solid rgba(151, 173, 204, 0.3);
  background: linear-gradient(150deg, rgba(16, 30, 49, 0.85), rgba(11, 18, 31, 0.94));
  padding: 1rem 1.05rem;
}

.pain-impact h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.06rem, 1.8vw, 1.2rem);
}

.pain-impact p {
  color: #cfdaea;
  line-height: 1.45;
}

.how-timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.how-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: 0.8rem;
}

.flow-step {
  border: 1px solid rgba(144, 167, 198, 0.24);
  border-radius: 16px;
  padding: 1.05rem 1rem;
  background: linear-gradient(160deg, rgba(13, 22, 35, 0.88), rgba(8, 14, 23, 0.95));
  min-height: 160px;
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.flow-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flow-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(161, 183, 213, 0.38);
  color: #e6eefc;
  font-weight: 600;
  font-size: 0.83rem;
  background: rgba(16, 29, 46, 0.88);
}

.flow-step i {
  font-size: 1.24rem;
  color: #b0c3e2;
}

.flow-step h3 {
  margin: 0;
}

.flow-step p {
  margin: 0;
  line-height: 1.45;
}

.flow-connector {
  width: 58px;
  height: 2px;
  background: linear-gradient(90deg, rgba(149, 172, 203, 0.35), rgba(149, 172, 203, 0.9));
  position: relative;
}

.flow-connector::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 7px solid rgba(149, 172, 203, 0.9);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.flow-step-featured {
  border-color: rgba(176, 147, 236, 0.65);
  background:
    radial-gradient(circle at 84% 16%, rgba(130, 98, 199, 0.3), transparent 44%),
    linear-gradient(160deg, rgba(18, 28, 45, 0.95), rgba(10, 17, 30, 0.98));
  box-shadow: 0 18px 34px rgba(33, 26, 56, 0.38);
}

.flow-step-featured .flow-number {
  border-color: rgba(195, 174, 238, 0.75);
  background: linear-gradient(140deg, rgba(126, 90, 197, 0.95), rgba(93, 59, 161, 0.95));
}

.flow-step-featured i {
  color: #d3bff6;
}

.product-tour {
  display: grid;
  gap: 1rem;
}

.product-feature-main,
.product-feature-mini {
  border: 1px solid rgba(145, 168, 199, 0.24);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(12, 21, 34, 0.95), rgba(8, 14, 23, 0.98));
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
}

.product-feature-main {
  padding: clamp(1rem, 2vw, 1.25rem);
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 1rem;
  align-items: center;
}

.feature-copy {
  display: grid;
  gap: 0.5rem;
}

.feature-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lp-indigo-soft);
  font-weight: 600;
}

.feature-strong {
  color: #eff5ff;
  font-weight: 600;
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.4;
}

.feature-complement {
  font-size: 0.93rem;
}

.feature-media {
  border: 1px solid rgba(138, 162, 195, 0.24);
  border-radius: 14px;
  background-color: rgba(8, 14, 24, 0.96);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-media:hover {
  transform: translateY(-3px);
  border-color: rgba(166, 188, 219, 0.42);
  box-shadow: 0 14px 28px rgba(5, 12, 21, 0.45);
}

.media-main {
  min-height: clamp(250px, 34vw, 390px);
}

.product-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.product-feature-mini {
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}

.media-mini {
  min-height: clamp(200px, 22vw, 260px);
}

.shot-analytics {
  background:
    linear-gradient(180deg, rgba(122, 145, 189, 0.18), transparent 60%),
    linear-gradient(90deg, rgba(126, 149, 187, 0.14) 1px, transparent 1px),
    linear-gradient(0deg, rgba(126, 149, 187, 0.12) 1px, transparent 1px),
    rgba(8, 14, 24, 0.96);
  background-size: auto, 20px 100%, 100% 18px, auto;
}

.shot-campaign {
  background:
    linear-gradient(90deg, rgba(131, 100, 193, 0.35) 45%, transparent 45%),
    linear-gradient(180deg, rgba(98, 123, 163, 0.2), rgba(8, 14, 24, 0.95));
  position: relative;
}

.shot-campaign::before,
.shot-campaign::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  border-radius: 8px;
  background: rgba(170, 186, 211, 0.24);
}

.shot-campaign::before {
  top: 18%;
  height: 18%;
}

.shot-campaign::after {
  top: 45%;
  height: 10%;
}

.shot-performance {
  background:
    radial-gradient(circle at 18% 26%, rgba(132, 106, 195, 0.5) 0%, transparent 18%),
    radial-gradient(circle at 74% 62%, rgba(108, 135, 186, 0.42) 0%, transparent 19%),
    linear-gradient(180deg, rgba(99, 122, 162, 0.22), rgba(7, 13, 24, 0.95));
}

.shot-mobile-app {
  background:
    radial-gradient(circle at 72% 20%, rgba(138, 106, 207, 0.46), transparent 26%),
    linear-gradient(180deg, rgba(97, 122, 167, 0.25), rgba(8, 14, 24, 0.95));
  position: relative;
}

.shot-mobile-app::before {
  content: "";
  position: absolute;
  inset: 14% 24% 12%;
  border-radius: 12px;
  border: 1px solid rgba(171, 189, 217, 0.3);
  background: linear-gradient(180deg, rgba(19, 30, 47, 0.92), rgba(10, 18, 29, 0.98));
}

.shot-mobile-app::after {
  content: "";
  position: absolute;
  inset: 24% 32% 20%;
  border-radius: 8px;
  background: repeating-linear-gradient(
    0deg,
    rgba(118, 140, 175, 0.3),
    rgba(118, 140, 175, 0.3) 12px,
    rgba(33, 47, 69, 0.46) 12px,
    rgba(33, 47, 69, 0.46) 24px
  );
}

.lp-otto {
  position: relative;
}

.lp-otto::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto;
  height: 78%;
  background:
    radial-gradient(circle at 20% 28%, rgba(90, 125, 203, 0.2), transparent 45%),
    radial-gradient(circle at 78% 34%, rgba(127, 94, 196, 0.24), transparent 44%);
  pointer-events: none;
}

.lp-otto .container {
  position: relative;
  z-index: 1;
}

.otto-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.8rem);
}

.otto-content {
  max-width: 520px;
}

.otto-label {
  display: inline-flex;
  margin-bottom: 0.9rem;
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #c6b3ec;
}

.otto-content h2 {
  margin-bottom: 0.85rem;
  max-width: 14ch;
}

.otto-subheadline {
  max-width: 42ch;
  font-size: 1rem;
}

.otto-value-list {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.72rem;
}

.otto-value-card {
  border: 1px solid rgba(160, 179, 208, 0.28);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(15, 25, 39, 0.84), rgba(10, 17, 29, 0.94));
  padding: 0.9rem;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.75rem;
  align-items: start;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.otto-value-card:hover {
  transform: translateY(-2px);
  border-color: rgba(186, 159, 238, 0.56);
  box-shadow: 0 14px 28px rgba(8, 14, 25, 0.45);
}

.otto-value-card i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(179, 159, 224, 0.38);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cfbcf4;
  font-size: 1.05rem;
  background: rgba(22, 31, 46, 0.92);
}

.otto-value-card h3 {
  margin: 0 0 0.26rem;
  font-size: 0.97rem;
}

.otto-value-card p {
  margin: 0;
  font-size: 0.87rem;
  color: #d3deef;
  line-height: 1.4;
}

.otto-chat-column {
  display: grid;
  justify-items: end;
}

.otto-chat-shell {
  width: min(690px, 100%);
  max-height: none;
  border-radius: 20px;
  border: 1px solid rgba(165, 143, 217, 0.44);
  background:
    radial-gradient(circle at 92% 6%, rgba(146, 113, 219, 0.31), transparent 36%),
    linear-gradient(160deg, rgba(11, 20, 33, 0.98), rgba(7, 12, 20, 0.99));
  box-shadow:
    0 0 0 1px rgba(145, 117, 207, 0.2) inset,
    0 18px 38px rgba(4, 8, 15, 0.52);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.otto-chat-shell:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(145, 117, 207, 0.25) inset,
    0 22px 44px rgba(4, 8, 15, 0.62);
}

.otto-chat-header {
  border-bottom: 1px solid rgba(156, 136, 207, 0.26);
  padding: 0.72rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: rgba(16, 25, 41, 0.82);
}

.otto-chat-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.otto-chat-title img {
  border-radius: 999px;
  border: 1px solid rgba(177, 158, 223, 0.62);
  background: rgba(14, 23, 37, 0.9);
}

.otto-chat-header strong {
  font-size: 0.88rem;
}

.otto-chat-header small {
  font-size: 0.68rem;
  color: #a7b6cf;
}

.otto-chat-body {
  padding: 0.9rem 0.95rem 0.85rem;
  display: grid;
  gap: 0.72rem;
}

.otto-message {
  border-radius: 11px;
  max-width: 100%;
  display: grid;
  gap: 0.28rem;
}

.otto-message-author {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.otto-message-user {
  margin-left: auto;
  width: min(465px, 100%);
  border: 1px solid rgba(157, 180, 212, 0.28);
  background: linear-gradient(145deg, rgba(19, 34, 54, 0.95), rgba(10, 18, 30, 0.98));
  padding: 0.62rem 0.74rem;
}

.otto-message-user .otto-message-author {
  color: #b4c6e5;
}

.otto-message-user p {
  color: #eef4ff;
  line-height: 1.38;
  font-size: 0.84rem;
}

.otto-message-assistant {
  border: 1px solid rgba(170, 143, 228, 0.45);
  background:
    radial-gradient(circle at 92% 9%, rgba(148, 113, 224, 0.24), transparent 39%),
    linear-gradient(155deg, rgba(22, 30, 49, 0.96), rgba(12, 18, 31, 0.99));
  padding: 0.8rem;
  box-shadow: 0 10px 22px rgba(12, 7, 26, 0.34);
}

.otto-message-assistant .otto-message-author {
  color: #d3bff6;
}

.otto-summary {
  color: #f1f6ff;
  font-weight: 600;
  line-height: 1.35;
  font-size: 0.88rem;
}

.otto-insight-list {
  display: grid;
  gap: 0.56rem;
}

.otto-insight-item {
  border: 1px solid rgba(173, 150, 225, 0.28);
  border-radius: 9px;
  background: rgba(18, 27, 42, 0.86);
  padding: 0.62rem 0.68rem;
  display: grid;
  gap: 0.24rem;
  position: relative;
}

.otto-insight-item::after {
  content: "";
  position: absolute;
  left: 0.64rem;
  right: 0.64rem;
  bottom: -0.26rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(170, 147, 225, 0), rgba(170, 147, 225, 0.45), rgba(170, 147, 225, 0));
}

.otto-insight-item:last-child::after {
  display: none;
}

.otto-insight-item strong {
  font-size: 0.82rem;
  color: #ebf2ff;
}

.otto-insight-item p {
  font-size: 0.81rem;
  line-height: 1.38;
  color: #dce7f8;
}

.otto-insight-item p strong {
  color: #7eb2ff;
}

.otto-recommendation {
  border: 1px solid rgba(130, 166, 235, 0.42);
  border-radius: 9px;
  background:
    radial-gradient(circle at 92% 14%, rgba(110, 148, 220, 0.22), transparent 34%),
    linear-gradient(160deg, rgba(17, 31, 52, 0.92), rgba(11, 20, 33, 0.98));
  padding: 0.56rem 0.62rem;
  box-shadow: 0 0 0 1px rgba(129, 166, 235, 0.12) inset;
}

.otto-recommendation span {
  display: inline-flex;
  margin-bottom: 0.22rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.64rem;
  font-weight: 700;
  color: #9bc2ff;
}

.otto-recommendation p {
  margin: 0;
  font-size: 0.81rem;
  color: #ecf4ff;
  line-height: 1.38;
}

.otto-chat-input-sim {
  border-top: 1px solid rgba(149, 130, 198, 0.22);
  background: rgba(13, 20, 34, 0.82);
  padding: 0.56rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.otto-chat-input-sim span {
  font-size: 0.72rem;
  color: #aebdde;
}

.otto-cursor {
  width: 7px;
  height: 0.9rem;
  border-radius: 2px;
  background: #95b8f5;
  animation: otto-cursor-blink 1.1s steps(1, end) infinite;
}

.otto-chat-column.reveal.show .otto-chat-shell {
  animation: otto-chat-in 0.5s ease-out;
}

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

@keyframes otto-cursor-blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.lp-channel {
  position: relative;
}

.channel-flow {
  margin: 0 auto 1.2rem;
  border: 1px solid rgba(150, 173, 203, 0.24);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(12, 21, 34, 0.86), rgba(7, 13, 23, 0.96));
  padding: 0.9rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0.6rem;
}

.channel-node {
  border: 1px solid rgba(150, 172, 202, 0.26);
  border-radius: 12px;
  padding: 0.75rem;
  background: rgba(15, 27, 42, 0.7);
  display: grid;
  gap: 0.2rem;
}

.channel-node span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--lp-text);
}

.channel-node small {
  font-size: 0.78rem;
  color: var(--lp-text-soft);
}

.channel-node-core {
  border-color: rgba(176, 147, 236, 0.54);
  background:
    radial-gradient(circle at 80% 18%, rgba(128, 97, 196, 0.25), transparent 45%),
    rgba(17, 27, 43, 0.8);
}

.channel-arrow {
  color: #bfd0ea;
  font-size: 1.2rem;
}

.channel-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(1.2rem, 2.5vw, 2.1rem);
  align-items: center;
}

.execution-flow {
  display: grid;
  gap: clamp(2rem, 3vw, 2.6rem);
  position: relative;
  padding: 0.35rem 0.25rem 0.35rem 0.7rem;
  margin-inline: auto;
  max-width: 650px;
}

.execution-flow::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(159, 181, 211, 0.22), rgba(159, 181, 211, 0.9));
}

.execution-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
  position: relative;
}

.execution-step-number {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(162, 184, 214, 0.42);
  background: rgba(15, 27, 43, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e4ecfa;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

.execution-step h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.04rem, 1.8vw, 1.22rem);
}

.execution-step p {
  line-height: 1.42;
  font-size: 0.93rem;
  max-width: 42ch;
}

.execution-step:last-child h3 {
  color: #d5c1f8;
}

.execution-step:last-child .execution-step-number {
  border-color: rgba(200, 177, 240, 0.7);
  background: linear-gradient(140deg, rgba(120, 85, 194, 0.95), rgba(88, 57, 157, 0.95));
}

.app-mobile-showcase {
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 0.55rem;
  align-self: center;
}

.app-showcase-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--lp-text-soft);
  font-weight: 600;
}

.app-phone {
  width: min(460px, 100%);
  border-radius: 30px;
  border: 1px solid rgba(157, 179, 209, 0.28);
  background: linear-gradient(180deg, rgba(18, 30, 48, 0.96), rgba(10, 18, 30, 0.99));
  padding: 0.55rem;
  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.38),
    0 0 0 8px rgba(120, 92, 187, 0.14);
}

.app-phone-notch {
  width: 40%;
  height: 12px;
  border-radius: 999px;
  background: rgba(95, 117, 151, 0.66);
  margin: 0.2rem auto 0.45rem;
}

.app-phone-screen {
  border-radius: 22px;
  border: 1px solid rgba(148, 171, 202, 0.22);
  background: rgba(8, 14, 24, 0.96);
  padding: 0.85rem 0.75rem;
  display: grid;
  gap: 0.55rem;
}

.app-phone-screen header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.app-phone-screen header strong {
  font-size: 0.88rem;
}

.app-phone-screen header small {
  font-size: 0.75rem;
  color: var(--lp-text-soft);
}

.app-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.app-kpis article {
  border: 1px solid rgba(136, 159, 194, 0.24);
  border-radius: 8px;
  background: rgba(15, 26, 41, 0.9);
  padding: 0.45rem;
  display: grid;
}

.app-kpis small {
  font-size: 0.66rem;
  color: var(--lp-text-soft);
}

.app-kpis strong {
  font-size: 0.84rem;
}

.app-list {
  height: 72px;
  border-radius: 8px;
  border: 1px solid rgba(133, 157, 191, 0.2);
  background: repeating-linear-gradient(
    0deg,
    rgba(116, 139, 174, 0.24),
    rgba(116, 139, 174, 0.24) 11px,
    rgba(22, 36, 56, 0.45) 11px,
    rgba(22, 36, 56, 0.45) 22px
  );
}

.app-list.short {
  height: 52px;
}

.lp-app-impact {
  padding-top: 2.2rem;
}

.app-impact-shell {
  border-radius: 20px;
  border: 1px solid rgba(149, 171, 201, 0.28);
  background: linear-gradient(160deg, rgba(13, 23, 37, 0.96), rgba(8, 14, 24, 0.99));
  padding: clamp(1.2rem, 2.8vw, 2rem);
  display: grid;
  gap: 1rem;
}

.app-impact-header {
  display: grid;
  gap: 0.3rem;
  max-width: 760px;
}

.impact-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.impact-hero-card {
  border-radius: 14px;
  border: 1px solid rgba(154, 175, 203, 0.3);
  background: rgba(16, 27, 43, 0.78);
  padding: 1rem;
  display: grid;
  gap: 0.35rem;
  min-height: 220px;
}

.impact-hero-card small {
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  color: var(--lp-text-soft);
}

.impact-value {
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.02;
  font-weight: 700;
}

.impact-hero-card p {
  font-size: 0.9rem;
  line-height: 1.42;
}

.impact-blue {
  border-color: rgba(106, 164, 255, 0.42);
  background: linear-gradient(160deg, rgba(16, 33, 58, 0.92), rgba(10, 20, 34, 0.98));
}

.impact-blue .impact-value {
  color: #7fb0ff;
}

.impact-green {
  border-color: rgba(88, 208, 154, 0.45);
  background: linear-gradient(160deg, rgba(15, 42, 44, 0.9), rgba(9, 24, 30, 0.98));
}

.impact-green .impact-value {
  color: #67ddb0;
}

.impact-amber {
  border-color: rgba(236, 178, 88, 0.45);
  background: linear-gradient(160deg, rgba(46, 35, 21, 0.9), rgba(26, 20, 13, 0.98));
}

.impact-amber .impact-value {
  color: #f5bd63;
}

.impact-context-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.impact-context-item {
  border: 1px solid rgba(148, 171, 201, 0.22);
  border-radius: 11px;
  background: rgba(16, 27, 43, 0.58);
  padding: 0.75rem;
  display: grid;
  gap: 0.25rem;
}

.impact-context-item small {
  font-size: 0.72rem;
  color: var(--lp-text-soft);
}

.impact-context-item strong {
  font-size: 0.9rem;
  line-height: 1.35;
}

.impact-note {
  max-width: 980px;
  font-size: 0.88rem;
  color: #cfdaea;
}

.benefits-editorial {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 1rem;
  align-items: stretch;
}

.benefit-hero,
.benefit-side-item {
  border-radius: 18px;
  border: 1px solid rgba(149, 171, 201, 0.26);
  background: linear-gradient(160deg, rgba(12, 21, 34, 0.95), rgba(8, 14, 23, 0.98));
}

.benefit-hero {
  padding: clamp(1.2rem, 2.3vw, 1.8rem);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
  display: grid;
  align-content: center;
  gap: 0.7rem;
}

.benefit-hero h3 {
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
}

.benefit-side {
  display: grid;
  gap: 1rem;
}

.benefit-side-item {
  padding: 1.05rem 1rem;
  display: grid;
  gap: 0.45rem;
}

.benefit-impact {
  color: #eef4ff;
  font-weight: 600;
  line-height: 1.45;
}

.benefit-support {
  font-size: 0.92rem;
}

.social-proof {
  border-radius: 20px;
  border: 1px solid rgba(151, 173, 204, 0.24);
  background:
    radial-gradient(circle at 88% 14%, rgba(119, 93, 184, 0.28), transparent 30%),
    linear-gradient(160deg, rgba(13, 22, 35, 0.95), rgba(8, 14, 23, 0.98));
  padding: clamp(1.4rem, 4vw, 2.4rem);
  display: grid;
  gap: 1rem;
}

.social-proof-premium {
  padding: clamp(1.5rem, 4.2vw, 2.8rem);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 12%, rgba(123, 95, 190, 0.22), transparent 34%),
    linear-gradient(160deg, rgba(14, 23, 36, 0.96), rgba(8, 14, 23, 0.99));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.3);
}

.social-proof-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.social-brand img {
  width: 104px;
  height: auto;
  filter: grayscale(1) contrast(1.12) brightness(1.18);
}

.social-brand-id {
  display: grid;
  gap: 0.1rem;
}

.social-brand-id strong {
  font-size: 1rem;
}

.social-brand-id span {
  font-size: 0.86rem;
  color: var(--lp-text-soft);
}

.social-quote {
  margin: 0;
  font-size: clamp(1.06rem, 2vw, 1.4rem);
  line-height: 1.55;
  max-width: 980px;
  color: var(--lp-text);
  position: relative;
  padding-left: clamp(1.2rem, 2vw, 1.8rem);
}

.social-quote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -0.18rem;
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  line-height: 1;
  color: #c5b0ed;
  opacity: 0.9;
}

.social-signature-slot {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px dashed rgba(150, 172, 202, 0.34);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  max-width: 420px;
  background: rgba(17, 28, 43, 0.45);
}

.signature-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(159, 181, 213, 0.45);
  background:
    radial-gradient(circle at 50% 32%, rgba(168, 189, 220, 0.45), rgba(109, 131, 163, 0.15)),
    rgba(16, 27, 42, 0.85);
}

.signature-text {
  display: grid;
  gap: 0.1rem;
}

.signature-text strong {
  font-size: 0.9rem;
}

.signature-text span {
  font-size: 0.8rem;
  color: #ced9eb;
}

.signature-text small {
  font-size: 0.74rem;
  color: var(--lp-text-soft);
}

.social-outcomes {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.social-outcomes article {
  border-radius: 12px;
  border: 1px solid rgba(150, 173, 204, 0.22);
  background: rgba(17, 28, 43, 0.7);
  padding: 0.9rem;
  display: flex;
  align-items: center;
  min-height: 74px;
}

.cta-band {
  border-radius: 20px;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(150, 172, 202, 0.28);
  background:
    radial-gradient(circle at 82% 18%, rgba(121, 94, 188, 0.34), transparent 34%),
    linear-gradient(150deg, rgba(13, 22, 35, 0.95), rgba(8, 14, 23, 0.98));
}

.cta-band h2 {
  max-width: 740px;
  margin: 0.75rem auto 0.9rem;
}

.cta-band p {
  max-width: 640px;
  margin-inline: auto;
}

.cta-band .hero-cta-group {
  justify-content: center;
}

.lp-footer {
  border-top: 1px solid rgba(145, 168, 199, 0.24);
  background: #04080f;
}

.lp-footer-content {
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.lp-footer-brand {
  display: grid;
  gap: 0.55rem;
}

.lp-footer-brand p {
  font-size: 0.9rem;
}

.lp-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.lp-footer-links a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--lp-text-soft);
}

.lp-footer-links a:hover,
.lp-footer-links a:focus {
  color: var(--lp-text);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.delay-1 {
  transition-delay: 0.08s;
}

.reveal.delay-2 {
  transition-delay: 0.16s;
}

.reveal.delay-3 {
  transition-delay: 0.24s;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1199px) {
  .channel-layout,
  .impact-hero-grid,
  .impact-context-grid,
  .benefits-editorial {
    grid-template-columns: 1fr;
  }

  .otto-layout {
    gap: 1.4rem;
  }

  .execution-flow {
    max-width: 100%;
    margin-inline: 0;
  }
}

@media (max-width: 991px) {
  .section-shell {
    padding: 3.6rem 0;
  }

  .lp-nav-shell {
    padding: 0.65rem 0.9rem;
  }

  .lp-nav-cta {
    margin-top: 1rem;
    justify-content: flex-start;
  }

  .pain-editorial,
  .how-timeline,
  .how-flow,
  .channel-flow,
  .product-feature-main,
  .product-feature-row,
  .channel-layout,
  .impact-hero-grid,
  .impact-context-grid,
  .benefits-editorial,
  .social-outcomes,
  .otto-layout {
    grid-template-columns: 1fr;
  }

  .channel-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .execution-flow::before {
    left: 22px;
  }

  .social-proof-top {
    align-items: flex-start;
  }

  .flow-connector {
    width: 2px;
    height: 26px;
    margin: -0.3rem auto;
    background: linear-gradient(180deg, rgba(149, 172, 203, 0.35), rgba(149, 172, 203, 0.9));
  }

  .flow-connector::after {
    right: 50%;
    top: auto;
    bottom: -2px;
    transform: translateX(50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid rgba(149, 172, 203, 0.9);
    border-bottom: 0;
  }

  .hero-product-frame {
    max-width: 620px;
    margin-inline: auto;
  }

  .otto-content {
    order: 2;
    max-width: 100%;
  }

  .otto-chat-column {
    order: 1;
    justify-items: stretch;
  }

  .otto-chat-shell {
    width: 100%;
    max-width: 100%;
    max-height: none;
  }
}

@media (max-width: 767px) {
  .lp-hero {
    padding-top: 2.2rem;
  }

  .hero-frame-screen {
    grid-template-columns: 56px 1fr;
    min-height: 272px;
  }

  .screen-kpis {
    grid-template-columns: 1fr;
  }

  .lp-btn-primary,
  .lp-btn-ghost,
  .lp-btn-outline {
    width: 100%;
    text-align: center;
  }

  .hero-cta-group {
    width: 100%;
  }

  .product-feature-main,
  .product-feature-mini {
    padding: 0.9rem;
  }

  .media-main {
    min-height: 240px;
  }

  .media-mini {
    min-height: 210px;
  }

  .app-phone {
    width: min(420px, 96vw);
  }

  .impact-value {
    font-size: clamp(2.15rem, 9vw, 2.8rem);
  }

  .logo-track {
    animation-duration: 40s;
  }

  .logo-item-brand img {
    max-height: 36px;
    max-width: 164px;
  }

  .logo-item-brand {
    width: 172px;
    height: 56px;
  }

  .otto-layout {
    gap: 1.05rem;
  }

  .otto-content h2 {
    max-width: 18ch;
  }

  .otto-subheadline {
    font-size: 0.92rem;
  }

  .otto-value-list {
    margin-top: 0.95rem;
  }

  .otto-value-card {
    padding: 0.78rem;
    grid-template-columns: 36px 1fr;
    gap: 0.62rem;
  }

  .otto-value-card i {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .otto-value-card h3 {
    font-size: 0.92rem;
  }

  .otto-value-card p {
    font-size: 0.82rem;
  }

  .otto-chat-header {
    padding: 0.62rem 0.7rem;
  }

  .otto-chat-body {
    padding: 0.66rem;
    gap: 0.5rem;
  }

  .otto-message-user {
    width: min(340px, 100%);
    padding: 0.52rem 0.6rem;
  }

  .otto-message-assistant {
    padding: 0.56rem;
  }

  .otto-insight-item {
    padding: 0.46rem 0.5rem;
  }

  .otto-insight-item strong {
    font-size: 0.78rem;
  }

  .otto-insight-item p,
  .otto-recommendation p {
    font-size: 0.76rem;
  }

  .otto-chat-input-sim {
    padding: 0.5rem 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.delay-1,
  .reveal.delay-2,
  .reveal.delay-3 {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .logo-track {
    animation: none;
  }

  .otto-cursor {
    animation: none;
    opacity: 1;
  }

  .otto-chat-column.reveal.show .otto-chat-shell {
    animation: none;
  }
}
