/* ==========================================================================
   AmplificaBR AdServer — Landing institucional (redesign enterprise premium)
   Tema escuro com profundidade + painéis de produto claros (product-led).
   CSS puro. Reaproveita variáveis de marca de /styles.css quando útil.
   ========================================================================== */

.lp {
  /* Marca / paleta */
  --lp-primary: #1155ff;
  --lp-primary-2: #3b82f6;
  --lp-cyan: #38bdf8;
  --lp-cyan-2: #22d3ee;
  --lp-violet: #8b5cf6;

  /* Fundo escuro com profundidade */
  --lp-bg: #060d1f;
  --lp-bg-2: #0a1530;
  --lp-bg-3: #0d1b3d;

  /* Superfícies "glass" sobre fundo escuro */
  --lp-glass: rgba(255, 255, 255, 0.04);
  --lp-glass-2: rgba(255, 255, 255, 0.06);
  --lp-border: rgba(255, 255, 255, 0.09);
  --lp-border-strong: rgba(255, 255, 255, 0.16);

  /* Texto sobre escuro */
  --lp-text: rgba(255, 255, 255, 0.94);
  --lp-text-soft: rgba(226, 234, 252, 0.72);
  --lp-text-muted: rgba(180, 196, 230, 0.55);

  /* Painel de produto (claro) */
  --lp-panel: #ffffff;
  --lp-panel-soft: #f6f8fc;
  --lp-panel-line: #e6ebf4;
  --lp-panel-text: #16203a;
  --lp-panel-muted: #7c89a3;

  /* Status */
  --lp-green: #22c55e;
  --lp-green-bg: rgba(34, 197, 94, 0.14);
  --lp-amber: #f59e0b;
  --lp-amber-bg: rgba(245, 158, 11, 0.16);
  --lp-red: #ef4444;
  --lp-red-bg: rgba(239, 68, 68, 0.15);

  --lp-max: 1200px;
  --lp-ease: cubic-bezier(0.22, 1, 0.36, 1);

  position: relative;
  color: var(--lp-text);
  background: var(--lp-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.lp *,
.lp *::before,
.lp *::after {
  box-sizing: border-box;
}

/* ---------- Atmosfera de fundo (glow + grid + noise) ---------- */
.lp::before {
  /* glows radiais ambientais */
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 78% -8%, rgba(56, 189, 248, 0.16), transparent 60%),
    radial-gradient(820px 560px at 12% 4%, rgba(17, 85, 255, 0.22), transparent 58%),
    radial-gradient(1100px 700px at 50% 120%, rgba(139, 92, 246, 0.14), transparent 60%),
    linear-gradient(180deg, var(--lp-bg), var(--lp-bg-2) 40%, var(--lp-bg) 100%);
}

.lp::after {
  /* grid técnico discreto */
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(1200px 800px at 50% -5%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(1200px 800px at 50% -5%, #000 0%, transparent 75%);
}

.lp > * {
  position: relative;
  z-index: 1;
}

/* Noise sutil aplicado no body */
.lp .lp-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* ---------- Tipografia & utilitários ---------- */
.lp a {
  text-decoration: none;
  color: inherit;
}

.lp-container {
  width: 100%;
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 24px;
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-cyan);
}

.lp-eyebrow::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--lp-cyan), transparent);
}

.lp-section {
  padding: 104px 0;
}

.lp-section-head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.lp-section-head h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 16px 0 18px;
}

.lp-section-head p {
  font-size: 17.5px;
  line-height: 1.62;
  color: var(--lp-text-soft);
  margin: 0;
}

