/* =============================================================
   LeNavire — Landing PRO v2
   Palette professionnelle : noir profond + emeraude + cyan + argent
   Namespace : .lp2-*  (n'interfere PAS avec les anciennes classes)
   ============================================================= */

:root {
    --lp2-bg: #060910;
    --lp2-bg-2: #0b121d;
    --lp2-surface: rgba(15, 23, 36, 0.65);
    --lp2-surface-2: rgba(20, 30, 46, 0.85);
    --lp2-border: rgba(148, 163, 184, 0.12);
    --lp2-border-2: rgba(148, 163, 184, 0.22);
    --lp2-text: #e6edf7;
    --lp2-text-dim: #8a96ab;
    --lp2-text-mute: #5b6678;

    --lp2-emerald: #10b981;
    --lp2-emerald-2: #34d399;
    --lp2-emerald-glow: rgba(16, 185, 129, 0.35);
    --lp2-cyan: #22d3ee;
    --lp2-cyan-2: #67e8f9;
    --lp2-silver: #cbd5e1;
    --lp2-violet: #8b5cf6;

    --lp2-radius: 18px;
    --lp2-radius-sm: 12px;
    --lp2-radius-lg: 28px;

    --lp2-shadow-sm: 0 4px 16px rgba(0,0,0,0.35);
    --lp2-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.25);
    --lp2-shadow-lg: 0 30px 80px rgba(0,0,0,0.55);
    --lp2-shadow-emerald: 0 0 60px rgba(16,185,129,0.25), 0 0 100px rgba(34,211,238,0.12);

    --lp2-font: 'Outfit', 'Inter', -apple-system, system-ui, sans-serif;
}

/* Base */
body.landing-body-pro {
    margin: 0;
    padding: 0;
    background: var(--lp2-bg);
    color: var(--lp2-text);
    font-family: var(--lp2-font);
    font-feature-settings: "ss01", "cv11";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.55;
}

body.landing-body-pro * { box-sizing: border-box; }

body.landing-body-pro a { color: inherit; text-decoration: none; }

/* =============================================================
   BACKGROUND : Aurora + grille subtile
   ============================================================= */
.lp2-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background:
        radial-gradient(1200px 800px at 15% 5%, rgba(16,185,129,0.18), transparent 60%),
        radial-gradient(1000px 700px at 90% 20%, rgba(34,211,238,0.12), transparent 60%),
        radial-gradient(900px 600px at 50% 100%, rgba(139,92,246,0.10), transparent 60%),
        linear-gradient(180deg, #060910 0%, #08111d 50%, #060910 100%);
}
.lp2-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148,163,184,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148,163,184,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
}
.lp2-bg::after {
    content: '';
    position: absolute;
    inset: -10%;
    background:
        conic-gradient(from 0deg at 50% 50%,
            rgba(16,185,129,0.10),
            rgba(34,211,238,0.08),
            rgba(139,92,246,0.06),
            rgba(16,185,129,0.10));
    filter: blur(120px);
    opacity: 0.55;
    animation: lp2-spin 40s linear infinite;
}
@keyframes lp2-spin {
    to { transform: rotate(360deg); }
}

.lp2-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    animation: lp2-orb 18s ease-in-out infinite;
}
.lp2-orb-1 { top: -120px; left: -100px; width: 480px; height: 480px; background: radial-gradient(circle, var(--lp2-emerald), transparent 70%); }
.lp2-orb-2 { top: 30%; right: -180px; width: 520px; height: 520px; background: radial-gradient(circle, var(--lp2-cyan), transparent 70%); animation-delay: -6s; }
.lp2-orb-3 { bottom: -150px; left: 30%; width: 600px; height: 600px; background: radial-gradient(circle, var(--lp2-violet), transparent 70%); animation-delay: -12s; opacity: 0.35; }
@keyframes lp2-orb {
    0%, 100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(60px, -40px) scale(1.1); }
}

/* =============================================================
   NAV
   ============================================================= */
.lp2-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 36px;
    background: rgba(6, 9, 16, 0.55);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    border-bottom: 1px solid var(--lp2-border);
}
.lp2-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}
.lp2-nav-brand img {
    width: 34px; height: 34px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(16,185,129,0.55));
}
.lp2-nav-brand span {
    background: linear-gradient(135deg, #fff 30%, var(--lp2-emerald-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lp2-nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}
.lp2-nav-link {
    padding: 9px 16px;
    border-radius: 10px;
    color: var(--lp2-text-dim);
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.2s ease;
}
.lp2-nav-link:hover {
    color: var(--lp2-text);
    background: rgba(148,163,184,0.07);
}
.lp2-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.lp2-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.93rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.22s cubic-bezier(.2,.8,.2,1);
    font-family: inherit;
    text-decoration: none;
    white-space: nowrap;
}
.lp2-btn-ghost {
    background: transparent;
    color: var(--lp2-text);
    border-color: var(--lp2-border-2);
}
.lp2-btn-ghost:hover {
    background: rgba(148,163,184,0.08);
    border-color: var(--lp2-silver);
}
.lp2-btn-primary {
    background: linear-gradient(135deg, var(--lp2-emerald) 0%, var(--lp2-cyan) 100%);
    color: #03141a;
    box-shadow: 0 8px 24px rgba(16,185,129,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
}
.lp2-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(16,185,129,0.5), inset 0 1px 0 rgba(255,255,255,0.35);
}
.lp2-btn-lg {
    padding: 16px 32px;
    font-size: 1.02rem;
    border-radius: 14px;
}

/* =============================================================
   CONTAINER
   ============================================================= */
.lp2-wrap {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

/* =============================================================
   HERO
   ============================================================= */
.lp2-hero {
    position: relative;
    z-index: 2;
    padding: 80px 32px 100px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}
.lp2-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(16,185,129,0.10);
    border: 1px solid rgba(16,185,129,0.28);
    color: var(--lp2-emerald-2);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.lp2-hero-eyebrow::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--lp2-emerald-2);
    box-shadow: 0 0 8px var(--lp2-emerald-2);
    animation: lp2-pulse 1.6s ease-in-out infinite;
}
@keyframes lp2-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(1.4); }
}
.lp2-hero-title {
    font-size: clamp(2.6rem, 5.2vw, 4.4rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.025em;
    margin: 0 0 22px;
    color: #fff;
}
.lp2-grad {
    background: linear-gradient(135deg, var(--lp2-emerald-2) 0%, var(--lp2-cyan-2) 50%, var(--lp2-emerald) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: lp2-grad-shift 6s ease-in-out infinite;
}
@keyframes lp2-grad-shift {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}
.lp2-hero-desc {
    font-size: 1.13rem;
    color: var(--lp2-text-dim);
    line-height: 1.65;
    max-width: 560px;
    margin: 0 0 32px;
}
.lp2-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}
.lp2-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(20,30,46,0.6);
    border: 1px solid var(--lp2-border-2);
    color: var(--lp2-text);
    font-size: 0.84rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}
