/* ═══════════════════════════════════════════════════════════
   Argensoft Landing — Rediseño 2026
   Scoped under .landing-page
   ═══════════════════════════════════════════════════════════ */

.landing-page {
    --lp-bg: #030b14;
    --lp-bg-2: #071828;
    --lp-surface: rgba(255, 255, 255, .04);
    --lp-surface-hover: rgba(255, 255, 255, .07);
    --lp-border: rgba(255, 255, 255, .08);
    --lp-border-bright: rgba(8, 145, 178, .35);
    --lp-text: #e8f4fc;
    --lp-muted: #7a9bb5;
    --lp-accent: #06b6d4;
    --lp-accent-2: #22d3ee;
    --lp-glow: rgba(6, 182, 212, .45);
    --lp-font: "Plus Jakarta Sans", system-ui, sans-serif;
    --lp-display: "Syne", system-ui, sans-serif;
    --lp-radius: 20px;
    --lp-header-h: 88px;

    font-family: var(--lp-font);
    color: var(--lp-text);
    background: var(--lp-bg);
    overflow-x: hidden;
}

.landing-page * { box-sizing: border-box; }

/* ── Ambient layers ── */
.lp-noise {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
}

.lp-cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, .12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity .3s;
    opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
    .lp-cursor-glow { opacity: 1; }
}

/* ── Header ── */
.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 16px 24px;
    transition: background .4s, backdrop-filter .4s, border-color .4s;
}

.lp-header.scrolled {
    background: rgba(3, 11, 20, .75);
    backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--lp-border);
}

.lp-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.lp-brand { display: flex; line-height: 0; text-decoration: none; }

.lp-brand-logo {
    height: 128px;
    width: auto;
    max-width: min(320px, 55vw);
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 4px 24px rgba(6, 182, 212, .2));
    transition: transform .3s;
}

.lp-brand:hover .lp-brand-logo { transform: scale(1.03); }

.lp-nav {
    display: flex;
    gap: 8px;
    padding: 6px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

.lp-nav a {
    color: var(--lp-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 999px;
    transition: color .2s, background .2s;
}

.lp-nav a:hover {
    color: var(--lp-text);
    background: var(--lp-surface-hover);
}

.lp-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    cursor: pointer;
}

.lp-nav-toggle span {
    display: block;
    height: 2px;
    background: var(--lp-text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.lp-nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.lp-nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ── Buttons override ── */
.landing-page .btn-primary {
    background: linear-gradient(135deg, var(--lp-accent) 0%, #0284c7 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

.landing-page .btn-primary:hover {
    background: linear-gradient(135deg, var(--lp-accent-2) 0%, var(--lp-accent) 100%);
    transform: translateY(-2px);
}

.landing-page .btn-ghost {
    color: var(--lp-text);
    border-color: var(--lp-border);
    background: var(--lp-surface);
    backdrop-filter: blur(8px);
}

.landing-page .btn-ghost:hover {
    border-color: var(--lp-border-bright);
    color: var(--lp-accent-2);
    background: rgba(6, 182, 212, .08);
}

.lp-btn-glow {
    box-shadow: 0 0 30px rgba(6, 182, 212, .25), 0 4px 20px rgba(0, 0, 0, .3);
}

.lp-btn-glow:hover {
    box-shadow: 0 0 50px rgba(6, 182, 212, .4), 0 8px 30px rgba(0, 0, 0, .4);
}

/* ── Hero ── */
.lp-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding: calc(var(--lp-header-h) + 40px) 24px 80px;
    overflow: hidden;
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.lp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
}

.lp-orb-1 {
    width: 600px;
    height: 600px;
    top: -15%;
    right: -10%;
    background: radial-gradient(circle, rgba(6, 182, 212, .35) 0%, transparent 70%);
    animation: lp-drift 18s ease-in-out infinite;
}

.lp-orb-2 {
    width: 500px;
    height: 500px;
    bottom: -20%;
    left: -15%;
    background: radial-gradient(circle, rgba(14, 116, 144, .4) 0%, transparent 70%);
    animation: lp-drift 22s ease-in-out infinite reverse;
}

.lp-orb-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 35%;
    background: radial-gradient(circle, rgba(34, 211, 238, .15) 0%, transparent 70%);
    animation: lp-drift 14s ease-in-out infinite 2s;
}

@keyframes lp-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(.95); }
}

.lp-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
}

