/* ============================================================================
   CreArtisite v4 — Landing marketing CSS (glassmorphism vibrant)
   ============================================================================
   Importe la base : tokens et patterns de auth.css (chargee avant).
   Etend avec : hero XXL, mockups, sections marketing, animations scroll, FAQ,
   testimonials, stats, footer marketing.
   ============================================================================ */

:root {
    --pink: #ec4899;
    --emerald: #10b981;
    --indigo: #6366f1;
    --gradient-primary: linear-gradient(120deg, #00e5ff 0%, #b388ff 50%, #ec4899 100%);
    --gradient-warm: linear-gradient(120deg, #ffd740 0%, #ec4899 100%);
    --gradient-cool: linear-gradient(120deg, #00e5ff 0%, #6366f1 100%);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-bg-strong: rgba(10, 18, 36, 0.55);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-strong: rgba(0, 229, 255, 0.18);
    --shadow-glow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 60px rgba(0, 229, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(0, 229, 255, 0.22), transparent 50%),
        radial-gradient(ellipse at 100% 30%, rgba(179, 136, 255, 0.22), transparent 55%),
        radial-gradient(ellipse at 50% 100%, rgba(236, 72, 153, 0.18), transparent 55%),
        linear-gradient(160deg, var(--bg-1), var(--bg-2));
    background-attachment: fixed;
}

body::before {
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.035) 1px, transparent 1px);
    background-size: 80px 80px;
}

/* Floating orbs decoration */
.bg-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.bg-orbs span {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    animation: float 28s ease-in-out infinite;
}
.bg-orbs span:nth-child(1) {
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.7), transparent 70%);
    top: -120px; left: -120px;
}
.bg-orbs span:nth-child(2) {
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(179, 136, 255, 0.7), transparent 70%);
    top: 30%; right: -160px;
    animation-delay: -8s;
}
.bg-orbs span:nth-child(3) {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.55), transparent 70%);
    bottom: 10%; left: 35%;
    animation-delay: -16s;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(40px, -50px); }
    66% { transform: translate(-30px, 30px); }
}

/* Mouse-follow ambient (optional, JS-driven) */
.cursor-glow {
    position: fixed;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.13), transparent 65%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease-out, opacity 0.4s;
    will-change: transform;
    opacity: 0;
}

/* ---------------------------------------------------------------------------
   NAV (sticky transparent -> blur on scroll)
   --------------------------------------------------------------------------- */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(0);
    transition: backdrop-filter 0.3s, background 0.3s, border-color 0.3s;
    border-bottom: 1px solid transparent;
}
.lp-nav.scrolled {
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    background: rgba(6, 11, 24, 0.72);
    border-bottom-color: var(--card-border);
}
.lp-nav .logo {
    text-decoration: none;
    font-size: 1.22rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lp-nav .nav-mid {
    display: flex;
    gap: 28px;
    align-items: center;
}
.lp-nav .nav-mid a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s;
}
.lp-nav .nav-mid a:hover { color: var(--ink); }
.lp-nav .nav-right {
    display: flex;
    gap: 12px;
    align-items: center;
}
.lp-nav .btn-link {
    color: var(--ink);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 9px 14px;
    border-radius: 10px;
    transition: background 0.2s;
}
.lp-nav .btn-link:hover { background: rgba(255, 255, 255, 0.06); }
.lp-nav .btn-grad {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    box-shadow: 0 6px 24px rgba(0, 229, 255, 0.25);
    transition: transform 0.18s, box-shadow 0.18s;
}
.lp-nav .btn-grad:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(179, 136, 255, 0.4);
}

.lp-burger {
    display: none;
    background: none;
    border: 1px solid var(--card-border);
    color: var(--ink);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.4rem;
    align-items: center;
    justify-content: center;
}

