/* === RESET & BASE === */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --neon-blue: #00e5ff;
            --neon-purple: #7000ff;
            --bg-dark: #050510;
            --bg-surface: #0a0a1f;
        }

        body {
            background-color: var(--bg-dark);
            color: white;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
        }
        a {
    color: inherit;
    text-decoration: none;
    text-underline:none;
    text-transform:none;
}
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #0a0a1f;
        }

        ::-webkit-scrollbar-thumb {
            background: #1e1e38;
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--neon-blue);
        }

        ::selection {
            background: var(--neon-blue);
            color: var(--bg-dark);
        }

        /* === UTILITY CLASSES === */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .text-center {
            text-align: center;
        }

        .font-display {
            font-family: 'Space Grotesk', sans-serif;
        }

        .text-glow {
            text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
        }

        .box-glow {
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
        }

        /* Grid Background */
        .bg-grid-neon {
            background-size: 50px 50px;
            background-image: 
                linear-gradient(to right, rgba(0, 229, 255, 0.06) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(0, 229, 255, 0.06) 1px, transparent 1px);
            -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
            mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
        }

        /* === ANIMATIONS === */
        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes ping {
            75%, 100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(8px);
            }
        }

        @keyframes rotateIn {
            from {
                opacity: 0;
                transform: translateX(-50%) perspective(1200px) rotateX(0) rotateY(0) rotateZ(0);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) perspective(1200px) rotateX(15deg) rotateY(-10deg) rotateZ(3deg);
            }
        }

        .animate-slide-down {
            animation: slideDown 0.5s ease-out;
        }

        .animate-fade-in {
            animation: fadeIn 0.8s ease-out;
            animation-fill-mode: both;
        }

        .animate-fade-in-scale {
            animation: fadeInScale 0.5s ease-out;
            animation-fill-mode: both;
        }

        .animate-pulse {
            animation: pulse 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        .animate-ping {
            animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
        }

        .animate-bounce {
            animation: bounce 1.5s ease-in-out infinite;
        }

        /* === NAVBAR === */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background: rgba(5, 5, 16, 0.8);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 1rem 1.5rem;
        }

        .navbar-content {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-text {
            font-size: 1.5rem;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            letter-spacing: 0.05em;
        }

        .badge {
            display: none;
            align-items: center;
            gap: 0.5rem;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            border: 1px solid rgba(0, 229, 255, 0.3);
            background: rgba(0, 229, 255, 0.1);
        }

        @media (min-width: 768px) {
            .badge {
                display: flex;
            }
        }

        .ping-container {
            position: relative;
            display: flex;
            height: 0.5rem;
            width: 0.5rem;
        }

        .ping-outer {
            position: absolute;
            display: inline-flex;
            height: 100%;
            width: 100%;
            border-radius: 9999px;
            background: var(--neon-blue);
            opacity: 0.75;
        }

        .ping-inner {
            position: relative;
            display: inline-flex;
            border-radius: 9999px;
            height: 0.5rem;
            width: 0.5rem;
            background: var(--neon-blue);
        }

        .badge-text {
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--neon-blue);
            letter-spacing: 0.05em;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* === BUTTONS === */
        .btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-weight: 600;
            white-space: nowrap;
            border-radius: 0.75rem;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            font-family: 'Inter', sans-serif;
        }

        .btn:active {
            transform: scale(0.97);
        }

        .btn:hover {
            transform: scale(1.03);
        }

        .btn-primary {
            background: var(--neon-blue);
            color: var(--bg-dark);
            border: 1px solid rgba(0, 229, 255, 0.8);
        }

        .btn-primary:hover {
            box-shadow: 0 0 25px rgba(0, 229, 255, 0.5);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            color: var(--neon-blue);
            border: 1px solid rgba(0, 229, 255, 0.3);
            backdrop-filter: blur(4px);
        }

        .btn-secondary:hover {
            border-color: rgba(0, 229, 255, 0.7);
            background: rgba(0, 229, 255, 0.1);
            box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
        }

        .btn-sm {
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
        }

        .btn-md {
            padding: 0.625rem 1.5rem;
            font-size: 0.875rem;
        }

        .btn-lg {
            padding: 0.75rem 1.75rem;
            font-size: 1rem;
        }

        .btn-icon {
            width: 1rem;
            height: 1rem;
            flex-shrink: 0;
        }

        /* === HERO SECTION === */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 5rem;
            overflow: hidden;
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }

        .hero-glow {
            position: absolute;
            top: 40%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.08) 0%, rgba(0, 229, 255, 0.03) 40%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .hero-screenshots {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 1;
            perspective: 1200px;
        }

        .screenshots-container {
            position: absolute;
            top: 12%;
            left: 50%;
            display: flex;
            gap: 1.25rem;
            transform-style: preserve-3d;
            animation: rotateIn 1.5s ease-out 0.3s both;
            justify-content: center;
        }

        .screenshot {
            position: relative;
            flex-shrink: 0;
            width: 280px;
            border-radius: 0.75rem;
            overflow: hidden;
            border: 1px solid rgba(0, 229, 255, 0.1);
            box-shadow: 0 0 30px rgba(0, 229, 255, 0.06);
        }

        @media (min-width: 768px) {
            .screenshot {
                width: 340px;
            }
        }

        .screenshot img {
            width: 100%;
            height: auto;
            display: block;
        }

        .screenshot::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 229, 255, 0.05);
        }

        .screenshot:nth-child(1) {
            transform: translateZ(30px);
        }

        .screenshot:nth-child(2) {
            transform: translateZ(0px);
        }

        .screenshot:nth-child(3) {
            transform: translateZ(-30px);
        }

        .hero-overlay-1 {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(5, 5, 16, 0.3) 0%, rgba(5, 5, 16, 0.5) 50%, rgba(5, 5, 16, 0.8) 100%);
        }

        .hero-overlay-2 {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(5, 5, 16, 0.3) 0%, transparent 50%, rgba(5, 5, 16, 0.3) 100%);
        }

        .hero-overlay-3 {
            position: absolute;
            inset: 0;
            background: rgba(5, 5, 16, 0.1);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
            text-align: center;
        }

        .hero-title-container {
            min-height: 80px;
            margin-bottom: 1.5rem;
        }

        .hero-title {
            font-size: 2.25rem;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            background: linear-gradient(to right, white, white, rgba(0, 229, 255, 0.5));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        @media (min-width: 768px) {
            .hero-title {
                font-size: 3.75rem;
            }
        }

        @media (min-width: 1024px) {
            .hero-title {
                font-size: 4.5rem;
            }
        }

        .cursor {
            color: var(--neon-blue);
        }

        .hero-subtitle {
            font-size: 1.125rem;
            color: #9ca3af;
            max-width: 42rem;
            margin: 0 auto 3rem;
            animation-delay: 1.5s;
        }

        @media (min-width: 768px) {
            .hero-subtitle {
                font-size: 1.25rem;
            }
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 3rem;
            animation-delay: 2s;
        }

        .stat {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(255, 255, 255, 0.05);
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
        }

        .stat-icon {
            width: 1.25rem;
            height: 1.25rem;
            color: var(--neon-blue);
        }

        .stat-label {
            font-weight: 700;
            color: white;
            line-height: 1;
        }

        .stat-sub {
            font-size: 0.75rem;
            color: #9ca3af;
        }

        .hero-ctas {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            flex-wrap: wrap;
            animation-delay: 2.2s;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            animation: fadeIn 0.8s ease-out 3s both;
            background: transparent;
            border: none;
            outline: none;
        }

        .scroll-text {
            font-size: 0.75rem;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: color 0.3s;
        }

        .scroll-indicator:hover .scroll-text {
            color: var(--neon-blue);
        }

        .scroll-icon {
            width: 1.5rem;
            height: 1.5rem;
            color: rgba(0, 229, 255, 0.6);
            transition: color 0.3s;
        }

        .scroll-indicator:hover .scroll-icon {
            color: var(--neon-blue);
        }

        /* === FEATURES SECTION === */
        .features {
            padding: 6rem 0;
            position: relative;
            z-index: 10;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 1.875rem;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        @media (min-width: 768px) {
            .section-title {
                font-size: 3rem;
            }
        }

        .section-subtitle {
            color: #9ca3af;
            max-width: 42rem;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .card {
            position: relative;
            overflow: hidden;
            border-radius: 0.75rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2rem;
            transition: all 0.3s;
            opacity: 0;
            transform: translateY(20px);
        }

        .card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .card:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 229, 255, 0.5);
            box-shadow: 0 10px 30px -10px rgba(0, 229, 255, 0.15);
        }

        .card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.5s;
            pointer-events: none;
        }

        .card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            display: inline-flex;
            padding: 0.75rem;
            border-radius: 0.5rem;
            background: rgba(0, 229, 255, 0.1);
            color: var(--neon-blue);
            margin-bottom: 1.5rem;
            transition: transform 0.3s;
        }

        .card:hover .feature-icon {
            transform: scale(1.1);
        }

        .feature-icon svg {
            width: 2rem;
            height: 2rem;
        }

        .feature-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.75rem;
            transition: color 0.3s;
        }

        .card:hover .feature-title {
            color: var(--neon-blue);
        }

        .feature-description {
            color: #9ca3af;
            line-height: 1.6;
        }

        /* === TESTIMONIALS SECTION === */
        .testimonials {
            padding: 6rem 0;
            position: relative;
            z-index: 10;
            background: linear-gradient(to bottom, transparent 0%, rgba(5, 5, 16, 0.5) 100%);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .testimonial-card {
            border-color: rgba(0, 229, 255, 0.2);
        }

        .stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1.5rem;
        }

        .star {
            width: 1.25rem;
            height: 1.25rem;
            color: var(--neon-blue);
            fill: var(--neon-blue);
        }

        .testimonial-content {
            font-size: 1.125rem;
            color: #d1d5db;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 9999px;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: white;
        }

        .author-name {
            font-weight: 700;
            color: white;
        }

        .author-role {
            font-size: 0.875rem;
            color: var(--neon-blue);
        }

        /* === FOOTER === */
        .footer {
            position: relative;
            z-index: 10;
            background: var(--bg-surface);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 4rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .footer-brand {
            grid-column: span 1;
        }

        @media (min-width: 768px) {
            .footer-brand {
                grid-column: span 2;
            }
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .footer-description {
            color: #9ca3af;
            max-width: 24rem;
        }

        .footer-section h4 {
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
            color: #9ca3af;
            cursor: pointer;
            transition: color 0.3s;
        }

        .footer-links li:hover {
            color: var(--neon-blue);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
            }
        }

        .footer-copyright {
            color: #6b7280;
            font-size: 0.875rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            width: 1.25rem;
            height: 1.25rem;
            color: #9ca3af;
            cursor: pointer;
            transition: color 0.3s;
        }

        .social-icon:hover {
            color: white;
        }

        /* Hide on mobile */
        @media (max-width: 640px) {
            .hide-sm {
                display: none !important;
            }
        }