/*
Theme Name: Polaris Lens
Theme URI: https://polarislens.fr
Author: 3DTexel
Author URI: https://3dtexel.com
Description: Thème minimaliste conçu pour la marketplace Polaris Lens — UI mobile-first, app-style.
Version: 2.2.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jeeliz
*/

/* ═══════════════════════════════════════════════
   Polaris Lens Theme — Global Reset & App Shell
   ═══════════════════════════════════════════════ */

:root {
    --jlz-primary: #8b5cf6;
    --jlz-primary-dark: #7c3aed;
    --jlz-primary-light: #a78bfa;
    --jlz-accent: #06b6d4;
    --jlz-accent-pink: #ec4899;
    --jlz-bg: #09090b;
    --jlz-bg-elevated: #0f0f13;
    --jlz-card: #131318;
    --jlz-card-hover: #1a1a22;
    --jlz-border: #1e1e2a;
    --jlz-border-light: #2a2a3a;
    --jlz-text: #f0f0f5;
    --jlz-text-secondary: #a1a1b5;
    --jlz-text-muted: #55556a;
    --jlz-danger: #ef4444;
    --jlz-warning: #f59e0b;
    --jlz-info: #8b5cf6;
    --jlz-gradient: linear-gradient(135deg, #8b5cf6, #ec4899, #06b6d4);
    --jlz-gradient-subtle: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(236,72,153,0.08), rgba(6,182,212,0.1));
    --jlz-glow-purple: 0 0 30px rgba(139,92,246,0.3);
    --jlz-glow-pink: 0 0 30px rgba(236,72,153,0.2);
    --jlz-radius: 12px;
    --jlz-radius-sm: 8px;
    --jlz-shadow: 0 2px 8px rgba(0,0,0,0.4);
    --jlz-shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
    --jlz-transition: 0.2s ease;
    --jlz-max-width: 100%;
    --jlz-content-width: 1200px;
    --jlz-narrow-width: 600px;
    --jlz-nav-height: 60px;
    --jlz-topbar-height: 56px;
}

/* ── Hard reset ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--jlz-text);
    background: transparent;
    min-height: 100vh;
    min-height: 100dvh;
    color-scheme: dark;
    overflow-x: hidden;
}

/* Remove ALL default WP theme spacing/margins */
body.jeeliz-app {
    margin: 0 !important;
    padding: 0 !important;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--jlz-text);
}