/* Mobile menu */
.lp-mobile-menu {
    display: none;
    padding: 14px 32px 18px;
    background: rgba(6, 11, 24, 0.95);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--card-border);
    flex-direction: column;
    gap: 12px;
}
.lp-mobile-menu.open { display: flex; }
.lp-mobile-menu a {
    color: var(--ink);
    text-decoration: none;
    font-size: 0.98rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ---------------------------------------------------------------------------
   GENERIC SECTIONS
   --------------------------------------------------------------------------- */
.lp-section {
    position: relative;
    z-index: 1;
    padding: 90px 24px;
    max-width: 1240px;
    margin: 0 auto;
}
.lp-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px;
}
.lp-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.28);
    border-radius: 999px;
    margin-bottom: 18px;
}
.lp-h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    background: linear-gradient(120deg, var(--ink) 30%, var(--cyan) 70%, var(--purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lp-sub {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.65;
    margin: 0;
}

/* ---------------------------------------------------------------------------
   HERO
   --------------------------------------------------------------------------- */
.lp-hero {
    position: relative;
    z-index: 1;
    padding: 80px 24px 100px;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}
.lp-hero-content { position: relative; z-index: 2; }
.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 999px;
    color: var(--cyan);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.lp-hero-badge .pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.4); }
}
.lp-hero h1 {
    margin: 0 0 22px;
    font-size: clamp(2.4rem, 5.4vw, 4.4rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.02;
    color: var(--ink);
}
.lp-hero h1 .grad {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.lp-hero p {
    margin: 0 0 36px;
    font-size: 1.18rem;
    line-height: 1.62;
    color: var(--muted);
    max-width: 560px;
}
.lp-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.lp-cta-primary, .lp-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: transform 0.18s, box-shadow 0.18s, background 0.2s;
}
.lp-cta-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 10px 32px rgba(0, 229, 255, 0.28), 0 4px 16px rgba(179, 136, 255, 0.22);
}
.lp-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 48px rgba(0, 229, 255, 0.42), 0 6px 22px rgba(236, 72, 153, 0.3);
}
.lp-cta-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--ink);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
}
.lp-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 229, 255, 0.4);
    transform: translateY(-2px);
}
.lp-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--muted);
    font-size: 0.88rem;
}
.lp-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.lp-trust .check {
    color: var(--emerald);
    font-weight: 700;
}