.lp-hero-layout {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 3% auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 64px;
    align-items: center;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 12px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--lp-accent-2);
    margin-bottom: 28px;
    backdrop-filter: blur(12px);
}

.lp-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lp-accent);
    box-shadow: 0 0 12px var(--lp-glow);
    animation: lp-pulse 2s ease-in-out infinite;
}

@keyframes lp-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.8); }
}

.lp-hero-title {
    font-family: var(--lp-display);
    font-size: clamp(42px, 6.5vw, 76px);
    font-weight: 800;
    line-height: 1.02;
    margin: 0 0 24px;
    letter-spacing: -.03em;
}

.lp-title-line { display: block; }

.lp-title-accent {
    background: linear-gradient(135deg, var(--lp-text) 0%, var(--lp-accent-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-title-italic {
    font-weight: 600;
    font-style: italic;
    color: var(--lp-muted);
    -webkit-text-fill-color: var(--lp-muted);
    font-size: .72em;
    margin-top: 8px;
    letter-spacing: -.01em;
}

.lp-hero-lead {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--lp-muted);
    max-width: 480px;
    margin: 0 0 36px;
    line-height: 1.7;
}

.lp-hero-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.lp-stat {
    padding: 16px 22px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    transition: border-color .3s, transform .3s;
}

.lp-stat:hover {
    border-color: var(--lp-border-bright);
    transform: translateY(-3px);
}

.lp-stat strong {
    display: block;
    font-family: var(--lp-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--lp-accent-2);
    line-height: 1;
    margin-bottom: 4px;
}

.lp-stat span {
    font-size: 11px;
    color: var(--lp-muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
}

.lp-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero visual — logo + platforms */
.lp-hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.lp-hero-logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.lp-hero-logo {
    position: relative;
    z-index: 2;
    width: min(380px, 75vw);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(6, 182, 212, .25));
    animation: lp-logo-float 6s ease-in-out infinite;
}

@keyframes lp-logo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.lp-hero-logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(6, 182, 212, .2);
    animation: lp-ring-spin 20s linear infinite;
}

.lp-hero-logo-ring:first-of-type {
    width: 340px;
    height: 340px;
}

.lp-hero-logo-ring-2 {
    width: 420px;
    height: 420px;
    border-style: dashed;
    border-color: rgba(6, 182, 212, .1);
    animation-direction: reverse;
    animation-duration: 30s;
}

@keyframes lp-ring-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.lp-platforms {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 200px;
}

.lp-platform {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
    transition: border-color .3s, box-shadow .3s;
    will-change: transform;
}

.lp-platform:hover {
    border-color: var(--lp-border-bright);
    box-shadow: 0 12px 40px rgba(6, 182, 212, .15);
}

.lp-platform strong { display: block; font-size: 15px; font-weight: 700; }
.lp-platform small { color: var(--lp-muted); font-size: 12px; }

.lp-platform-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(6, 182, 212, .2), rgba(6, 182, 212, .05));
    border-radius: 12px;
    color: var(--lp-accent-2);
}

.lp-platform-icon svg { width: 22px; height: 22px; }

.lp-platform-1 { top: 0; left: 0; transform: rotate(-4deg); animation: lp-float-card 7s ease-in-out infinite; }
.lp-platform-2 { top: 30%; right: -8%; transform: rotate(3deg); animation: lp-float-card 8s ease-in-out infinite .5s; }
.lp-platform-3 { bottom: 0; left: 15%; transform: rotate(-2deg); animation: lp-float-card 6s ease-in-out infinite 1s; }

@keyframes lp-float-card {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -10px; }
}

.lp-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--lp-muted);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    opacity: .6;
    transition: opacity .3s, color .3s;
    z-index: 3;
}

.lp-scroll-hint svg { width: 20px; height: 20px; animation: lp-bounce 2s ease-in-out infinite; }

@keyframes lp-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.lp-scroll-hint:hover { opacity: 1; color: var(--lp-accent-2); }

/* ── Marquee ── */
.lp-marquee {
    position: relative;
    z-index: 5;
    padding: 20px 0;
    background: linear-gradient(90deg, var(--lp-bg) 0%, var(--lp-bg-2) 50%, var(--lp-bg) 100%);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
    overflow: hidden;
}

