/* Premium Glassmorphism Landing Styles */
.jl-8fabb46d-wrapper {
    position: relative;
    background-color: #0B1020;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding: 100px 20px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Star field layer */
.jl-bg-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 40% 85%, rgba(255, 255, 255, 0.03) 1.5px, transparent 1.5px);
    background-size: 300px 300px;
    opacity: 0.8;
    pointer-events: none;
}

/* Glow Gradients */
.jl-glow-gradient-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 220, 74, 0.06) 0%, rgba(11, 16, 32, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.jl-glow-gradient-2 {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 80, 255, 0.08) 0%, rgba(11, 16, 32, 0) 75%);
    pointer-events: none;
    z-index: 1;
}

/* Network Canvas Container */
.jl-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.jl-network-canvas {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.45;
}

/* Layout Container */
.jl-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* Badge */
.jl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #FFDC4A;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.jl-glow-dot {
    width: 6px;
    height: 6px;
    background-color: #FFDC4A;
    border-radius: 50%;
    box-shadow: 0 0 10px #FFDC4A;
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.3); opacity: 1; }
}

/* Typography & Hero Header */
.jl-hero-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.jl-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
}

.jl-gold-text {
    display: block;
    background: linear-gradient(135deg, #FFDC4A 0%, #FFAE00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.jl-subtitle {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
}

/* Action Buttons */
.jl-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.jl-glow-btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.jl-primary-btn {
    background: #FFDC4A;
    color: #0B1020;
    border: 1px solid #FFDC4A;
    box-shadow: 0 4px 20px rgba(255, 220, 74, 0.25);
}

.jl-primary-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.jl-secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.jl-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Glass Cards Grid */
.jl-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 70px;
}

.jl-glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) var(--card-delay) both;
}

.jl-glass-card i, .jl-glass-card svg {
    font-size: 20px;
    color: inherit;
    width: 20px;
    height: 20px;
}

.jl-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 220, 74, 0.1) 0%, rgba(255, 220, 74, 0) 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.jl-glass-card:hover .jl-card-glow {
    opacity: 1;
}

.jl-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.jl-card-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(255, 220, 74, 0.07);
    border: 1px solid rgba(255, 220, 74, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #FFDC4A;
}

.jl-glass-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #fff;
}

.jl-glass-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
}

/* Counters Row */
.jl-counters-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 50px;
}

.jl-counter-item {
    text-align: center;
}

.jl-counter-num {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #FFDC4A;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(255, 220, 74, 0.2);
}

.jl-counter-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Keyframes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .jl-8fabb46d-wrapper {
        padding: 60px 15px;
    }
    .jl-counters-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