/* Editor mockup */
.lp-mockup {
    position: relative;
    perspective: 1200px;
    width: 100%;
}
.lp-editor {
    position: relative;
    width: 100%;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(28px) saturate(140%);
    border: 1px solid var(--glass-border-strong);
    border-radius: 18px;
    box-shadow: var(--shadow-glow);
    overflow: hidden;
    transform: rotate3d(1, -0.4, 0.05, 6deg);
    transition: transform 0.6s;
    animation: editorFloat 8s ease-in-out infinite;
}
@keyframes editorFloat {
    0%, 100% { transform: rotate3d(1, -0.4, 0.05, 6deg) translateY(0); }
    50% { transform: rotate3d(1, -0.4, 0.05, 6deg) translateY(-12px); }
}
.lp-editor:hover {
    transform: rotate3d(1, -0.4, 0.05, 2deg) translateY(-8px);
    animation-play-state: paused;
}
.lp-editor-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid var(--glass-border);
}
.lp-editor-bar i {
    width: 12px; height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.lp-editor-bar i.r { background: #ff5e5e; }
.lp-editor-bar i.y { background: #ffd740; }
.lp-editor-bar i.g { background: #2bd575; }
.lp-editor-bar .url {
    margin-left: 16px;
    flex: 1;
    color: var(--muted);
    font-size: 0.78rem;
    font-family: monospace;
}
.lp-editor-body {
    display: grid;
    grid-template-columns: 100px 1fr 140px;
    min-height: 320px;
}
.lp-editor-side {
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 8px;
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lp-editor-tile {
    height: 36px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background 0.2s;
}
.lp-editor-tile.active {
    background: linear-gradient(120deg, rgba(0, 229, 255, 0.18), rgba(179, 136, 255, 0.18));
    color: var(--cyan);
}
.lp-editor-canvas {
    padding: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}
.lp-editor-block {
    margin-bottom: 12px;
    padding: 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.2s, transform 0.2s;
}
.lp-editor-block:hover {
    border-color: var(--cyan);
    transform: translateX(2px);
}
.lp-editor-block .skel {
    height: 7px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06));
    margin-bottom: 6px;
}
.lp-editor-block .skel.w-70 { width: 70%; }
.lp-editor-block .skel.w-50 { width: 50%; }
.lp-editor-block .skel.w-90 { width: 90%; }
.lp-editor-block .skel.w-30 { width: 30%; }
.lp-editor-block.cta { background: linear-gradient(120deg, rgba(0, 229, 255, 0.15), rgba(179, 136, 255, 0.15)); border-color: rgba(0, 229, 255, 0.3); }
.lp-editor-drawer {
    background: rgba(0, 0, 0, 0.3);
    border-left: 1px solid var(--glass-border);
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.lp-editor-drawer label {
    font-size: 8px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}
.lp-editor-drawer .input-mock {
    height: 22px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.lp-editor-drawer .color-row {
    display: flex;
    gap: 4px;
}
.lp-editor-drawer .color-row span {
    width: 18px; height: 18px;
    border-radius: 4px;
}

/* Hero floating chips */
.lp-mockup .chip {
    position: absolute;
    padding: 9px 14px;
    border-radius: 12px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-strong);
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.lp-mockup .chip.c1 {
    top: -20px;
    left: -20px;
    color: var(--cyan);
    animation: bobble 5s ease-in-out infinite;
}
.lp-mockup .chip.c2 {
    bottom: -16px;
    right: 10%;
    color: var(--gold);
    animation: bobble 6s ease-in-out infinite -2s;
}
.lp-mockup .chip.c3 {
    top: 40%;
    right: -22px;
    color: var(--pink);
    animation: bobble 7s ease-in-out infinite -4s;
}
@keyframes bobble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ---------------------------------------------------------------------------
   LOGOS BAR
   --------------------------------------------------------------------------- */
.lp-logos {
    text-align: center;
    padding: 30px 24px 60px;
    max-width: 1240px;
    margin: 0 auto;
}
.lp-logos p {
    color: var(--dim);
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 24px;
    font-weight: 500;
}
.lp-logos-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 36px;
    opacity: 0.7;
}
.lp-logo-item {
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.2s, background 0.2s;
}
.lp-logo-item:hover {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.05);
}

/* ---------------------------------------------------------------------------
   FEATURES GRID
   --------------------------------------------------------------------------- */
.lp-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lp-feature {
    padding: 32px 26px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(28px) saturate(140%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.lp-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 229, 255, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}
.lp-feature:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-strong);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 229, 255, 0.1);
}
.lp-feature:hover::before { opacity: 1; }
.lp-feature .ico {
    width: 48px; height: 48px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.18), rgba(179, 136, 255, 0.18));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    border: 1px solid rgba(0, 229, 255, 0.25);
    position: relative;
    z-index: 1;
}
.lp-feature h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    position: relative;
    z-index: 1;
}
.lp-feature p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ---------------------------------------------------------------------------
   SHOWCASE (alternating)
   --------------------------------------------------------------------------- */
