/* Nexius marketing landing — stessi token Sirius, pod = thread chat */
.sv-hero--compact { min-height: auto; }
.sv-hero--compact .sv-hero__title {
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  margin: 0 0 1rem;
}
.sv-hero--compact .sv-hero__actions { margin-bottom: 0; }

.nx-lp-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
@media (max-width: 920px) {
  .nx-lp-hero__grid { grid-template-columns: 1fr; }
}

.nx-lp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.nx-lp-pills span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--sv-border);
  background: var(--sv-white);
  font-size: 0.78rem;
  font-weight: 750;
  color: var(--sv-ink-soft);
}
.nx-lp-pills i { color: var(--sv-blue-mid); }

/* Pod: thread investigativo */
.nx-lp-thread {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(30, 58, 138, 0.2);
  background: #0b1220;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.22);
  color: #e2e8f0;
}
.nx-lp-thread__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(15, 23, 42, 0.85);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}
.nx-lp-thread__bar strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: #f8fafc;
}
.nx-lp-thread__plat {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #86efac;
}
.nx-lp-thread__consent {
  font-size: 0.7rem;
  font-weight: 750;
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
}
.nx-lp-thread__layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 0;
  min-height: 280px;
}
@media (max-width: 560px) {
  .nx-lp-thread__layout { grid-template-columns: 1fr; }
}
.nx-lp-thread__chat {
  padding: 1rem 0.95rem 0.85rem;
  display: grid;
  gap: 0.65rem;
  align-content: start;
  background:
    radial-gradient(50% 40% at 10% 0%, rgba(37, 99, 235, 0.18), transparent 60%),
    #0f172a;
}
.nx-lp-bubble {
  max-width: 92%;
  padding: 0.55rem 0.7rem 0.4rem;
  border-radius: 14px;
  font-size: 0.82rem;
  line-height: 1.4;
  animation: nx-lp-in 0.55s var(--sv-ease) both;
}
.nx-lp-bubble:nth-child(2) { animation-delay: 0.12s; }
.nx-lp-bubble:nth-child(3) { animation-delay: 0.24s; }
@keyframes nx-lp-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.nx-lp-bubble--in {
  justify-self: start;
  background: #1e293b;
  border: 1px solid #334155;
  border-bottom-left-radius: 4px;
}
.nx-lp-bubble--out {
  justify-self: end;
  background: linear-gradient(145deg, #1e3a8a, #2563eb);
  border: 1px solid rgba(147, 197, 253, 0.35);
  border-bottom-right-radius: 4px;
  color: #fff;
}
.nx-lp-bubble--hit {
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.55), 0 8px 24px rgba(37, 99, 235, 0.25);
}
.nx-lp-bubble__who {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #93c5fd;
  margin-bottom: 0.2rem;
}
.nx-lp-bubble--out .nx-lp-bubble__who { color: #dbeafe; }
.nx-lp-bubble p { margin: 0; font-weight: 600; }
.nx-lp-bubble time {
  display: block;
  text-align: right;
  margin-top: 0.25rem;
  font-size: 0.62rem;
  font-weight: 650;
  opacity: 0.7;
}
.nx-lp-thread__timeline {
  margin-top: 0.35rem;
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(51, 65, 85, 0.9);
}
.nx-lp-thread__spike {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 0.35rem;
}
.nx-lp-thread__bars {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.25rem;
  align-items: end;
  height: 28px;
}
.nx-lp-thread__bars i {
  display: block;
  height: 40%;
  border-radius: 3px;
  background: #334155;
}
.nx-lp-thread__bars i.is-hot {
  height: 100%;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
}
.nx-lp-thread__side {
  padding: 0.95rem 0.85rem;
  border-left: 1px solid rgba(59, 130, 246, 0.18);
  background: rgba(15, 23, 42, 0.92);
}
@media (max-width: 560px) {
  .nx-lp-thread__side { border-left: 0; border-top: 1px solid rgba(59, 130, 246, 0.18); }
}
.nx-lp-thread__side-title {
  margin: 0 0 0.55rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #94a3b8;
}
.nx-lp-thread__side ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.nx-lp-thread__side li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  background: rgba(30, 58, 138, 0.35);
  border: 1px solid rgba(59, 130, 246, 0.25);
  font-size: 0.75rem;
  font-weight: 700;
  color: #e2e8f0;
}
.nx-lp-thread__side i { color: #60a5fa; }
.nx-lp-thread__stats {
  margin: 0.75rem 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
}
.nx-lp-thread__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  background: rgba(2, 6, 23, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
}
.nx-lp-thread__foot i { color: #60a5fa; margin-right: 0.25rem; }
.nx-lp-thread__cta {
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  background: var(--sv-blue-mid);
  color: #fff;
  font-weight: 750;
}

.nx-lp-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 42rem;
  display: grid;
  gap: 0.7rem;
}
.nx-lp-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: var(--sv-white);
  border: 1px solid var(--sv-border);
  border-radius: 12px;
  font-weight: 600;
  color: var(--sv-ink-soft);
  font-size: 0.95rem;
}
.nx-lp-list i { color: var(--sv-blue-mid); margin-top: 0.15rem; flex-shrink: 0; }

