{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "pricing-matrix-plan-cards",
  "title": "Pricing — Per-Plan Comparison",
  "type": "registry:block",
  "files": [
    {
      "path": "packages/registry-react/blocks/pricing-matrix-plan-cards/PricingMatrixPlanCards.tsx",
      "content": "'use client'\n\nimport { Check, Minus } from 'lucide-react'\nimport { Badge } from '@/components/ui/badge'\nimport { Button } from '@/components/ui/button'\nimport { Card, CardContent } from '@/components/ui/card'\nimport { Separator } from '@/components/ui/separator'\n\nconst capabilities = [\n  'Certified metric definitions',\n  'Connected warehouses',\n  'Query budget per team',\n  'Row-level access control',\n  'SCIM provisioning',\n  'Audit log export',\n  'Embedded dashboards',\n  'Data residency choice',\n  'Customer-managed keys',\n  'Named support engineer',\n]\n\nconst plans = [\n  { name: 'Team', price: '$0', cadence: 'while in beta', included: [0, 1], note: 'For one team proving it out.' },\n  {\n    name: 'Business',\n    price: '$1,400',\n    cadence: 'per month',\n    included: [0, 1, 2, 3, 4, 5, 6],\n    note: 'For finance and analytics running together.',\n    featured: true,\n  },\n  {\n    name: 'Enterprise',\n    price: 'Custom',\n    cadence: 'annual',\n    included: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],\n    note: 'For regulated estates and multi-region.',\n  },\n]\n\nexport function PricingMatrixPlanCards() {\n  return (\n    <section data-slot=\"pricing-matrix-plan-cards\" className=\"bg-background\">\n      <div className=\"mx-auto max-w-6xl px-6 py-20 lg:py-28\">\n        <div className=\"max-w-2xl\">\n          <Badge variant=\"secondary\">Plans</Badge>\n          <h2 className=\"mt-4 text-3xl font-semibold tracking-tight sm:text-4xl\">What each plan actually includes</h2>\n          <p className=\"text-muted-foreground mt-3 text-lg\">\n            The same list on every card, with what is missing shown rather than omitted.\n          </p>\n        </div>\n\n        <div className=\"mt-10 grid gap-4 lg:grid-cols-3\">\n          {plans.map((plan) => (\n            <Card key={plan.name} className={plan.featured ? 'border-primary' : undefined}>\n              <CardContent className=\"flex h-full flex-col p-6\">\n                <div className=\"flex items-center justify-between gap-3\">\n                  <p className=\"text-sm font-semibold\">{plan.name}</p>\n                  {plan.featured && <Badge variant=\"secondary\">Most chosen</Badge>}\n                </div>\n\n                <p className=\"font-display mt-4 text-3xl font-bold tracking-tight\">{plan.price}</p>\n                <p className=\"text-muted-foreground mt-1 text-xs\">{plan.cadence}</p>\n                <p className=\"text-muted-foreground mt-3 text-sm leading-relaxed\">{plan.note}</p>\n\n                <Separator className=\"my-5\" />\n\n                <ul className=\"space-y-2.5\">\n                  {capabilities.map((capability, index) => (\n                    <li\n                      key={capability}\n                      className={`flex items-start gap-2.5 text-sm ${\n                        plan.included.includes(index) ? '' : 'text-muted-foreground/60'\n                      }`}\n                    >\n                      {plan.included.includes(index) ? (\n                        <Check className=\"text-success mt-0.5 size-4 shrink-0\" aria-hidden=\"true\" />\n                      ) : (\n                        <Minus className=\"text-muted-foreground/40 mt-0.5 size-4 shrink-0\" aria-hidden=\"true\" />\n                      )}\n                      <span>{capability}</span>\n                    </li>\n                  ))}\n                </ul>\n\n                <Button variant={plan.featured ? 'default' : 'outline'} className=\"mt-auto pt-0 [&]:mt-8\">\n                  {plan.name === 'Enterprise' ? 'Talk to us' : `Start on ${plan.name}`}\n                </Button>\n              </CardContent>\n            </Card>\n          ))}\n        </div>\n      </div>\n    </section>\n  )\n}\n",
      "type": "registry:block",
      "target": "~/components/blocks/PricingMatrixPlanCards.tsx"
    }
  ],
  "dependencies": [
    "lucide-react"
  ],
  "devDependencies": [],
  "registryDependencies": [
    "https://uipkge.dev/r/react/badge.json",
    "https://uipkge.dev/r/react/button.json",
    "https://uipkge.dev/r/react/card.json",
    "https://uipkge.dev/r/react/separator.json"
  ],
  "description": "Plan-first comparison that renders each plan as its own card of included and excluded capabilities, the layout a wide matrix should degrade to on a phone.",
  "categories": [
    "marketing"
  ],
  "deprecated": true,
  "replacedBy": "pricing"
}