.lp-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 100px;
}
.lp-showcase:nth-child(even) {
    direction: rtl;
}
.lp-showcase:nth-child(even) > * { direction: ltr; }
.lp-showcase:last-child { margin-bottom: 0; }
.lp-showcase h3 {
    margin: 0 0 16px;
    font-size: clamp(1.65rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--ink);
}
.lp-showcase h3 .grad {
    background: var(--gradient-cool);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lp-showcase p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.65;
}
.lp-showcase ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.lp-showcase ul li {
    padding: 10px 0 10px 28px;
    color: var(--ink);
    font-size: 0.96rem;
    position: relative;
}
.lp-showcase ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") no-repeat center / 13px;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") no-repeat center / 13px;
}
.lp-showcase-vis {
    position: relative;
    padding: 28px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(28px) saturate(140%);
    border: 1px solid var(--glass-border-strong);
    border-radius: 20px;
    box-shadow: var(--shadow-glow);
    min-height: 320px;
}
.lp-showcase-vis::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(0, 229, 255, 0.12), transparent 50%),
                radial-gradient(circle at bottom right, rgba(179, 136, 255, 0.14), transparent 60%);
    border-radius: 20px;
    pointer-events: none;
}
.vis-drawer-row {
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.vis-drawer-row label {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.vis-drawer-row .input {
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    padding: 0 12px;
    display: flex;
    align-items: center;
    color: var(--ink);
    font-size: 0.88rem;
}
.vis-drawer-row .input.active {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15);
}
.vis-drawer-row .color-pick {
    display: flex;
    gap: 8px;
}
.vis-drawer-row .color-pick span {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
}

/* Publish mockup */
.vis-publish {
    text-align: center;
    padding: 24px;
}
.vis-publish .ring {
    width: 96px; height: 96px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 3px solid rgba(0, 229, 255, 0.18);
    border-top-color: var(--cyan);
    border-right-color: var(--purple);
    animation: spin 2s linear infinite;
    position: relative;
}
.vis-publish .ring::after {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    opacity: 0.18;
}
@keyframes spin { to { transform: rotate(360deg); } }
.vis-publish .status {
    color: var(--emerald);
    font-weight: 600;
    font-size: 0.96rem;
    margin: 6px 0;
}
.vis-publish .row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.86rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.vis-publish .row span:first-child { color: var(--muted); }
.vis-publish .row span:last-child { color: var(--ink); font-family: monospace; }

/* ---------------------------------------------------------------------------
   STATS
   --------------------------------------------------------------------------- */
.lp-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    padding: 48px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(28px) saturate(140%);
    border: 1px solid var(--glass-border-strong);
    border-radius: 24px;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}
.lp-stats::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 60%; height: 200%;
    background: radial-gradient(ellipse, rgba(0, 229, 255, 0.18), transparent 50%);
    pointer-events: none;
}
.lp-stat {
    text-align: center;
    position: relative;
    z-index: 1;
}
.lp-stat .num {
    display: block;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}
.lp-stat .lbl {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 500;
}

/* ---------------------------------------------------------------------------
   HOW IT WORKS
   --------------------------------------------------------------------------- */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.lp-step {
    padding: 32px 28px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(28px) saturate(140%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: left;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
}
.lp-step:hover {
    transform: translateY(-4px);
    border-color: rgba(179, 136, 255, 0.32);
}
.lp-step .num {
    display: inline-block;
    width: 44px; height: 44px;
    line-height: 44px;
    text-align: center;
    margin-bottom: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: var(--bg-2);
    font-weight: 800;
    font-size: 1.15rem;
    box-shadow: 0 8px 22px rgba(179, 136, 255, 0.3);
}
.lp-step h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--ink);
}
.lp-step p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------------------------------------------------------------------------
   TESTIMONIALS
   --------------------------------------------------------------------------- */