.lp-grad-text {
  background: linear-gradient(96deg, #fff 10%, #9fc3ff 45%, var(--lp-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Botões ---------- */
.lp-btn {
  --shine: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.25s var(--lp-ease),
    box-shadow 0.25s var(--lp-ease),
    background 0.2s ease,
    border-color 0.2s ease;
}

.lp-btn svg {
  width: 18px;
  height: 18px;
}

.lp-btn-primary {
  background: linear-gradient(135deg, var(--lp-primary) 0%, #2563eb 50%, var(--lp-cyan) 160%);
  color: #fff;
  box-shadow:
    0 10px 30px rgba(17, 85, 255, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 40px rgba(17, 85, 255, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.lp-btn-ghost {
  background: var(--lp-glass);
  color: #fff;
  border-color: var(--lp-border-strong);
  backdrop-filter: blur(8px);
}

.lp-btn-ghost:hover {
  background: var(--lp-glass-2);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(6, 13, 31, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--lp-border);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.lp-header-logo {
  height: 36px;
  width: auto;
  display: block;
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.lp-nav-links a {
  position: relative;
  font-size: 14.5px;
  font-weight: 550;
  color: var(--lp-text-soft);
  transition: color 0.18s ease;
}

.lp-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--lp-primary), var(--lp-cyan));
  transition: width 0.25s var(--lp-ease);
}

.lp-nav-links a:hover {
  color: #fff;
}

.lp-nav-links a:hover::after {
  width: 100%;
}

/* ---------- HERO ---------- */
.lp-hero {
  padding: 92px 0 100px;
}

.lp-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  gap: 56px;
  align-items: center;
}

.lp-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px 7px 11px;
  border-radius: 999px;
  background: var(--lp-glass);
  border: 1px solid var(--lp-border-strong);
  font-size: 13px;
  font-weight: 600;
  color: var(--lp-text-soft);
  backdrop-filter: blur(8px);
  margin-bottom: 26px;
}

.lp-live-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lp-green);
}

.lp-live-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--lp-green);
  animation: lpPulse 2s var(--lp-ease) infinite;
}

@keyframes lpPulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.7); opacity: 0; }
}

.lp-hero h1 {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.04;
  font-weight: 820;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}

.lp-hero .lp-lead {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.62;
  color: var(--lp-text-soft);
  max-width: 540px;
  margin: 0 0 34px;
}

.lp-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.lp-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: var(--lp-text-muted);
  font-size: 13.5px;
  font-weight: 500;
}

.lp-hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lp-hero-trust svg {
  width: 16px;
  height: 16px;
  color: var(--lp-cyan);
}

/* ---------- Janela de produto (glass / premium) ---------- */
.lp-hero-stage {
  position: relative;
  perspective: 1600px;
}

.lp-window {
  position: relative;
  background: var(--lp-panel);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 50px 100px -30px rgba(2, 8, 23, 0.8),
    0 0 0 1px rgba(17, 85, 255, 0.06);
  color: var(--lp-panel-text);
}

.lp-window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: var(--lp-panel-soft);
  border-bottom: 1px solid var(--lp-panel-line);
}

.lp-window-bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #cdd6e4;
}

.lp-window-bar i:nth-child(1) { background: #ff5f57; }
.lp-window-bar i:nth-child(2) { background: #febc2e; }
.lp-window-bar i:nth-child(3) { background: #28c840; }

.lp-window-bar .url {
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--lp-panel-muted);
  font-weight: 500;
}

.lp-window-bar .url svg { width: 12px; height: 12px; }

.lp-window-body {
  padding: 18px;
}

.lp-app {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 360px;
}

.lp-app-side {
  background: linear-gradient(180deg, #0b1730, #0a1228);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-app-side .brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  padding: 4px 6px;
}

.lp-app-side .brand b {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--lp-primary), var(--lp-cyan));
  font-size: 12px;
}

.lp-nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 550;
  color: rgba(255, 255, 255, 0.62);
}

.lp-nav-item svg { width: 14px; height: 14px; }

.lp-nav-item.active {
  background: rgba(17, 85, 255, 0.22);
  color: #fff;
}

.lp-app-main {
  padding: 16px 18px;
  background: var(--lp-panel);
}

.lp-app-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.lp-app-head h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 750;
  color: var(--lp-panel-text);
}

.lp-app-head .range {
  font-size: 11px;
  color: var(--lp-panel-muted);
  border: 1px solid var(--lp-panel-line);
  padding: 4px 9px;
  border-radius: 7px;
}

/* KPI mini-cards */
.lp-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-bottom: 14px;
}

.lp-kpi {
  background: var(--lp-panel-soft);
  border: 1px solid var(--lp-panel-line);
  border-radius: 11px;
  padding: 11px;
}

.lp-kpi .lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lp-panel-muted);
  margin-bottom: 6px;
}

.lp-kpi .val {
  font-size: 18px;
  font-weight: 820;
  letter-spacing: -0.02em;
  color: var(--lp-panel-text);
}

.lp-kpi .delta {
  font-size: 10.5px;
  font-weight: 700;
}