a {
    color: var(--jlz-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover, a:focus { color: var(--jlz-primary-dark); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── Hide WP admin bar on mobile ── */
@media (max-width: 782px) {
    #wpadminbar {
        display: none !important;
    }
    html {
        margin-top: 0 !important;
    }
}

/* ── App shell: full-width on desktop, centered on mobile ── */
.jlz-app-shell {
    max-width: var(--jlz-max-width);
    margin: 0 auto;
    min-height: 100vh;
    min-height: 100dvh;
    background: transparent;
    position: relative;
    width: 100%;
}

/* ── Page content wrapper ── */
.jlz-page-content {
    padding-top: calc(var(--jlz-topbar-height) + 24px);
    padding-bottom: 24px;
}

/* ── Remove default WP content styling ── */
.entry-content,
.page-content,
.post-content {
    max-width: none;
    padding: 0;
    margin: 0;
}

/* ── Hide default page titles (shortcodes handle their own) ── */
.jlz-hide-title .entry-title,
.jlz-hide-title .page-title,
.jlz-hide-title .wp-block-post-title {
    display: none !important;
}

/* ── WP Block editor overrides ── */
.wp-site-blocks {
    padding: 0 !important;
}
.wp-block-group,
.wp-block-columns {
    padding: 0;
    margin: 0;
}

/* ── Gig single page (CPT) ── */
.single-jlz_gig .jlz-page-content {
    padding: 0 0 calc(var(--jlz-nav-height) + 16px);
}

/* ── 404 page ── */
.jlz-404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
    padding: 40px 20px;
    gap: 16px;
}
.jlz-404 h1 {
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--jlz-primary), var(--jlz-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.jlz-404 p {
    color: var(--jlz-text-secondary);
    font-size: 16px;
}
.jlz-404 a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    background: var(--jlz-primary);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 8px;
}
.jlz-404 a:hover {
    background: var(--jlz-primary-dark);
    color: #fff;
}

/* ── Scrollbar styling ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--jlz-bg); }
::-webkit-scrollbar-thumb { background: var(--jlz-border-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--jlz-text-muted); }

/* ── Selection ── */
::selection {
    background: var(--jlz-primary-light);
    color: #fff;
}

/* ── Safe area for iOS notch ── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .jlz-app-shell {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* ── WP Admin bar offset — push our floating nav down when admin bar is visible ── */
body.admin-bar .jlz-topnav {
    top: 44px;
}
body.admin-bar .jlz-page-content {
    padding-top: calc(var(--jlz-topbar-height) + 44px);
}
body.admin-bar .jlz-mobile-menu {
    top: calc(var(--jlz-topbar-height) + 44px);
}
@media (max-width: 782px) {
    body.admin-bar .jlz-topnav {
        top: 58px;
    }
    body.admin-bar .jlz-page-content {
        padding-top: calc(var(--jlz-topbar-height) + 58px);
    }
    body.admin-bar .jlz-mobile-menu {
        top: calc(var(--jlz-topbar-height) + 58px);
    }
}

/* ── Desktop: full-width, no side borders ── */
@media (min-width: 768px) {
    body {
        background: transparent;
    }
}

/* ═══════════════════════════════════════════════
   TOP NAVBAR — Glass-morphism + animated border
   ═══════════════════════════════════════════════ */
.jlz-topnav {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 1200px;
    height: var(--jlz-topbar-height);
    background: rgba(10, 10, 20, 0.65);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.jlz-topnav:hover {
    border-color: rgba(139,92,246,0.2);
}
.jlz-topnav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    width: 180px;
    height: 46px;
    overflow: hidden;
    position: relative;
}
.jlz-topnav-logo:hover { opacity: 0.85; }
.jlz-topnav-logo img {
    position: absolute !important;
    height: 170px !important;
    width: 170px !important;
    max-width: none !important;
    top: 46% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.jlz-topnav-logo span { display: none; }
@media (max-width: 480px) {
    .jlz-topnav-logo { width: 120px; height: 40px; }
    .jlz-topnav-logo img { height: 110px !important; width: 110px !important; }
}
.jlz-topnav-links {
    display: none;
    align-items: center;
    gap: 4px;
}
.jlz-topnav-link {
    position: relative;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--jlz-text-secondary);
    border-radius: 10px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
}
.jlz-topnav-link:hover {
    color: var(--jlz-text);
    background: rgba(255,255,255,0.06);
}
.jlz-topnav-link.active {
    color: #fff;
    background: rgba(139,92,246,0.15);
    border: 1px solid rgba(139,92,246,0.25);
}
.jlz-topnav-link svg { vertical-align: -1px; flex-shrink: 0; }
.jlz-topnav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.jlz-topnav-btn {
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}
.jlz-topnav-btn-ghost {
    background: rgba(255,255,255,0.06);
    color: var(--jlz-text-secondary);
    border: 1px solid rgba(255,255,255,0.1);
}
.jlz-topnav-btn-ghost:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}
/* Gradient-filled button for S'inscrire */
.jlz-topnav-btn-gradient {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    background-size: 200% 200%;
    color: #fff;
    border: none;
    animation: jlzBtnGradShift 4s ease infinite;
    box-shadow: 0 2px 12px rgba(139,92,246,0.3);
}
.jlz-topnav-btn-gradient:hover {
    color: #fff;
    box-shadow: 0 4px 20px rgba(139,92,246,0.5);
    filter: brightness(1.15);
}
@keyframes jlzBtnGradShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* User avatar in topnav */
.jlz-topnav-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(139,92,246,0.4);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    flex-shrink: 0;
}
.jlz-topnav-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.jlz-topnav-avatar:hover {
    border-color: rgba(139,92,246,0.8);
    box-shadow: 0 0 12px rgba(139,92,246,0.3);
}
/* Mobile hamburger */
.jlz-hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.jlz-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--jlz-text-secondary);
    border-radius: 2px;
    transition: all 0.3s ease;
}
/* Mobile menu overlay */
.jlz-mobile-menu {
    display: none;
    position: fixed;
    top: var(--jlz-topbar-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 9, 11, 0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 24px 20px;
    flex-direction: column;
    gap: 4px;
}
.jlz-mobile-menu.open { display: flex; }
.jlz-mobile-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--jlz-text-secondary);
    border-radius: var(--jlz-radius);
    transition: all var(--jlz-transition);
}
.jlz-mobile-menu a:hover,
.jlz-mobile-menu a.active {
    color: var(--jlz-text);
    background: rgba(139, 92, 246, 0.1);
}
.jlz-mobile-menu-divider {
    height: 1px;
    background: var(--jlz-border);
    margin: 12px 0;
}