.lp-testi {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.lp-testi-card {
    padding: 32px 28px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(28px) saturate(140%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: transform 0.3s, border-color 0.3s;
}
.lp-testi-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-strong);
}
.lp-testi-card .stars {
    color: var(--gold);
    margin-bottom: 14px;
    letter-spacing: 4px;
    font-size: 1.05rem;
}
.lp-testi-card blockquote {
    margin: 0 0 20px;
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.65;
    font-style: italic;
}
.lp-testi-card .who {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lp-testi-card .avi {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: var(--bg-2);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp-testi-card .who .name { color: var(--ink); font-weight: 600; font-size: 0.94rem; }
.lp-testi-card .who .role { color: var(--muted); font-size: 0.82rem; }

.lp-testi-note {
    text-align: center;
    margin-top: 24px;
    color: var(--dim);
    font-size: 0.82rem;
    font-style: italic;
}

/* ---------------------------------------------------------------------------
   PRICING TEASER
   --------------------------------------------------------------------------- */
.lp-pricing-teaser {
    max-width: 520px;
    margin: 0 auto;
    padding: 46px 38px;
    text-align: center;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(28px) saturate(140%);
    border: 1px solid var(--glass-border-strong);
    border-radius: 28px;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}
.lp-pricing-teaser::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-primary);
}
.lp-pricing-teaser .label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 215, 64, 0.1);
    border: 1px solid rgba(255, 215, 64, 0.3);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 14px;
}
.lp-pricing-teaser h3 {
    margin: 0 0 8px;
    color: var(--cyan);
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
}
.lp-pricing-teaser .amt {
    margin: 14px 0;
}
.lp-pricing-teaser .amt .cur { font-size: 1.3rem; color: var(--muted); margin-right: 4px; }
.lp-pricing-teaser .amt .price { font-size: 4.2rem; font-weight: 900; letter-spacing: -0.04em; color: var(--ink); }
.lp-pricing-teaser .amt .per { font-size: 1rem; color: var(--muted); margin-left: 6px; }
.lp-pricing-teaser .amt .ht { display: block; font-size: 0.74rem; color: var(--dim); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.lp-pricing-teaser .trial {
    margin: 18px 0 28px;
    padding: 12px 16px;
    background: rgba(255, 215, 64, 0.08);
    border: 1px solid rgba(255, 215, 64, 0.3);
    border-radius: 12px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.92rem;
}
.lp-pricing-teaser ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
}
.lp-pricing-teaser ul li {
    padding: 10px 0 10px 28px;
    color: var(--ink);
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
}
.lp-pricing-teaser ul li:last-child { border-bottom: none; }
.lp-pricing-teaser ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 13px;
    width: 16px;
    height: 16px;
    background: linear-gradient(120deg, var(--cyan), var(--purple));
    border-radius: 50%;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") no-repeat center / 11px;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") no-repeat center / 11px;
}
.lp-pricing-teaser .more {
    display: block;
    margin-top: 14px;
    color: var(--cyan);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
}
.lp-pricing-teaser .more:hover { color: var(--purple); text-decoration: underline; }

/* ---------------------------------------------------------------------------
   FAQ
   --------------------------------------------------------------------------- */
.lp-faq {
    max-width: 820px;
    margin: 0 auto;
}
.lp-faq-item {
    margin-bottom: 14px;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.lp-faq-item.open {
    border-color: var(--glass-border-strong);
}
.lp-faq-item .q {
    display: flex;
    width: 100%;
    background: transparent;
    border: none;
    color: var(--ink);
    padding: 22px 24px;
    text-align: left;
    cursor: pointer;
    font-size: 1.02rem;
    font-weight: 600;
    font-family: inherit;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.lp-faq-item .q .plus {
    flex: 0 0 22px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.1);
    color: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 0;
    transition: transform 0.3s, background 0.2s;
}
.lp-faq-item.open .q .plus {
    transform: rotate(45deg);
    background: var(--gradient-primary);
    color: #fff;
}
.lp-faq-item .a {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.7;
    transition: max-height 0.4s ease, padding 0.3s;
}
.lp-faq-item.open .a {
    max-height: 400px;
    padding: 0 24px 22px;
}

/* ---------------------------------------------------------------------------
   FINAL CTA
   --------------------------------------------------------------------------- */
.lp-final {
    margin: 60px auto 0;
    padding: 70px 36px;
    max-width: 1080px;
    text-align: center;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.18), rgba(179, 136, 255, 0.18), rgba(236, 72, 153, 0.16));
    border: 1px solid var(--glass-border-strong);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(28px) saturate(140%);
}
.lp-final::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(from 0deg, rgba(0, 229, 255, 0.05), transparent 30%, rgba(179, 136, 255, 0.06), transparent 60%, rgba(236, 72, 153, 0.05), transparent 90%);
    animation: rotateBg 25s linear infinite;
    pointer-events: none;
}
@keyframes rotateBg {
    to { transform: rotate(360deg); }
}
.lp-final h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--ink);
}
.lp-final h2 .grad {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lp-final p {
    position: relative;
    z-index: 1;
    margin: 0 0 32px;
    color: var(--muted);
    font-size: 1.1rem;
}
.lp-final .lp-cta-primary {
    position: relative;
    z-index: 1;
    padding: 18px 36px;
    font-size: 1.06rem;
}
.lp-final .lp-trust { justify-content: center; margin-top: 22px; position: relative; z-index: 1; }

/* ---------------------------------------------------------------------------
   FOOTER MARKETING
   --------------------------------------------------------------------------- */
.lp-footer {
    margin-top: 80px;
    padding: 60px 32px 32px;
    border-top: 1px solid var(--card-border);
    background: rgba(2, 6, 16, 0.65);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
}
.lp-footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}
.lp-footer-brand .logo {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12px;
}
.lp-footer-brand p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 20px;
    max-width: 280px;
}
.lp-footer-brand .mif {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--dim);
    font-size: 0.82rem;
}
.lp-footer-col h4 {
    margin: 0 0 14px;
    font-size: 0.82rem;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
}
.lp-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lp-footer-col ul li { margin-bottom: 8px; }
.lp-footer-col ul a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.lp-footer-col ul a:hover { color: var(--cyan); }