.lp2-pill svg { color: var(--lp2-emerald-2); }
.lp2-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.lp2-hero-note {
    font-size: 0.86rem;
    color: var(--lp2-text-mute);
    margin: 0;
}
.lp2-hero-note strong { color: var(--lp2-emerald-2); }

/* Hero RIGHT — Mascotte */
.lp2-hero-mascot {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 560px;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp2-mascot-halo {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(16,185,129,0.45), transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(34,211,238,0.35), transparent 70%);
    filter: blur(40px);
    animation: lp2-halo 6s ease-in-out infinite;
}
@keyframes lp2-halo {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50%      { transform: scale(1.1); opacity: 1; }
}
.lp2-mascot-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px dashed rgba(34,211,238,0.35);
    animation: lp2-spin 30s linear infinite;
}
.lp2-mascot-ring::before, .lp2-mascot-ring::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(16,185,129,0.25);
}
.lp2-mascot-ring::before { inset: 12%; animation: lp2-spin 22s linear infinite reverse; }
.lp2-mascot-ring::after  { inset: 24%; border-color: rgba(34,211,238,0.18); }
.lp2-mascot-img {
    position: relative;
    z-index: 2;
    width: 78%;
    height: 78%;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(16,185,129,0.45)) drop-shadow(0 0 30px rgba(34,211,238,0.35));
    animation: lp2-float 5s ease-in-out infinite;
}
@keyframes lp2-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-18px); }
}
/* Fallback si image absente (logo en grand) */
.lp2-mascot-fallback {
    position: relative;
    z-index: 2;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, var(--lp2-emerald-2), var(--lp2-emerald) 50%, #064e3b 100%);
    box-shadow:
        inset 0 10px 30px rgba(255,255,255,0.2),
        inset 0 -20px 40px rgba(0,0,0,0.4),
        0 30px 60px rgba(16,185,129,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lp2-float 5s ease-in-out infinite;
}
.lp2-mascot-fallback::after {
    content: '';
    position: absolute;
    top: 18%;
    left: 25%;
    width: 35%;
    height: 25%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.45), transparent 70%);
    filter: blur(8px);
}

/* Floating orbits around mascot */
.lp2-mascot-chip {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 14px;
    background: var(--lp2-surface-2);
    border: 1px solid var(--lp2-border-2);
    backdrop-filter: blur(20px);
    box-shadow: var(--lp2-shadow);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--lp2-text);
    animation: lp2-float 4.5s ease-in-out infinite;
}
.lp2-mascot-chip-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--lp2-emerald), var(--lp2-cyan));
    color: #03141a;
    font-size: 0.95rem;
}
.lp2-mascot-chip-1 { top: 8%;  left: -6%; animation-delay: -1.5s; }
.lp2-mascot-chip-2 { top: 42%; right: -8%; animation-delay: -3s; }
.lp2-mascot-chip-3 { bottom: 10%; left: -2%; animation-delay: -4.5s; }

/* =============================================================
   TRUST / Stats bar
   ============================================================= */
.lp2-trust {
    position: relative;
    z-index: 2;
    margin: -10px auto 60px;
    max-width: 1100px;
    padding: 22px 28px;
    border-radius: var(--lp2-radius);
    background: var(--lp2-surface);
    border: 1px solid var(--lp2-border);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    box-shadow: var(--lp2-shadow-sm);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}
