/* Landing page styles — ported from the hi-fi prototype, scoped under .lp-root
   so generic class names (.container, .btn, etc.) never collide with the app
   or Tailwind utilities. Geist font is loaded only when this CSS is on the page. */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500;600&display=swap');

.lp-root,
.lp-root *,
.lp-root *::before,
.lp-root *::after { box-sizing: border-box; margin: 0; padding: 0; }

.lp-root {
  --navy: #0F1729; --navy-soft: #1B2541; --navy-line: #243154;
  --violet: #7C3AED; --violet-bright: #8B5CF6; --violet-deep: #5B21B6; --violet-soft: #A78BFA; --violet-tint: #F5F3FF;
  --violet-glow: rgba(124, 58, 237, .18);
  --bg: #FAFAF7; --bg-alt: #F3F1EA; --surface: #FFFFFF; --border: #E7E5DC; --border-strong: #D4D2C7;
  --text: #15161A; --text-muted: #5A5C63; --text-faint: #8A8C92;
  --success: #2F6A0E; --success-bg: #E8F2D9; --warning: #8A4F0A; --warning-bg: #FAEEDA;
  --r-sm: 6px; --r: 10px; --r-lg: 16px; --r-xl: 22px;
  --sh-sm: 0 1px 2px rgba(15, 23, 41, .04);
  --sh: 0 4px 16px rgba(15, 23, 41, .06);
  --sh-lg: 0 24px 64px -16px rgba(15, 23, 41, .18);
  --sh-xl: 0 40px 120px -24px rgba(15, 23, 41, .28);
  --maxw: 1200px;

  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.55; font-size: 15px;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  /* The app locks html/body overflow (the dashboard shell delegates scroll to
     inner panels), so the landing owns its own full-height scroll context.
     scroll-padding-top offsets anchor jumps under the sticky header. */
  height: 100dvh; overflow-y: auto; overflow-x: hidden;
  scroll-behavior: smooth; scroll-padding-top: 80px;
}

.lp-root .mono { font-family: 'Geist Mono', ui-monospace, monospace; }
.lp-root .container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ===== LOGO ===== */
.lp-root .brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.lp-root .brand-text { font-weight: 600; font-size: 18px; letter-spacing: -.015em; line-height: 1; }
.lp-root .brand-prumo { color: var(--navy); } .lp-root .brand-tek { color: var(--violet); }

/* ===== HEADER ===== */
.lp-root header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 247, .86); backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.lp-root .nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.lp-root nav.menu {
  display: flex; gap: 2px;
  background: rgba(255, 255, 255, .6); border: 1px solid var(--border);
  border-radius: 999px; padding: 4px;
}
.lp-root nav.menu a {
  text-decoration: none; color: var(--text-muted);
  font-size: 13.5px; font-weight: 500;
  padding: 7px 14px; border-radius: 999px;
  transition: all .15s ease;
}
.lp-root nav.menu a:hover { color: var(--text); background: var(--bg-alt); }
.lp-root .nav-actions { display: flex; align-items: center; gap: 10px; }
.lp-root .lang-toggle {
  display: inline-flex; background: var(--bg-alt); border-radius: 999px;
  padding: 3px; font-family: 'Geist Mono', monospace; font-size: 11px;
  font-weight: 500; border: 1px solid var(--border);
}
.lp-root .lang-toggle button {
  border: 0; background: transparent; color: var(--text-muted);
  padding: 5px 10px; border-radius: 999px; cursor: pointer;
  letter-spacing: .02em; transition: all .15s ease; font-family: inherit;
}
.lp-root .lang-toggle button.active { background: var(--navy); color: #fff; }

.lp-root .btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border-radius: var(--r);
  font-size: 13.5px; font-weight: 500; text-decoration: none;
  border: 1px solid transparent; cursor: pointer;
  transition: all .15s ease; font-family: inherit; line-height: 1;
}
.lp-root .btn-primary { background: var(--violet); color: #fff; border-color: var(--violet); }
.lp-root .btn-primary:hover { background: var(--violet-deep); border-color: var(--violet-deep); transform: translateY(-1px); box-shadow: 0 6px 16px var(--violet-glow); }
.lp-root .btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.lp-root .btn-ghost:hover { background: var(--surface); border-color: var(--navy); }
.lp-root .btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.lp-root .btn-navy:hover { background: var(--violet-deep); border-color: var(--violet-deep); }
.lp-root .btn-link {
  background: transparent; color: var(--text); border: 0; padding: 9px 12px;
  font-size: 13.5px; font-weight: 500; text-decoration: none; cursor: pointer;
  border-radius: var(--r); transition: all .15s ease; font-family: inherit; line-height: 1;
  display: inline-flex; align-items: center; gap: 6px;
}
.lp-root .btn-link:hover { color: var(--violet-deep); background: var(--violet-tint); }
.lp-root .btn-lg { padding: 13px 22px; font-size: 14.5px; border-radius: 12px; }

/* ===== HERO ===== */
.lp-root .hero { position: relative; padding: 88px 0 72px; overflow: hidden; }
.lp-root .grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(15, 23, 41, .045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 41, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, black 40%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, black 40%, transparent 75%);
}
.lp-root .hero-inner {
  position: relative; display: grid; grid-template-columns: .92fr 1.18fr;
  gap: 56px; align-items: center; z-index: 1;
}
.lp-root .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px 5px 5px;
  border: 1px solid var(--border); background: var(--surface);
  border-radius: 999px; font-size: 11.5px; font-weight: 500;
  color: var(--text-muted); margin-bottom: 22px;
  font-family: 'Geist Mono', monospace; letter-spacing: .01em;
}
.lp-root .eyebrow .tag {
  background: var(--violet-tint); color: var(--violet-deep);
  padding: 3px 8px; border-radius: 999px; font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
}
.lp-root h1.hero-title {
  font-size: clamp(36px, 5.2vw, 60px); line-height: 1.02;
  letter-spacing: -.028em; font-weight: 600; color: var(--navy);
  margin-bottom: 20px;
}
.lp-root h1.hero-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--violet-bright) 0%, var(--violet-deep) 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lp-root .hero-sub {
  font-size: 17.5px; color: var(--text-muted); margin-bottom: 32px;
  max-width: 520px; line-height: 1.55; text-wrap: pretty;
}
.lp-root .hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.lp-root .hero-meta {
  margin-top: 26px; display: flex; gap: 18px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--text-faint);
  font-family: 'Geist Mono', monospace;
}
.lp-root .hero-meta span::before { content: "✓"; color: var(--success); margin-right: 6px; font-family: 'Geist', sans-serif; }