.lp-social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}
.lp-social a {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
}
.lp-social a:hover {
    color: var(--ink);
    background: rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.3);
    transform: translateY(-2px);
}

.lp-footer-bottom {
    max-width: 1240px;
    margin: 40px auto 0;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--dim);
    font-size: 0.85rem;
}
.lp-footer-bottom .legal-mini a {
    color: var(--muted);
    text-decoration: none;
    margin-left: 16px;
    transition: color 0.2s;
}
.lp-footer-bottom .legal-mini a:hover { color: var(--cyan); }

/* ---------------------------------------------------------------------------
   ANIMATIONS SCROLL REVEAL
   --------------------------------------------------------------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------------- */
@media (max-width: 1100px) {
    .lp-hero { grid-template-columns: 1fr; gap: 60px; }
    .lp-mockup .chip.c3 { right: 5%; }
    .lp-features { grid-template-columns: repeat(2, 1fr); }
    .lp-steps { grid-template-columns: repeat(3, 1fr); }
    .lp-testi { grid-template-columns: repeat(2, 1fr); }
    .lp-stats { grid-template-columns: repeat(2, 1fr); }
    .lp-footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 32px; }
    .lp-footer-grid .lp-footer-col:nth-child(4),
    .lp-footer-grid .lp-footer-col:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 800px) {
    .lp-nav { padding: 14px 18px; }
    .lp-nav .nav-mid { display: none; }
    .lp-burger { display: inline-flex; }
    .lp-hero { padding: 50px 18px 70px; gap: 48px; }
    .lp-section { padding: 70px 18px; }
    .lp-features { grid-template-columns: 1fr; }
    .lp-steps { grid-template-columns: 1fr; gap: 18px; }
    .lp-showcase { grid-template-columns: 1fr; gap: 40px; margin-bottom: 70px; }
    .lp-showcase:nth-child(even) { direction: ltr; }
    .lp-testi { grid-template-columns: 1fr; }
    .lp-stats { grid-template-columns: repeat(2, 1fr); padding: 32px 24px; gap: 16px; }
    .lp-final { padding: 50px 26px; margin: 40px 16px 0; border-radius: 22px; }
    .lp-footer { padding: 44px 24px 24px; }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .lp-footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
    .lp-footer-bottom .legal-mini a { margin: 0 8px; }
    .lp-hero-cta { flex-direction: column; align-items: stretch; }
    .lp-cta-primary, .lp-cta-secondary { width: 100%; }
}

@media (max-width: 500px) {
    .lp-footer-grid { grid-template-columns: 1fr; }
    .lp-stats { grid-template-columns: 1fr; }
    .lp-editor-body { grid-template-columns: 70px 1fr 100px; }
    .lp-editor-tile { font-size: 8px; height: 30px; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-editor, .bg-orbs span, .lp-final::before, .lp-hero-badge .pulse, .lp-mockup .chip { animation: none !important; }
    .fade-in { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------------------------
   ACCESSIBILITY — Phase 6E (focus-visible WCAG 2.1)
   --------------------------------------------------------------------------- */
.lp-cta-primary:focus-visible,
.lp-cta-secondary:focus-visible,
.lp-nav .btn-grad:focus-visible,
.lp-nav .btn-link:focus-visible,
.btn-grad:focus-visible,
.btn-ghost:focus-visible,
.lp-burger:focus-visible,
.lp-mobile-link:focus-visible {
    outline: 2px solid var(--cyan, #00e5ff) !important;
    outline-offset: 3px;
    border-radius: 8px;
}