.lp2-trust-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-right: 1px solid var(--lp2-border);
}
.lp2-trust-cell:last-child { border-right: none; }
.lp2-trust-val {
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--lp2-emerald-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lp2-trust-lbl {
    font-size: 0.74rem;
    color: var(--lp2-text-mute);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* =============================================================
   SECTION generic
   ============================================================= */
.lp2-section {
    position: relative;
    z-index: 2;
    padding: 90px 0;
}
.lp2-section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: var(--lp2-emerald-2);
    margin-bottom: 12px;
}
.lp2-section-title {
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 16px;
}
.lp2-section-desc {
    font-size: 1.05rem;
    color: var(--lp2-text-dim);
    max-width: 620px;
    margin: 0 0 48px;
    line-height: 1.65;
}
.lp2-section-head-center {
    text-align: center;
    margin: 0 auto 56px;
    max-width: 720px;
}
.lp2-section-head-center .lp2-section-desc { margin-left: auto; margin-right: auto; }

/* =============================================================
   FEATURES grid
   ============================================================= */
.lp2-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.lp2-feature {
    position: relative;
    padding: 28px 26px;
    border-radius: var(--lp2-radius);
    background: var(--lp2-surface);
    border: 1px solid var(--lp2-border);
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(.2,.8,.2,1);
    overflow: hidden;
}
.lp2-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(16,185,129,0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}
.lp2-feature:hover {
    transform: translateY(-6px);
    border-color: rgba(16,185,129,0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(16,185,129,0.15);
}
.lp2-feature:hover::before { opacity: 1; }
.lp2-feature > * { position: relative; z-index: 1; }
.lp2-feature-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(34,211,238,0.15));
    border: 1px solid rgba(16,185,129,0.3);
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    margin-bottom: 18px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.lp2-feature h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}
.lp2-feature p {
    color: var(--lp2-text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* =============================================================
   COMPARE — All-in-one
   ============================================================= */
.lp2-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}
.lp2-compare-col {
    padding: 28px;
    border-radius: var(--lp2-radius);
    border: 1px solid var(--lp2-border);
    background: var(--lp2-surface);
    backdrop-filter: blur(20px);
}
.lp2-compare-col h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.lp2-compare-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lp2-compare-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--lp2-border);
    font-size: 0.92rem;
    color: var(--lp2-text-dim);
}
.lp2-compare-col-bad h3 { color: #ef4444; }
.lp2-compare-col-bad li::before {
    content: '×';
    color: #ef4444;
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1;
}
.lp2-compare-col-good {
    border-color: rgba(16,185,129,0.35);
    background: linear-gradient(180deg, rgba(16,185,129,0.05), var(--lp2-surface) 60%);
    box-shadow: 0 0 60px rgba(16,185,129,0.12);
}
.lp2-compare-col-good h3 { color: var(--lp2-emerald-2); }
.lp2-compare-col-good li {
    color: var(--lp2-text);
    border-color: rgba(16,185,129,0.18);
    background: rgba(16,185,129,0.05);
}
.lp2-compare-col-good li::before {
    content: '✓';
    color: var(--lp2-emerald-2);
    font-weight: 800;
    font-size: 1rem;
}
.lp2-compare-head {
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--lp2-border);
}
.lp2-compare-head h3 {
    margin: 8px 0 0;
    font-size: 1.18rem;
    font-weight: 700;
    color: #fff;
    display: block;
}
.lp2-compare-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.lp2-compare-tag-bad {
    background: rgba(239,68,68,0.12);
    color: #f87171;
    border: 1px solid rgba(239,68,68,0.3);
}
.lp2-compare-tag-good {
    background: rgba(16,185,129,0.15);
    color: var(--lp2-emerald-2);
    border: 1px solid rgba(16,185,129,0.4);
}
.lp2-compare-foot {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(16,185,129,0.18);
    text-align: center;
}
.lp2-compare-list li strong { color: #fff; font-weight: 600; }

/* =============================================================
   E2E showcase
   ============================================================= */
.lp2-e2e {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.lp2-e2e-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}
.lp2-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.28);
    color: var(--lp2-emerald-2);
    font-size: 0.85rem;
    font-weight: 600;
}
.lp2-card {
    padding: 28px;
    border-radius: var(--lp2-radius-lg);
    background: linear-gradient(180deg, rgba(16,185,129,0.08), var(--lp2-surface) 50%);
    border: 1px solid rgba(16,185,129,0.25);
    backdrop-filter: blur(24px);
    box-shadow: var(--lp2-shadow), 0 0 80px rgba(16,185,129,0.15);
}
.lp2-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--lp2-border);
}
.lp2-lock {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--lp2-emerald), var(--lp2-cyan));
    color: #03141a;
    box-shadow: 0 8px 20px rgba(16,185,129,0.4);
}
.lp2-card-head-text { display: flex; flex-direction: column; }
.lp2-card-head-text strong { color: #fff; }
.lp2-card-head-text small { color: var(--lp2-text-mute); font-size: 0.78rem; }
.lp2-msg-row {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}
.lp2-msg-row.out { flex-direction: row-reverse; }
.lp2-msg-av {
    width: 32px; height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}
.lp2-msg-bub {
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--lp2-border);
    font-size: 0.92rem;
    max-width: 80%;
}
.lp2-msg-row.out .lp2-msg-bub {
    background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(34,211,238,0.15));
    border-color: rgba(16,185,129,0.35);
}
.lp2-msg-meta {
    display: block;
    margin-top: 4px;
    font-size: 0.7rem;
    color: var(--lp2-text-mute);
}
.lp2-card-foot {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--lp2-border);
    font-size: 0.8rem;
    color: var(--lp2-text-mute);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =============================================================
   DOWNLOAD section
   ============================================================= */
