** * @license * SPDX-License-Identifier: Apache-2.0 */
import { motion } from "motion/react";import {   ShieldCheck  Diamond  Waves  ChevronRight  CheckCircle2  Award  Headphones  Sparkle from "lucide-react";
const fadeIn = {  initial: { opacity: 0, y: 20 },  animate: { opacity: 1, y: 0 },  transition: { duration: 0.6 }};
const stagger = {  animate: {    transition: {      staggerChildren: 0.2    }  }};
export default function App() {  return (    <div className="min-h-screen bg-[#FDFCFB] font-sans overflow-x-hidden selection:bg-blue-100 selection:text-blue-900">      {/* Navigation */}      <header className="px-6 py-4 flex items-center justify-between bg-white/80 backdrop-blur-sm sticky top-0 z-50 border-b border-gray-100">