/* ============================================
   AXIOS³ — Shell compartilhado das landings
   Carregar depois de /styles.css (tokens).
   Acento: sempre via --accent-* (nunca --teal-*).
   ============================================ */

html { scroll-behavior: smooth; }
body { background: var(--bg); }

.lp-container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

/* Header */
.lp-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.lp-header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  height: 64px;
}
.lp-nav { display: flex; align-items: center; gap: 26px; }
.lp-nav a {
  font-size: 13.5px; font-weight: 500; color: var(--ink-muted); text-decoration: none;
  white-space: nowrap;
  transition: color .15s ease;
}
.lp-nav a:hover { color: var(--accent-700); }
@media (max-width: 860px) { .lp-nav { display: none; } }

.lp-mark {
  width: 34px; height: 34px; border-radius: 8px; overflow: hidden;
  background: #0a1330; border: 1px solid rgba(15,23,42,0.10); line-height: 0; flex-shrink: 0;
}
.lp-mark img { width: 100%; height: 100%; margin: 0; object-fit: cover; display: block; }
.lp-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.lp-header-left { display: flex; align-items: center; gap: 18px; min-width: 0; }

/* Seletor de produto (TOC / Sentinel) */
.lp-switcher {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px; border: 1px solid var(--border); border-radius: var(--r-md);
  background: var(--bg-soft);
}
.lp-switcher a {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--ink-muted); text-decoration: none;
  padding: 5px 10px; border-radius: var(--r-sm); line-height: 1;
  transition: color .15s ease, background .15s ease;
}
.lp-switcher a:hover { color: var(--ink); }
.lp-switcher a[aria-current="page"] {
  color: var(--accent-700); background: var(--accent-50);
  border: 1px solid var(--accent-tint-border);
  padding: 4px 9px;
}

.lp-header .btn-primary { white-space: nowrap; }
@media (max-width: 560px) { .lp-header .btn-primary { display: none; } }

/* Menu mobile (details/summary, sem JS) */
.lp-nav-mobile { display: none; position: relative; }
@media (max-width: 860px) { .lp-nav-mobile { display: block; } }
.lp-nav-mobile summary {
  list-style: none; cursor: pointer;
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
  width: 36px; height: 36px; padding: 8px;
  border: 1px solid var(--border); border-radius: var(--r-md); background: var(--bg);
}
.lp-nav-mobile summary::-webkit-details-marker { display: none; }
.lp-nav-mobile summary span {
  display: block; height: 1.5px; background: var(--ink); border-radius: 2px;
}
.lp-nav-mobile[open] summary { border-color: var(--accent-500); }
.lp-nav-mobile-panel {
  position: absolute; right: 0; top: calc(100% + 10px); z-index: 60;
  min-width: 220px; padding: 8px;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column;
}
.lp-nav-mobile-panel a {
  font-size: 14px; font-weight: 500; color: var(--ink); text-decoration: none;
  padding: 10px 12px; border-radius: var(--r-md);
}
.lp-nav-mobile-panel a:hover { background: var(--bg-soft); color: var(--accent-700); }
.lp-nav-mobile-panel .sep {
  height: 1px; background: var(--border); margin: 6px 4px;
}
.lp-nav-mobile-panel .mono-link {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--ink-muted);
}