.lp-marquee-track {
    display: flex;
    gap: 32px;
    white-space: nowrap;
    animation: lp-marquee 30s linear infinite;
    width: max-content;
}

.lp-marquee-track span {
    font-family: var(--lp-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--lp-muted);
}

.lp-marquee-track span:nth-child(odd) { color: rgba(6, 182, 212, .5); }

@keyframes lp-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ── Sections shared ── */
.lp-section {
    position: relative;
    padding: 100px 24px;
}

.lp-section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.lp-section-head {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    margin-bottom: 56px;
}

.lp-section-num {
    font-family: var(--lp-display);
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(180deg, rgba(6, 182, 212, .4) 0%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
}

.lp-section-head h2 {
    font-family: var(--lp-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin: 0 0 12px;
    letter-spacing: -.02em;
}

.lp-section-head p {
    color: var(--lp-muted);
    margin: 0;
    font-size: 17px;
    max-width: 520px;
}

.lp-section-head-light h2 { color: var(--lp-text); }
.lp-section-head-light p { color: var(--lp-muted); }

/* ── Products ── */
.lp-products {
    background: var(--lp-bg-2);
}

.lp-products::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lp-border-bright), transparent);
}

.lp-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.landing-page .lp-product-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 28px;
    backdrop-filter: blur(16px);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), border-color .3s, box-shadow .4s;
    overflow: hidden;
    position: relative;
}

.landing-page .lp-product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, .06) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .4s;
    pointer-events: none;
}

.landing-page .lp-product-card:hover {
    transform: translateY(-8px) rotate(-.5deg);
    border-color: var(--lp-border-bright);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .4), 0 0 40px rgba(6, 182, 212, .08);
}

.landing-page .lp-product-card:hover::before { opacity: 1; }

.landing-page .lp-badge {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    color: #1a0f00;
    font-weight: 800;
    z-index: 2;
}

.landing-page .product-card h3 { color: var(--lp-text); font-family: var(--lp-display); font-weight: 700; }
.landing-page .product-tagline { color: var(--lp-muted); }
.landing-page .pill { background: rgba(6, 182, 212, .12); color: var(--lp-accent-2); }
.landing-page .pill-muted { background: rgba(255,255,255,.06); color: var(--lp-muted); }
.landing-page .feature-list li { color: var(--lp-muted); }
.landing-page .feature-list li::before { color: var(--lp-accent); }
.landing-page .price { color: var(--lp-accent-2); font-family: var(--lp-display); }
.landing-page .product-card-foot { border-top-color: var(--lp-border); }

.lp-preview {
    position: relative;
    border-color: var(--lp-border) !important;
    border-radius: 14px !important;
    overflow: hidden;
}

.lp-preview img { transition: transform .5s cubic-bezier(.22, 1, .36, 1); }

.lp-preview-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(3, 11, 20, .6);
    color: var(--lp-accent-2);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .05em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity .3s;
}

.lp-preview:hover img { transform: scale(1.05); }
.lp-preview:hover .lp-preview-overlay { opacity: 1; }

.landing-page .empty-state { color: var(--lp-muted); }

/* ── Trust bento ── */
.lp-trust {
    background: var(--lp-bg);
    overflow: hidden;
}

.lp-trust::after {
    content: "";
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, .08) 0%, transparent 70%);
    pointer-events: none;
}

.lp-trust-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.lp-trust-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 32px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    backdrop-filter: blur(12px);
    transition: border-color .3s, transform .4s cubic-bezier(.22, 1, .36, 1);
    min-height: 200px;
}

.lp-trust-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--trust-bg-fallback, var(--trust-bg));
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}

@supports (background-image: url("/assets/trust/trust-licencias-seguras.webp")) {
    .lp-trust-card::before {
        background-image: var(--trust-bg, var(--trust-bg-fallback));
    }
}

.lp-trust-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        165deg,
        rgba(2, 12, 20, .72) 0%,
        rgba(2, 12, 20, .45) 45%,
        rgba(2, 12, 20, .88) 100%
    );
    transition: background .35s ease;
}

.lp-trust-card:hover::before {
    transform: scale(1.08);
}

.lp-trust-card:hover::after {
    background: linear-gradient(
        165deg,
        rgba(2, 12, 20, .65) 0%,
        rgba(2, 12, 20, .35) 45%,
        rgba(2, 12, 20, .82) 100%
    );
}