@media (min-width: 768px) {
    .jlz-topnav { padding: 0 32px; }
    .jlz-topnav-links { display: flex; }
    .jlz-hamburger { display: none; }
    .jlz-topnav-logo { font-size: 24px; }
}

/* ═══════════════════════════════════════════════
   ANIMATED GRADIENT BACKGROUND — CodePen-style ambient glow
   ═══════════════════════════════════════════════ */
.jlz-gradient-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    z-index: -2;
    background: #080810;
}
.jlz-gradient-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99,102,241,0.03) 0%, rgba(139,92,246,0.02) 25%, transparent 50%, rgba(6,182,212,0.02) 75%, rgba(139,92,246,0.03) 100%);
    z-index: 1;
    pointer-events: none;
}
.jlz-gradient-bg__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.35;
    will-change: transform;
}
.jlz-gradient-bg__orb--1 {
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(30,58,138,0.25) 0%, rgba(49,46,129,0.12) 40%, transparent 70%);
    top: -15%; left: -10%;
    animation: jlzOrb1 35s ease-in-out infinite;
}
.jlz-gradient-bg__orb--2 {
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(88,28,135,0.2) 0%, rgba(76,29,149,0.08) 40%, transparent 70%);
    bottom: -20%; right: -15%;
    animation: jlzOrb2 40s ease-in-out infinite;
}
.jlz-gradient-bg__orb--3 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(14,116,144,0.15) 0%, rgba(21,94,117,0.06) 40%, transparent 70%);
    top: 40%; left: 50%;
    animation: jlzOrb3 30s ease-in-out infinite;
    opacity: 0.25;
}
.jlz-gradient-bg__noise {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 128px;
    opacity: 0.4;
}
@keyframes jlzOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15%, 20%) scale(1.1); }
    66% { transform: translate(-10%, 10%) scale(0.95); }
}
@keyframes jlzOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-20%, -15%) scale(1.15); }
    50% { transform: translate(-10%, -25%) scale(1); }
    75% { transform: translate(10%, -10%) scale(0.9); }
}
@keyframes jlzOrb3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30%, 20%) scale(1.2); }
}

/* Gradient line — removed (was ugly multicolor strip) */
.jlz-gradient-line { display: none; }

/* ═══════════════════════════════════════════════
   LANDING PAGE — Full-screen Photo Hero
   ═══════════════════════════════════════════════ */
.jlz-landing {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

.jlz-hero {
    position: relative;
    width: 100%;
    height: 100dvh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Full-screen background photo carousel */
.jlz-hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.jlz-hero-bg.active {
    opacity: 1;
}

/* Dark overlay on photo */
.jlz-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 50%, rgba(9,9,11,1) 100%);
    z-index: 1;
}

/* Interactive canvas mesh (Connect Three) */
#jlz-hero-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
}

/* Hero content */
.jlz-hero-content {
    position: relative;
    z-index: 3;
    padding: 0 24px;
    max-width: 800px;
}