.lp2-dl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 820px;
    margin: 0 auto;
}
.lp2-dl-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    border-radius: var(--lp2-radius);
    background: var(--lp2-surface);
    border: 1px solid var(--lp2-border);
    transition: all 0.25s ease;
    text-decoration: none;
    color: var(--lp2-text);
}
.lp2-dl-card:hover {
    transform: translateY(-4px);
    border-color: var(--lp2-emerald-2);
    box-shadow: 0 16px 40px rgba(16,185,129,0.18);
}
.lp2-dl-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: grid; place-items: center;
    font-size: 1.6rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--lp2-border-2);
}
.lp2-dl-card .lp2-dl-info { flex: 1; }
.lp2-dl-card .lp2-dl-info strong { display: block; font-size: 1rem; color: #fff; }
.lp2-dl-card .lp2-dl-info span { font-size: 0.84rem; color: var(--lp2-text-mute); }
.lp2-dl-tag {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(16,185,129,0.15);
    color: var(--lp2-emerald-2);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* =============================================================
   DEV section
   ============================================================= */
.lp2-dev {
    padding: 56px;
    border-radius: var(--lp2-radius-lg);
    background:
        radial-gradient(800px 400px at 0% 0%, rgba(34,211,238,0.10), transparent 60%),
        radial-gradient(800px 400px at 100% 100%, rgba(16,185,129,0.10), transparent 60%),
        var(--lp2-surface-2);
    border: 1px solid var(--lp2-border-2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.lp2-dev-code {
    border-radius: var(--lp2-radius);
    background: #050810;
    border: 1px solid var(--lp2-border-2);
    overflow: hidden;
    box-shadow: var(--lp2-shadow-lg);
    font-family: 'JetBrains Mono', 'Consolas', monospace;
    font-size: 0.84rem;
}
.lp2-dev-code-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(20,30,46,0.8);
    border-bottom: 1px solid var(--lp2-border);
    font-size: 0.78rem;
    color: var(--lp2-text-mute);
}
.lp2-dev-code-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.lp2-dev-code-bar .dot.r { background: #ef4444; }
.lp2-dev-code-bar .dot.y { background: #f59e0b; }
.lp2-dev-code-bar .dot.g { background: #10b981; }
.lp2-dev-code-bar .file { margin-left: auto; color: var(--lp2-emerald-2); }
.lp2-dev-code pre { margin: 0; padding: 18px 20px; color: #cbd5e1; line-height: 1.6; overflow-x: auto; }
.lp2-dev-code .k  { color: #c084fc; }
.lp2-dev-code .s  { color: #86efac; }
.lp2-dev-code .c  { color: #64748b; font-style: italic; }
.lp2-dev-code .fn { color: var(--lp2-cyan-2); }

/* =============================================================
   CTA finale
   ============================================================= */
.lp2-cta {
    position: relative;
    margin: 90px 32px 60px;
    padding: 70px 32px;
    border-radius: var(--lp2-radius-lg);
    text-align: center;
    background:
        radial-gradient(600px 300px at 50% 0%, rgba(16,185,129,0.18), transparent 70%),
        var(--lp2-surface-2);
    border: 1px solid rgba(16,185,129,0.3);
    overflow: hidden;
    z-index: 2;
}
.lp2-cta::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--lp2-emerald), var(--lp2-cyan), var(--lp2-violet));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
    pointer-events: none;
}
.lp2-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
    color: #fff;
}
.lp2-cta p {
    color: var(--lp2-text-dim);
    font-size: 1.1rem;
    margin: 0 0 30px;
}

/* =============================================================
   FOOTER
   ============================================================= */
.lp2-footer {
    position: relative;
    z-index: 2;
    padding: 40px 32px 30px;
    border-top: 1px solid var(--lp2-border);
    text-align: center;
    color: var(--lp2-text-mute);
    background: rgba(6,9,16,0.6);
    backdrop-filter: blur(20px);
}
.lp2-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--lp2-text);
    margin-bottom: 12px;
}
.lp2-footer-brand img { width: 24px; height: 24px; filter: drop-shadow(0 0 6px var(--lp2-emerald)); }
.lp2-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin: 14px 0;
    font-size: 0.88rem;
}
.lp2-footer-links a { color: var(--lp2-text-dim); transition: color 0.2s; }
.lp2-footer-links a:hover { color: var(--lp2-emerald-2); }
.lp2-footer-copy { font-size: 0.8rem; margin: 0; }

/* =============================================================
   PAGES INTERNES (legal, download)
   ============================================================= */
.lp2-page-head {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 70px 24px 30px;
    max-width: 760px;
    margin: 0 auto;
}
.lp2-page-head .lp2-section-title { margin-top: 12px; }
.lp2-page-head p { color: var(--lp2-text-dim); margin-top: 10px; }

/* Tabs (legal) */
.lp2-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto 32px;
    padding: 8px;
    background: var(--lp2-surface);
    border: 1px solid var(--lp2-border);
    border-radius: 14px;
    backdrop-filter: blur(20px);
}
.lp2-tab {
    padding: 10px 18px;
    border: none;
    background: transparent;
    color: var(--lp2-text-dim);
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.22s ease;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.lp2-tab:hover { color: var(--lp2-text); background: rgba(255,255,255,0.04); }
.lp2-tab.active {
    background: linear-gradient(135deg, var(--lp2-emerald), var(--lp2-cyan));
    color: #03141a;
    box-shadow: 0 6px 20px rgba(16,185,129,0.35);
}

.lp2-doc {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px 80px;
    position: relative;
    z-index: 2;
}
.lp2-doc-section { display: none; animation: lp2-fade-in 0.4s ease; }
.lp2-doc-section.active { display: block; }
@keyframes lp2-fade-in {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.lp2-doc-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(34,211,238,0.15));
    border: 1px solid rgba(16,185,129,0.3);
    display: grid;
    place-items: center;
    font-size: 1.7rem;
    margin: 0 auto 16px;
}
.lp2-doc-title {
    font-size: 1.7rem;
    font-weight: 800;
    text-align: center;
    margin: 0 0 36px;
    color: #fff;
}
.lp2-block {
    padding: 24px 28px;
    border-radius: var(--lp2-radius);
    background: var(--lp2-surface);
    border: 1px solid var(--lp2-border);
    backdrop-filter: blur(18px);
    margin-bottom: 16px;
}
.lp2-block h3 {
    color: var(--lp2-emerald-2);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.lp2-block p {
    color: var(--lp2-text);
    margin: 0 0 10px;
    font-size: 0.95rem;
    line-height: 1.7;
}
.lp2-block p:last-child { margin-bottom: 0; }
.lp2-block ul {
    margin: 8px 0 10px;
    padding-left: 22px;
    color: var(--lp2-text);
    font-size: 0.94rem;
    line-height: 1.75;
}
.lp2-block ul li { margin-bottom: 6px; }
.lp2-block strong { color: #fff; }
.lp2-block a { color: var(--lp2-cyan-2); text-decoration: underline; text-decoration-color: rgba(34,211,238,0.4); transition: color 0.2s; }
.lp2-block a:hover { color: var(--lp2-emerald-2); }
.lp2-block code {
    background: rgba(34,211,238,0.1);
    color: var(--lp2-cyan-2);
    padding: 2px 8px;
    border-radius: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    border: 1px solid rgba(34,211,238,0.18);
}

.lp2-info-card {
    border: 1px solid var(--lp2-border-2);
    border-radius: var(--lp2-radius-sm);
    background: rgba(0,0,0,0.25);
    overflow: hidden;
    margin: 14px 0;
}
.lp2-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--lp2-border);
    font-size: 0.92rem;
}
.lp2-info-row:last-child { border-bottom: none; }
.lp2-info-label { color: var(--lp2-text-mute); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.78rem; }
.lp2-info-val { color: var(--lp2-text); }

.lp2-warn {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: var(--lp2-radius-sm);
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.3);
    color: var(--lp2-text);
    margin: 14px 0;
    font-size: 0.92rem;
}
.lp2-warn-icon { font-size: 1.3rem; flex-shrink: 0; line-height: 1; }

.lp2-mail-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--lp2-emerald), var(--lp2-cyan));
    color: #03141a;
    font-weight: 700;
    text-decoration: none;
    margin: 12px 0;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(16,185,129,0.3);
    transition: all 0.2s ease;
}
.lp2-mail-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(16,185,129,0.45); }

.lp2-back-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--lp2-border);
}