.lp-trust-card > * {
    position: relative;
    z-index: 1;
}

.lp-trust-card:hover {
    border-color: var(--lp-border-bright);
    transform: translateY(-4px);
}

.lp-trust-card-lg {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
}

.lp-trust-card-lg::before {
    background-position: center 30%;
}

.lp-trust-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(6, 182, 212, .35), rgba(6, 182, 212, .12));
    border: 1px solid rgba(6, 182, 212, .25);
    border-radius: 14px;
    color: var(--lp-accent-2);
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

.lp-trust-icon svg { width: 26px; height: 26px; }

.lp-trust-card h3 {
    font-family: var(--lp-display);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #f8fafc;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

.lp-trust-card p {
    color: rgba(226, 232, 240, .88);
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .4);
}

/* ── Custom dev ── */
.lp-custom {
    background: var(--lp-bg-2);
    position: relative;
}

.lp-custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lp-border-bright), transparent);
}

.lp-custom-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 48px;
    align-items: center;
}

.lp-custom-copy .lp-section-num {
    display: block;
    margin-bottom: 16px;
}

.landing-page .lp-custom-copy .eyebrow {
    color: var(--lp-accent-2);
    margin-bottom: 12px;
}

.landing-page .lp-custom-copy h2 {
    font-family: var(--lp-display);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    margin: 0 0 16px;
    letter-spacing: -.02em;
}

.landing-page .lp-custom-copy .lead {
    color: var(--lp-muted);
    margin-bottom: 28px;
}

.lp-custom-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.lp-custom-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--lp-border);
    font-size: 15px;
    color: var(--lp-text);
    transition: padding-left .3s;
}

.lp-custom-list li:hover { padding-left: 8px; }

.lp-custom-list li span {
    font-family: var(--lp-display);
    font-size: 13px;
    font-weight: 800;
    color: var(--lp-accent);
    opacity: .6;
    flex-shrink: 0;
}

.lp-custom-card {
    position: relative;
    padding: 40px 36px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    overflow: hidden;
    transform: rotate(2deg);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}

.lp-custom-card:hover { transform: rotate(0deg) scale(1.02); }

.lp-custom-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(6, 182, 212, .2) 0%, transparent 60%);
    pointer-events: none;
}

.lp-custom-card h3 {
    font-family: var(--lp-display);
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 12px;
    position: relative;
}

.lp-custom-card p { color: var(--lp-muted); position: relative; margin: 0 0 8px; }
.lp-custom-card .note { font-size: 13px; position: relative; }

.lp-custom-email {
    display: inline-block;
    margin-top: 20px;
    color: var(--lp-accent-2);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    border-bottom: 1px solid transparent;
    transition: border-color .2s;
}

.lp-custom-email:hover { border-bottom-color: var(--lp-accent-2); }

/* ── Footer ── */
.lp-footer {
    padding: 60px 24px 40px;
    border-top: 1px solid var(--lp-border);
    background: var(--lp-bg);
}

.lp-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
}

.lp-footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lp-footer-logo {
    height: 72px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(6, 182, 212, .15));
}

.lp-footer-brand strong {
    display: block;
    font-family: var(--lp-display);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.lp-footer-brand p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 14px;
}

