
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        *::-webkit-scrollbar {
            display: none;
        }

        :root {
            --accent: #9b87f5;
            --accent-hover: #7c3aed;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 1.5rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 900;
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #fff;
        }

        .cta-button {
            background: var(--accent);
            color: #000;
            padding: 0.7rem 1.5rem;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cta-button:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 4rem 2rem 0rem;
            position: relative;
        }

        .hero h1 {
            font-size: clamp(3.5rem, 10vw, 8rem);
            font-weight: 900;
            line-height: 0.95;
            letter-spacing: -0.04em;
            margin-bottom: 1.5rem;
            max-width: 1400px;
        }

        .hero .subtitle {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 3rem;
            opacity: 0.7;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--accent);
            color: #000;
            padding: 1.2rem 2.5rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(155, 135, 245, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #fff;
            padding: 1.2rem 2.5rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.05);
        }

        /* Features Section */
        .bento-section {
            padding: 6rem 3rem;
            padding-top: 0rem;
            max-width: 1600px;
            margin: 0 auto;
        }

        .features-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: start;
        }

        /* Left: Mockup Preview Card */
        .mockup-preview-card {
            background: #141414;
            border-radius: 24px;
            padding: 4rem 3rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 700px;
            position: sticky;
            top: 120px;
        }

        .mockup-display {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .phone-device {
            width: 300px;
            height: 600px;
            background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
            border-radius: 45px;
            padding: 12px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
            animation: phoneFloat 6s ease-in-out infinite;
        }

        @keyframes phoneFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: #fff;
            border-radius: 35px;
            overflow: hidden;
            position: relative;
        }

        .phone-screen::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 25px;
            background: #1a1a1a;
            border-radius: 20px;
            z-index: 10;
        }

        .app-screenshot-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            transition: opacity 0.8s ease;
        }

        .app-screenshot-img.active {
            opacity: 1;
            position: relative;
        }

        /* Right: Feature Cards Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .feature-card {
            background: #141414;
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: rgba(155, 135, 245, 0.3);
        }

        .feature-card .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(155, 135, 245, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .feature-card p {
            font-size: 1rem;
            opacity: 0.6;
            line-height: 1.6;
        }

        /* Carousel Section */
        .carousel-section {
            padding: 6rem 0;
            background: #0a0a0a;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .carousel-header {
            text-align: center;
            padding: 0 2rem;
            margin-bottom: 4rem;
        }

        .carousel-header h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            margin-bottom: 1rem;
            letter-spacing: -0.03em;
        }

        .carousel-header p {
            font-size: 1.25rem;
            opacity: 0.6;
            max-width: 600px;
            margin: 0 auto;
        }

        .carousel-navigation {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
        }

        .carousel-nav-btn {
            width: 50px;
            height: 50px;
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-nav-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--accent);
        }

        .carousel-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .carousel-card {
            background: #000;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s;
        }

        .carousel-card:hover {
            transform: translateY(-8px);
            border-color: rgba(155, 135, 245, 0.3);
        }

        .carousel-card-image {
            width: 100%;
            aspect-ratio: 1/1;
            background: #1a1a1a;
            position: relative;
            overflow: hidden;
        }

        .carousel-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-card-image video {
          object-fit: cover;
          width: 100%;
          height: 100%;
        }

        .carousel-card-content {
            padding: 2rem;
        }

        .carousel-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .carousel-card p {
            opacity: 0.6;
            line-height: 1.6;
        }

        /* CTA Section */
        .final-cta {
            padding: 10rem 2rem;
            text-align: center;
            position: relative;
        }

        .final-cta h2 {
            font-size: clamp(3rem, 7vw, 6rem);
            font-weight: 900;
            margin-bottom: 2rem;
            line-height: 1;
            letter-spacing: -0.03em;
        }

        .final-cta p {
            font-size: 1.5rem;
            opacity: 0.6;
            margin-bottom: 3rem;
        }

        /* Footer */
        footer {
            padding: 4rem 3rem 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
            justify-content: center;
        }

        .footer-section h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.75rem;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .footer-section a:hover {
            color: #fff;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            opacity: 0.5;
            font-size: 0.9rem;
        }

.mobile-menu-wrapper {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    display: none;
    z-index: 1000;
    padding: 1.5rem 1.5rem;
    flex-direction: column;
    color: #fff;
}


.mobile-menu-wrapper a{
    text-decoration: none;
    color: #fff;
    padding: 1rem 0;
    font-size: 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.close-menu {
    position: absolute;
    color: #fff;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0;
    font-size: 22px;
}

.mobile-menu-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
}

.mobile-menu-wrapper .btn-mobile-nav{
    color: #242627;
    text-decoration: none;
    padding: 16px 0;
    font-size: 20px;
    margin-top: 40px;
    width: 100%;
    justify-content: center;
    text-align: center;
    background-color: var(--accent);
}

.mobile-menu-wrapper.show {
    display: flex;
}

.logo-mobile {
    display: none;
}

.mobile-btn {
    display: none !important;
}

        /* Responsive */
        @media (max-width: 1200px) {
            .features-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .mockup-preview-card {
                position: relative;
                top: 0;
                min-height: 600px;
            }

            .carousel-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {

            .nav-links li{
                display: none;
            }

            .mobile-btn {
                display: block !important;
                font-size: 22px;
                color: #fff;
                cursor: pointer;
            }


            nav {
                padding: 1.5rem 1.5rem;
            }

            .nav-links {
                gap: 1.5rem;
            }

            .hero {
                padding: 6rem 1.5rem 3rem;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 400px;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                text-align: center;
                justify-content: center;
            }

            .bento-section {
                padding: 4rem 1.5rem;
            }

            .features-container {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .mockup-preview-card {
                min-height: 500px;
                padding: 3rem 2rem;
            }

            .phone-device {
                width: 240px;
                height: 480px;
            }

            .carousel-container {
                grid-template-columns: 1fr;
                padding: 0 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0s ease-out forwards;
        }