/* ===== HERO MOCKUP ===== */
.lp-root .browser {
  position: relative; background: #0a0e1a;
  border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--sh-xl); overflow: hidden;
  transform: perspective(2400px) rotateY(-3deg) rotateX(2deg);
  transform-origin: left center;
}
.lp-root .browser::before {
  content: ""; position: absolute; inset: -50px;
  background: radial-gradient(circle at 60% 50%, var(--violet-glow), transparent 60%);
  z-index: -1; pointer-events: none;
}
.lp-root .browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: #f4f3ee;
  border-bottom: 1px solid var(--border);
  font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--text-faint);
}
.lp-root .browser-bar .dots { display: flex; gap: 5px; }
.lp-root .browser-bar .dots span { width: 10px; height: 10px; border-radius: 50%; background: #d4d2c7; }
.lp-root .browser-bar .url {
  flex: 1; text-align: center; background: #fff;
  border: 1px solid var(--border); padding: 4px 10px;
  border-radius: 6px; margin: 0 50px 0 12px;
  color: var(--text-muted);
}
.lp-root .browser-body { position: relative; display: block; aspect-ratio: 1862/921; background: #0F172A; }
.lp-root .browser-body img { width: 100%; height: 100%; display: block; -o-object-fit: cover; object-fit: cover; }

.lp-root .float-card {
  position: absolute; background: var(--surface);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 12px 16px; box-shadow: var(--sh);
  font-size: 12px; z-index: 2;
}
.lp-root .float-card.ai {
  top: -22px; right: -24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--violet-deep) 100%);
  color: #fff; border: 0; max-width: 240px;
}
.lp-root .float-card.ai .lbl {
  font-size: 9.5px; font-family: 'Geist Mono', monospace;
  text-transform: uppercase; letter-spacing: .08em;
  opacity: .7; margin-bottom: 4px;
}
.lp-root .float-card.ai .val { font-size: 20px; font-weight: 600; letter-spacing: -.01em; }
.lp-root .float-card.ai .sub { font-size: 11px; opacity: .85; margin-top: 2px; }
.lp-root .float-card.bim { bottom: -26px; left: -30px; max-width: 210px; }
.lp-root .float-card.bim .lbl {
  font-size: 9.5px; font-family: 'Geist Mono', monospace;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-faint); margin-bottom: 4px;
}
.lp-root .float-card.bim .val { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.lp-root .float-card.bim .row { display: flex; gap: 4px; margin-top: 8px; flex-wrap: wrap; }
.lp-root .float-card.bim .tag {
  font-size: 10px; padding: 2px 8px; border-radius: 999px;
  background: var(--violet-tint); color: var(--violet-deep);
  font-family: 'Geist Mono', monospace;
}

/* ===== TRUST BAR ===== */
.lp-root .trust {
  padding: 36px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.lp-root .trust-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.lp-root .trust-label {
  font-size: 11px; color: var(--text-faint);
  text-transform: uppercase; letter-spacing: .1em;
  font-family: 'Geist Mono', monospace; flex-basis: 200px;
}
.lp-root .trust-logos {
  display: flex; gap: 36px; flex-wrap: wrap; align-items: center;
  color: var(--text-muted); font-size: 15px; font-weight: 500;
  letter-spacing: -.01em;
}
.lp-root .trust-logos .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--violet-tint); color: var(--violet-deep);
  font-size: 12.5px; font-weight: 600;
  font-family: 'Geist Mono', monospace;
}
.lp-root .trust-logos .badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--violet);
}