.lp-footer-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.lp-footer-links a {
    color: var(--lp-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color .2s;
}

.lp-footer-links a:hover { color: var(--lp-accent-2); }

.lp-footer-copy {
    width: 100%;
    color: var(--lp-muted);
    font-size: 13px;
    margin: 8px 0 0;
    opacity: .7;
}

/* ── Reveal animations ── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .8s cubic-bezier(.22, 1, .36, 1),
                transform .8s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .lp-hero-layout { grid-template-columns: 1fr; text-align: center; }
    .lp-hero-lead { margin-left: auto; margin-right: auto; }
    .lp-hero-stats { justify-content: center; }
    .lp-hero-cta { justify-content: center; }
    .lp-hero-visual { min-height: 380px; order: -1; }
    .lp-hero-logo { width: min(280px, 60vw); }
    .lp-hero-logo-ring:first-of-type { width: 260px; height: 260px; }
    .lp-hero-logo-ring-2 { width: 320px; height: 320px; }
    .lp-trust-bento { grid-template-columns: 1fr 1fr; }
    .lp-trust-card-lg { grid-row: span 1; min-height: auto; }
    .lp-custom-grid { grid-template-columns: 1fr; }
    .lp-custom-card { transform: none; }
}

@media (max-width: 768px) {
    .lp-brand-logo { height: 48px; }
    .lp-nav {
        display: none;
        position: fixed;
        top: var(--lp-header-h);
        left: 16px;
        right: 16px;
        flex-direction: column;
        padding: 12px;
        border-radius: 16px;
        background: rgba(3, 11, 20, .95);
        backdrop-filter: blur(20px);
    }
    .lp-nav.is-open { display: flex; }
    .lp-nav a { padding: 14px 18px; border-radius: 10px; }
    .lp-nav-toggle { display: flex; }
    .lp-section-head { flex-direction: column; gap: 8px; }
    .lp-section-num { font-size: 48px; }
    .lp-trust-bento { grid-template-columns: 1fr; }
    .lp-platforms { height: auto; display: flex; flex-direction: column; gap: 12px; max-width: 100%; }
    .lp-platform { position: relative !important; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; transform: none !important; animation: none !important; }
    .lp-product-grid { grid-template-columns: 1fr; }
    .lp-footer-brand { flex-direction: column; text-align: center; }
    .lp-footer-links { width: 100%; justify-content: center; }
    .lp-footer-copy { text-align: center; }
    .lp-cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-orb, .lp-hero-logo, .lp-hero-logo-ring,
    .lp-platform, .lp-marquee-track, .lp-scroll-hint svg,
    .lp-pulse, .reveal {
        animation: none !important;
        transition: none !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════
   Inner pages — producto, checkout, gracias
   ═══════════════════════════════════════════════════════════ */

.lp-page-main {
    position: relative;
    z-index: 2;
    padding: calc(var(--lp-header-h) + 32px) 24px 80px;
    min-height: 100vh;
}

.lp-page-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.lp-back-link {
    margin-left: auto;
    color: var(--lp-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 18px;
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    background: var(--lp-surface);
    backdrop-filter: blur(12px);
    transition: color .2s, border-color .2s, background .2s;
    white-space: nowrap;
}

.lp-back-link:hover {
    color: var(--lp-accent-2);
    border-color: var(--lp-border-bright);
    background: var(--lp-surface-hover);
}

/* ── Product page ── */
.lp-product-hero {
    position: relative;
    padding-bottom: 48px;
}

.lp-product-hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, .1) 0%, transparent 70%);
    pointer-events: none;
}

.lp-product-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: start;
}

.lp-product-copy .eyebrow {
    color: var(--lp-accent-2);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 12px;
}

.lp-product-copy h1 {
    font-family: var(--lp-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.05;
    margin: 0 0 16px;
    letter-spacing: -.02em;
}

.lp-product-copy .lead {
    font-size: 18px;
    color: var(--lp-muted);
    margin: 0 0 20px;
    line-height: 1.65;
}

.lp-product-desc {
    color: var(--lp-muted);
    margin: 0 0 28px;
    line-height: 1.7;
}

.lp-product-page-logo {
    height: 72px;
    width: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 20px rgba(6, 182, 212, .15));
}

.landing-page .badge-lg {
    display: inline-block;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fbbf24, #d97706);
    color: #1a0f00;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
}

.lp-product-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lp-buy-box {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 28px;
    backdrop-filter: blur(16px);
    position: sticky;
    top: calc(var(--lp-header-h) + 16px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .35);
}

.lp-buy-box-price {
    font-family: var(--lp-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--lp-accent-2);
    line-height: 1;
    margin-bottom: 6px;
}

.lp-buy-box-kind {
    color: var(--lp-muted);
    margin: 0 0 20px;
    font-size: 14px;
}

.lp-buy-box-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    font-size: 14px;
}

.lp-buy-box-list li {
    padding: 8px 0;
    color: var(--lp-muted);
    border-bottom: 1px solid var(--lp-border);
}

.lp-buy-box-list li:last-child { border-bottom: 0; }

.landing-page .screenshot-hero img,
.landing-page .screenshot-card img {
    border-color: var(--lp-border);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
}

.landing-page .screenshot-hero figcaption,
.landing-page .screenshot-card figcaption {
    color: var(--lp-muted);
}