.jlz-hero-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 20px;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}
.jlz-hero-title-line {
    display: block;
}
.jlz-gradient-text {
    background: var(--jlz-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.jlz-gradient-text-anim {
    background-image: linear-gradient(120deg, #D6009A 0%, #9750dd 50%, #D6009A 100%);
    background-size: 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: jlzGradTextShift 3s linear infinite;
}
@keyframes jlzGradTextShift {
    100% { background-position: -200% center; }
}

.jlz-hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0 0 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero info cards */
.jlz-hero-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.jlz-hero-info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    text-align: left;
}
.jlz-hero-info-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(139,92,246,0.15);
    color: var(--jlz-primary-light);
}
.jlz-hero-info-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}
.jlz-hero-info-card span {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}

/* Hero CTA */
.jlz-hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

/* ═══ Glowing Animated Button ═══ */
.jlz-btn-glow {
    position: relative;
    display: inline-flex;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
}
.jlz-btn-glow-bg {
    position: absolute;
    top: 1px; right: 1px; bottom: 1px; left: 1px;
    border-radius: 12px;
    background: linear-gradient(-90deg, #007cf0, #00dfd8, #ff0080, #007cf0);
    background-size: 400% 100%;
    animation: jlzBtnGradAnim 8s ease-in-out infinite;
}
.jlz-btn-glow-bg::after {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 2px;
    height: 100%;
    background-size: inherit;
    background-image: inherit;
    animation: inherit;
    filter: blur(0.5rem);
}
.jlz-btn-glow-text {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    background: rgba(0,0,0,0.4);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    transition: background 0.3s ease;
}
.jlz-btn-glow:hover .jlz-btn-glow-text {
    background: rgba(0,0,0,0.2);
    color: #fff;
}
@keyframes jlzBtnGradAnim {
    50% { background-position: 140% 50%; transform: skew(-2deg); }
}

/* Outline button */
.jlz-hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: rgba(255,255,255,0.04);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}
.jlz-hero-btn-outline:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
}

/* Scroll indicator */
.jlz-hero-scroll {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: jlzBounce 2s ease-in-out infinite;
}
.jlz-scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes jlzBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══ Gradient-Border Cards with Shimmer ═══ */
.jlz-features {
    position: relative;
    padding: 80px 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.jlz-features-header {
    text-align: center;
    margin-bottom: 48px;
}
.jlz-features-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}
.jlz-features-header p {
    color: var(--jlz-text-secondary);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}
.jlz-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Gradient-border card — CodePen-style animated rotating border */
.jlz-gradient-card {
    position: relative;
    border-radius: var(--jlz-radius);
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    background: rgba(12,12,18,0.6);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.jlz-gradient-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: conic-gradient(from var(--jlz-card-angle, 0deg), transparent 0%, rgba(99,102,241,0.5) 10%, transparent 25%, rgba(139,92,246,0.4) 45%, transparent 55%, rgba(6,182,212,0.4) 75%, transparent 85%, rgba(99,102,241,0.3) 95%, transparent 100%);
    -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
    mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.35;
    pointer-events: none;
    animation: jlz-card-border-spin 6s linear infinite;
}
.jlz-gradient-card:hover {
    background: rgba(20,20,30,0.8);
    border-color: rgba(139,92,246,0.2);
    box-shadow: 0 8px 40px rgba(139,92,246,0.1), 0 2px 20px rgba(0,0,0,0.3);
}
.jlz-gradient-card:hover::before {
    opacity: 0.8;
}
@property --jlz-card-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}
@keyframes jlz-card-border-spin {
    to { --jlz-card-angle: 360deg; }
}
.jlz-gradient-card-inner {
    position: relative;
    padding: 32px 28px;
    border-radius: inherit;
    z-index: 1;
}
.jlz-gradient-card-inner p {
    color: #a1a1a1;
    font-size: 14px;
    line-height: 1.6;
    margin: 12px 0 0;
}
.jlz-gradient-card-inner h3 {
    font-size: 20px;
    margin: 0;
}