/* ===== SECTION ===== */
.lp-root section.s { padding: 104px 0; position: relative; }
.lp-root section.s.alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.lp-root .s-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.lp-root .s-head.left { margin-left: 0; text-align: left; }
.lp-root .s-eyebrow {
  display: inline-block; font-size: 11.5px;
  font-family: 'Geist Mono', monospace; color: var(--violet-deep);
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 16px; padding: 5px 12px;
  background: var(--violet-tint); border-radius: 999px; font-weight: 600;
}
.lp-root .s-title {
  font-size: clamp(30px, 3.6vw, 44px); line-height: 1.08;
  color: var(--navy); letter-spacing: -.022em; font-weight: 600;
  margin-bottom: 16px; text-wrap: balance;
}
.lp-root .s-sub {
  font-size: 17px; color: var(--text-muted); line-height: 1.55;
  max-width: 680px; text-wrap: pretty;
}
.lp-root .s-head:not(.left) .s-sub { margin: 0 auto; }

/* ===== PILLARS ===== */
.lp-root .pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lp-root .pillar {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px;
  transition: all .2s ease; position: relative; overflow: hidden;
}
.lp-root .pillar:hover { border-color: var(--violet); transform: translateY(-3px); box-shadow: var(--sh); }
.lp-root .pillar .num {
  font-family: 'Geist Mono', monospace; font-size: 11.5px;
  color: var(--text-faint); margin-bottom: 24px;
  display: flex; justify-content: space-between; align-items: center;
  letter-spacing: .04em;
}
.lp-root .pillar h3 {
  font-size: 19px; font-weight: 600; color: var(--navy);
  letter-spacing: -.018em; margin-bottom: 12px; line-height: 1.2;
}
.lp-root .pillar p { font-size: 14px; color: var(--text-muted); line-height: 1.6; text-wrap: pretty; }
.lp-root .pillar .ic {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--violet-deep));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; color: #fff;
}

/* ===== FEATURE — 3D ===== */
.lp-root .feat-3d {
  display: grid; grid-template-columns: .85fr 1.2fr;
  gap: 64px; align-items: center;
}
.lp-root .feat-3d.reverse { grid-template-columns: 1.2fr .85fr; }
.lp-root .feat-3d h3 {
  font-size: clamp(28px, 3vw, 38px); font-weight: 600; color: var(--navy);
  letter-spacing: -.02em; line-height: 1.12; margin-bottom: 18px;
  text-wrap: balance;
}
.lp-root .feat-3d p.lead {
  font-size: 16px; color: var(--text-muted); line-height: 1.6;
  margin-bottom: 24px; max-width: 480px; text-wrap: pretty;
}
.lp-root .feat-3d ul { list-style: none; margin-bottom: 28px; }
.lp-root .feat-3d ul li {
  display: flex; gap: 12px; padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text);
}
.lp-root .feat-3d ul li:last-child { border-bottom: 0; }
.lp-root .feat-3d ul li::before {
  content: ""; width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  background: var(--violet-tint);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M9 11.5l2.5 2.5L17 8.5l1.5 1.5-7 7-4-4z'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M9 11.5l2.5 2.5L17 8.5l1.5 1.5-7 7-4-4z'/></svg>") center/contain no-repeat;
  background-color: var(--violet-deep);
}
.lp-root .feat-3d ul li strong { color: var(--navy); font-weight: 600; margin-right: 6px; }