.landing-page .screenshot-thumb {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--lp-border);
    cursor: zoom-in;
    width: 100%;
    padding: 0;
    background: none;
}

.lp-gallery-section {
    padding: 64px 0;
    border-top: 1px solid var(--lp-border);
}

.lp-features-section {
    padding: 64px 0;
}

.lp-features-section h2,
.lp-gallery-section h2,
.lp-cta-section h2 {
    font-family: var(--lp-display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    margin: 0 0 12px;
    letter-spacing: -.02em;
}

.lp-features-section > .lp-page-inner > p,
.lp-gallery-section > .lp-page-inner > p,
.lp-cta-section > .lp-page-inner > p {
    color: var(--lp-muted);
    margin: 0 0 32px;
}

.landing-page .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.landing-page .feature-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    padding: 20px;
    transition: border-color .3s, transform .3s;
}

.landing-page .feature-card:hover {
    border-color: var(--lp-border-bright);
    transform: translateY(-3px);
}

.landing-page .feature-card p {
    margin: 0;
    color: var(--lp-text);
    font-size: 15px;
}

.landing-page .screenshot-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.lp-cta-section {
    padding: 72px 0;
    text-align: center;
    border-top: 1px solid var(--lp-border);
    background: linear-gradient(180deg, transparent, rgba(6, 182, 212, .04));
}

.lp-cta-section .lp-page-inner { max-width: 560px; }

.landing-page .trial-banner {
    color: #fbbf24;
    font-weight: 600;
    font-size: 14px;
}

/* ── Checkout & thanks ── */
.lp-checkout-main {
    padding-bottom: 100px;
}

.lp-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 28px;
}

.lp-checkout-summary h1 {
    font-family: var(--lp-display);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    margin: 0 0 24px;
    letter-spacing: -.02em;
}

.lp-checkout-product {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 24px;
    margin-bottom: 24px;
    backdrop-filter: blur(12px);
}

.lp-checkout-product h2 {
    font-family: var(--lp-display);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
}

.lp-checkout-product p { margin: 0 0 8px; color: var(--lp-muted); }

.lp-checkout-price {
    font-family: var(--lp-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--lp-accent-2) !important;
    margin: 12px 0 !important;
}

.lp-checkout-trust {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-checkout-trust li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--lp-muted);
    font-size: 14px;
    border-bottom: 1px solid var(--lp-border);
}

.lp-checkout-trust li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--lp-accent);
    font-weight: 700;
}

.landing-page .form-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 32px;
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .3);
}

.landing-page label {
    color: var(--lp-text);
    margin-top: 16px;
}

.landing-page input,
.landing-page select,
.landing-page textarea {
    background: rgba(0, 0, 0, .25);
    border: 1px solid var(--lp-border);
    color: var(--lp-text);
    border-radius: 10px;
}

.landing-page input:focus,
.landing-page select:focus,
.landing-page textarea:focus {
    outline: none;
    border-color: var(--lp-border-bright);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, .12);
}

.landing-page input::placeholder { color: var(--lp-muted); opacity: .7; }

.landing-page .payment-option {
    border-color: var(--lp-border);
    background: rgba(0, 0, 0, .15);
    color: var(--lp-text);
}

.landing-page .payment-option:has(input:checked) {
    border-color: var(--lp-accent);
    background: rgba(6, 182, 212, .1);
}

.landing-page .payment-option small { color: var(--lp-muted); }

.landing-page .transfer-fields {
    background: rgba(0, 0, 0, .2);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
}

.landing-page .alert-error {
    background: rgba(153, 27, 27, .2);
    color: #fecaca;
    border-color: rgba(248, 113, 113, .3);
}

.landing-page .alert-success {
    background: rgba(21, 128, 61, .2);
    color: #bbf7d0;
    border-color: rgba(74, 222, 128, .3);
}

.landing-page .alert-info {
    background: rgba(6, 182, 212, .12);
    color: var(--lp-accent-2);
    border-color: var(--lp-border-bright);
}