/* DOWNLOAD page big cards */
.lp2-dlx {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}
.lp2-dlx-card {
    position: relative;
    padding: 34px 28px;
    border-radius: var(--lp2-radius-lg);
    background: var(--lp2-surface);
    border: 1px solid var(--lp2-border);
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(.2,.8,.2,1);
    text-decoration: none;
    color: var(--lp2-text);
    display: flex;
    flex-direction: column;
}
.lp2-dlx-card:hover {
    transform: translateY(-8px);
    border-color: var(--lp2-emerald-2);
    box-shadow: var(--lp2-shadow-lg), 0 0 50px rgba(16,185,129,0.2);
}
.lp2-dlx-card.featured {
    background: linear-gradient(180deg, rgba(16,185,129,0.10), var(--lp2-surface) 60%);
    border-color: rgba(16,185,129,0.4);
    box-shadow: 0 20px 60px rgba(16,185,129,0.15);
}
.lp2-dlx-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 2rem;
    margin-bottom: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--lp2-border-2);
}
.lp2-dlx-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 4px;
    color: #fff;
    letter-spacing: -0.01em;
}
.lp2-dlx-sub { color: var(--lp2-text-mute); font-size: 0.86rem; margin-bottom: 16px; }
.lp2-dlx-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--lp2-text-dim);
    font-size: 0.9rem;
    flex: 1;
}
.lp2-dlx-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.lp2-dlx-list li::before {
    content: '✓';
    color: var(--lp2-emerald-2);
    font-weight: 800;
}
.lp2-dlx-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--lp2-emerald), var(--lp2-cyan));
    color: #03141a;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}
.lp2-dlx-card:hover .lp2-dlx-cta {
    box-shadow: 0 10px 24px rgba(16,185,129,0.4);
}
.lp2-dlx-tag {
    position: absolute;
    top: 16px; right: 16px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(16,185,129,0.18);
    color: var(--lp2-emerald-2);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(16,185,129,0.3);
}
.lp2-dlx-tag-soon {
    background: rgba(148,163,184,0.12);
    color: var(--lp2-silver);
    border-color: var(--lp2-border-2);
}

@media (max-width: 880px) {
    .lp2-dlx { grid-template-columns: 1fr; }
}


/* =============================================================
   REVEAL animation on scroll
   ============================================================= */
.lp2-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2,.8,.2,1);
}
.lp2-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 980px) {
    .lp2-hero { grid-template-columns: 1fr; padding: 50px 24px 70px; gap: 40px; text-align: center; }
    .lp2-hero-pills, .lp2-hero-ctas { justify-content: center; }
    .lp2-hero-desc { margin-left: auto; margin-right: auto; }
    .lp2-trust { grid-template-columns: repeat(3, 1fr); }
    .lp2-trust-cell:nth-child(3) { border-right: none; }
    .lp2-features { grid-template-columns: repeat(2, 1fr); }
    .lp2-compare, .lp2-e2e, .lp2-dev { grid-template-columns: 1fr; }
    .lp2-dev { padding: 36px 28px; }
}
@media (max-width: 640px) {
    .lp2-nav { padding: 12px 18px; }
    .lp2-nav-links { display: none; }
    .lp2-wrap { padding: 0 18px; }
    .lp2-features, .lp2-dl { grid-template-columns: 1fr; }
    .lp2-trust { grid-template-columns: repeat(2, 1fr); padding: 18px; }
    .lp2-trust-cell { border-right: none !important; }
    .lp2-section { padding: 60px 0; }
    .lp2-cta { margin: 50px 18px 40px; padding: 50px 22px; }
    .lp2-mascot-chip-1 { left: 0; }
    .lp2-mascot-chip-2 { right: 0; }
}

/* =============================================================
   LANGUAGE PICKER (nav)
   ============================================================= */
.lp2-lang {
    position: relative;
    display: inline-flex;
}
.lp2-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--lp2-border);
    color: var(--lp2-text);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.lp2-lang-btn:hover { background: rgba(255,255,255,0.08); border-color: var(--lp2-border-2); }
.lp2-lang-btn .lp2-lang-flag { font-size: 1rem; line-height: 1; }
.lp2-lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    padding: 6px;
    background: rgba(8,12,18,0.96);
    backdrop-filter: blur(20px);
    border: 1px solid var(--lp2-border-2);
    border-radius: 12px;
    box-shadow: var(--lp2-shadow);
    display: none;
    z-index: 200;
}
.lp2-lang.open .lp2-lang-menu { display: block; }
.lp2-lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 12px;
    background: transparent;
    border: none;
    color: var(--lp2-text);
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    text-align: left;
    transition: background 0.15s;
}
.lp2-lang-item:hover { background: rgba(255,255,255,0.06); }
.lp2-lang-item.active { background: rgba(16,185,129,0.12); color: var(--lp2-emerald-2); font-weight: 700; }
.lp2-lang-item .check { margin-left: auto; opacity: 0; }
.lp2-lang-item.active .check { opacity: 1; }

/* =============================================================
   COMPARE (improvements: per-item icons + VS divider)
   ============================================================= */
.lp2-compare-list li {
    line-height: 1.55;
    padding-left: 14px;
}
.lp2-compare-list li::before {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    display: inline-grid;
    place-items: center;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
}
.lp2-compare-col-bad .lp2-compare-list li::before {
    content: '✕';
    background: rgba(239,68,68,0.12);
    color: #f87171;
    border: 1px solid rgba(239,68,68,0.25);
}
.lp2-compare-col-good .lp2-compare-list li::before {
    content: '✓';
    background: rgba(16,185,129,0.15);
    color: var(--lp2-emerald-2);
    border: 1px solid rgba(16,185,129,0.3);
}
.lp2-compare {
    position: relative;
}
.lp2-compare::after {
    content: 'VS';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp2-emerald), var(--lp2-cyan));
    color: #03141a;
    display: grid;
    place-items: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    box-shadow: 0 12px 30px rgba(16,185,129,0.4), 0 0 0 6px rgba(8,12,18,0.95);
    z-index: 5;
}
@media (max-width: 880px) {
    .lp2-compare::after { display: none; }
}

/* =============================================================
   AUTH PAGE (login/register) — uses .lp2-* shell
   ============================================================= */