.lp-root .screenshot {
  border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; box-shadow: var(--sh-lg);
  background: var(--navy);
  position: relative;
}
.lp-root .screenshot img { width: 100%; height: auto; display: block; }
.lp-root .screenshot.dark { background: #0F172A; border-color: #2A3656; }
.lp-root .screenshot .topbar-mini {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: #f4f3ee;
  border-bottom: 1px solid var(--border);
}
.lp-root .screenshot .topbar-mini .dots { display: flex; gap: 5px; }
.lp-root .screenshot .topbar-mini .dots span { width: 9px; height: 9px; border-radius: 50%; background: #d4d2c7; }
.lp-root .screenshot .topbar-mini .url {
  flex: 1; text-align: center; background: #fff;
  border: 1px solid var(--border); padding: 3px 10px;
  border-radius: 6px; margin: 0 30px 0 6px;
  font-family: 'Geist Mono', monospace; font-size: 10.5px;
  color: var(--text-faint);
}

/* ===== AI / VALUE ENG ===== */
.lp-root .ai-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff; border-radius: var(--r-xl); padding: 64px 56px;
  position: relative; overflow: hidden;
}
.lp-root .ai-block::before {
  content: ""; position: absolute; inset: -50%;
  background: radial-gradient(ellipse at 80% 20%, var(--violet-glow), transparent 50%);
  pointer-events: none;
}
.lp-root .ai-block-inner { position: relative; display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.lp-root .ai-block .eyebrow-dark {
  display: inline-block; font-size: 11.5px; font-family: 'Geist Mono', monospace;
  color: var(--violet-soft); text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 18px; padding: 5px 12px;
  background: rgba(167, 139, 250, .12); border: 1px solid rgba(167, 139, 250, .25);
  border-radius: 999px; font-weight: 600;
}
.lp-root .ai-block h3 {
  font-size: clamp(28px, 3.2vw, 40px); font-weight: 600;
  letter-spacing: -.022em; line-height: 1.08; margin-bottom: 18px;
  text-wrap: balance;
}
.lp-root .ai-block p.lead { font-size: 16.5px; color: rgba(255, 255, 255, .78); margin-bottom: 32px; line-height: 1.6; text-wrap: pretty; }
.lp-root .ai-disclaimer { font-size: 11.5px; color: rgba(255, 255, 255, .5); font-family: 'Geist Mono', monospace; margin-top: 14px; }
.lp-root .ai-savings-card {
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(167, 139, 250, .2);
  border-radius: 16px; padding: 28px; backdrop-filter: blur(8px);
}
.lp-root .ai-savings-card .head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 22px;
}
.lp-root .ai-savings-card .obra-name { font-size: 18px; font-weight: 600; }
.lp-root .ai-savings-card .pill {
  font-size: 10.5px; background: rgba(167, 139, 250, .18); color: var(--violet-soft);
  padding: 4px 10px; border-radius: 999px; font-family: 'Geist Mono', monospace;
  border: 1px solid rgba(167, 139, 250, .3); font-weight: 600;
}
.lp-root .ai-savings-card .big {
  font-size: 54px; font-weight: 600; letter-spacing: -.03em; line-height: 1;
  background: linear-gradient(120deg, #fff 0%, var(--violet-soft) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 6px;
}
.lp-root .ai-savings-card .big-sub { font-size: 13px; color: rgba(255, 255, 255, .65); margin-bottom: 24px; font-family: 'Geist Mono', monospace; }
.lp-root .ai-savings-card .recs { display: flex; flex-direction: column; gap: 10px; }
.lp-root .rec {
  display: flex; gap: 12px; padding: 14px;
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 10px;
}
.lp-root .rec .prio {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Geist Mono', monospace; font-size: 10px; font-weight: 600;
  text-transform: uppercase;
}
.lp-root .rec.alta .prio { background: rgba(220, 38, 38, .15); color: #FCA5A5; }
.lp-root .rec.media .prio { background: rgba(234, 179, 8, .15); color: #FCD34D; }
.lp-root .rec.baixa .prio { background: rgba(34, 197, 94, .15); color: #86EFAC; }
.lp-root .rec .body { flex: 1; }
.lp-root .rec .body .t { font-size: 13.5px; font-weight: 500; color: #fff; margin-bottom: 2px; }
.lp-root .rec .body .s { font-size: 12px; color: rgba(255, 255, 255, .6); font-family: 'Geist Mono', monospace; }
.lp-root .rec .val { font-family: 'Geist Mono', monospace; font-size: 14.5px; font-weight: 600; color: var(--violet-soft); text-align: right; align-self: center; }

/* ===== GESTÃO TABS ===== */
.lp-root .tabs {
  display: flex; gap: 6px; background: var(--bg-alt);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 5px; margin: 0 auto 36px; max-width: 560px;
}
.lp-root .tabs button {
  flex: 1; border: 0; background: transparent;
  padding: 9px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  cursor: pointer; font-family: inherit; transition: all .15s ease;
}
.lp-root .tabs button:hover { color: var(--text); }
.lp-root .tabs button.active { background: var(--navy); color: #fff; }
.lp-root .tab-content { display: none; }
.lp-root .tab-content.active { display: block; animation: lp-fadein .25s ease; }
@keyframes lp-fadein { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.lp-root .tab-pair {
  display: grid; grid-template-columns: 1fr;
  gap: 28px; align-items: start;
}
.lp-root .tab-pair .info {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px 48px;
  align-items: start;
}
.lp-root .tab-pair .info > h4 { grid-column: 1; margin-bottom: 6px; }
.lp-root .tab-pair .info > p { grid-column: 1; grid-row: 2; margin-bottom: 0; }
.lp-root .tab-pair .info > ul { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
.lp-root .tab-pair .info h4 {
  font-size: 24px; font-weight: 600; color: var(--navy);
  letter-spacing: -.018em; margin-bottom: 12px;
}
.lp-root .tab-pair .info p { font-size: 15px; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; text-wrap: pretty; }
.lp-root .tab-pair .info ul { list-style: none; font-size: 13.5px; }
.lp-root .tab-pair .info ul li {
  padding: 7px 0; border-bottom: 1px solid var(--border);
  display: flex; gap: 10px; align-items: flex-start;
}
.lp-root .tab-pair .info ul li:last-child { border-bottom: 0; }
.lp-root .tab-pair .info ul li::before { content: "→"; color: var(--violet); font-weight: 600; }

/* ===== COMPRAS ===== */
.lp-root .compras-row {
  display: grid; grid-template-columns: .62fr 1.38fr;
  gap: 52px; align-items: center;
}
.lp-root .compras-row h3 {
  font-size: clamp(28px, 3vw, 38px); font-weight: 600; color: var(--navy);
  letter-spacing: -.02em; line-height: 1.12; margin-bottom: 18px;
}
.lp-root .compras-row p.lead {
  font-size: 16px; color: var(--text-muted); line-height: 1.6;
  margin-bottom: 24px; text-wrap: pretty;
}
.lp-root .compras-row ul { list-style: none; margin-bottom: 0; }
.lp-root .compras-row ul li {
  font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--border);
  display: flex; gap: 10px; align-items: flex-start; color: var(--text);
}
.lp-root .compras-row ul li:last-child { border-bottom: 0; }

/* ===== COMPARATIVO ===== */
.lp-root .vs-wrap {
  border: 1px solid var(--border); border-radius: var(--r-lg);
  background: var(--surface); overflow: hidden;
}
.lp-root .vs-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.lp-root .vs-table {
  width: 100%; min-width: 760px; border-collapse: separate; border-spacing: 0;
  font-size: 14px;
}
.lp-root .vs-table thead th {
  background: var(--bg-alt); color: var(--text-muted);
  font-family: 'Geist Mono', monospace; font-size: 11.5px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 16px 22px; text-align: center;
  border-bottom: 1px solid var(--border);
}
.lp-root .vs-table thead th:first-child { text-align: left; }
.lp-root .vs-table thead th.us { background: var(--navy); color: #fff; position: relative; }
.lp-root .vs-table thead th.us .ubadge {
  display: inline-block; margin-left: 7px; vertical-align: middle;
  background: var(--violet); color: #fff; font-size: 9px;
  padding: 3px 7px; border-radius: 999px; letter-spacing: .06em;
  text-transform: uppercase; font-weight: 600;
}
.lp-root .vs-table tbody td {
  padding: 16px 22px; border-bottom: 1px solid var(--border);
  text-align: center; color: var(--text);
}
.lp-root .vs-table tbody td:first-child { text-align: left; font-weight: 500; color: var(--navy); }
.lp-root .vs-table tbody td.yes { color: var(--success); font-weight: 600; }
.lp-root .vs-table tbody td.yes::before { content: "●  "; color: var(--success); }
.lp-root .vs-table tbody td.no { color: var(--text-faint); }
.lp-root .vs-table tbody td.no::before { content: "—  "; color: var(--text-faint); }
.lp-root .vs-table tbody td.partial { color: var(--warning); font-weight: 500; }
.lp-root .vs-table tbody td.partial::before { content: "◐  "; color: var(--warning); }
.lp-root .vs-table tbody td.us-yes { background: rgba(124, 58, 237, .04); color: var(--violet-deep); font-weight: 600; }
.lp-root .vs-table tbody td.us-yes::before { content: "● "; color: var(--violet); }
.lp-root .vs-table tbody tr:last-child td { border-bottom: 0; }
.lp-root .vs-note { margin-top: 18px; text-align: center; font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--text-faint); }

/* ===== APP MOBILE ===== */
.lp-root .app-row {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 64px; align-items: center;
}
.lp-root .app-row .info h3 {
  font-size: clamp(28px, 3vw, 38px); font-weight: 600; color: var(--navy);
  letter-spacing: -.02em; line-height: 1.12; margin-bottom: 18px; text-wrap: balance;
}
.lp-root .app-row .info p.lead {
  font-size: 16px; color: var(--text-muted); line-height: 1.6;
  margin-bottom: 26px; max-width: 480px; text-wrap: pretty;
}
.lp-root .app-feats { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.lp-root .app-feat {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r); transition: all .2s ease;
}
.lp-root .app-feat:hover { border-color: var(--violet); transform: translateX(3px); }
.lp-root .app-feat .ic {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 9px;
  background: linear-gradient(135deg, var(--navy), var(--violet-deep));
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.lp-root .app-feat .t { font-size: 14.5px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.lp-root .app-feat .d { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }
.lp-root .app-store-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.lp-root .store-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: var(--r);
  background: var(--navy); color: #fff; font-size: 12.5px; font-weight: 500;
  font-family: 'Geist Mono', monospace;
}
.lp-root .app-offline { font-family: 'Geist Mono', monospace; font-size: 11.5px; color: var(--text-faint); }

/* phone cluster */
.lp-root .phones { position: relative; display: flex; justify-content: center; align-items: flex-end; gap: 18px; min-height: 520px; }
.lp-root .phone {
  position: relative; width: 248px; flex-shrink: 0;
  background: #0F1729; border-radius: 34px; padding: 8px;
  box-shadow: var(--sh-xl); border: 1px solid var(--navy-line);
}
.lp-root .phone.back { width: 218px; transform: translateY(28px) scale(.94); opacity: .92; z-index: 1; }
.lp-root .phone.front { z-index: 3; transform: translateY(-10px); }
.lp-root .phone-screen {
  background: var(--bg); border-radius: 27px; overflow: hidden;
  position: relative; aspect-ratio: 9/19;
}
.lp-root .phone-notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 18px; background: #0F1729; border-radius: 999px; z-index: 5;
}
.lp-root .ph-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px 6px; font-family: 'Geist Mono', monospace;
  font-size: 10px; color: var(--navy); font-weight: 600;
}
.lp-root .ph-head { padding: 6px 16px 14px; border-bottom: 1px solid var(--border); }
.lp-root .ph-head .obra { font-family: 'Geist Mono', monospace; font-size: 9px; color: var(--violet-deep); text-transform: uppercase; letter-spacing: .08em; }
.lp-root .ph-head .title { font-size: 15px; font-weight: 600; color: var(--navy); letter-spacing: -.01em; margin-top: 2px; }
.lp-root .ph-body { padding: 14px 14px 18px; display: flex; flex-direction: column; gap: 9px; }
.lp-root .ph-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 11px 12px;
}
.lp-root .ph-card .row { display: flex; align-items: center; gap: 9px; }
.lp-root .ph-av { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-alt); border: 1px solid var(--border); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; color: var(--text-faint); font-family: 'Geist Mono', monospace; }
.lp-root .ph-card .nm { font-size: 12px; font-weight: 600; color: var(--navy); }
.lp-root .ph-card .rl { font-size: 10px; color: var(--text-muted); font-family: 'Geist Mono', monospace; }
.lp-root .ph-chip { margin-left: auto; font-size: 9.5px; font-weight: 600; padding: 4px 9px; border-radius: 999px; font-family: 'Geist Mono', monospace; }
.lp-root .ph-chip.ok { background: var(--success-bg); color: var(--success); }
.lp-root .ph-chip.warn { background: var(--warning-bg); color: var(--warning); }
.lp-root .ph-photo {
  width: 100%; aspect-ratio: 16/10; border-radius: 8px; margin-top: 8px;
  background: repeating-linear-gradient(45deg, var(--bg-alt) 0 8px, #ECE9DF 8px 16px);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Geist Mono', monospace; font-size: 9px; color: var(--text-faint);
}
.lp-root .ph-btn {
  margin-top: 4px; text-align: center; padding: 11px; border-radius: 9px;
  background: var(--violet); color: #fff; font-size: 12px; font-weight: 600;
}

/* ===== ROADMAP ===== */
.lp-root .roadmap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lp-root .road-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px; position: relative; overflow: hidden;
  transition: all .2s ease; display: flex; flex-direction: column;
}
.lp-root .road-card:hover { border-color: var(--violet); transform: translateY(-3px); box-shadow: var(--sh); }
.lp-root .road-card.feature {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%); color: #fff; border: 0;
}
.lp-root .road-card.feature::before {
  content: ""; position: absolute; inset: -40%;
  background: radial-gradient(ellipse at 85% 15%, var(--violet-glow), transparent 55%); pointer-events: none;
}
.lp-root .road-stage {
  display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
  font-family: 'Geist Mono', monospace; font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 5px 11px; border-radius: 999px; margin-bottom: 18px;
}
.lp-root .road-stage.now { background: var(--violet-tint); color: var(--violet-deep); }
.lp-root .road-stage.now::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--violet); animation: lp-pulse 1.6s infinite; }
.lp-root .road-stage.next { background: var(--bg-alt); color: var(--text-muted); border: 1px solid var(--border); }
.lp-root .road-card.feature .road-stage { background: rgba(167, 139, 250, .16); color: var(--violet-soft); border: 1px solid rgba(167, 139, 250, .3); }
.lp-root .road-card.feature .road-stage.now::before { background: var(--violet-soft); }
@keyframes lp-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
.lp-root .road-card h4 { font-size: 18px; font-weight: 600; color: var(--navy); letter-spacing: -.015em; margin-bottom: 10px; position: relative; }
.lp-root .road-card.feature h4 { font-size: clamp(22px, 2.4vw, 28px); color: #fff; max-width: 440px; }
.lp-root .road-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; position: relative; text-wrap: pretty; }
.lp-root .road-card.feature p { font-size: 15px; color: rgba(255, 255, 255, .78); max-width: 460px; margin-bottom: 22px; }
.lp-root .wa-demo {
  position: relative; margin-top: auto;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(167, 139, 250, .2);
  border-radius: 14px; padding: 16px; display: flex; flex-direction: column; gap: 10px;
  max-width: 380px;
}
.lp-root .wa-bubble {
  align-self: flex-start; max-width: 78%;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px 12px 12px 4px; padding: 10px 13px;
  display: flex; align-items: center; gap: 10px;
}
.lp-root .wa-bubble.me { align-self: flex-end; background: var(--violet-deep); border-color: transparent; border-radius: 12px 12px 4px 12px; }
.lp-root .wa-play { width: 26px; height: 26px; border-radius: 50%; background: rgba(255, 255, 255, .18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; }
.lp-root .wa-wave { display: flex; align-items: center; gap: 2px; height: 18px; }
.lp-root .wa-wave span { width: 2.5px; border-radius: 2px; background: var(--violet-soft); }
.lp-root .wa-time { font-size: 10px; font-family: 'Geist Mono', monospace; color: rgba(255, 255, 255, .6); }
.lp-root .wa-bubble .txt { font-size: 12.5px; color: #fff; line-height: 1.45; }
.lp-root .wa-bubble .txt strong { color: var(--violet-soft); }
.lp-root .wa-tag { font-size: 9.5px; font-family: 'Geist Mono', monospace; color: var(--violet-soft); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; display: block; }

/* ===== QUOTE PLACEHOLDER ===== */
.lp-root .quote-block {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 56px 64px;
  position: relative; overflow: hidden;
}
.lp-root .quote-block::before {
  content: "\201C"; position: absolute; top: -24px; left: 32px;
  font-size: 200px; font-family: Georgia, serif; color: var(--violet-tint);
  line-height: 1; pointer-events: none;
}
.lp-root .quote-block .q {
  position: relative; font-size: 24px; line-height: 1.4;
  color: var(--navy); font-weight: 500; letter-spacing: -.012em;
  max-width: 780px; margin-bottom: 28px; text-wrap: balance;
}
.lp-root .quote-block .who { display: flex; align-items: center; gap: 14px; position: relative; }
.lp-root .quote-block .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 18px;
  border: 2px dashed var(--border-strong);
  background: var(--bg-alt);
  color: var(--text-faint);
}
.lp-root .quote-block .who .name { font-weight: 600; color: var(--navy); font-size: 14px; }
.lp-root .quote-block .who .role { font-size: 12.5px; color: var(--text-muted); font-family: 'Geist Mono', monospace; }
.lp-root .quote-block .placeholder-note {
  position: absolute; top: 24px; right: 28px;
  font-family: 'Geist Mono', monospace; font-size: 10.5px;
  background: var(--bg-alt); color: var(--text-faint);
  padding: 5px 10px; border-radius: 999px; border: 1px dashed var(--border-strong);
}

/* ===== CTA FINAL ===== */
.lp-root .cta-final {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff; border-radius: var(--r-xl); padding: 64px;
  text-align: center; position: relative; overflow: hidden;
}
.lp-root .cta-final::before {
  content: ""; position: absolute; inset: -50%;
  background: radial-gradient(ellipse at center, var(--violet-glow), transparent 55%);
  pointer-events: none;
}
.lp-root .cta-final h2 {
  font-size: clamp(28px, 3.6vw, 44px); font-weight: 600;
  letter-spacing: -.022em; line-height: 1.1; margin-bottom: 14px;
  position: relative; text-wrap: balance;
}
.lp-root .cta-final p {
  font-size: 16.5px; color: rgba(255, 255, 255, .72);
  max-width: 580px; margin: 0 auto 30px;
  position: relative; line-height: 1.55;
}
.lp-root .cta-final .actions { display: inline-flex; gap: 12px; flex-wrap: wrap; position: relative; justify-content: center; }
.lp-root .cta-final .btn-primary { background: var(--violet); border-color: var(--violet); }
.lp-root .cta-final .btn-primary:hover { background: var(--violet-bright); border-color: var(--violet-bright); }
.lp-root .cta-final .btn-ghost { background: rgba(255, 255, 255, .06); color: #fff; border-color: rgba(255, 255, 255, .18); }
.lp-root .cta-final .btn-ghost:hover { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .3); }
.lp-root .cta-final .ps {
  margin-top: 18px; font-size: 12px; color: rgba(255, 255, 255, .4);
  font-family: 'Geist Mono', monospace; position: relative;
}

/* ===== FOOTER ===== */
.lp-root footer.site { background: var(--navy); color: rgba(255, 255, 255, .7); padding: 72px 0 32px; }
.lp-root .foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.lp-root .foot-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.lp-root .foot-brand .brand-prumo { color: #fff; }
.lp-root .foot-brand .brand-text { font-size: 20px; }
.lp-root .foot-tagline { font-size: 13.5px; opacity: .7; line-height: 1.6; max-width: 320px; }
.lp-root .foot-col h6 {
  font-size: 11px; color: #fff; text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 16px; font-weight: 500; font-family: 'Geist Mono', monospace;
}
.lp-root .foot-col a {
  display: block; color: rgba(255, 255, 255, .6); text-decoration: none;
  font-size: 13.5px; padding: 5px 0; transition: color .15s ease;
}
.lp-root .foot-col a:hover { color: #fff; }
.lp-root .foot-bottom {
  border-top: 1px solid var(--navy-line); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: rgba(255, 255, 255, .5);
  font-family: 'Geist Mono', monospace;
}
.lp-root .foot-bottom .badge { background: var(--violet-deep); color: #fff; padding: 4px 12px; border-radius: 999px; font-size: 11px; font-weight: 500; }

/* ===== ANIMATIONS ===== */
.lp-root .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.lp-root .reveal.in { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .lp-root .pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .lp-root .hero-inner { grid-template-columns: 1fr; gap: 80px; padding-bottom: 40px; }
  .lp-root .browser { transform: none; max-width: 560px; margin: 0 auto; }
  .lp-root .pillars { grid-template-columns: 1fr; }
  .lp-root .feat-3d, .lp-root .feat-3d.reverse { grid-template-columns: 1fr; gap: 40px; }
  .lp-root .ai-block { padding: 48px 32px; }
  .lp-root .ai-block-inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-root .tab-pair { grid-template-columns: 1fr; gap: 28px; }
  .lp-root .tab-pair .info { grid-template-columns: 1fr; gap: 14px; }
  .lp-root .tab-pair .info > ul { grid-column: 1; grid-row: auto; align-self: start; }
  .lp-root .compras-row { grid-template-columns: 1fr; gap: 32px; }
  .lp-root .app-row { grid-template-columns: 1fr; gap: 48px; }
  .lp-root .phones { min-height: 0; transform: scale(.92); }
  .lp-root .roadmap-grid { grid-template-columns: 1fr; }
  .lp-root .road-card.feature { grid-column: span 1; }
  .lp-root .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .lp-root nav.menu { display: none; }
  .lp-root .btn-link { display: none; }
  .lp-root .cta-final { padding: 48px 28px; }
  .lp-root .quote-block { padding: 40px 32px; }
  .lp-root .quote-block .placeholder-note { position: static; display: inline-block; margin-bottom: 16px; }
}
@media (max-width: 600px) {
  .lp-root section.s { padding: 72px 0; }
  .lp-root .hero { padding: 56px 0 40px; }
  .lp-root .float-card.ai { right: 0; top: -12px; max-width: 200px; padding: 10px 12px; }
  .lp-root .float-card.ai .val { font-size: 16px; }
  .lp-root .float-card.bim { left: 0; bottom: -18px; max-width: 200px; }
  .lp-root .ai-savings-card .big { font-size: 42px; }
  .lp-root .vs-table { font-size: 12.5px; }
  .lp-root .vs-table thead th, .lp-root .vs-table tbody td { padding: 12px 10px; }
}

