import { motion } from "framer-motion"; import { ShieldCheck, Coins, Cpu, Zap, Lock, EyeOff } from "lucide-react"; const features = [ { icon: ShieldCheck, title: "Algorithmic Payouts", description: "Groth16 proofs ensure royalty distribution is immutable and verified on-chain.", }, { icon: EyeOff, title: "Anonymity by Default", description: "Cryptographic digital IDs — no names, no PII, no trackers.", }, { icon: Coins, title: "Non-Custodial Economy", description: "Funds move peer-to-peer from audience to artist via BitTorrent Chain.", }, { icon: Cpu, title: "Spectrum Analysis", description: "Real-time frequency breakdown ensures professional-grade quality benchmarks.", }, { icon: Lock, title: "Censorship Resistant", description: "Distributed across the global BTFS network. Your art is permanently accessible.", }, { icon: Zap, title: "Zero Latency", description: "Instantaneous settlement. Capital in your sovereign control the moment it's mined.", }, ]; const Features = () => { return (
{/* Asymmetric header — left-aligned with offset */} Capabilities

Total Sovereignty.

Corporate trust replaced with cryptographic certainty.

{/* Asymmetric grid — 2 cols on mobile, 3 on desktop with varying sizes */}
{features.map((feature, i) => (
{String(i + 1).padStart(2, "0")}

{feature.title}

{feature.description}

))}
); }; export default Features;