/* Hero */
.lp-hero {
  background: var(--slate-900); color: var(--ink-inv);
  position: relative; overflow: hidden;
}
.lp-hero-inner { padding-top: 92px; padding-bottom: 84px; position: relative; }
.lp-hero h1 {
  margin: 22px 0 0; font-size: 54px; font-weight: 500; line-height: 1.08;
  letter-spacing: -0.025em; max-width: 780px; text-wrap: balance;
}
.lp-hero h1 em { font-style: italic; font-weight: 400; color: var(--accent-300); }
.lp-hero p.lead {
  margin: 24px 0 0; font-size: 17px; line-height: 1.65; color: var(--slate-300); max-width: 640px;
}
.lp-hero-ctas { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.lp-hero-strip {
  margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; gap: 28px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em; color: var(--slate-400);
}
.lp-hero-strip strong { color: var(--accent-300); font-weight: 500; }
@media (max-width: 720px) { .lp-hero h1 { font-size: 38px; } }

.btn-lg { font-size: 15px; padding: 13px 22px; border-radius: var(--r-md); }
.btn-on-dark-ghost { border: 1px solid rgba(255,255,255,0.22); color: var(--ink-inv); background: transparent; }
.btn-on-dark-ghost:hover { border-color: var(--accent-300); color: var(--accent-300); }

/* Sections */
.lp-section { padding: 88px 0; }
.lp-section.soft { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.lp-kicker {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--accent-700);
}
.lp-kicker::before { content: ""; width: 7px; height: 7px; border-radius: 99px; background: var(--accent-500); }
.lp-section h2 {
  margin: 16px 0 0; font-size: 36px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.12;
  max-width: 620px; text-wrap: balance;
}
.lp-section p.sub { margin: 16px 0 0; font-size: 15.5px; line-height: 1.65; color: var(--ink-muted); max-width: 600px; }

/* Hover de cartões — realce calmo: eleva, tinge a borda e projeta sombra de acento */
.lp-pain, .lp-pillar, .lp-mode.light, .lp-step, .lp-fact {
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.lp-pain:hover, .lp-pillar:hover, .lp-mode.light:hover, .lp-step:not(.dark):hover, .lp-fact:hover {
  transform: translateY(-3px);
  border-color: var(--accent-hover-border);
  box-shadow: var(--accent-hover-shadow);
}
.lp-step.dark, .lp-mode.dark { transition: transform .2s ease, box-shadow .2s ease; }
.lp-step.dark:hover, .lp-mode.dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(2, 6, 23, 0.35);
}

/* Pain cards */
.lp-pains { margin-top: 44px; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.lp-pain {
  padding: 22px 22px 24px; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.lp-pain .n { font-family: var(--font-mono); font-size: 12px; color: var(--accent-700); }
.lp-pain h3 { margin: 10px 0 8px; font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em; }
.lp-pain p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-muted); }

/* Steps */
.lp-steps { margin-top: 48px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.lp-step {
  padding: 26px 24px 28px; border-radius: var(--r-lg);
  background: var(--bg); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
}
.lp-step.dark { background: var(--slate-900); border: none; color: var(--ink-inv); }
.lp-step .badge {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent-700);
}
.lp-step.dark .badge { color: var(--accent-300); }
.lp-step h3 { margin: 0; font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.lp-step p { margin: 0; font-size: 14px; line-height: 1.62; color: var(--ink-muted); }
.lp-step.dark p { color: var(--slate-300); }
.lp-step .ex {
  margin-top: auto; padding: 11px 14px; border-radius: var(--r-md);
  font-family: var(--font-mono); font-size: 12px; line-height: 1.55;
  background: var(--bg-soft); border: 1px solid var(--border); color: var(--ink);
}
.lp-step.dark .ex { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: var(--slate-200); }

/* Pillars */
.lp-pillars { margin-top: 48px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.lp-pillars.two-col { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
@media (max-width: 860px) { .lp-pillars.two-col { grid-template-columns: 1fr; } }
.lp-pillar { padding: 24px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); }
.lp-pillar h3 { margin: 0 0 8px; font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em; display: flex; align-items: baseline; gap: 9px; }
.lp-pillar h3 .dot { width: 8px; height: 8px; border-radius: 2px; background: var(--accent-500); flex-shrink: 0; }
.lp-pillar p { margin: 0 0 8px; font-size: 13.5px; line-height: 1.62; color: var(--ink-muted); }
.lp-pillar p:last-child { margin-bottom: 0; }
.lp-pillar ul { margin: 0 0 8px; padding-left: 18px; font-size: 13.5px; line-height: 1.62; color: var(--ink-muted); }
.lp-pillar .note {
  margin: 10px 0 0; padding-top: 10px; border-top: 1px dashed var(--border);
  font-size: 12.5px; line-height: 1.55; color: var(--ink-soft); font-style: italic;
}
.lp-integrations {
  margin-top: 28px; padding: 18px 22px; border: 1px dashed var(--border-strong); border-radius: var(--r-lg);
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-muted);
}
.lp-integrations strong { color: var(--accent-700); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; font-size: 11px; }

/* Deploy */
.lp-deploy { margin-top: 48px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 16px; }
.lp-mode { padding: 28px 26px; border-radius: var(--r-xl); }
.lp-mode.light { background: var(--bg); border: 1px solid var(--border); }
.lp-mode.dark { background: var(--slate-900); color: var(--ink-inv); }
.lp-mode .tagline { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.lp-mode.light .tagline { color: var(--accent-700); }
.lp-mode.dark .tagline { color: var(--accent-300); }
.lp-mode h3 { margin: 12px 0 10px; font-size: 22px; font-weight: 600; letter-spacing: -0.015em; }
.lp-mode p { margin: 0; font-size: 14px; line-height: 1.65; }
.lp-mode.light p { color: var(--ink-muted); }
.lp-mode.dark p { color: var(--slate-300); }
.lp-deploy-note { margin-top: 22px; font-family: var(--font-mono); font-size: 12.5px; color: var(--accent-700); }
.lp-security { margin-top: 36px; font-size: 13.5px; line-height: 1.65; color: var(--ink-muted); max-width: 640px; }

/* Capturas de tela / placeholders */
.lp-shot { margin: 0; }
.lp-shot .frame {
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
  line-height: 0; background: var(--bg);
}
.lp-shot img { width: 100%; height: auto; display: block; }
.lp-shot figcaption {
  margin-top: 10px; font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: 0.04em; color: var(--ink-muted); line-height: 1.5;
}
.lp-shot--placeholder .frame { border-style: dashed; border-color: var(--border-strong); }
.lp-shot--placeholder .frame .placeholder {
  border: none; border-radius: 0; width: 100%; height: 100%; padding: 16px;
}
.lp-shot--fade .frame {
  /* A captura "entra por baixo": mostra só a faixa superior e dissolve no fundo,
     para o hero não crescer além dos das outras páginas */
  max-height: 320px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 45%, transparent 96%);
  mask-image: linear-gradient(to bottom, #000 45%, transparent 96%);
  border-bottom: none;
}
.lp-shot-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
@media (max-width: 720px) { .lp-shot-row { grid-template-columns: 1fr; } }
/* No fundo escuro (hero), o placeholder precisa de tinta invertida */
.lp-hero .lp-shot--placeholder .frame { border-color: rgba(255,255,255,0.18); }
.lp-hero .lp-shot--placeholder .frame .placeholder {
  background-color: rgba(255,255,255,0.05);
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 8px);
  color: var(--slate-400);
}

/* Frase de fechamento em tipografia grande */
.lp-bigline {
  margin: 44px 0 0; font-size: 30px; font-weight: 500; letter-spacing: -0.02em;
  line-height: 1.25; max-width: 640px; text-wrap: balance;
}
@media (max-width: 720px) { .lp-bigline { font-size: 24px; } }

/* Callouts */
.lp-callout {
  margin-top: 36px; padding: 22px 26px;
  background: var(--accent-50); border: 1px solid var(--accent-ok-border);
  border-radius: var(--r-lg);
  font-size: 15px; line-height: 1.65; color: var(--ink);
  max-width: 760px;
}
.lp-callout strong { color: var(--accent-800); }
.lp-callout--warm {
  background: #fffbeb; border-color: rgba(180, 83, 9, 0.25); color: #451a03;
}
.lp-callout--warm strong { color: #92400e; }

/* Badges de severidade (tinta suave) */
.sev {
  display: inline-block; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase; line-height: 1;
  padding: 5px 8px; border-radius: var(--r-sm); border: 1px solid; white-space: nowrap;
}
.sev-alta { color: #92400e; background: #fffbeb; border-color: rgba(180, 83, 9, 0.25); }
.sev-critica { color: #991b1b; background: #fef2f2; border-color: rgba(239, 68, 68, 0.25); font-weight: 500; }

/* Tabelas */
.lp-table-wrap { margin-top: 44px; overflow-x: auto; }
.lp-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  background: var(--bg); font-size: 14px; line-height: 1.55;
  min-width: 560px;
}
.lp-table th, .lp-table td {
  padding: 14px 18px; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--border);
}
.lp-table tr:last-child th, .lp-table tr:last-child td { border-bottom: none; }
.lp-table thead th {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.05em;
  text-transform: uppercase; font-weight: 500; color: var(--ink-muted);
  background: var(--bg-soft);
}
.lp-table td { color: var(--ink-muted); }
.lp-table td:first-child, .lp-table tbody th { color: var(--ink); font-weight: 600; font-size: 14px; }
.lp-table .col-hero { background: var(--accent-50); color: var(--ink); font-weight: 600; }
.lp-table thead .col-hero { color: var(--accent-700); }

/* Roadmap (futuro — precisa ler como "ainda não existe") */
.lp-roadmap {
  margin-top: 44px; padding: 28px;
  border: 1px dashed var(--border-strong); border-radius: var(--r-lg);
  background: var(--bg-soft);
}
.lp-roadmap .guide { margin: 0 0 20px; font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.lp-roadmap ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.lp-roadmap li { font-size: 14px; line-height: 1.6; color: var(--ink-muted); }
.lp-roadmap li strong { color: var(--ink); }
.lp-roadmap .foot {
  margin: 20px 0 0; padding-top: 14px; border-top: 1px dashed var(--border-strong);
  font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-soft);
}

/* Número grande (39) + chips de módulos */
.lp-bignum {
  font-size: 110px; font-weight: 500; letter-spacing: -0.04em; line-height: 1;
  color: var(--accent-600);
}
.lp-chips { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.lp-chip {
  font-family: var(--font-mono); font-size: 12px; color: var(--ink-muted);
  padding: 8px 12px; border: 1px solid var(--border); border-radius: var(--r-md);
  background: var(--bg);
}
.lp-chip strong { color: var(--accent-700); font-weight: 500; }
.lp-scope-note {
  margin-top: 28px; font-size: 12.5px; line-height: 1.6; color: var(--ink-soft); max-width: 640px;
}

/* Anotações numeradas (laudo) */
.lp-annotations { display: flex; flex-direction: column; counter-reset: annot; }
.lp-annotation {
  display: flex; gap: 14px; align-items: baseline; padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.lp-annotation:first-child { padding-top: 0; }
.lp-annotation:last-child { border-bottom: none; }
.lp-annotation .n {
  font-family: var(--font-mono); font-size: 12px; color: var(--accent-700); flex-shrink: 0;
}
.lp-annotation h3 { margin: 0 0 4px; font-size: 15px; font-weight: 600; }
.lp-annotation p { margin: 0; font-size: 13px; line-height: 1.58; color: var(--ink-muted); }

/* Marca institucional: gradiente teal→azul (o encontro dos dois produtos) e auras duplas */
.lp-grad {
  /* Teal → índigo, de propósito: a frase fala dos produtos, não da empresa (paleta §5) */
  background: linear-gradient(96deg, var(--teal-300), var(--sn-300));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lp-aura-dual {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(760px 420px at 16% -8%, rgba(20, 184, 166, 0.20), transparent 68%),
    radial-gradient(700px 420px at 88% 2%, rgba(99, 102, 241, 0.20), transparent 66%);
}

/* Cartões de produto (home) — cartão-link com glow e seta animada */
.lp-products { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 820px) { .lp-products { grid-template-columns: 1fr; } }
.lp-product-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; min-height: 320px;
  padding: 30px 30px 28px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 20px; text-decoration: none; color: var(--ink);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.lp-product-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-hover-border);
  box-shadow: var(--accent-hover-shadow);
}
.lp-product-card .glow {
  position: absolute; width: 360px; height: 360px; border-radius: 999px;
  right: -150px; top: -160px; pointer-events: none;
  background: radial-gradient(circle, var(--accent-glow), transparent 66%);
}
.lp-product-card > * { position: relative; }
.lp-product-card .audience {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--accent-700);
}
.lp-product-card h3 { margin: 13px 0 0; font-size: 30px; font-weight: 600; letter-spacing: -0.022em; }
.lp-product-card h3 small {
  display: block; font-size: 13px; font-weight: 400; letter-spacing: 0;
  color: var(--ink-soft); font-family: var(--font-mono); margin-top: 6px;
}
.lp-product-card p { margin: 14px 0 0; font-size: 14.5px; line-height: 1.58; color: var(--ink-muted); }
.lp-product-card .wtags { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.lp-product-card .wtags span {
  font-family: var(--font-mono); font-size: 11px; padding: 5px 10px; border-radius: 999px;
  background: var(--accent-50); color: var(--accent-700); border: 1px solid var(--accent-tint-border);
}
.lp-product-card .wgo {
  margin-top: auto; padding-top: 26px; display: inline-flex; align-items: center; gap: 9px;
  font-size: 15px; font-weight: 600; color: var(--accent-700);
}
.arr { transition: transform .2s ease; }
.lp-product-card:hover .arr { transform: translateX(5px); }

/* Blocos de produto (home) — texto + painel */
.lp-prod-row { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; margin-top: 44px; }
@media (max-width: 880px) { .lp-prod-row { grid-template-columns: 1fr; gap: 34px; } }
.lp-tagline { margin: 14px 0 0; font-size: 17px; line-height: 1.45; font-weight: 500; color: var(--accent-700); }
.lp-bullets { margin: 26px 0 0; list-style: none; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.lp-bullets li { display: flex; gap: 12px; align-items: baseline; font-size: 14.5px; line-height: 1.5; color: var(--ink); }
.lp-bullets li .b {
  flex-shrink: 0; width: 7px; height: 7px; border-radius: 2px;
  background: var(--accent-500); transform: translateY(-1px);
}
.lp-pcta {
  margin-top: 32px; display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 15px; text-decoration: none; color: var(--accent-700);
}
.lp-pcta:hover .arr { transform: translateX(5px); }

/* Painéis de código/evidência — escuros sempre, mesmo em seção clara */
.lp-panel {
  background: #111a2e; border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 20px 52px rgba(2, 6, 23, 0.34);
}
.lp-panel .ph {
  display: flex; align-items: center; gap: 8px; padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-family: var(--font-mono); font-size: 11px; color: #64748b;
}
.lp-panel .ph .dot { width: 9px; height: 9px; border-radius: 999px; flex-shrink: 0; }
.lp-panel .pb { padding: 18px 18px 20px; }
.lp-panel pre {
  margin: 0; font-family: var(--font-mono); font-size: 12.5px; line-height: 1.75;
  color: #cbd5e1; white-space: pre-wrap;
}
.lp-panel pre .c { color: #64748b; }
.lp-panel pre .k { color: var(--teal-300); }
.lp-panel pre .v { color: var(--sn-300); }
.lp-ev { display: flex; flex-direction: column; gap: 1px; background: rgba(255, 255, 255, 0.09); }
.lp-ev-pane { background: #111a2e; padding: 15px 18px; }
.lp-ev-pane .lbl {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #64748b; display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.lp-ev-pane pre {
  margin: 10px 0 0; font-family: var(--font-mono); font-size: 12px; line-height: 1.7;
  color: #cbd5e1; white-space: pre-wrap;
}
.lp-ev-pane .mask { color: var(--sn-300); background: rgba(99, 102, 241, 0.16); border-radius: 3px; padding: 0 4px; }
.lp-ev-pane .ok { color: #6ee7b7; }
.lp-ev-verdict {
  background: rgba(240, 164, 164, 0.07); border-top: 1px solid rgba(240, 164, 164, 0.22);
  padding: 15px 18px; display: flex; align-items: center; gap: 12px;
}
.lp-ev-verdict .sev-chip {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: #1c0d0d; background: #f0a4a4; padding: 4px 8px; border-radius: 4px; font-weight: 500; flex-shrink: 0;
}
.lp-ev-verdict p { margin: 0; font-size: 13px; line-height: 1.45; color: #f4cfcf; }

/* Fatos (home — a empresa) */
.lp-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 520px) { .lp-facts { grid-template-columns: 1fr; } }
.lp-fact { padding: 22px; border-radius: var(--r-xl); background: var(--bg); border: 1px solid var(--border); }
.lp-fact .big { font-size: 25px; font-weight: 600; letter-spacing: -0.02em; }
.lp-fact .lbl { margin-top: 5px; font-size: 13px; color: var(--ink-muted); line-height: 1.45; }

/* Cross-sell (uma linha) */
.lp-crosssell {
  border-top: 1px solid var(--border); padding: 26px 0; text-align: center;
  font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-muted); line-height: 1.6;
}
.lp-crosssell a { color: var(--accent-700); text-decoration: none; font-weight: 500; }
.lp-crosssell a:hover { text-decoration: underline; }

/* Early adopters / CTA final */
.lp-early { background: var(--slate-900); color: var(--ink-inv); position: relative; overflow: hidden; }
.lp-early .lp-kicker { color: var(--accent-300); }
.lp-early .lp-kicker::before { background: var(--accent-300); }
.lp-early h2 { color: var(--ink-inv); }
.lp-early p.sub { color: var(--slate-300); }
.lp-early-grid { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; position: relative; }
@media (max-width: 860px) { .lp-early-grid { grid-template-columns: 1fr; } }
.lp-early-item { display: flex; gap: 14px; align-items: baseline; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.10); }
.lp-early-item:first-child { padding-top: 0; }
.lp-early-item .arrow { color: var(--accent-300); font-family: var(--font-mono); flex-shrink: 0; }
.lp-early-item h3 { margin: 0 0 5px; font-size: 16px; font-weight: 600; }
.lp-early-item p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--slate-400); }
.lp-early-seal {
  margin-top: 24px; font-family: var(--font-mono); font-size: 12px; line-height: 1.6;
  color: var(--slate-400);
}

/* Form */
.lp-form {
  background: var(--bg); color: var(--ink);
  border-radius: var(--r-xl); padding: 30px 30px 26px;
  box-shadow: 0 24px 64px rgba(2, 6, 23, 0.45);
}
.lp-form h3 { margin: 0 0 4px; font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.lp-form .hint { margin: 0 0 20px; font-size: 13px; color: var(--ink-muted); line-height: 1.5; }
.lp-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.lp-field label { font-size: 12.5px; font-weight: 500; color: var(--ink); }
.lp-field input, .lp-field select, .lp-field textarea {
  font-family: var(--font-sans); font-size: 14px; color: var(--ink);
  padding: 11px 13px; border: 1px solid var(--border-strong); border-radius: var(--r-md);
  background: var(--bg); outline: none; transition: border-color .15s ease, box-shadow .15s ease;
}
.lp-field input:focus, .lp-field select:focus, .lp-field textarea:focus {
  border-color: var(--accent-500); box-shadow: 0 0 0 3px var(--accent-focus-ring);
}
.lp-field textarea { resize: vertical; min-height: 74px; }
.lp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .lp-form-row { grid-template-columns: 1fr; } }
.lp-form .btn-primary { width: 100%; justify-content: center; }
.lp-form .btn-primary[disabled] { opacity: 0.6; cursor: progress; }
.lp-form .btn-wa { width: 100%; justify-content: center; margin-top: 10px; text-decoration: none; box-sizing: border-box; }
.lp-form-alt { margin: 14px 0 0; text-align: center; font-size: 12.5px; color: var(--ink-muted); }
.lp-form-alt a { color: var(--accent-700); font-weight: 500; text-decoration: none; }
.lp-form-alt a:hover { text-decoration: underline; }
.lp-form-ok {
  display: none; margin-top: 14px; padding: 12px 14px; border-radius: var(--r-md);
  background: var(--accent-50); border: 1px solid var(--accent-ok-border);
  font-size: 13px; color: var(--accent-800); line-height: 1.5;
}
.lp-form-err {
  display: none; margin-top: 14px; padding: 12px 14px; border-radius: var(--r-md);
  background: #fef2f2; border: 1px solid rgba(239,68,68,0.25);
  font-size: 13px; color: #991b1b; line-height: 1.5;
}
.lp-form-err a { color: #991b1b; font-weight: 600; }

/* Footer */
.lp-footer { border-top: 1px solid var(--border); padding: 36px 0 44px; }
.lp-footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.lp-footer .mono { font-size: 12px; color: var(--ink-muted); }
/* Rodapé é assinatura da casa: ouro em todas as páginas (paleta §7) */
.lp-footer a { color: var(--ax-700); text-decoration: none; }
.lp-footer a:hover { color: var(--ax-600); text-decoration: underline; }

/* WhatsApp floating button */
.lp-wa-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(2, 6, 23, 0.28), 0 2px 6px rgba(2, 6, 23, 0.18);
  transition: transform .15s ease, box-shadow .15s ease;
}
.lp-wa-fab:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.32), 0 3px 8px rgba(2, 6, 23, 0.20);
}
.lp-wa-fab svg { width: 30px; height: 30px; display: block; }
