        /* --- CSS Variables & Reset --- */
        :root {
            /* User Requested Colors */
            --primary: #9BC4BC;      /* Sage/Mint */
            --primary-dark: #7da89f;
            --secondary: #4B5043;    /* Dark Olive */
            
            /* Theme Colors */
            --bg-dark: #0e100d;      
            --bg-card: #151a15;      
            --bg-card-hover: #1e2620;
            
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --border: #2f3632;
            
            /* Gradients */
            --gradient-main: linear-gradient(135deg, #9BC4BC 0%, #4B5043 100%);
            --gradient-hover: linear-gradient(135deg, #b2d3cc 0%, #5c6253 100%);
            
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            --spacing-xl: 6rem;

            --radius-md: 12px;
            --radius-lg: 20px;
            
            --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
            --shadow-glow: 0 0 20px rgba(155, 196, 188, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.2s;
        }

        ul {
            list-style: none;
        }

        /* --- Utility Classes --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-sm);
        }

        .text-center { text-align: center; }
        .text-primary { color: var(--primary); }
        
        /* --- ANIMATION CLASSES --- */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-delay-1 { transition-delay: 0.1s; }
        .animate-delay-2 { transition-delay: 0.2s; }
        .animate-delay-3 { transition-delay: 0.3s; }

        /* --- BUTTON STYLING --- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.9rem 2rem;
            border-radius: var(--radius-md);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--primary);
            color: #050706; 
            box-shadow: 0 4px 15px rgba(155, 196, 188, 0.2);
            text-shadow: 0 1px 0 rgba(255,255,255,0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            background: var(--primary-dark);
            box-shadow: 0 8px 25px rgba(155, 196, 188, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: rgba(155, 196, 188, 0.1);
            color: white;
            border-color: white;
        }

        /* --- Header / Nav --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(14, 16, 13, 0.95);
            backdrop-filter: blur(12px);
            z-index: 1000;
            border-bottom: 1px solid var(--border);
            padding: 15px 0; 
        }

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    min-width: 0;
}

        /* --- LOGO STYLING --- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1002;
    min-width: 0;
    flex: 1 1 auto;
}

        .app-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-main);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            box-shadow: 0 0 15px rgba(155,196,188,0.3);
            flex-shrink: 0;
        }

.logo-text-wrapper {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 4px;
    min-width: 0;
}

        .logo-part {
            line-height: 1;
        }

        .logo-part.byte {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -0.5px;
        }

        .logo-part.pm {
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--text-main);
        }

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    flex-shrink: 0;
}

        .nav-links a:not(.btn) {
            font-weight: 500;
            color: var(--text-muted);
            transition: color 0.2s;
        }

        .nav-links a:not(.btn):hover, .nav-links a.active {
            color: var(--primary);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1002;
        }

        /* --- HERO SECTION --- */
        .hero {
            padding: 160px 0 80px;
            position: relative;
            text-align: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -20%;
            left: 50%;
            transform: translateX(-50%);
            
            width: clamp(300px, 80vw, 800px);
            height: clamp(300px, 60vw, 600px);

            background: radial-gradient(circle, rgba(75, 80, 67, 0.4) 0%, transparent 70%);
            filter: blur(60px);
            z-index: -1;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: var(--spacing-sm);
            letter-spacing: -1px;
        }

        .hero h1 span {
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: var(--spacing-md);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: var(--spacing-sm);
            flex-wrap: wrap;
        }

        /* --- FEATURES SECTION --- */
        .features {
            padding: var(--spacing-xl) 0;
            background: #0c0e0b;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            margin-bottom: var(--spacing-xs);
            color: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--spacing-md);
        }

        .feature-card {
            background: var(--bg-card);
            padding: var(--spacing-md);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            transition: transform 0.3s ease, border-color 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .feature-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-main);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .feature-card:hover::after {
            opacity: 1;
        }

        .icon-box {
            width: 50px;
            height: 50px;
            background: rgba(155, 196, 188, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--spacing-sm);
            color: var(--primary);
        }

        .feature-card h3 {
            margin-bottom: var(--spacing-xs);
            font-size: 1.25rem;
            color: white;
        }

        .feature-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* --- APP SHOWCASE / INSIGHTS SECTION --- */
        .app-showcase {
            padding: var(--spacing-xl) 0;
            background: var(--bg-dark);
            overflow: hidden;
        }

        .showcase-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin-top: 60px;
            perspective: 1000px;
        }

        .phone-mockup {
            width: 260px;
            height: 520px;
            background: #000;
            border: 6px solid #333;
            border-radius: 36px;
            position: relative;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            overflow: hidden;
            transition: transform 0.4s ease;
        }

        .phone-mockup:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 60px rgba(155, 196, 188, 0.2);
        }

        /* Placeholder Styles for Screen Content */
        .screen-content {
            width: 100%;
            height: 100%;
            background: var(--bg-card);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            text-align: center;
            padding: 20px;
        }

        .screen-header {
            width: 100%;
            height: 40px;
            background: rgba(255,255,255,0.05);
            margin-bottom: 20px;
            border-radius: 8px;
        }

        .screen-item {
            width: 90%;
            height: 15px;
            background: rgba(255,255,255,0.1);
            margin-bottom: 12px;
            border-radius: 4px;
        }
        
        .screen-item.short { width: 60%; }
        .screen-item.highlight { background: rgba(155, 196, 188, 0.3); }

        /* --- PRICING SECTION --- */
        .pricing {
            padding: var(--spacing-xl) 0;
            background: linear-gradient(180deg, #0c0e0b 0%, var(--bg-dark) 100%);
        }

        .pricing-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: var(--spacing-md);
            align-items: stretch;
        }

        .pricing-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2rem;
            width: 100%;
            max-width: 380px;
            display: flex;
            flex-direction: column;
            transition: all 0.4s ease;
            position: relative;
        }

        .pricing-card.premium {
            border: 1px solid var(--primary);
            box-shadow: 0 0 40px rgba(155, 196, 188, 0.05);
            transform: scale(1.03);
            z-index: 10;
        }

        .best-value {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-main);
            color: #0e100d;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: white;
        }

        .plan-price {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--text-main);
            display: flex;
            align-items: baseline;
            gap: 5px;
            transition: opacity 0.3s ease;
        }

        .plan-price span {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        .toggle-container {
            display: flex;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 30px;
            padding: 4px;
            margin-bottom: 1.5rem;
            position: relative;
            cursor: pointer;
            width: 100%;
        }

        .toggle-option {
            flex: 1;
            text-align: center;
            padding: 8px 16px;
            border-radius: 25px;
            z-index: 2;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-muted);
            transition: color 0.3s ease;
        }

        .toggle-option.active {
            color: #0e100d;
        }

        .toggle-bg {
            position: absolute;
            top: 4px;
            left: 4px;
            height: calc(100% - 8px);
            width: 50%;
            background: var(--primary);
            border-radius: 25px;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }

        .toggle-container.lifetime-active .toggle-bg {
            transform: translateX(100%);
        }

        .features-list {
            margin: 1.5rem 0;
            flex-grow: 1;
        }

        .features-list li {
            margin-bottom: 14px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .check-icon {
            color: var(--primary);
            flex-shrink: 0;
            margin-top: 3px;
        }

        /* --- DOWNLOAD SECTION --- */
        #download {
            padding: 60px 0;
            text-align: center;
            background: linear-gradient(180deg, var(--bg-dark) 0%, var(--secondary) 100%);
        }

        #download h2 {
            font-size: 2rem;
            color: white;
            margin-bottom: 15px;
        }

        #download p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 25px;
        }

        /* --- FOOTER --- */
        footer {
            background: #080908;
            border-top: 1px solid var(--border);
            padding: var(--spacing-lg) 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: var(--spacing-md);
        }

        .footer-col h4 {
            margin-bottom: var(--spacing-sm);
            color: white;
            font-size: 1.1rem;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .copyright {
            text-align: center;
            margin-top: var(--spacing-md);
            padding-top: var(--spacing-md);
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.8rem;
        }

        .badge {
            display: inline-block;
            padding: 0.4rem 1rem;
            background: rgba(155, 196, 188, 0.1);
            color: var(--primary);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: var(--spacing-sm);
            border: 1px solid rgba(155, 196, 188, 0.2);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 768px) {
    /* HEADER LOGO & NAV */
    nav {
        gap: 12px;
    }

    .logo {
        gap: 8px;
    }

    .app-icon {
        width: 32px;
        height: 32px;
    }

    .logo-part.byte {
        font-size: 1.8rem;
    }

    .logo-part.pm {
        font-size: 0.9rem;
        color: var(--primary);
        align-self: center;
    }

    .nav-links-desktop {
        display: none !important;
    }

            /* HEADER DOWNLOAD BUTTON SPECIFIC */
    .header-download-btn {
        padding: 0.6rem !important;
        border-radius: 50% !important;
        min-width: auto !important;
        width: auto !important;
        flex: 0 0 auto;
    }

            .header-btn-text { display: none !important; }
            .header-btn-icon { display: block !important; margin: 0; }

            /* BUTTONS FIX */
            .hero-buttons .btn,
            .pricing-card .btn,
            #download .btn,
            .features .btn-outline,
            .app-showcase .btn-outline {
                width: 100%;
                justify-content: center;
                padding: 1rem;
                border-radius: var(--radius-md) !important;
            }

    .container {
        padding: 0 20px;
    }

    .hero .container {
        max-width: 360px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }
            
    .hero h1 {
        max-width: 100%;
        font-size: 2.35rem;
        letter-spacing: -0.03em;
        overflow-wrap: end;
        word-break: break-word;
    }

    .hero p {
        max-width: 100%;
        font-size: 1rem;
    }

    .badge {
        display: block;
        width: fit-content;
        max-width: 100%;
        white-space: normal;
        text-align: center;
        line-height: 1.35;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        width: 100%;
    }

    .showcase-grid {
        gap: 24px;
        margin-top: 40px;
    }

    .pricing-card.premium {
        transform: scale(1);
        margin-bottom: 20px;
    }

    .pricing-grid {
        gap: 20px;
    }

    .pricing-card {
        max-width: 100%;
        padding: 1.5rem;
    }

    .best-value {
        max-width: calc(100% - 32px);
        white-space: normal;
        text-align: center;
    }

    .toggle-container {
        width: 100%;
        min-width: 0;
    }

    .hero-buttons .btn {
        display: flex;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        white-space: normal;
        overflow-wrap: end;
        word-break: break-word;
        gap: 8px;
    }
            
    /* Showcase Mobile Adjustment */
    .phone-mockup {
        width: 220px;
        height: 440px;
            }
        }
    