.nx-lp-note {
  margin: 1.25rem auto 0;
  max-width: 36rem;
  font-size: 0.9rem;
  color: var(--sv-muted);
  line-height: 1.45;
}
.nx-lp-mid-cta { margin-top: 1.5rem; }

.nx-lp-cards {
  display: grid;
  gap: 0.85rem;
}
.nx-lp-cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 720px) { .nx-lp-cards--2 { grid-template-columns: 1fr; } }
.nx-lp-cards article {
  background: var(--sv-white);
  border: 1px solid var(--sv-border);
  border-radius: 16px;
  padding: 1.25rem 1.2rem;
}
.nx-lp-cards h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--sv-ink);
}
.nx-lp-cards p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--sv-ink-soft);
  line-height: 1.45;
}

.nx-lp-who {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (max-width: 900px) { .nx-lp-who { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .nx-lp-who { grid-template-columns: 1fr; } }
.nx-lp-who__item {
  padding: 1.1rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--sv-border);
  background: var(--sv-white);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--sv-ink);
  text-align: center;
}

.nx-lp-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
@media (max-width: 900px) { .nx-lp-flow { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .nx-lp-flow { grid-template-columns: 1fr; } }
.nx-lp-flow li {
  background: var(--sv-white);
  border: 1px solid var(--sv-border);
  border-radius: 16px;
  padding: 1.2rem 1.1rem;
}
.nx-lp-flow__num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--sv-blue-mid);
  margin-bottom: 0.45rem;
}
.nx-lp-flow strong {
  display: block;
  font-size: 1rem;
  color: var(--sv-ink);
  margin-bottom: 0.4rem;
}
.nx-lp-flow p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--sv-ink-soft);
  line-height: 1.45;
}

.nx-lp-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
@media (max-width: 880px) { .nx-lp-split { grid-template-columns: 1fr; } }

.nx-lp-checks {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.nx-lp-checks li {
  display: flex;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--sv-ink-soft);
  font-size: 0.95rem;
}
.nx-lp-checks i { color: var(--sv-blue-mid); }

.nx-lp-panel {
  background: var(--sv-surface);
  border: 1px solid var(--sv-border);
  border-radius: 20px;
  padding: 1.5rem 1.35rem;
}
.nx-lp-panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--sv-blue-soft);
  color: var(--sv-blue-mid);
  font-size: 0.78rem;
  font-weight: 800;
}
.nx-lp-panel strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 850;
  color: var(--sv-ink);
  margin-bottom: 0.5rem;
}
.nx-lp-panel p {
  margin: 0 0 1.1rem;
  font-size: 0.92rem;
  color: var(--sv-ink-soft);
  line-height: 1.45;
}

.nx-lp-cta-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}

@media (prefers-reduced-motion: reduce) {
  .nx-lp-bubble { animation: none; }
}
