/* BotPlatform - landing page publica (index.php). Hoja propia: no la carga ninguna otra pagina. */
:root {
    --lp-bg: #05070c;
    --lp-bg-soft: #0e131c;
    --lp-card: #121826;
    --lp-border: #202a3a;
    --lp-text: #eef2f8;
    --lp-text-dim: #94a1b8;
    --lp-accent: #5865F2;
    --lp-accent2: #8b5cf6;
    --lp-accent3: #22d3ee;
}
* { box-sizing: border-box; }
html { background: var(--lp-bg); }
a { text-decoration: none; color: inherit; }
html, body.lp-body { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar, body.lp-body::-webkit-scrollbar { width: 0; height: 0; }
body.lp-body {
    margin: 0; background: var(--lp-bg); color: var(--lp-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden; position: relative;
}

/* fondo: manchas de luz difusas, dan la sensacion de profundidad detras de todo */
.lp-orb { position: fixed; border-radius: 50%; filter: blur(90px); opacity: .55; z-index: 0; pointer-events: none; }
.lp-orb-1 { width: 620px; height: 620px; top: -220px; right: -160px; background: radial-gradient(circle, rgba(88,101,242,.5), transparent 70%); }
.lp-orb-2 { width: 520px; height: 520px; top: 40vh; left: -220px; background: radial-gradient(circle, rgba(139,92,246,.4), transparent 70%); }
.lp-orb-3 { width: 460px; height: 460px; bottom: -200px; right: 10vw; background: radial-gradient(circle, rgba(34,211,238,.28), transparent 70%); }

header.lp-nav, main, footer.lp-footer { position: relative; z-index: 1; }

.lp-nav { display: flex; align-items: center; justify-content: space-between; padding: 26px 56px; max-width: 1680px; margin: 0 auto; }
.lp-brand { font-size: 21px; font-weight: 800; letter-spacing: -.01em; }
.lp-brand span { color: var(--lp-accent); }
.lp-nav-btn { color: var(--lp-text-dim); font-weight: 600; font-size: 14px; padding: 9px 18px; border-radius: 999px; border: 1px solid var(--lp-border); transition: .15s; }
.lp-nav-btn:hover { color: var(--lp-text); border-color: #3a4864; background: rgba(255,255,255,.03); }

/* ---------------------------------------------------------------- hero */
.lp-hero { max-width: 1680px; margin: 0 auto; padding: 48px 56px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.lp-eyebrow { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #b7bfff; background: rgba(88,101,242,.14); border: 1px solid rgba(88,101,242,.35); padding: 6px 14px; border-radius: 999px; margin-bottom: 20px; }
.lp-hero h1 { font-size: clamp(32px, 4vw, 50px); line-height: 1.16; letter-spacing: -.02em; margin: 0 0 20px; }
.lp-hero h1 span { background: linear-gradient(100deg, var(--lp-accent), var(--lp-accent2) 60%, var(--lp-accent3)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lp-sub { color: var(--lp-text-dim); font-size: 17px; line-height: 1.65; max-width: 520px; margin: 0 0 30px; }
.lp-alert { max-width: 480px; padding: 12px 16px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; background: rgba(231,76,60,.12); color: #ff6b5e; border: 1px solid rgba(231,76,60,.3); }

.lp-cta {
    display: inline-flex; align-items: center; gap: 10px; padding: 15px 26px; border-radius: 13px;
    background: linear-gradient(120deg, var(--lp-accent), var(--lp-accent2)); color: #fff; font-weight: 700; font-size: 15.5px;
    box-shadow: 0 16px 40px rgba(88,101,242,.35), 0 2px 0 rgba(255,255,255,.12) inset; transition: transform .16s, box-shadow .16s;
}
.lp-cta:hover { transform: translateY(-2px); box-shadow: 0 20px 48px rgba(88,101,242,.48), 0 2px 0 rgba(255,255,255,.12) inset; }
.lp-trust { color: #667089; font-size: 13px; margin: 16px 0 0; }

/* la composicion "3D": tarjetas apiladas con perspectiva, flotando */
.lp-hero-art { position: relative; height: 440px; perspective: 1400px; }
.lp-glow { position: absolute; inset: 10% 6%; background: radial-gradient(circle, rgba(88,101,242,.35), transparent 68%); filter: blur(50px); z-index: 0; }
.lp-card {
    position: absolute; width: 280px; background: rgba(18,24,38,.78); backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.09); border-radius: 18px; padding: 16px 18px 18px;
    box-shadow: 0 30px 70px rgba(0,0,0,.55), 0 1px 0 rgba(255,255,255,.06) inset;
    animation: lpFloat 6s ease-in-out infinite;
}
.lp-card-a { top: 6%; left: 2%; transform: rotate3d(1, -1, 0, 10deg) rotate(-4deg); z-index: 3; animation-delay: 0s; }
.lp-card-b { top: 40%; right: 0; transform: rotate3d(1, 1, 0, 10deg) rotate(3deg); z-index: 2; width: 240px; animation-delay: .6s; }
.lp-card-c { bottom: 2%; left: 16%; transform: rotate3d(-1, 1, 0, 8deg) rotate(-2deg); z-index: 4; width: 250px; animation-delay: 1.2s; }
@keyframes lpFloat { 0%, 100% { transform: translateY(0) rotate(var(--r, 0)); } 50% { transform: translateY(-12px); } }
.lp-card-a { --r: -4deg; } .lp-card-b { --r: 3deg; } .lp-card-c { --r: -2deg; }
.lp-card-h { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13.5px; margin-bottom: 12px; }
.lp-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.lp-dot-g { background: #57f287; box-shadow: 0 0 0 4px rgba(87,242,135,.18); }
.lp-dot-p { background: var(--lp-accent2); box-shadow: 0 0 0 4px rgba(139,92,246,.18); }
.lp-dot-b { background: var(--lp-accent3); box-shadow: 0 0 0 4px rgba(34,211,238,.18); }
.lp-tag { margin-left: auto; font-size: 10.5px; font-weight: 700; color: var(--lp-text-dim); background: rgba(255,255,255,.05); padding: 3px 8px; border-radius: 999px; }
.lp-tag-on { color: #57f287; background: rgba(87,242,135,.14); }
.lp-card-row { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; padding: 7px 0; border-top: 1px solid rgba(255,255,255,.06); color: var(--lp-text-dim); }
.lp-card-row b { color: var(--lp-text); font-weight: 600; }
.lp-ok { color: #57f287 !important; } .lp-no { color: #ff7a7d !important; }
.lp-card-btn { margin-top: 10px; text-align: center; font-size: 12px; font-weight: 700; color: #c9cdfb; background: rgba(88,101,242,.16); border: 1px solid rgba(88,101,242,.35); border-radius: 9px; padding: 8px; }
.lp-card-welcome { display: flex; align-items: center; gap: 10px; }
.lp-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,var(--lp-accent),var(--lp-accent2)); flex-shrink: 0; }
.lp-card-welcome b { display: block; font-size: 13px; } .lp-card-welcome small { color: var(--lp-text-dim); font-size: 11.5px; }

/* ---------------------------------------------------------------- logos strip */
.lp-logos { max-width: 1200px; margin: 10px auto 0; padding: 26px 24px; text-align: center; border-top: 1px solid var(--lp-border); border-bottom: 1px solid var(--lp-border); }
.lp-logos > span { display: block; color: #5c6780; font-size: 13px; margin-bottom: 12px; }
.lp-logos-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; color: var(--lp-text-dim); font-weight: 700; font-size: 14px; letter-spacing: .02em; }
.lp-logos-row span:nth-child(even) { color: #3a4560; }

/* ---------------------------------------------------------------- secciones generales */
.lp-section, .lp-how { max-width: 1560px; margin: 0 auto; padding: 90px 56px; }
.lp-section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.lp-section-head h2 { font-size: clamp(24px, 3vw, 34px); line-height: 1.3; margin: 0; letter-spacing: -.01em; }

.lp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; max-width: 1140px; margin: 0 auto; }
.lp-feat {
    background: linear-gradient(180deg, var(--lp-card), var(--lp-bg-soft)); border: 1px solid var(--lp-border);
    border-radius: 18px; padding: 26px; transition: transform .2s, border-color .2s, box-shadow .2s;
}
.lp-feat:hover { transform: perspective(600px) rotateX(2deg) translateY(-5px); border-color: #384566; box-shadow: 0 24px 50px rgba(0,0,0,.4); }
.lp-ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; }
.lp-ico svg { width: 22px; height: 22px; }
.lp-ico-1 { background: rgba(88,101,242,.16); color: #a5aeff; }
.lp-ico-2 { background: rgba(87,242,135,.14); color: #57f287; }
.lp-ico-3 { background: rgba(34,211,238,.15); color: #22d3ee; }
.lp-ico-4 { background: rgba(139,92,246,.16); color: #b39aff; }
.lp-ico-5 { background: rgba(245,166,35,.15); color: #fbbf24; }
.lp-ico-6 { background: rgba(236,72,153,.15); color: #f472b6; }
.lp-feat h3 { margin: 0 0 8px; font-size: 16.5px; }
.lp-feat p { margin: 0; color: var(--lp-text-dim); font-size: 13.5px; line-height: 1.6; }

.lp-how { text-align: center; }
.lp-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; text-align: left; max-width: 1140px; margin: 0 auto; }
.lp-step { background: var(--lp-bg-soft); border: 1px solid var(--lp-border); border-radius: 18px; padding: 26px; position: relative; }
.lp-step span { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(88,101,242,.18); color: #b7bfff; font-weight: 800; margin-bottom: 14px; }
.lp-step b { display: block; font-size: 15.5px; margin-bottom: 6px; }
.lp-step p { margin: 0; color: var(--lp-text-dim); font-size: 13.5px; line-height: 1.6; }

.lp-cta-final {
    max-width: 1100px; margin: 20px auto 100px; padding: 60px 40px; text-align: center; border-radius: 26px;
    background: linear-gradient(135deg, rgba(88,101,242,.24), rgba(139,92,246,.08) 60%), var(--lp-card);
    border: 1px solid rgba(124,136,255,.3); box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.lp-cta-final h2 { font-size: clamp(24px, 3vw, 32px); margin: 0 0 12px; }
.lp-cta-final p { color: var(--lp-text-dim); margin: 0 0 26px; font-size: 15px; }

.lp-footer { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; padding: 30px 24px 40px; color: #566079; font-size: 13px; border-top: 1px solid var(--lp-border); }
.lp-footer .lp-brand { font-size: 15px; }

@media (max-width: 900px) {
    .lp-hero { grid-template-columns: 1fr; padding: 32px 24px; }
    .lp-hero-art { height: 380px; margin-top: 10px; }
    .lp-nav { padding: 20px 24px; }
    .lp-section, .lp-how { padding: 60px 24px; }
}
@media (max-width: 520px) {
    .lp-card { width: 220px !important; }
    .lp-card-b { right: -8px; }
    .lp-hero-art { height: 420px; }
}