.lp2-auth-body {
    min-height: 100vh;
    /* Keep transparent so the shared .lp2-bg div (aurora + grid + orbs)
       shows through, identical to the landing page. */
    background: var(--lp2-bg);
}
.lp2-auth-page {
    min-height: calc(100vh - var(--lp2-nav-h, 70px));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 30px;
    position: relative;
    z-index: 2;
}
@media (min-height: 820px) {
    .lp2-auth-page { align-items: center; padding-top: 20px; }
}
@media (max-width: 920px) {
    .lp2-auth-page { padding: 14px 12px 24px; }
}
.lp2-auth-shell {
    width: 100%;
    max-width: 460px;
    padding: 28px 32px 28px;
    border-radius: 22px;
    background: var(--lp2-surface);
    border: 1px solid var(--lp2-border-2);
    backdrop-filter: blur(28px);
    box-shadow: var(--lp2-shadow-lg);
    position: relative;
    overflow: hidden;
    /* Stable height so switching login ↔ register doesn't jump */
    display: flex;
    flex-direction: column;
    /* Cap to viewport so it always fits; leave 140px for nav + breathing room */
    max-height: calc(100vh - 120px);
}
.lp2-auth-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -20%, rgba(16,185,129,0.18), transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.lp2-auth-shell > * { position: relative; z-index: 1; }
.lp2-auth-logo, .lp2-auth-title, .lp2-auth-sub, .lp2-auth-tabs { flex-shrink: 0; }

/* Scrollable inner area holding the form sections */
.lp2-auth-shell #authForm {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
    margin-right: -8px;
    /* Pretty scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(16,185,129,0.35) transparent;
}
.lp2-auth-shell #authForm::-webkit-scrollbar { width: 6px; }
.lp2-auth-shell #authForm::-webkit-scrollbar-track { background: transparent; }
.lp2-auth-shell #authForm::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(16,185,129,0.45), rgba(34,211,238,0.45));
    border-radius: 4px;
}
.lp2-auth-shell #authForm::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(16,185,129,0.7), rgba(34,211,238,0.7));
}

/* Compact spacing on small heights */
@media (max-height: 720px) {
    .lp2-auth-shell { padding: 20px 24px; }
    .lp2-auth-logo { margin-bottom: 10px; }
    .lp2-auth-logo img { width: 38px; height: 38px; }
    .lp2-auth-title { font-size: 1.3rem; }
    .lp2-auth-sub { margin-bottom: 14px; font-size: 0.85rem; }
    .lp2-auth-tabs { margin-bottom: 14px !important; }
}
.lp2-auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
    position: relative;
}
.lp2-auth-logo img {
    width: 48px; height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(16,185,129,0.6));
}
.lp2-auth-logo span {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.45rem;
    background: linear-gradient(135deg, var(--lp2-emerald-2), var(--lp2-cyan-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lp2-auth-title {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    margin: 0 0 6px;
    color: #fff;
    position: relative;
}
.lp2-auth-sub {
    text-align: center;
    color: var(--lp2-text-dim);
    font-size: 0.9rem;
    margin: 0 0 26px;
    position: relative;
}

/* Override style.css form widgets when inside auth shell */
.lp2-auth-shell .form-section { display: none; position: relative; }
.lp2-auth-shell .form-section.active { display: block; animation: lp2-fade-in 0.35s ease; }
.lp2-auth-shell .input-group { margin-bottom: 14px; position: relative; }
.lp2-auth-shell .input-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--lp2-text-mute);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}
.lp2-auth-shell .input-group input,
.lp2-auth-shell .input-group select,
.lp2-auth-shell .auth-input,
.lp2-auth-shell .auth-select {
    width: 100%;
    padding: 12px 14px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--lp2-border-2);
    border-radius: 10px;
    color: var(--lp2-text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.2s;
    box-sizing: border-box;
}
.lp2-auth-shell .input-group input:focus,
.lp2-auth-shell .input-group select:focus {
    outline: none;
    border-color: var(--lp2-emerald-2);
    background: rgba(0,0,0,0.45);
    box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}
.lp2-auth-shell .birth-date-row {
    display: grid;
    grid-template-columns: 80px 1fr 110px;
    gap: 8px;
}
.lp2-auth-shell .input-hint {
    font-size: 0.76rem;
    color: var(--lp2-text-mute);
    margin: 6px 0 0;
    line-height: 1.4;
}
.lp2-auth-shell .btn-primary {
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--lp2-emerald), var(--lp2-cyan));
    color: #03141a;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.2s;
    box-shadow: 0 8px 20px rgba(16,185,129,0.3);
}
.lp2-auth-shell .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(16,185,129,0.45);
}
.lp2-auth-shell .btn-primary:active { transform: translateY(0); }
.lp2-auth-shell .switch-form {
    text-align: center;
    margin: 18px 0 0;
    font-size: 0.88rem;
    color: var(--lp2-text-dim);
    position: relative;
}
.lp2-auth-shell .switch-form a {
    color: var(--lp2-emerald-2);
    text-decoration: none;
    font-weight: 700;
}
.lp2-auth-shell .switch-form a:hover { color: var(--lp2-cyan-2); }
.lp2-auth-shell .register-age-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(34,211,238,0.1);
    color: var(--lp2-cyan-2);
    border: 1px solid rgba(34,211,238,0.25);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 6px;
    text-transform: none;
    letter-spacing: 0;
}
.lp2-auth-shell .register-terms-block {
    margin: 14px 0;
    padding: 14px;
    background: rgba(0,0,0,0.25);
    border: 1px solid var(--lp2-border);
    border-radius: 12px;
}
.lp2-auth-shell .register-terms-title {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--lp2-text-mute);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}
.lp2-auth-shell .register-terms-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.lp2-auth-shell .register-terms-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: rgba(34,211,238,0.08);
    border: 1px solid rgba(34,211,238,0.2);
    border-radius: 8px;
    color: var(--lp2-cyan-2);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    transition: all 0.2s;
}
.lp2-auth-shell .register-terms-link:hover { background: rgba(34,211,238,0.15); }
.lp2-auth-shell .register-terms-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--lp2-text);
    line-height: 1.5;
}
.lp2-auth-shell .register-terms-check input { display: none; }
.lp2-auth-shell .register-terms-checkmark {
    flex-shrink: 0;
    width: 20px; height: 20px;
    margin-top: 1px;
    border: 1.5px solid var(--lp2-border-2);
    border-radius: 6px;
    background: rgba(0,0,0,0.4);
    display: grid;
    place-items: center;
    transition: all 0.2s;
}
.lp2-auth-shell .register-terms-check input:checked + .register-terms-checkmark {
    background: linear-gradient(135deg, var(--lp2-emerald), var(--lp2-cyan));
    border-color: var(--lp2-emerald-2);
}
.lp2-auth-shell .register-terms-check input:checked + .register-terms-checkmark::after {
    content: '✓';
    color: #03141a;
    font-weight: 900;
    font-size: 0.85rem;
}
.lp2-auth-shell .register-terms-check a { color: var(--lp2-cyan-2); text-decoration: underline; }
.lp2-auth-shell .verify-icon-wrap { display: flex; justify-content: center; margin-bottom: 14px; }
.lp2-auth-shell .verify-icon-circle {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(34,211,238,0.1));
    border: 1px solid rgba(16,185,129,0.3);
    display: grid;
    place-items: center;
    font-size: 2.2rem;
}
.lp2-auth-shell .verify-desc {
    text-align: center;
    color: var(--lp2-text);
    margin: 0 0 18px;
    font-size: 0.92rem;
    line-height: 1.55;
}
.lp2-auth-shell .verify-desc strong { color: var(--lp2-emerald-2); }
.lp2-auth-shell .error-message {
    margin-top: 14px;
    padding: 11px 14px;
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    border-radius: 10px;
    color: #fca5a5;
    font-size: 0.86rem;
    text-align: center;
    display: none;
    position: relative;
}
.lp2-auth-shell .error-message.show { display: block; animation: lp2-fade-in 0.3s ease; }

