/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 581:4 Unexpected "<"

**/
<style>
        :root {
            --apple-blue: rgb(0, 122, 255);
            --apple-dark-blue: rgb(10, 132, 255);
            --apple-purple: rgb(175, 82, 222);
            --apple-pink: rgb(255, 45, 85);
            --apple-bg-light: rgb(250, 250, 250);
            --apple-bg-dark: rgb(28, 28, 30);
            --apple-text-light: rgb(245, 245, 247);
            --apple-text-dark: rgb(29, 29, 31);
            --apple-gray: rgb(142, 142, 147);
            --apple-card-light: rgb(255, 255, 255);
            --apple-card-dark: rgb(44, 44, 46);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Helvetica Neue", Helvetica, Arial, sans-serif;
            -webkit-font-smoothing: antialiased;
        }

        body {
            background-color: var(--apple-bg-light);
            color: var(--apple-text-dark);
            transition: background-color 0.5s ease;
            overflow-x: hidden;
        }

        .dark-mode {
            background-color: var(--apple-bg-dark);
            color: var(--apple-text-light);
        }

        .container {
            max-width: 100%;
            overflow: hidden;
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(250, 250, 250, 0.8);
            backdrop-filter: blur(20px);
            z-index: 1000;
            transition: background-color 0.5s ease;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .dark-mode header {
            background-color: rgba(28, 28, 30, 0.8);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 600;
            background: linear-gradient(90deg, var(--apple-blue), var(--apple-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: inherit;
            font-size: 0.9rem;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .nav-links a:hover {
            opacity: 1;
        }

        .theme-toggle {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            color: inherit;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(0, 122, 255, 0.1) 0%, rgba(175, 82, 222, 0.05) 50%, rgba(255, 45, 85, 0.02) 100%);
            z-index: -1;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, var(--apple-blue), var(--apple-purple), var(--apple-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1s forwards 0.3s;
        }

        .hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1s forwards 0.6s;
        }

        .cta-button {
            background: linear-gradient(90deg, var(--apple-blue), var(--apple-purple));
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            border-radius: 30px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1s forwards 0.9s;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        /* Features Section */
        .features {
            padding: 8rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 3rem;
            background: linear-gradient(90deg, var(--apple-blue), var(--apple-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            max-width: 1400px;
            width: 100%;
        }

        .feature-card {
            background-color: var(--apple-card-light);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .dark-mode .feature-card {
            background-color: var(--apple-card-dark);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .dark-mode .feature-card:hover {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--apple-blue), var(--apple-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

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

        .feature-card p {
            color: var(--apple-gray);
            line-height: 1.6;
        }

        /* Parallax Section */
        .parallax {
            height: 70vh;
            background-image: url('/api/placeholder/1400/800');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .parallax::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 122, 255, 0.7), rgba(175, 82, 222, 0.7));
        }

        .parallax-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 0 2rem;
        }

        .parallax h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .parallax p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        /* Dark Mode Section */
        .dark-mode-section {
            background-color: var(--apple-bg-dark);
            color: var(--apple-text-light);
            padding: 4rem 2rem;
            text-align: center;
        }

        .dark-mode-features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
            margin-top: 4rem;
        }

        .dark-feature {
            flex: 1;
            min-width: 300px;
            max-width: 400px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .dark-feature-icon {
            font-size: 5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--apple-blue), var(--apple-purple), var(--apple-pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .dark-feature h3 {
            color: white;
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .dark-feature p {
            color: rgba(255, 255, 255, 0.7);
          font-size: 1.7rem;
            line-height: 1.6;
        }

        /* Stats Section */
        .stats {
            padding: 8rem 2rem;
            text-align: center;
            background-color: var(--apple-bg-light);
            transition: background-color 0.5s ease;
        }

        .dark-mode .stats {
            background-color: var(--apple-bg-dark);
        }

        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            max-width: 1200px;
            margin: 4rem auto 0;
        }

        .stat-item {
            flex: 1;
            min-width: 200px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--apple-blue), var(--apple-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--apple-gray);
        }

        /* Testimonials */
        .testimonials {
            padding: 8rem 2rem;
            background-color: var(--apple-card-light);
            transition: background-color 0.5s ease;
        }

        .dark-mode .testimonials {
            background-color: var(--apple-card-dark);
        }

        .testimonial-slider {
            max-width: 1000px;
            margin: 4rem auto 0;
            position: relative;
        }

        .testimonial {
            text-align: center;
            padding: 2rem;
        }

        .testimonial-text {
            font-size: 1.5rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .testimonial-position {
            color: var(--apple-gray);
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 2rem;
            text-align: center;
            background: linear-gradient(135deg, var(--apple-blue), var(--apple-purple));
            color: white;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .secondary-button {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            border-radius: 30px;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .secondary-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.05);
        }

        /* Footer */
        footer {
            padding: 4rem 2rem;
            background-color: var(--apple-bg-light);
            transition: background-color 0.5s ease;
        }

        .dark-mode footer {
            background-color: var(--apple-bg-dark);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, var(--apple-blue), var(--apple-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .footer-info {
            flex: 2;
            min-width: 300px;
        }

        .footer-info p {
            color: var(--apple-gray);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            flex: 1;
            min-width: 200px;
        }

        .footer-links h4 {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            text-decoration: none;
            color: var(--apple-gray);
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--apple-blue);
        }

        .copyright {
            text-align: center;
            color: var(--apple-gray);
            padding: 2rem 0 1rem;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .scroll-animate {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .scroll-animate.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            nav {
                padding: 1rem 1.5rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .parallax h2 {
                font-size: 2rem;
            }
        }
    </style>