{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "features-checklist-split",
  "title": "Features — Checklist Split",
  "type": "registry:block",
  "files": [
    {
      "path": "packages/registry-react/blocks/features-checklist-split/FeaturesChecklistSplit.tsx",
      "content": "'use client'\n\nimport { ArrowRight, Check } from 'lucide-react'\nimport { Badge } from '@/components/ui/badge'\nimport { Button } from '@/components/ui/button'\nimport { Separator } from '@/components/ui/separator'\n\n// Every line pairs a capability with a factual qualifier rather than an\n// adjective — the qualifier is what a buyer actually checks.\nconst capabilities = [\n  { label: 'Versioned metric definitions', detail: 'Git-backed, reviewable' },\n  { label: 'Row-level access control', detail: 'Evaluated per query' },\n  { label: 'Warehouse pass-through', detail: 'No data copied out' },\n  { label: 'Scheduled materialisation', detail: 'Per-metric freshness' },\n  { label: 'SCIM + SAML provisioning', detail: 'Okta, Entra, Google' },\n  { label: 'Audit log export', detail: 'Generated from history' },\n  { label: 'Cost ceilings per team', detail: 'Enforced at query time' },\n  { label: 'Embedded dashboards', detail: 'Signed URLs, scoped' },\n  { label: 'Period locking', detail: 'Restatements tracked' },\n  { label: 'Alerting on drift', detail: 'Threshold or anomaly' },\n]\n\nexport function FeaturesChecklistSplit() {\n  return (\n    <section data-slot=\"features-checklist-split\" className=\"bg-background\">\n      <div className=\"mx-auto max-w-6xl px-6 py-20 lg:py-28\">\n        <div className=\"grid gap-12 lg:grid-cols-[1fr_1.4fr] lg:gap-16\">\n          {/* Sticky pitch: stays put while the longer checklist scrolls past. */}\n          <div className=\"lg:sticky lg:top-24 lg:self-start\">\n            <Badge variant=\"secondary\">Capabilities</Badge>\n            <h2 className=\"mt-4 text-3xl font-semibold tracking-tight text-balance sm:text-4xl\">\n              Everything the reporting layer needs, nothing it doesn’t\n            </h2>\n            <p className=\"text-muted-foreground mt-3 leading-relaxed\">\n              No add-on tiers and no feature gates between plans. The list on the right is the product.\n            </p>\n            <Button className=\"mt-6\">\n              Compare plans\n              <ArrowRight className=\"ml-2 size-4\" aria-hidden=\"true\" />\n            </Button>\n          </div>\n\n          <div>\n            <ul className=\"grid gap-x-8 sm:grid-cols-2\">\n              {capabilities.map((capability) => (\n                <li key={capability.label} className=\"py-3\">\n                  <div className=\"flex items-start gap-3\">\n                    <Check className=\"text-primary mt-0.5 size-4 shrink-0\" aria-hidden=\"true\" />\n                    <div className=\"min-w-0\">\n                      <p className=\"text-sm font-medium\">{capability.label}</p>\n                      <p className=\"text-muted-foreground mt-0.5 text-xs\">{capability.detail}</p>\n                    </div>\n                  </div>\n                  <Separator className=\"mt-3\" />\n                </li>\n              ))}\n            </ul>\n            <p className=\"text-muted-foreground mt-6 text-xs\">\n              Every capability is available on every plan. Limits differ, features do not.\n            </p>\n          </div>\n        </div>\n      </div>\n    </section>\n  )\n}\n",
      "type": "registry:block",
      "target": "~/components/blocks/FeaturesChecklistSplit.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/separator.json"
  ],
  "description": "Two-column feature section pairing a sticky pitch column with a dense two-up checklist of capabilities, each line carrying a short qualifier rather than a marketing adjective.",
  "categories": [
    "marketing"
  ]
}