.lp-kpi .delta.up { color: var(--lp-green); }
.lp-kpi .delta.down { color: var(--lp-red); }

/* Area chart (svg) dentro do painel claro */
.lp-areachart {
  border: 1px solid var(--lp-panel-line);
  border-radius: 12px;
  padding: 12px 12px 6px;
  background: linear-gradient(180deg, #fff, var(--lp-panel-soft));
}

.lp-areachart svg { width: 100%; height: 110px; display: block; overflow: visible; }

.lp-spark-line {
  fill: none;
  stroke: var(--lp-primary);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
}

.is-visible .lp-spark-line {
  animation: lpDraw 1.8s var(--lp-ease) forwards;
}

@keyframes lpDraw {
  to { stroke-dashoffset: 0; }
}

/* ---------- Floating metric cards ---------- */
.lp-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(10, 18, 40, 0.72);
  border: 1px solid var(--lp-border-strong);
  box-shadow: 0 20px 50px -15px rgba(2, 8, 23, 0.7);
  backdrop-filter: blur(14px) saturate(150%);
  animation: lpFloat 6s ease-in-out infinite;
}

.lp-float .ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(17, 85, 255, 0.3), rgba(56, 189, 248, 0.3));
  border: 1px solid var(--lp-border-strong);
}

.lp-float .ic svg { width: 18px; height: 18px; color: #bfe0ff; }

.lp-float .lbl {
  font-size: 10.5px;
  color: var(--lp-text-muted);
  letter-spacing: 0.02em;
}

.lp-float .val {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.lp-float-a {
  top: -22px;
  right: -18px;
  animation-delay: 0s;
}

.lp-float-b {
  bottom: 64px;
  left: -34px;
  animation-delay: 1.4s;
}

@keyframes lpFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Strip / barra de formatos ---------- */
.lp-strip {
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  background: rgba(255, 255, 255, 0.015);
  padding: 22px 0;
}

.lp-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
}

.lp-strip-label {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-text-muted);
  margin-right: 8px;
}

.lp-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 650;
  color: var(--lp-text-soft);
}

.lp-strip-item svg { width: 16px; height: 16px; color: var(--lp-cyan); }

/* ---------- Features (cards glass + ícone premium) ---------- */
.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-feature {
  position: relative;
  padding: 26px;
  border-radius: 18px;
  background: var(--lp-glass);
  border: 1px solid var(--lp-border);
  overflow: hidden;
  transition:
    transform 0.3s var(--lp-ease),
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s var(--lp-ease);
}

/* gradient border highlight no hover */
.lp-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.6), rgba(17, 85, 255, 0.5), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* glow radial seguindo o card */
.lp-feature::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  top: -120px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.lp-feature:hover {
  transform: translateY(-6px);
  background: var(--lp-glass-2);
  box-shadow: 0 30px 60px -28px rgba(2, 8, 23, 0.9);
}

.lp-feature:hover::before,
.lp-feature:hover::after {
  opacity: 1;
}

.lp-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(17, 85, 255, 0.22), rgba(56, 189, 248, 0.16));
  border: 1px solid var(--lp-border-strong);
  position: relative;
}

.lp-feature-icon svg {
  width: 24px;
  height: 24px;
}

.lp-feature h3 {
  font-size: 18px;
  font-weight: 720;
  letter-spacing: -0.01em;
  margin: 0 0 9px;
  color: #fff;
}

.lp-feature p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--lp-text-soft);
  margin: 0;
}

/* Ícone SVG: stroke + gradiente (duotone) */
.lp-ic-stroke {
  fill: none;
  stroke: url(#lpIcGrad);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp-ic-soft {
  fill: url(#lpIcGradSoft);
  stroke: none;
}

/* ---------- Formatos (chips) ---------- */
.lp-formats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.lp-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--lp-glass);
  border: 1px solid var(--lp-border);
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-text-soft);
  transition: border-color 0.25s ease, transform 0.25s var(--lp-ease), color 0.25s ease;
}

.lp-chip svg { width: 17px; height: 17px; color: var(--lp-cyan); }

.lp-chip:hover {
  transform: translateY(-3px);
  border-color: var(--lp-border-strong);
  color: #fff;
}

/* ---------- Showcase product UI ---------- */
.lp-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 52px;
  align-items: center;
}

.lp-showcase.reverse .lp-showcase-text { order: 2; }
.lp-showcase.reverse .lp-showcase-ui { order: 1; }