/* =============================================================
   AUTH PAGE — split layout (form + showcase)
   ============================================================= */
.lp2-auth-split {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    width: 100%;
    max-width: 1080px;
    align-items: center;
    max-height: calc(100vh - 110px);
}
.lp2-auth-side {
    position: relative;
    padding: 30px 10px;
    color: var(--lp2-text);
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(16,185,129,0.25) transparent;
}
.lp2-auth-side::-webkit-scrollbar { width: 5px; }
.lp2-auth-side::-webkit-scrollbar-thumb { background: rgba(16,185,129,0.3); border-radius: 4px; }
.lp2-auth-side-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(16,185,129,0.12);
    color: var(--lp2-emerald-2);
    border: 1px solid rgba(16,185,129,0.3);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}
.lp2-auth-side-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
    line-height: 1.15;
    margin: 0 0 14px;
    color: #fff;
    letter-spacing: -0.01em;
}
.lp2-auth-side-title .lp2-grad {
    background: linear-gradient(135deg, var(--lp2-emerald-2), var(--lp2-cyan-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lp2-auth-side-desc {
    font-size: 0.98rem;
    color: var(--lp2-text-dim);
    margin: 0 0 22px;
    line-height: 1.6;
}
.lp2-auth-perks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}
.lp2-auth-perk {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--lp2-border);
    backdrop-filter: blur(14px);
    transition: all 0.25s ease;
}
.lp2-auth-perk:hover {
    border-color: rgba(16,185,129,0.3);
    background: rgba(16,185,129,0.05);
    transform: translateX(3px);
}
.lp2-auth-perk-ico {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(16,185,129,0.18), rgba(34,211,238,0.12));
    border: 1px solid rgba(16,185,129,0.25);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
}
.lp2-auth-perk-txt strong {
    display: block;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.lp2-auth-perk-txt span {
    display: block;
    color: var(--lp2-text-mute);
    font-size: 0.82rem;
    line-height: 1.45;
}
.lp2-auth-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--lp2-border-2);
    text-align: center;
}
.lp2-auth-stat strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--lp2-emerald-2), var(--lp2-cyan-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lp2-auth-stat span {
    display: block;
    color: var(--lp2-text-mute);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 3px;
}

/* Tabs login/register inside shell */
.lp2-auth-tabs {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--lp2-border);
    border-radius: 12px;
    margin-bottom: 22px;
    position: relative;
}
.lp2-auth-tab {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: var(--lp2-text-dim);
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.22s ease;
}
.lp2-auth-tab:hover { color: var(--lp2-text); }
.lp2-auth-tab.active {
    background: linear-gradient(135deg, var(--lp2-emerald), var(--lp2-cyan));
    color: #03141a;
    box-shadow: 0 4px 14px rgba(16,185,129,0.3);
}

/* SSO/divider (placeholders) */
.lp2-auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    color: var(--lp2-text-mute);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.lp2-auth-divider::before,
.lp2-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--lp2-border);
}
.lp2-auth-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--lp2-border);
}
.lp2-auth-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--lp2-border);
    color: var(--lp2-text-mute);
    font-size: 0.74rem;
    font-weight: 600;
}
.lp2-auth-trust-chip svg { color: var(--lp2-emerald-2); }

@media (max-width: 920px) {
    .lp2-auth-split { grid-template-columns: 1fr; gap: 40px; }
    .lp2-auth-side { display: none; }
    .lp2-auth-side.show-mobile { display: block; padding: 0 4px; text-align: center; }
}

/* DEV-DOCS theme overrides — emerald/cyan */
.dev-docs-emerald {
    --acc: #10b981 !important;
    --acc2: #22d3ee !important;
    --acc3: #34d399 !important;
    --glow: 0 0 40px rgba(16,185,129,0.18) !important;
    --glow2: 0 0 20px rgba(16,185,129,0.28) !important;
}
.dev-docs-emerald body {
    background-image: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(16,185,129,0.10) 0%, transparent 60%) !important;
}

/* =============================================================
   MASCOT EASTER EGG
   ============================================================= */