/* Shimmer effect */
.jlz-shimmer {
    background: linear-gradient(112deg, transparent 30%, rgba(255,255,255,0.1) 40%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0.1) 60%, transparent 80%);
    position: absolute;
    inset: 0;
    z-index: 20;
    pointer-events: none;
    border-radius: inherit;
    background-size: 200% auto;
    background-position: 0;
    animation: jlzShimmer 18s cubic-bezier(.8,0,.05,1) infinite;
    animation-delay: var(--delay);
}
@keyframes jlzShimmer {
    0%  { opacity: 0; }
    5%  { opacity: 0; background-position: -50%; }
    10% { opacity: 0.7; }
    15% { opacity: 0; background-position: 150%; }
    20% { opacity: 0; }
    to  { opacity: 0; }
}

/* Feature icon inside gradient card */
.jlz-feature-icon {
    position: relative;
    display: inline-flex;
    width: 48px; height: 48px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgba(255,255,255,0.03);
}
.jlz-feature-icon::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(75% 75% at 25% 15%, #fff 0, hsla(0,0%,100%,0.3) 100%);
    -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
    mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    pointer-events: none;
}

/* ── Bottom CTA ── */
.jlz-landing-bottom-cta {
    text-align: center;
    padding: 80px 24px;
    position: relative;
}
.jlz-landing-bottom-cta h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 12px;
}
.jlz-landing-bottom-cta p {
    color: var(--jlz-text-secondary);
    margin: 0 0 28px;
    font-size: 16px;
}

/* ── Site Footer ── */
.jlz-site-footer {
    margin-top: 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(8,8,16,0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.jlz-footer-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px 32px;
}
.jlz-footer-brand {
    max-width: 280px;
}
.jlz-footer-logo {
    font-size: 24px;
    font-weight: 800;
    background: var(--jlz-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}
.jlz-footer-brand p {
    font-size: 13px;
    color: var(--jlz-text-muted);
    line-height: 1.5;
    margin: 0;
}
.jlz-footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.jlz-footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--jlz-text);
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.jlz-footer-col a {
    display: block;
    font-size: 13px;
    color: var(--jlz-text-secondary);
    padding: 4px 0;
    transition: color 0.2s ease;
}
.jlz-footer-col a:hover {
    color: var(--jlz-primary-light);
}
.jlz-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 20px 24px;
    text-align: center;
}
.jlz-footer-bottom p {
    font-size: 12px;
    color: var(--jlz-text-muted);
    margin: 0;
}
.jlz-footer-credit {
    margin-top: 6px !important;
    font-size: 11px !important;
    color: var(--jlz-text-muted) !important;
}
.jlz-footer-credit a {
    color: var(--jlz-primary-light);
    font-weight: 500;
}
.jlz-footer-credit a:hover {
    color: var(--jlz-primary);
}
@media (min-width: 768px) {
    .jlz-footer-inner {
        flex-direction: row;
        justify-content: space-between;
        padding: 56px 40px 40px;
    }
    .jlz-footer-cols {
        gap: 48px;
    }
}

/* ── Desktop landing ── */
@media (min-width: 768px) {
    .jlz-hero-title {
        font-size: 72px;
        letter-spacing: -3px;
    }
    .jlz-hero-desc {
        font-size: 20px;
    }
    .jlz-hero-cards {
        flex-direction: row;
        max-width: 700px;
    }
    .jlz-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .jlz-features {
        padding: 100px 40px;
    }
    .jlz-features-header h2 {
        font-size: 38px;
    }
}

@media (min-width: 1024px) {
    .jlz-hero-title {
        font-size: 86px;
    }
}

/* ── Legal Pages ── */
.jlz-legal-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}
.jlz-legal-page h1 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 8px;
}
.jlz-legal-page h2 {
    font-size: 18px;
    font-weight: 700;
    margin: 32px 0 12px;
    color: var(--jlz-text);
}
.jlz-legal-page p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--jlz-text-secondary);
    margin: 0 0 16px;
}
.jlz-legal-page em {
    color: var(--jlz-text-muted);
}