.lp-showcase + .lp-showcase {
  margin-top: 88px;
}

.lp-showcase-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-cyan);
  margin-bottom: 14px;
}

.lp-showcase-tag svg { width: 15px; height: 15px; }

.lp-showcase-text h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 780;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: #fff;
}

.lp-showcase-text p {
  font-size: 16px;
  line-height: 1.62;
  color: var(--lp-text-soft);
  margin: 0 0 20px;
}

.lp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}

.lp-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5;
  color: var(--lp-text);
}

.lp-list li svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 0;
  color: var(--lp-cyan);
}

/* janela de produto na showcase = fundo claro */
.lp-ui-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
  color: var(--lp-panel-text);
}

.lp-ui-table th {
  text-align: left;
  text-transform: uppercase;
  font-size: 9.5px;
  letter-spacing: 0.06em;
  color: var(--lp-panel-muted);
  padding: 9px 10px;
  border-bottom: 1px solid var(--lp-panel-line);
}

.lp-ui-table td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--lp-panel-line);
  vertical-align: middle;
}

.lp-ui-table tr:last-child td { border-bottom: none; }

.lp-ui-table .muted { color: var(--lp-panel-muted); font-size: 10.5px; }

.lp-thumb {
  width: 36px;
  height: 27px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--lp-cyan), var(--lp-primary));
  flex: none;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.4;
}