.lp-thanks-card {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.lp-thanks-card h1 {
    font-family: var(--lp-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin: 0 0 16px;
}

.lp-thanks-card p {
    color: var(--lp-muted);
    line-height: 1.65;
}

.lp-thanks-card strong { color: var(--lp-text); }

.landing-page .license-box {
    background: rgba(0, 0, 0, .35);
    border: 2px dashed var(--lp-accent);
    color: var(--lp-accent-2);
    font-size: clamp(16px, 3vw, 22px);
    word-break: break-all;
}

.landing-page .bank-details {
    background: rgba(0, 0, 0, .25);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 24px;
    margin: 24px 0;
    text-align: left;
}

.landing-page .bank-details h2 {
    font-family: var(--lp-display);
    font-size: 20px;
    margin: 0 0 16px;
}

.landing-page .bank-details dt { color: var(--lp-muted); }
.landing-page .bank-details dd { color: var(--lp-text); }

.landing-page .lightbox {
    background: rgba(3, 11, 20, .92);
    backdrop-filter: blur(12px);
}

.landing-page .lightbox-close {
    background: var(--lp-surface);
    color: var(--lp-text);
    border: 1px solid var(--lp-border);
}

.landing-page .lightbox figcaption { color: var(--lp-muted); }

.landing-page a:not(.btn):not(.lp-brand):not(.lp-back-link) {
    color: var(--lp-accent-2);
}

@media (max-width: 1024px) {
    .lp-product-grid,
    .lp-checkout-grid { grid-template-columns: 1fr; }
    .lp-buy-box { position: static; }
}

@media (max-width: 768px) {
    .lp-back-link {
        font-size: 13px;
        padding: 8px 14px;
    }
    .lp-header-inner { flex-wrap: wrap; }
}

/* ── Modal contacto (A medida) ── */
.lp-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.lp-modal[hidden] {
    display: none;
}

.lp-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 12, 20, .72);
    backdrop-filter: blur(8px);
    animation: lp-modal-fade-in .25s ease;
}

.lp-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: min(92vh, 720px);
    overflow-y: auto;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border-bright);
    border-radius: calc(var(--lp-radius) + 4px);
    padding: 32px 32px 28px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .55), 0 0 0 1px rgba(6, 182, 212, .08);
    animation: lp-modal-slide-in .35s cubic-bezier(.22, 1, .36, 1);
}

.lp-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    background: rgba(0, 0, 0, .2);
    color: var(--lp-muted);
    cursor: pointer;
    transition: color .2s, border-color .2s, background .2s;
}

.lp-modal-close:hover {
    color: var(--lp-text);
    border-color: var(--lp-border-bright);
    background: rgba(6, 182, 212, .1);
}

.lp-modal-close svg { width: 18px; height: 18px; }

.lp-modal-header {
    padding-right: 48px;
    margin-bottom: 24px;
}

.lp-modal-header h2 {
    font-family: var(--lp-display);
    font-size: clamp(22px, 4vw, 28px);
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -.02em;
}

.lp-modal-header p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 15px;
    line-height: 1.5;
}

.lp-contact-form .lp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}

.lp-contact-form .lp-form-field {
    margin-bottom: 4px;
}

.lp-contact-form label {
    display: block;
    margin-top: 14px;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-text);
}

.lp-optional {
    font-weight: 400;
    color: var(--lp-muted);
    font-size: 12px;
}

.lp-contact-form input,
.lp-contact-form select,
.lp-contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
}

.lp-contact-form textarea {
    resize: vertical;
    min-height: 110px;
}

.lp-contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.lp-contact-alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 8px;
    border: 1px solid transparent;
}

.lp-contact-alert.is-error {
    background: rgba(153, 27, 27, .2);
    color: #fecaca;
    border-color: rgba(248, 113, 113, .3);
}

.lp-contact-alert.is-success {
    background: rgba(21, 128, 61, .2);
    color: #bbf7d0;
    border-color: rgba(74, 222, 128, .3);
}

.lp-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
    padding-top: 8px;
}

.lp-modal-actions .btn { min-width: 120px; }

.lp-modal-actions .btn[disabled] {
    opacity: .65;
    cursor: not-allowed;
}

.lp-custom-email-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

body.lp-modal-open {
    overflow: hidden;
}

@keyframes lp-modal-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes lp-modal-slide-in {
    from { opacity: 0; transform: translateY(20px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 600px) {
    .lp-modal-dialog { padding: 24px 20px 20px; }
    .lp-contact-form .lp-form-row { grid-template-columns: 1fr; gap: 0; }
    .lp-modal-actions { flex-direction: column-reverse; }
    .lp-modal-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-modal-backdrop,
    .lp-modal-dialog { animation: none; }
}