.lp2-mascot-trigger {
    position: fixed;
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(16,185,129,0.25);
    background: rgba(8,15,22,0.7);
    backdrop-filter: blur(14px);
    cursor: pointer;
    z-index: 200;
    display: grid;
    place-items: center;
    font-size: 24px;
    transition: all 0.25s cubic-bezier(.34,1.56,.64,1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 0 rgba(16,185,129,0);
    opacity: 0.7;
    user-select: none;
}
.lp2-mascot-trigger:hover {
    opacity: 1;
    transform: scale(1.1) rotate(-8deg);
    border-color: var(--lp2-emerald-2);
    box-shadow: 0 12px 30px rgba(16,185,129,0.35), 0 0 0 6px rgba(16,185,129,0.1);
}
.lp2-mascot-trigger.pulse {
    animation: lp2-mascot-pulse 2.5s ease-in-out infinite;
}
@keyframes lp2-mascot-pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 0 rgba(16,185,129,0); }
    50% { box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 12px rgba(16,185,129,0); }
}
.lp2-mascot-counter {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, var(--lp2-emerald), var(--lp2-cyan));
    color: #03141a;
    font-size: 0.65rem;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 2px solid var(--lp2-bg);
    opacity: 0;
    transform: scale(0);
    transition: all 0.25s cubic-bezier(.34,1.56,.64,1);
}
.lp2-mascot-counter.show {
    opacity: 1;
    transform: scale(1);
}

.lp2-mascot-pop {
    position: fixed;
    z-index: 250;
    pointer-events: none;
    width: 180px;
    height: 180px;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(.34,1.56,.64,1);
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.5)) drop-shadow(0 0 24px rgba(16,185,129,0.4));
}
.lp2-mascot-pop.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.lp2-mascot-pop img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
}
.lp2-mascot-bubble {
    position: fixed;
    z-index: 251;
    background: linear-gradient(135deg, rgba(16,185,129,0.95), rgba(34,211,238,0.95));
    color: #03141a;
    padding: 10px 16px;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    font-weight: 700;
    font-size: 0.92rem;
    font-family: 'Outfit', sans-serif;
    max-width: 230px;
    box-shadow: 0 12px 30px rgba(16,185,129,0.4);
    opacity: 0;
    transform: translateY(8px) scale(0.9);
    transition: all 0.3s cubic-bezier(.34,1.56,.64,1);
    pointer-events: none;
}
.lp2-mascot-bubble.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.lp2-mascot-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: grid;
    place-items: center;
    background: rgba(2,5,10,0.7);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lp2-mascot-modal.show { opacity: 1; pointer-events: auto; }
.lp2-mascot-modal-card {
    position: relative;
    background: linear-gradient(180deg, rgba(15,25,38,0.96), rgba(8,15,22,0.96));
    border: 1px solid var(--lp2-border-2);
    border-radius: 24px;
    padding: 28px 30px 24px;
    max-width: 420px;
    width: calc(100% - 40px);
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(16,185,129,0.15);
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
}
.lp2-mascot-modal.show .lp2-mascot-modal-card { transform: translateY(0) scale(1); }
.lp2-mascot-modal-mascot {
    width: 200px;
    height: 200px;
    margin: -90px auto 10px;
    filter: drop-shadow(0 12px 30px rgba(16,185,129,0.5));
}
.lp2-mascot-modal-mascot img { width: 100%; height: 100%; object-fit: contain; }
.lp2-mascot-modal-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    margin: 0 0 8px;
    background: linear-gradient(135deg, var(--lp2-emerald-2), var(--lp2-cyan-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lp2-mascot-modal-desc {
    color: var(--lp2-text-dim);
    font-size: 0.95rem;
    margin: 0 0 16px;
    line-height: 1.5;
}
.lp2-mascot-modal-progress {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 14px;
}
.lp2-mascot-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}
.lp2-mascot-dot.found {
    background: linear-gradient(135deg, var(--lp2-emerald), var(--lp2-cyan));
    box-shadow: 0 0 8px rgba(16,185,129,0.6);
}
.lp2-mascot-modal-close {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--lp2-border);
    color: var(--lp2-text);
    font-family: inherit;
    font-weight: 700;
    padding: 9px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.lp2-mascot-modal-close:hover {
    background: rgba(16,185,129,0.12);
    border-color: var(--lp2-emerald-2);
    color: #fff;
}

/* Mascot easter egg - subtle hints on hover */
.lp2-mascot-hint { position: relative; }
.lp2-mascot-hint::after {
    content: '';
    position: absolute;
    top: -3px; right: -8px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--lp2-emerald);
    opacity: 0;
    transition: opacity 0.4s ease;
    box-shadow: 0 0 6px var(--lp2-emerald-2);
    pointer-events: none;
}
.lp2-mascot-hint:hover::after { opacity: 0.7; animation: lp2MascotDot 1.4s ease-in-out infinite; }
@keyframes lp2MascotDot {
    0%,100% { transform: scale(1); opacity: 0.7; }
    50%     { transform: scale(1.6); opacity: 1; }
}
.lp2-mascot-hint-strong {
    position: relative;
    cursor: help;
    background: linear-gradient(180deg, transparent 60%, rgba(16,185,129,0.18) 60%);
    background-size: 100% 200%;
    background-position: 0 0;
    transition: background-position 0.6s ease;
}
.lp2-mascot-hint-strong:hover { background-position: 0 100%; }
/* Back button on auth pages - subtle but distinct */
.lp2-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px 9px 11px;
    border-radius: 12px;
    background: rgba(15,25,38,0.65);
    border: 1px solid rgba(16,185,129,0.30);
    color: var(--lp2-text);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.22s cubic-bezier(.34,1.56,.64,1);
    backdrop-filter: blur(10px);
}
.lp2-btn-back svg {
    transition: transform 0.22s ease;
    color: var(--lp2-emerald-2);
}
.lp2-btn-back:hover {
    background: rgba(16,185,129,0.14);
    border-color: rgba(16,185,129,0.55);
    transform: translateX(-2px);
    box-shadow: 0 6px 20px rgba(16,185,129,0.18);
}
.lp2-btn-back:hover svg { transform: translateX(-3px); }
/* Mascot subtle idle breathing on hero static PNG */
.lp2-mascot-breathe { animation: lp2-breathe 4.5s ease-in-out infinite; transform-origin: 50% 60%; transition: filter .3s ease; }
@keyframes lp2-breathe { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-6px) scale(1.015); } }
.lp2-mascot-breathe:hover { filter: drop-shadow(0 14px 28px rgba(16,185,129,0.55)) drop-shadow(0 0 30px rgba(34,211,238,0.35)); cursor: pointer; }
