{
  "$schema": "https://shadcn-vue.com/schema/registry-item.json",
  "name": "features-checklist-split",
  "title": "Features — Checklist Split",
  "type": "registry:block",
  "files": [
    {
      "path": "packages/registry-vue/blocks/features-checklist-split/FeaturesChecklistSplit.vue",
      "content": "<script setup lang=\"ts\">\nimport { ArrowRight, Check } from 'lucide-vue-next'\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</script>\n\n<template>\n  <section data-slot=\"features-checklist-split\" class=\"bg-background\">\n    <div class=\"mx-auto max-w-6xl px-6 py-20 lg:py-28\">\n      <div class=\"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 class=\"lg:sticky lg:top-24 lg:self-start\">\n          <Badge variant=\"secondary\">Capabilities</Badge>\n          <h2 class=\"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 class=\"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 class=\"mt-6\">\n            Compare plans\n            <ArrowRight class=\"ml-2 size-4\" aria-hidden=\"true\" />\n          </Button>\n        </div>\n\n        <div>\n          <ul class=\"grid gap-x-8 sm:grid-cols-2\">\n            <li v-for=\"capability in capabilities\" :key=\"capability.label\" class=\"py-3\">\n              <div class=\"flex items-start gap-3\">\n                <Check class=\"text-primary mt-0.5 size-4 shrink-0\" aria-hidden=\"true\" />\n                <div class=\"min-w-0\">\n                  <p class=\"text-sm font-medium\">{{ capability.label }}</p>\n                  <p class=\"text-muted-foreground mt-0.5 text-xs\">{{ capability.detail }}</p>\n                </div>\n              </div>\n              <Separator class=\"mt-3\" />\n            </li>\n          </ul>\n          <p class=\"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</template>\n",
      "type": "registry:block",
      "target": "~/app/components/blocks/FeaturesChecklistSplit.vue"
    }
  ],
  "dependencies": [
    "lucide-vue-next"
  ],
  "devDependencies": [],
  "registryDependencies": [
    "https://uipkge.dev/r/vue/badge.json",
    "https://uipkge.dev/r/vue/button.json",
    "https://uipkge.dev/r/vue/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"
  ]
}