:root {
    --bg-dark: #050505;
    --bg-card: #121212;
    --primary: #B4E50D;
    /* Electric Lime */
    --primary-glow: rgba(180, 229, 13, 0.4);
    --primary-dim: rgba(180, 229, 13, 0.1);
    --text-main: #FFFFFF;
    --text-muted: #888888;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glow: 0 0 30px rgba(180, 229, 13, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    position: relative;
}

/* Electric Aurora Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background:
        radial-gradient(circle at 10% 20%, rgba(180, 229, 13, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(180, 229, 13, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 148, 0.03) 0%, transparent 60%);
    z-index: -2;
    filter: blur(80px);
    animation: aurora-move 15s infinite alternate;
}

@keyframes aurora-move {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Navbar */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 0.5rem 0;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 999;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary-glow);
}

.btn-primary {
    background: var(--primary);
    color: black;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px -5px var(--primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--primary-glow);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 10rem;
}

/* Background Gradients */
.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary);
    filter: blur(200px);
    opacity: 0.15;
    top: -100px;
    left: -100px;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.text-gradient {
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.7;
}

/* Glass Card Mockup */
.mockup-container {
    position: relative;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.mockup-container:hover {
    transform: translateY(-10px) scale(1.02);
}

.mockup-container img {
    display: block;
    width: 100%;
    height: auto;
}

/* Glowing Border Animation */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: scan 3s infinite linear;
}

@keyframes scan {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Features Grid */
.features {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 5rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-top: 0.5rem;
    line-height: 1.2;
    color: var(--text-main);
}

.section-label {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

/* Feature Showcase (Zig-Zag) */
.feature-showcase {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
}

.showcase-img,
.showcase-text {
    flex: 1;
}

.showcase-text h3 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.showcase-text ul {
    list-style: none;
    padding: 0;
}


.showcase-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Electric Effects */
.showcase-text h3 {
    background: linear-gradient(to top right, #666 0%, #fff 60%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

/* Removed hover rule */

.showcase-text li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    /* Align top for multi-line */
    gap: 1rem;
    font-size: 1.1rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, transparent 0%, transparent 100%);
}

.showcase-text li:hover {
    background:
        linear-gradient(90deg, rgba(180, 229, 13, 0.05) 0%, transparent 100%),
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.2) 3px);
    /* Scanline effect */
    background-size: 100% 100%, 100% 4px;
    border-color: rgba(180, 229, 13, 0.4);
    box-shadow: -5px 0 20px -5px rgba(180, 229, 13, 0.3);
    transform: translateX(10px);
}

.showcase-text li i {
    margin-top: 4px;
    /* Adjust for alignment */
    transition: transform 0.3s, filter 0.3s;
}

.showcase-text li:hover i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px var(--primary));
    animation: electric-pulse 1.5s infinite;
}

@keyframes electric-pulse {
    0% {
        filter: drop-shadow(0 0 5px var(--primary));
        opacity: 1;
    }

    50% {
        filter: drop-shadow(0 0 15px var(--primary));
        opacity: 0.8;
    }

    100% {
        filter: drop-shadow(0 0 5px var(--primary));
        opacity: 1;
    }
}

/* Glitch animation removed */

.showcase-text li strong {
    color: var(--text-main);
    transition: color 0.3s;
    position: relative;
    display: inline-block;
}

.showcase-text li:hover strong {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(180, 229, 13, 0.5);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 24px;
    transition: 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-box:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.feature-box:hover .icon-box {
    background: var(--primary);
    color: black;
    box-shadow: 0 0 20px var(--primary);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #1A1A1A;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    transition: 0.3s;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 1rem;
}


/* Stats Section */
.stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #222;
    padding-top: 4rem;
    margin-top: 4rem;
}

.stat-item h2 {
    font-size: 3rem;
    color: var(--white);
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Footer */
/* Footer */
footer {
    padding-top: 6rem;
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(to bottom, var(--bg-dark), #000);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: flex-start;
    /* Important to align columns to top */
}

.footer-brand {
    flex: 1;
    max-width: 350px;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 1.5rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid transparent;
}

.social-links a:hover {
    background: var(--primary);
    color: black;
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-column h4 {
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.link-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: 0.3s;
    font-size: 0.95rem;
}

.link-column a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid #1A1A1A;
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom p {
    color: #555;
    font-size: 0.9rem;
}

/* Mockup Images Base Style */
.mockup-img-hero {
    width: 360px;
    display: block;
    height: auto;
}

.mockup-img-feature {
    width: 320px;
    display: block;
    margin: 0 auto;
    height: auto;
}

/* Slider Styles */
.mockup-slider {
    position: relative;
    width: 400px;
    /* Increased size */
    height: 750px;
    /* Adjusted height for aspect ratio */
    margin: 0 auto;
}

.mockup-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    /* Smoother transition */
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-slider .slide.active {
    opacity: 1;
    z-index: 1;
}

/* Text Slider Styles */
.text-slider {
    min-height: 400px;
    /* Minimum height to prevent layout jump */
    position: relative;
    padding-left: 2rem;
}

.text-slide {
    display: none;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.text-slide.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mockup-slider img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(180, 229, 13, 0.15));
}

/* Mobile Responsive Fixes */
@media (max-width: 968px) {

    html,
    body {
        overflow-x: hidden;
        /* Prevent horizontal scroll */
    }

    /* Container Padding */
    .container {
        padding: 0 1.5rem;
        width: 100%;
    }

    /* Hero Section */
    .hero {
        padding-top: 8rem;
        padding-bottom: 4rem;
        text-align: center;
        display: block;
        /* Disable flex centering on mobile */
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        /* Prevent text overflow */
    }

    /* Mockup Fixes */
    .mockup-container {
        width: 100%;
        display: flex;
        justify-content: center;
        margin: 2rem 0;
    }

    .mockup-img-hero,
    .mockup-img-feature {
        width: 80% !important;
        /* Fluid width */
        max-width: 300px;
        height: auto;
    }

    .mockup-slider {
        width: 100%;
        max-width: 300px;
        height: 550px;
        /* Adjust for mobile */
    }

    /* Features Section */
    .feature-showcase {
        flex-direction: column !important;
        /* Force stack */
        gap: 2rem !important;
        margin-bottom: 4rem !important;
    }

    .showcase-img {
        width: 100%;
    }

    .feature-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Stats */
    .stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        flex: 1 1 40%;
        /* 2 items per row */
        margin-bottom: 1rem;
    }

    /* Typography Adjustments for Mobile */
    .section-header h2 {
        font-size: 1.75rem;
        /* Smaller font for mobile */
    }

    .showcase-text h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .showcase-text p {
        text-align: center;
        font-size: 0.95rem;
    }

    .showcase-text ul {
        text-align: left;
    }

    .section-label {
        font-size: 0.8rem;
    }

    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 2rem;
        width: 100%;
    }

    .link-column {
        flex: 1 1 45%;
    }
}