.lp-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.lp-badge.green { color: #047a3e; background: var(--lp-green-bg); }
.lp-badge.blue { color: #1247c9; background: rgba(17, 85, 255, 0.12); }
.lp-badge.amber { color: #a85d06; background: var(--lp-amber-bg); }
.lp-badge.red { color: #bd2626; background: var(--lp-red-bg); }
.lp-badge.violet { color: #6d28d9; background: rgba(139, 92, 246, 0.14); }

/* pacing bar */
.lp-pace {
  width: 86px;
  height: 6px;
  border-radius: 99px;
  background: var(--lp-panel-line);
  overflow: hidden;
}

.lp-pace > i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--lp-primary), var(--lp-cyan));
}

/* delivery logs / terminal */
.lp-logs {
  background: #0a1124;
  border-radius: 12px;
  padding: 14px 16px;
  font-family: "SFMono-Regular", "JetBrains Mono", ui-monospace, Menlo, Consolas, monospace;
  font-size: 12px;
  line-height: 1.9;
  color: #cdd9f5;
  max-height: 320px;
  overflow: hidden;
}

.lp-log {
  display: flex;
  gap: 10px;
  align-items: baseline;
  white-space: nowrap;
}

.lp-log .ts { color: #5d6d93; }
.lp-log .ev {
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 5px;
  font-size: 10.5px;
}
.lp-log .ev.req { color: #7dd3fc; background: rgba(56, 189, 248, 0.12); }
.lp-log .ev.imp { color: #86efac; background: rgba(34, 197, 94, 0.12); }
.lp-log .ev.clk { color: #fcd34d; background: rgba(245, 158, 11, 0.14); }
.lp-log .ev.view { color: #c4b5fd; background: rgba(139, 92, 246, 0.16); }
.lp-log .tok { color: #6b7aa3; }
.lp-log .ok { color: #4ade80; margin-left: auto; }

/* donut traffic quality */
.lp-tq {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lp-donut {
  --val: 96;
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  flex: none;
  background:
    conic-gradient(
      var(--lp-green) calc(var(--val) * 1%),
      var(--lp-amber) calc(var(--val) * 1%) calc((var(--val) + 3) * 1%),
      var(--lp-red) calc((var(--val) + 3) * 1%) 100%
    );
  display: grid;
  place-items: center;
}

.lp-donut::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: var(--lp-panel);
}

.lp-donut .lp-donut-c {
  position: relative;
  z-index: 1;
  text-align: center;
}

.lp-donut .lp-donut-c b {
  display: block;
  font-size: 22px;
  font-weight: 820;
  color: var(--lp-panel-text);
  letter-spacing: -0.02em;
}

.lp-donut .lp-donut-c span {
  font-size: 10px;
  color: var(--lp-panel-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-tq-legend { display: grid; gap: 12px; flex: 1; }

.lp-tq-legend .row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--lp-panel-text);
}

.lp-tq-legend .row .k {
  width: 9px;
  height: 9px;
  border-radius: 3px;
}

.lp-tq-legend .row .n { margin-left: auto; font-weight: 750; }

/* ---------- Banda de métricas ---------- */
.lp-metricsband {
  position: relative;
  padding: 76px 0;
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  background:
    radial-gradient(700px 300px at 50% -40%, rgba(17, 85, 255, 0.22), transparent 70%);
}

.lp-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.lp-metric .num {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 840;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff, #9fc3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-metric .cap {
  margin-top: 8px;
  font-size: 14px;
  color: var(--lp-text-soft);
}

/* ---------- Segurança ---------- */
.lp-sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-sec-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--lp-glass);
  border: 1px solid var(--lp-border);
  font-size: 15px;
  font-weight: 600;
  color: var(--lp-text);
  transition: border-color 0.25s ease, transform 0.25s var(--lp-ease), background 0.25s ease;
}

.lp-sec-item:hover {
  transform: translateY(-3px);
  border-color: var(--lp-border-strong);
  background: var(--lp-glass-2);
}

.lp-sec-item .ic {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex: none;
  background: linear-gradient(135deg, rgba(17, 85, 255, 0.2), rgba(56, 189, 248, 0.16));
  border: 1px solid var(--lp-border-strong);
}

.lp-sec-item .ic svg { width: 20px; height: 20px; }

/* ---------- CTA final ---------- */
.lp-cta {
  position: relative;
  text-align: center;
  padding: 100px 0;
  overflow: hidden;
}

.lp-cta-card {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 64px 40px;
  border-radius: 28px;
  background:
    radial-gradient(600px 300px at 50% -30%, rgba(56, 189, 248, 0.22), transparent 70%),
    linear-gradient(160deg, rgba(17, 85, 255, 0.14), rgba(10, 18, 40, 0.6));
  border: 1px solid var(--lp-border-strong);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.lp-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(400px 200px at 50% 0%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(400px 200px at 50% 0%, #000, transparent 75%);
  pointer-events: none;
}

.lp-cta-card > * { position: relative; z-index: 1; }

.lp-cta-card h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 820;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.lp-cta-card p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--lp-text-soft);
  max-width: 540px;
  margin: 0 auto 32px;
}

/* ---------- Footer ---------- */
.lp-footer {
  border-top: 1px solid var(--lp-border);
  padding: 48px 0 40px;
  background: rgba(4, 9, 22, 0.6);
}

.lp-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.lp-footer img { height: 30px; opacity: 0.95; }

.lp-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.lp-footer-links a {
  font-size: 14px;
  color: var(--lp-text-soft);
  transition: color 0.18s ease;
}

.lp-footer-links a:hover { color: #fff; }

.lp-footer-copy {
  width: 100%;
  margin-top: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--lp-border);
  font-size: 13px;
  color: var(--lp-text-muted);
}

/* ==========================================================================
   Microinterações — scroll reveal
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s var(--lp-ease),
    transform 0.7s var(--lp-ease);
  transition-delay: calc(var(--i, 0) * 80ms);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .lp *,
  .lp *::before,
  .lp *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .lp-spark-line { stroke-dashoffset: 0 !important; }
}

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 980px) {
  .lp-hero-inner {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .lp-hero-stage { max-width: 560px; }

  .lp-features { grid-template-columns: repeat(2, 1fr); }

  .lp-sec-grid { grid-template-columns: repeat(2, 1fr); }

  .lp-metrics { grid-template-columns: repeat(2, 1fr); gap: 34px 24px; }

  .lp-showcase,
  .lp-showcase.reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .lp-showcase.reverse .lp-showcase-text,
  .lp-showcase.reverse .lp-showcase-ui { order: initial; }

  .lp-nav-links { display: none; }

  .lp-float-b { left: -10px; }
  .lp-float-a { right: -6px; }
}

@media (max-width: 600px) {
  .lp-section { padding: 72px 0; }
  .lp-hero { padding: 64px 0 76px; }

  .lp-features,
  .lp-sec-grid { grid-template-columns: 1fr; }

  .lp-kpis { grid-template-columns: repeat(2, 1fr); }

  .lp-app { grid-template-columns: 1fr; }
  .lp-app-side { display: none; }

  .lp-float { display: none; }

  .lp-tq { flex-direction: column; align-items: flex-start; }

  .lp-cta-card { padding: 44px 22px; }
}
