{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "nda-agreement-generator",
  "title": "Nda Agreement Generator",
  "type": "registry:block",
  "files": [
    {
      "path": "packages/registry-react/blocks/nda-agreement-generator/NdaAgreementGenerator.tsx",
      "content": "'use client'\n\nimport * as React from 'react'\nimport { useState, useMemo } from 'react'\nimport {\n  AlertCircle,\n  BadgeCheck,\n  Check,\n  CheckCircle2,\n  Download,\n  FileCheck,\n  Gavel,\n  Lock,\n  PenTool,\n  Printer,\n  RotateCcw,\n  Scale,\n  ShieldCheck,\n  Users,\n} from 'lucide-react'\nimport { Badge } from '@/components/ui/badge'\nimport { Button } from '@/components/ui/button'\nimport { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'\nimport { Input } from '@/components/ui/input'\nimport { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select'\nimport { Separator } from '@/components/ui/separator'\nimport { Switch } from '@/components/ui/switch'\nimport { cn } from '@/lib/utils'\n\nexport type AgreementType = 'mutual' | 'unilateral'\nexport type TermOption = '2 Years' | '3 Years' | '5 Years' | 'Perpetual for Trade Secrets'\nexport type JurisdictionOption = 'delaware' | 'california' | 'newyork' | 'england' | 'singapore'\nexport type SignatureFont = 'serif' | 'script' | 'sans'\n\nexport interface NdaAgreementGeneratorProps {\n  className?: string\n  initialSigned?: boolean\n  initialAgreementType?: AgreementType\n  initialTerm?: TermOption\n  initialJurisdiction?: JurisdictionOption\n}\n\nconst jurisdictionMap: Record<JurisdictionOption, { name: string; statute: string; venue: string; tag: string }> = {\n  delaware: {\n    name: 'State of Delaware, United States',\n    statute: 'General Corporation Law of Delaware (DGCL) & Court of Chancery',\n    venue: 'Wilmington, Delaware, USA',\n    tag: 'US-DE',\n  },\n  california: {\n    name: 'State of California, United States',\n    statute: 'California Uniform Trade Secrets Act (Cal. Civ. Code § 3426)',\n    venue: 'San Francisco, California, USA',\n    tag: 'US-CA',\n  },\n  newyork: {\n    name: 'State of New York, United States',\n    statute: 'New York Commercial Division Jurisprudence & General Obligations Law',\n    venue: 'New York, New York, USA',\n    tag: 'US-NY',\n  },\n  england: {\n    name: 'England & Wales, United Kingdom',\n    statute: 'Laws of England and Wales & High Court of Justice (Commercial Court)',\n    venue: 'London, United Kingdom',\n    tag: 'UK-EW',\n  },\n  singapore: {\n    name: 'Republic of Singapore (SIAC)',\n    statute: 'International Arbitration Act & Singapore International Arbitration Centre',\n    venue: 'Singapore (SIAC Rules)',\n    tag: 'SG-SIAC',\n  },\n}\n\nexport function NdaAgreementGenerator({\n  className,\n  initialSigned = false,\n  initialAgreementType = 'mutual',\n  initialTerm = '3 Years',\n  initialJurisdiction = 'delaware',\n}: NdaAgreementGeneratorProps) {\n  // Generator State\n  const [agreementType, setAgreementType] = useState<AgreementType>(initialAgreementType)\n  const [jurisdiction, setJurisdiction] = useState<JurisdictionOption>(initialJurisdiction)\n  const [confidentialityTerm, setConfidentialityTerm] = useState<TermOption>(initialTerm)\n\n  // Parties State\n  const [disclosingCompany, setDisclosingCompany] = useState('UIPKGE Technologies Inc.')\n  const [disclosingSignatory, setDisclosingSignatory] = useState('Sarah Jenkins')\n  const [disclosingTitle, setDisclosingTitle] = useState('VP of Architecture & Ecosystem')\n  const [disclosingEmail] = useState('s.jenkins@uipkge.dev')\n\n  const [receivingCompany, setReceivingCompany] = useState('Vertex Solutions Corp.')\n  const [receivingSignatory, setReceivingSignatory] = useState('Marcus Vance')\n  const [receivingTitle, setReceivingTitle] = useState('Chief Technology Officer')\n  const [receivingEmail] = useState('marcus.vance@vertexsolutions.io')\n\n  const [purposeOfDisclosure, setPurposeOfDisclosure] = useState(\n    'Evaluation of potential architectural partnership, proprietary registry protocols, and API integration.',\n  )\n\n  // Protective Clauses Toggles\n  const [clauseNonSolicit, setClauseNonSolicit] = useState(true)\n  const [clauseInjunctiveRelief, setClauseInjunctiveRelief] = useState(true)\n  const [clauseReturnMaterials, setClauseReturnMaterials] = useState(true)\n  const [clausePermittedDisclosures, setClausePermittedDisclosures] = useState(true)\n\n  // Signature State\n  const [isSigned, setIsSigned] = useState(initialSigned)\n  const [signatureFont, setSignatureFont] = useState<SignatureFont>('serif')\n  const [signerName, setSignerName] = useState('Marcus Vance')\n  const [eConsentAgreed, setEConsentAgreed] = useState(true)\n  const [downloadStatus, setDownloadStatus] = useState(false)\n  const [draftSavedStatus, setDraftSavedStatus] = useState(false)\n\n  const currentJurisdiction = jurisdictionMap[jurisdiction]\n\n  const termText = useMemo(() => {\n    switch (confidentialityTerm) {\n      case '2 Years':\n        return 'two (2) years from the Effective Date'\n      case '3 Years':\n        return 'three (3) years from the Effective Date'\n      case '5 Years':\n        return 'five (5) years from the Effective Date'\n      case 'Perpetual for Trade Secrets':\n        return 'five (5) years for general Confidential Information, and perpetually for all source code, cryptographic primitives, and core trade secrets'\n      default:\n        return 'three (3) years from the Effective Date'\n    }\n  }, [confidentialityTerm])\n\n  const activeClausesCount =\n    (clauseNonSolicit ? 1 : 0) +\n    (clauseInjunctiveRelief ? 1 : 0) +\n    (clauseReturnMaterials ? 1 : 0) +\n    (clausePermittedDisclosures ? 1 : 0)\n\n  const canSign = eConsentAgreed && signerName.trim().length > 0 && !isSigned\n\n  const signAgreement = () => {\n    if (!canSign) return\n    setIsSigned(true)\n  }\n\n  const resetWorkflow = () => {\n    setIsSigned(false)\n    setDownloadStatus(false)\n    setDraftSavedStatus(false)\n  }\n\n  const handleSaveDraft = () => {\n    setDraftSavedStatus(true)\n    setTimeout(() => {\n      setDraftSavedStatus(false)\n    }, 2200)\n  }\n\n  const handleExportPdf = () => {\n    setDownloadStatus(true)\n    setTimeout(() => {\n      setDownloadStatus(false)\n    }, 2500)\n  }\n\n  const handlePrint = () => {\n    if (typeof window !== 'undefined') {\n      window.print()\n    }\n  }\n\n  return (\n    <div data-slot=\"nda-agreement-generator\" className={cn('bg-background text-foreground w-full', className)}>\n      <div className=\"mx-auto max-w-7xl px-4 py-6 sm:px-6 sm:py-8 lg:px-8\">\n        {/* Main Header Bar */}\n        <header className=\"border-border bg-card mb-6 rounded-xl border p-5 shadow-xs sm:p-6\">\n          <div className=\"flex flex-col gap-5 lg:flex-row lg:items-center lg:justify-between\">\n            <div className=\"space-y-1.5\">\n              <div className=\"flex flex-wrap items-center gap-2\">\n                <span className=\"text-muted-foreground text-xs font-medium\">Instrument:</span>\n                <span className=\"text-foreground font-mono text-xs font-semibold tabular-nums\">#NDA-2026-88F</span>\n                <span className=\"text-muted-foreground text-xs\">&bull;</span>\n                <Badge variant=\"outline\" className=\"border-primary/30 text-primary font-mono text-xs\">\n                  {agreementType === 'mutual' ? 'Mutual / Bilateral' : 'Unilateral'}\n                </Badge>\n                <span className=\"text-muted-foreground text-xs\">&bull;</span>\n                {isSigned ? (\n                  <Badge className=\"border-success/30 bg-success/10 text-success gap-1.5 text-xs font-medium\">\n                    <BadgeCheck className=\"size-3.5\" />\n                    <span>Fully Executed &amp; Legally Binding</span>\n                  </Badge>\n                ) : (\n                  <Badge className=\"border-warning/30 bg-warning/10 text-warning gap-1.5 text-xs font-medium\">\n                    <AlertCircle className=\"size-3.5\" />\n                    <span>Ready for E-Signature</span>\n                  </Badge>\n                )}\n              </div>\n              <h1 className=\"text-foreground text-xl font-bold tracking-tight sm:text-2xl lg:text-3xl\">\n                Non-Disclosure Agreement (NDA) Generator\n              </h1>\n              <p className=\"text-muted-foreground flex flex-wrap items-center gap-2 text-xs sm:text-sm\">\n                <Scale className=\"size-4 shrink-0\" />\n                <span>Governing Jurisdiction: {currentJurisdiction.name} &bull; Effective Aug 21, 2026</span>\n              </p>\n            </div>\n\n            {/* Action Buttons */}\n            <div className=\"flex flex-wrap items-center gap-2.5\">\n              <Button variant=\"outline\" size=\"sm\" className=\"gap-1.5 text-xs\" onClick={handlePrint}>\n                <Printer className=\"size-4\" />\n                <span>Print</span>\n              </Button>\n              <Button variant=\"outline\" size=\"sm\" className=\"gap-1.5 text-xs\" onClick={handleSaveDraft}>\n                <FileCheck className=\"size-4\" />\n                <span>{draftSavedStatus ? 'Draft Saved ✓' : 'Save Draft'}</span>\n              </Button>\n              <Button\n                aria-label=\"Download attachment\"\n                size=\"sm\"\n                className=\"gap-1.5 text-xs font-semibold shadow-xs\"\n                variant={isSigned ? 'default' : 'outline'}\n                onClick={handleExportPdf}\n              >\n                <Download className=\"size-4\" />\n                <span>\n                  {downloadStatus ? 'Exporting PDF...' : isSigned ? 'Export Signed PDF' : 'Download Draft PDF'}\n                </span>\n              </Button>\n              {isSigned && (\n                <Button\n                  variant=\"outline\"\n                  size=\"sm\"\n                  className=\"border-muted-foreground/30 gap-1.5 text-xs\"\n                  onClick={resetWorkflow}\n                >\n                  <RotateCcw className=\"size-3.5\" />\n                  <span>Reset Demo</span>\n                </Button>\n              )}\n            </div>\n          </div>\n\n          <Separator className=\"my-4\" />\n\n          {/* Quick Parameter Switches in Header */}\n          <div className=\"grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-4\">\n            {/* Agreement Type Toggle */}\n            <div className=\"bg-muted/40 border-border rounded-lg border p-3\">\n              <label className=\"text-muted-foreground block text-xs font-medium\">Agreement Type</label>\n              <div className=\"bg-muted/60 mt-2 grid grid-cols-2 gap-1 rounded-md p-0.5\">\n                <button\n                  type=\"button\"\n                  className={cn(\n                    'rounded px-2.5 py-1 text-xs font-medium transition-colors',\n                    agreementType === 'mutual'\n                      ? 'bg-card text-foreground shadow-xs'\n                      : 'text-muted-foreground hover:text-foreground',\n                  )}\n                  onClick={() => setAgreementType('mutual')}\n                >\n                  Mutual (Bilateral)\n                </button>\n                <button\n                  type=\"button\"\n                  className={cn(\n                    'rounded px-2.5 py-1 text-xs font-medium transition-colors',\n                    agreementType === 'unilateral'\n                      ? 'bg-card text-foreground shadow-xs'\n                      : 'text-muted-foreground hover:text-foreground',\n                  )}\n                  onClick={() => setAgreementType('unilateral')}\n                >\n                  Unilateral\n                </button>\n              </div>\n            </div>\n\n            {/* Jurisdiction Selector */}\n            <div className=\"bg-muted/40 border-border rounded-lg border p-3\">\n              <label className=\"text-muted-foreground block text-xs font-medium\">Governing Jurisdiction</label>\n              <div className=\"mt-2\">\n                <Select value={jurisdiction} onValueChange={(val) => setJurisdiction(val as JurisdictionOption)}>\n                  <SelectTrigger size=\"sm\" className=\"bg-card h-8 text-xs font-medium\">\n                    <SelectValue placeholder=\"Select jurisdiction\" />\n                  </SelectTrigger>\n                  <SelectContent>\n                    <SelectItem value=\"delaware\">Delaware, USA</SelectItem>\n                    <SelectItem value=\"california\">California, USA</SelectItem>\n                    <SelectItem value=\"newyork\">New York, USA</SelectItem>\n                    <SelectItem value=\"england\">England &amp; Wales, UK</SelectItem>\n                    <SelectItem value=\"singapore\">Singapore (SIAC)</SelectItem>\n                  </SelectContent>\n                </Select>\n              </div>\n            </div>\n\n            {/* Term of Protection */}\n            <div className=\"bg-muted/40 border-border rounded-lg border p-3\">\n              <label className=\"text-muted-foreground block text-xs font-medium\">Protection Term</label>\n              <div className=\"mt-2\">\n                <Select value={confidentialityTerm} onValueChange={(val) => setConfidentialityTerm(val as TermOption)}>\n                  <SelectTrigger size=\"sm\" className=\"bg-card h-8 text-xs font-medium\">\n                    <SelectValue placeholder=\"Select term\" />\n                  </SelectTrigger>\n                  <SelectContent>\n                    <SelectItem value=\"2 Years\">2 Years</SelectItem>\n                    <SelectItem value=\"3 Years\">3 Years (Standard)</SelectItem>\n                    <SelectItem value=\"5 Years\">5 Years</SelectItem>\n                    <SelectItem value=\"Perpetual for Trade Secrets\">Perpetual (Trade Secrets)</SelectItem>\n                  </SelectContent>\n                </Select>\n              </div>\n            </div>\n\n            {/* Active Protective Clauses Summary */}\n            <div className=\"bg-muted/40 border-border rounded-lg border p-3\">\n              <label className=\"text-muted-foreground block text-xs font-medium\">Active Protective Covenants</label>\n              <div className=\"mt-2 flex items-center justify-between\">\n                <span className=\"text-foreground text-xs font-semibold\">{activeClausesCount} of 4 Clauses Active</span>\n                <Badge variant=\"secondary\" className=\"font-mono text-xs tabular-nums\">\n                  {Math.round((activeClausesCount / 4) * 100)}% Coverage\n                </Badge>\n              </div>\n            </div>\n          </div>\n        </header>\n\n        {/* 2-Column Document Builder & Live Parchment Canvas */}\n        <div className=\"grid grid-cols-1 gap-8 lg:grid-cols-12\">\n          {/* Left Column: Builder, Clauses, Parties Form (40%) */}\n          <aside className=\"space-y-6 lg:col-span-5\">\n            {/* Contracting Parties Card */}\n            <Card className=\"border-border bg-card shadow-xs\">\n              <CardHeader className=\"p-4 pb-2 sm:p-5 sm:pb-3\">\n                <div className=\"flex items-center justify-between\">\n                  <div className=\"flex items-center gap-2\">\n                    <div className=\"bg-primary/10 text-primary flex size-7 items-center justify-center rounded-md font-bold\">\n                      <Users className=\"size-4\" />\n                    </div>\n                    <div>\n                      <CardTitle className=\"text-sm font-semibold\">Contracting Parties</CardTitle>\n                      <CardDescription className=\"text-xs\">\n                        Entities bound under this confidentiality covenants\n                      </CardDescription>\n                    </div>\n                  </div>\n                  <Badge variant=\"outline\" className=\"font-mono text-xs\">\n                    2 Legal Entities\n                  </Badge>\n                </div>\n              </CardHeader>\n              <CardContent className=\"space-y-4 p-4 pt-2 sm:p-5 sm:pt-2\">\n                {/* Disclosing Party */}\n                <div className=\"border-border/80 bg-muted/20 space-y-2.5 rounded-lg border p-3.5\">\n                  <div className=\"flex items-center justify-between\">\n                    <span className=\"text-foreground text-xs font-medium\">Party A &bull; Disclosing Entity</span>\n                    <Badge variant=\"secondary\" className=\"text-xs\">\n                      Original Licensor\n                    </Badge>\n                  </div>\n                  <div>\n                    <label className=\"text-muted-foreground block text-xs font-medium\">Company Legal Name</label>\n                    <Input\n                      value={disclosingCompany}\n                      onChange={(e) => setDisclosingCompany(e.target.value)}\n                      size=\"small\"\n                      className=\"mt-1\"\n                      placeholder=\"e.g. UIPKGE Technologies Inc.\"\n                    />\n                  </div>\n                  <div className=\"grid grid-cols-2 gap-2\">\n                    <div>\n                      <label className=\"text-muted-foreground block text-xs font-medium\">Authorized Signatory</label>\n                      <Input\n                        value={disclosingSignatory}\n                        onChange={(e) => setDisclosingSignatory(e.target.value)}\n                        size=\"small\"\n                        className=\"mt-1\"\n                        placeholder=\"e.g. Sarah Jenkins\"\n                      />\n                    </div>\n                    <div>\n                      <label className=\"text-muted-foreground block text-xs font-medium\">Corporate Title</label>\n                      <Input\n                        value={disclosingTitle}\n                        onChange={(e) => setDisclosingTitle(e.target.value)}\n                        size=\"small\"\n                        className=\"mt-1\"\n                        placeholder=\"e.g. VP of Architecture\"\n                      />\n                    </div>\n                  </div>\n                </div>\n\n                {/* Receiving Party */}\n                <div className=\"border-border/80 bg-muted/20 space-y-2.5 rounded-lg border p-3.5\">\n                  <div className=\"flex items-center justify-between\">\n                    <span className=\"text-foreground text-xs font-medium\">Party B &bull; Receiving Entity</span>\n                    <Badge variant=\"secondary\" className=\"text-xs\">\n                      Counterparty\n                    </Badge>\n                  </div>\n                  <div>\n                    <label className=\"text-muted-foreground block text-xs font-medium\">Recipient Company Name</label>\n                    <Input\n                      value={receivingCompany}\n                      onChange={(e) => setReceivingCompany(e.target.value)}\n                      size=\"small\"\n                      className=\"mt-1\"\n                      placeholder=\"e.g. Vertex Solutions Corp.\"\n                    />\n                  </div>\n                  <div className=\"grid grid-cols-2 gap-2\">\n                    <div>\n                      <label className=\"text-muted-foreground block text-xs font-medium\">Recipient Signatory</label>\n                      <Input\n                        value={receivingSignatory}\n                        onChange={(e) => setReceivingSignatory(e.target.value)}\n                        size=\"small\"\n                        className=\"mt-1\"\n                        placeholder=\"e.g. Marcus Vance\"\n                      />\n                    </div>\n                    <div>\n                      <label className=\"text-muted-foreground block text-xs font-medium\">Corporate Title</label>\n                      <Input\n                        value={receivingTitle}\n                        onChange={(e) => setReceivingTitle(e.target.value)}\n                        size=\"small\"\n                        className=\"mt-1\"\n                        placeholder=\"e.g. Chief Technology Officer\"\n                      />\n                    </div>\n                  </div>\n                </div>\n\n                {/* Purpose Statement */}\n                <div>\n                  <label className=\"text-foreground block text-xs font-semibold\">\n                    Authorized Purpose of Disclosure\n                  </label>\n                  <p className=\"text-muted-foreground mt-0.5 text-xs\">\n                    Defines the strict commercial boundary for information exchange\n                  </p>\n                  <Input\n                    value={purposeOfDisclosure}\n                    onChange={(e) => setPurposeOfDisclosure(e.target.value)}\n                    size=\"middle\"\n                    className=\"mt-1.5 font-mono text-xs\"\n                    placeholder=\"e.g. Evaluation of architectural partnership...\"\n                  />\n                </div>\n              </CardContent>\n            </Card>\n\n            {/* Standard Clauses Customizer */}\n            <Card className=\"border-border bg-card shadow-xs\">\n              <CardHeader className=\"p-4 pb-2 sm:p-5 sm:pb-3\">\n                <div className=\"flex items-center justify-between\">\n                  <div className=\"flex items-center gap-2\">\n                    <div className=\"bg-primary/10 text-primary flex size-7 items-center justify-center rounded-md font-bold\">\n                      <Gavel className=\"size-4\" />\n                    </div>\n                    <div>\n                      <CardTitle className=\"text-sm font-bold\">Standard Legal Covenants</CardTitle>\n                      <CardDescription className=\"text-xs\">\n                        Toggle and enforce protective clauses in real time\n                      </CardDescription>\n                    </div>\n                  </div>\n                  <Badge variant=\"outline\" className=\"font-mono text-xs\">\n                    Custom Covenants\n                  </Badge>\n                </div>\n              </CardHeader>\n              <CardContent className=\"space-y-3.5 p-4 pt-2 sm:p-5 sm:pt-2\">\n                {/* Clause 1: Non-Solicitation */}\n                <div className=\"border-border/80 bg-card hover:bg-muted/20 flex items-start justify-between gap-3 rounded-lg border p-3 transition-colors\">\n                  <div className=\"min-w-0 space-y-1\">\n                    <div className=\"flex flex-wrap items-center gap-2\">\n                      <p className=\"text-foreground text-xs font-semibold\">1. Non-Solicitation of Employees</p>\n                      <Badge variant=\"secondary\" className=\"text-xs\">\n                        12 Months\n                      </Badge>\n                    </div>\n                    <p className=\"text-muted-foreground text-xs leading-relaxed\">\n                      Restricts either party from directly soliciting, recruiting, or hiring key technical personnel and\n                      architects.\n                    </p>\n                  </div>\n                  <Switch\n                    checked={clauseNonSolicit}\n                    onCheckedChange={setClauseNonSolicit}\n                    aria-label=\"Toggle Non-Solicitation Clause\"\n                  />\n                </div>\n\n                {/* Clause 2: Injunctive Relief */}\n                <div className=\"border-border/80 bg-card hover:bg-muted/20 flex items-start justify-between gap-3 rounded-lg border p-3 transition-colors\">\n                  <div className=\"min-w-0 space-y-1\">\n                    <div className=\"flex flex-wrap items-center gap-2\">\n                      <p className=\"text-foreground text-xs font-semibold\">2. Injunctive &amp; Equitable Relief</p>\n                      <Badge variant=\"secondary\" className=\"text-xs\">\n                        No Bond Required\n                      </Badge>\n                    </div>\n                    <p className=\"text-muted-foreground text-xs leading-relaxed\">\n                      Stipulates that breach causes irreparable harm, entitling Disclosing Party to emergency\n                      restraining orders without posting a bond.\n                    </p>\n                  </div>\n                  <Switch\n                    checked={clauseInjunctiveRelief}\n                    onCheckedChange={setClauseInjunctiveRelief}\n                    aria-label=\"Toggle Injunctive Relief Clause\"\n                  />\n                </div>\n\n                {/* Clause 3: Return of Materials */}\n                <div className=\"border-border/80 bg-card hover:bg-muted/20 flex items-start justify-between gap-3 rounded-lg border p-3 transition-colors\">\n                  <div className=\"min-w-0 space-y-1\">\n                    <div className=\"flex flex-wrap items-center gap-2\">\n                      <p className=\"text-foreground text-xs font-semibold\">3. Return &amp; Certified Destruction</p>\n                      <Badge variant=\"secondary\" className=\"text-xs\">\n                        14 Calendar Days\n                      </Badge>\n                    </div>\n                    <p className=\"text-muted-foreground text-xs leading-relaxed\">\n                      Mandates formal return or certified cryptographic shredding of all confidential technical assets\n                      within 14 days of request.\n                    </p>\n                  </div>\n                  <Switch\n                    checked={clauseReturnMaterials}\n                    onCheckedChange={setClauseReturnMaterials}\n                    aria-label=\"Toggle Return of Materials Clause\"\n                  />\n                </div>\n\n                {/* Clause 4: Permitted Disclosures */}\n                <div className=\"border-border/80 bg-card hover:bg-muted/20 flex items-start justify-between gap-3 rounded-lg border p-3 transition-colors\">\n                  <div className=\"min-w-0 space-y-1\">\n                    <div className=\"flex flex-wrap items-center gap-2\">\n                      <p className=\"text-foreground text-xs font-semibold\">4. Permitted Compelled Disclosures</p>\n                      <Badge variant=\"secondary\" className=\"text-xs\">\n                        Subpoena Carve-Out\n                      </Badge>\n                    </div>\n                    <p className=\"text-muted-foreground text-xs leading-relaxed\">\n                      Carves out court order / statutory subpoena compliance with mandatory prompt written notification\n                      to the other party.\n                    </p>\n                  </div>\n                  <Switch\n                    checked={clausePermittedDisclosures}\n                    onCheckedChange={setClausePermittedDisclosures}\n                    aria-label=\"Toggle Permitted Disclosures Clause\"\n                  />\n                </div>\n              </CardContent>\n            </Card>\n\n            {/* E-Signature Pad Execution Card */}\n            <Card className=\"border-border bg-card shadow-xs\">\n              <CardHeader className=\"p-4 pb-2 sm:p-5 sm:pb-3\">\n                <div className=\"flex items-center justify-between\">\n                  <div className=\"flex items-center gap-2\">\n                    <div className=\"bg-primary/10 text-primary flex size-7 items-center justify-center rounded-md font-bold\">\n                      <PenTool className=\"size-4\" />\n                    </div>\n                    <div>\n                      <CardTitle className=\"text-sm font-bold\">Electronic Signature Pad</CardTitle>\n                      <CardDescription className=\"text-xs\">\n                        Adopt official digital signature style for execution\n                      </CardDescription>\n                    </div>\n                  </div>\n                  <Badge variant={isSigned ? 'default' : 'outline'} className=\"font-mono text-xs\">\n                    {isSigned ? 'Executed' : 'Signer 2/2'}\n                  </Badge>\n                </div>\n              </CardHeader>\n              <CardContent className=\"space-y-4 p-4 pt-2 sm:p-5 sm:pt-2\">\n                {/* Signer Name Input */}\n                <div>\n                  <label className=\"text-foreground block text-xs font-medium\">Recipient Signatory Full Name</label>\n                  <Input\n                    value={signerName}\n                    onChange={(e) => setSignerName(e.target.value)}\n                    disabled={isSigned}\n                    size=\"middle\"\n                    className=\"mt-1\"\n                    placeholder=\"e.g. Marcus Vance\"\n                  />\n                </div>\n\n                {/* Signature Style Picker */}\n                <div>\n                  <label className=\"text-muted-foreground block text-xs font-medium\">Adopted Typography Style</label>\n                  <div className=\"bg-muted/60 mt-1.5 grid grid-cols-3 gap-1 rounded-lg p-1\">\n                    <button\n                      type=\"button\"\n                      disabled={isSigned}\n                      className={cn(\n                        'rounded-md py-1.5 text-center text-xs font-medium transition-colors',\n                        signatureFont === 'serif'\n                          ? 'bg-card text-foreground shadow-xs'\n                          : 'text-muted-foreground hover:text-foreground',\n                        isSigned && 'cursor-not-allowed opacity-60',\n                      )}\n                      onClick={() => setSignatureFont('serif')}\n                    >\n                      Formal Serif\n                    </button>\n                    <button\n                      type=\"button\"\n                      disabled={isSigned}\n                      className={cn(\n                        'rounded-md py-1.5 text-center text-xs font-medium transition-colors',\n                        signatureFont === 'script'\n                          ? 'bg-card text-foreground shadow-xs'\n                          : 'text-muted-foreground hover:text-foreground',\n                        isSigned && 'cursor-not-allowed opacity-60',\n                      )}\n                      onClick={() => setSignatureFont('script')}\n                    >\n                      Script Elegance\n                    </button>\n                    <button\n                      type=\"button\"\n                      disabled={isSigned}\n                      className={cn(\n                        'rounded-md py-1.5 text-center text-xs font-medium transition-colors',\n                        signatureFont === 'sans'\n                          ? 'bg-card text-foreground shadow-xs'\n                          : 'text-muted-foreground hover:text-foreground',\n                        isSigned && 'cursor-not-allowed opacity-60',\n                      )}\n                      onClick={() => setSignatureFont('sans')}\n                    >\n                      Modern Sans\n                    </button>\n                  </div>\n                </div>\n\n                {/* Visual Preview Box */}\n                <div className=\"border-border bg-muted/20 relative rounded-lg border p-4 text-center\">\n                  <p className=\"text-muted-foreground text-xs font-medium\">Adopted Signature Preview</p>\n                  <div className=\"my-3 flex min-h-[52px] items-center justify-center\">\n                    <span\n                      className={cn(\n                        'text-foreground text-2xl transition-colors select-none',\n                        signatureFont === 'serif' && 'font-medium tracking-wide italic',\n                        signatureFont === 'script' && 'font-medium tracking-widest italic',\n                        signatureFont === 'sans' && 'font-semibold tracking-tight',\n                      )}\n                    >\n                      {signerName || 'Marcus Vance'}\n                    </span>\n                  </div>\n                  <div className=\"text-muted-foreground flex items-center justify-center gap-1.5 font-mono text-xs\">\n                    <ShieldCheck className=\"text-success size-3.5\" />\n                    <span>256-Bit eIDAS / ESIGN Act Compliant</span>\n                  </div>\n                </div>\n\n                {/* Consent Checkbox */}\n                <label className=\"text-muted-foreground flex cursor-pointer items-start gap-2.5 text-xs\">\n                  <input\n                    type=\"checkbox\"\n                    checked={eConsentAgreed}\n                    disabled={isSigned}\n                    onChange={(e) => setEConsentAgreed(e.target.checked)}\n                    className=\"text-primary focus:ring-ring border-border mt-0.5 size-4 rounded\"\n                  />\n                  <span className=\"leading-relaxed\">\n                    I agree to execute this Non-Disclosure Agreement electronically and confirm my electronic signature\n                    legally binds <strong>{receivingCompany}</strong> under the U.S. ESIGN Act and{' '}\n                    {currentJurisdiction.name}.\n                  </span>\n                </label>\n\n                {/* Main Execution Action Button */}\n                <div className=\"space-y-2 pt-1\">\n                  {!isSigned ? (\n                    <Button\n                      type=\"button\"\n                      className=\"w-full gap-2 text-sm font-semibold shadow-xs\"\n                      disabled={!canSign}\n                      onClick={signAgreement}\n                    >\n                      <PenTool className=\"size-4\" />\n                      <span>Sign &amp; Execute Agreement</span>\n                    </Button>\n                  ) : (\n                    <div className=\"border-success/30 bg-success/10 space-y-2 rounded-lg border p-3.5 text-center\">\n                      <div className=\"text-success flex items-center justify-center gap-1.5 text-xs font-semibold\">\n                        <CheckCircle2 className=\"size-4\" />\n                        <span>Agreement Digitally Executed!</span>\n                      </div>\n                      <p className=\"text-muted-foreground text-xs\">\n                        Both parties have countersigned this NDA. Cryptographic SHA-256 certificate has been logged in\n                        the audit trail.\n                      </p>\n                      <Button\n                        aria-label=\"Download attachment\"\n                        size=\"sm\"\n                        className=\"mt-2 w-full gap-1.5 text-xs\"\n                        onClick={handleExportPdf}\n                      >\n                        <Download className=\"size-3.5\" />\n                        <span>Export Countersigned PDF</span>\n                      </Button>\n                    </div>\n                  )}\n\n                  {!isSigned && !canSign && (\n                    <p className=\"text-muted-foreground text-center text-xs\">\n                      {!eConsentAgreed\n                        ? 'Please check the legal electronic consent box to proceed.'\n                        : 'Please provide a valid signatory name.'}\n                    </p>\n                  )}\n                </div>\n              </CardContent>\n            </Card>\n\n            {/* Audit Log Miniature Card */}\n            <div className=\"border-border bg-card/60 text-muted-foreground space-y-1.5 rounded-lg border p-3.5 text-xs shadow-xs\">\n              <div className=\"text-foreground flex items-center gap-1.5 font-semibold\">\n                <Lock className=\"text-primary size-3.5\" />\n                <span>Immutable Legal Audit Ledger</span>\n              </div>\n              <p className=\"leading-relaxed\">\n                Every clause configuration and signature execution generates a tamper-evident SHA-256 cryptographic\n                digest with RFC 3161 trusted timestamping.\n              </p>\n            </div>\n          </aside>\n\n          {/* Right Column: Live Document Parchment Canvas (60%) */}\n          <main className=\"space-y-6 lg:col-span-7\">\n            <div className=\"border-border bg-card rounded-xl border p-6 shadow-xs sm:p-8 lg:p-10\">\n              {/* Document Title Bar */}\n              <div className=\"border-border border-b pb-6 text-center\">\n                <Badge variant=\"outline\" className=\"font-mono text-xs tracking-widest uppercase\">\n                  Official Legal Instrument &bull; {currentJurisdiction.tag}\n                </Badge>\n                <h2 className=\"text-foreground mt-3 text-lg font-semibold tracking-tight sm:text-xl lg:text-2xl\">\n                  {agreementType === 'mutual'\n                    ? 'Mutual Non-Disclosure Agreement'\n                    : 'Unilateral Non-Disclosure Agreement'}\n                </h2>\n                <p className=\"text-muted-foreground mt-1.5 font-mono text-xs\">\n                  Governing Law: {currentJurisdiction.name} &bull; Ref: #NDA-2026-88F\n                </p>\n              </div>\n\n              {/* Agreement Key Terms Summary Box */}\n              <div className=\"my-6\">\n                <div className=\"bg-muted/40 border-border rounded-lg border p-4 sm:p-5\">\n                  <div className=\"mb-3 flex items-center justify-between\">\n                    <h3 className=\"text-foreground text-xs font-semibold\">Contract Terms &amp; Scope Summary</h3>\n                    <Badge variant=\"secondary\" className=\"font-mono text-xs\">\n                      {agreementType === 'mutual' ? 'Bilateral Protection' : 'Unilateral Protection'}\n                    </Badge>\n                  </div>\n                  <div className=\"grid grid-cols-2 gap-3 sm:grid-cols-4\">\n                    <div className=\"border-border/60 bg-card rounded-md border p-3\">\n                      <p className=\"text-muted-foreground text-xs font-medium\">Disclosing Party</p>\n                      <p className=\"text-foreground mt-1 truncate text-xs font-bold\">{disclosingCompany}</p>\n                      <p className=\"text-muted-foreground mt-0.5 truncate text-xs\">{disclosingSignatory}</p>\n                    </div>\n                    <div className=\"border-border/60 bg-card rounded-md border p-3\">\n                      <p className=\"text-muted-foreground text-xs font-medium\">Receiving Party</p>\n                      <p className=\"text-foreground mt-1 truncate text-xs font-bold\">{receivingCompany}</p>\n                      <p className=\"text-muted-foreground mt-0.5 truncate text-xs\">{receivingSignatory}</p>\n                    </div>\n                    <div className=\"border-border/60 bg-card rounded-md border p-3\">\n                      <p className=\"text-muted-foreground text-xs font-medium\">Protection Term</p>\n                      <p className=\"text-foreground mt-1 text-xs font-bold\">{confidentialityTerm}</p>\n                      <p className=\"text-muted-foreground mt-0.5 font-mono text-xs\">From Effective Date</p>\n                    </div>\n                    <div className=\"border-border/60 bg-card rounded-md border p-3\">\n                      <p className=\"text-muted-foreground text-xs font-medium\">Exclusive Venue</p>\n                      <p className=\"text-foreground mt-1 truncate text-xs font-bold\">\n                        {currentJurisdiction.venue.split(',')[0]}\n                      </p>\n                      <p className=\"text-muted-foreground mt-0.5 font-mono text-xs\">{currentJurisdiction.tag}</p>\n                    </div>\n                  </div>\n                </div>\n              </div>\n\n              {/* Legal Sections Content */}\n              <div className=\"text-foreground/90 space-y-7 text-xs leading-relaxed sm:text-sm\">\n                {/* Preamble & Recitals */}\n                <section className=\"space-y-3\">\n                  <p className=\"text-muted-foreground leading-relaxed\">\n                    This Non-Disclosure Agreement (this &ldquo;Agreement&rdquo;), effective as of the{' '}\n                    <strong className=\"text-foreground\">21st day of August, 2026</strong> (&ldquo;Effective\n                    Date&rdquo;), is entered into by and between:\n                  </p>\n                  <div className=\"grid grid-cols-1 gap-3 sm:grid-cols-2\">\n                    <div className=\"border-border bg-muted/20 rounded-lg border p-3.5\">\n                      <p className=\"text-foreground text-xs font-medium\">Disclosing Party (&ldquo;Party A&rdquo;)</p>\n                      <p className=\"text-foreground mt-1 font-bold\">{disclosingCompany}</p>\n                      <p className=\"text-muted-foreground text-xs\">\n                        {disclosingSignatory} &bull; {disclosingTitle}\n                      </p>\n                      <p className=\"text-muted-foreground font-mono text-xs\">{disclosingEmail}</p>\n                    </div>\n                    <div className=\"border-border bg-muted/20 rounded-lg border p-3.5\">\n                      <p className=\"text-foreground text-xs font-medium\">Receiving Party (&ldquo;Party B&rdquo;)</p>\n                      <p className=\"text-foreground mt-1 font-bold\">{receivingCompany}</p>\n                      <p className=\"text-muted-foreground text-xs\">\n                        {receivingSignatory} &bull; {receivingTitle}\n                      </p>\n                      <p className=\"text-muted-foreground font-mono text-xs\">{receivingEmail}</p>\n                    </div>\n                  </div>\n                  <p className=\"text-muted-foreground italic\">\n                    <strong>RECITALS:</strong> WHEREAS, Disclosing Party possesses certain non-public proprietary\n                    technology, software architectures, and business data, and Receiving Party desires to receive such\n                    information strictly for the purpose of{' '}\n                    <strong className=\"text-foreground not-italic\">&ldquo;{purposeOfDisclosure}&rdquo;</strong> (the\n                    &ldquo;Authorized Purpose&rdquo;).{' '}\n                    {agreementType === 'mutual'\n                      ? 'Each party may act as both a Disclosing Party and a Receiving Party under this Agreement.'\n                      : ''}\n                  </p>\n                </section>\n\n                <Separator />\n\n                {/* Section 1: Definition of Confidential Information */}\n                <section className=\"space-y-2.5\">\n                  <div className=\"flex items-center gap-2\">\n                    <span className=\"bg-primary/10 text-primary rounded px-2 py-0.5 font-mono text-xs font-bold\">\n                      01\n                    </span>\n                    <h3 className=\"text-foreground text-sm font-semibold tracking-tight sm:text-base\">\n                      Definition of Confidential Information\n                    </h3>\n                  </div>\n                  <p className=\"text-muted-foreground\">\n                    &ldquo;Confidential Information&rdquo; refers to all non-public, proprietary, or confidential\n                    technical and business data disclosed by Disclosing Party to Receiving Party, whether orally,\n                    electronically, in writing, or by inspection of tangible objects, including but not limited to:\n                    source code, software algorithms, API specifications, component registries, cryptographic tokens,\n                    database schemas, product roadmaps, financial forecasts, customer records, and trade secrets.\n                  </p>\n                </section>\n\n                <Separator />\n\n                {/* Section 2: Non-Disclosure & Duty of Care */}\n                <section className=\"space-y-2.5\">\n                  <div className=\"flex items-center gap-2\">\n                    <span className=\"bg-primary/10 text-primary rounded px-2 py-0.5 font-mono text-xs font-bold\">\n                      02\n                    </span>\n                    <h3 className=\"text-foreground text-sm font-semibold tracking-tight sm:text-base\">\n                      Obligations of Non-Disclosure &amp; Standard of Care\n                    </h3>\n                  </div>\n                  <p className=\"text-muted-foreground\">\n                    Receiving Party agrees to maintain the strict confidentiality of all Confidential Information with\n                    at least the same degree of care that it uses to protect its own confidential assets of similar\n                    nature, but in no event less than a reasonable degree of care. Receiving Party shall:\n                  </p>\n                  <ul className=\"text-muted-foreground list-disc space-y-1.5 pl-4\">\n                    <li>\n                      Use Confidential Information solely and exclusively for the Authorized Purpose defined herein.\n                    </li>\n                    <li>\n                      Restrict disclosure strictly to its authorized officers, directors, employees, and legal counsel\n                      who have a clear need-to-know and are bound by confidentiality covenants no less stringent than\n                      this Agreement.\n                    </li>\n                    <li>\n                      Refrain from reverse engineering, decompiling, or disassembling any software or architectural\n                      artifacts provided.\n                    </li>\n                  </ul>\n                </section>\n\n                <Separator />\n\n                {/* Section 3: Exclusions from Confidentiality */}\n                <section className=\"space-y-2.5\">\n                  <div className=\"flex items-center gap-2\">\n                    <span className=\"bg-primary/10 text-primary rounded px-2 py-0.5 font-mono text-xs font-bold\">\n                      03\n                    </span>\n                    <h3 className=\"text-foreground text-sm font-semibold tracking-tight sm:text-base\">\n                      Exclusions from Confidential Treatment\n                    </h3>\n                  </div>\n                  <p className=\"text-muted-foreground\">\n                    Confidential Information does not encompass information that: (a) is or becomes publicly available\n                    through no act or omission of Receiving Party; (b) was rightfully in Receiving Party&rsquo;s\n                    possession prior to disclosure without restriction; (c) is independently developed by Receiving\n                    Party without reference to or reliance upon Disclosing Party&rsquo;s Confidential Information; or\n                    (d) is lawfully obtained from a third party free of any confidentiality obligations.\n                  </p>\n                </section>\n\n                <Separator />\n\n                {/* Section 4: Term & Expiration */}\n                <section className=\"space-y-2.5\">\n                  <div className=\"flex items-center gap-2\">\n                    <span className=\"bg-primary/10 text-primary rounded px-2 py-0.5 font-mono text-xs font-bold\">\n                      04\n                    </span>\n                    <h3 className=\"text-foreground text-sm font-semibold tracking-tight sm:text-base\">\n                      Term of Confidentiality Obligations\n                    </h3>\n                  </div>\n                  <p className=\"text-muted-foreground\">\n                    The obligations of confidentiality and non-use established under this Agreement shall commence on\n                    the Effective Date and continue in full force and effect for a period of{' '}\n                    <strong className=\"text-foreground\">{termText}</strong>.\n                  </p>\n                </section>\n\n                {/* Dynamic Section: Non-Solicitation */}\n                {clauseNonSolicit && (\n                  <>\n                    <Separator />\n                    <section className=\"space-y-2.5\">\n                      <div className=\"flex items-center gap-2\">\n                        <span className=\"bg-primary/10 text-primary rounded px-2 py-0.5 font-mono text-xs font-bold\">\n                          05\n                        </span>\n                        <h3 className=\"text-foreground text-sm font-semibold tracking-tight sm:text-base\">\n                          Non-Solicitation of Technical Personnel\n                        </h3>\n                      </div>\n                      <p className=\"text-muted-foreground\">\n                        During the term of this Agreement and for a period of{' '}\n                        <strong className=\"text-foreground\">twelve (12) calendar months</strong> immediately following\n                        its expiration or termination, neither party shall directly or indirectly solicit, recruit, or\n                        entice any software engineer, systems architect, or executive officer of the other party\n                        involved in this collaboration to terminate their employment relationship.\n                      </p>\n                    </section>\n                  </>\n                )}\n\n                {/* Dynamic Section: Injunctive Relief */}\n                {clauseInjunctiveRelief && (\n                  <>\n                    <Separator />\n                    <section className=\"space-y-2.5\">\n                      <div className=\"flex items-center gap-2\">\n                        <span className=\"bg-primary/10 text-primary rounded px-2 py-0.5 font-mono text-xs font-bold\">\n                          {clauseNonSolicit ? '06' : '05'}\n                        </span>\n                        <h3 className=\"text-foreground text-sm font-semibold tracking-tight sm:text-base\">\n                          Injunctive &amp; Equitable Remedies\n                        </h3>\n                      </div>\n                      <p className=\"text-muted-foreground\">\n                        The parties acknowledge that unauthorized disclosure or use of Confidential Information will\n                        cause irreparable injury for which monetary damages alone would be inadequate. Consequently,\n                        Disclosing Party shall be entitled to seek immediate injunctive relief, specific performance,\n                        and other equitable remedies in any court of competent jurisdiction without the requirement of\n                        posting a bond or proving monetary damages.\n                      </p>\n                    </section>\n                  </>\n                )}\n\n                {/* Dynamic Section: Return & Certified Destruction */}\n                {clauseReturnMaterials && (\n                  <>\n                    <Separator />\n                    <section className=\"space-y-2.5\">\n                      <div className=\"flex items-center gap-2\">\n                        <span className=\"bg-primary/10 text-primary rounded px-2 py-0.5 font-mono text-xs font-bold\">\n                          {(clauseNonSolicit ? 1 : 0) + (clauseInjunctiveRelief ? 1 : 0) + 5}\n                        </span>\n                        <h3 className=\"text-foreground text-sm font-semibold tracking-tight sm:text-base\">\n                          Return &amp; Certified Destruction of Materials\n                        </h3>\n                      </div>\n                      <p className=\"text-muted-foreground\">\n                        Upon written request by Disclosing Party or upon termination of discussions, Receiving Party\n                        shall within <strong className=\"text-foreground\">fourteen (14) calendar days</strong>: (a)\n                        return all tangible materials containing Confidential Information; and (b) permanently erase and\n                        cryptographically shred all digital records, backups, and derivative works, providing a formal\n                        officer Certificate of Destruction.\n                      </p>\n                    </section>\n                  </>\n                )}\n\n                {/* Dynamic Section: Permitted Compelled Disclosures */}\n                {clausePermittedDisclosures && (\n                  <>\n                    <Separator />\n                    <section className=\"space-y-2.5\">\n                      <div className=\"flex items-center gap-2\">\n                        <span className=\"bg-primary/10 text-primary rounded px-2 py-0.5 font-mono text-xs font-bold\">\n                          {(clauseNonSolicit ? 1 : 0) +\n                            (clauseInjunctiveRelief ? 1 : 0) +\n                            (clauseReturnMaterials ? 1 : 0) +\n                            5}\n                        </span>\n                        <h3 className=\"text-foreground text-sm font-semibold tracking-tight sm:text-base\">\n                          Permitted Compelled Disclosures &amp; Subpoenas\n                        </h3>\n                      </div>\n                      <p className=\"text-muted-foreground\">\n                        Receiving Party may disclose Confidential Information pursuant to a valid judicial order or\n                        statutory subpoena; provided that Receiving Party delivers prompt written notice (within 48\n                        hours) to Disclosing Party prior to disclosure, enabling Disclosing Party an opportunity to seek\n                        an appropriate protective order.\n                      </p>\n                    </section>\n                  </>\n                )}\n\n                <Separator />\n\n                {/* Governing Law Section */}\n                <section className=\"space-y-2.5\">\n                  <div className=\"flex items-center gap-2\">\n                    <span className=\"bg-primary/10 text-primary rounded px-2 py-0.5 font-mono text-xs font-bold\">\n                      {activeClausesCount + 5}\n                    </span>\n                    <h3 className=\"text-foreground text-sm font-semibold tracking-tight sm:text-base\">\n                      Governing Law &amp; Dispute Jurisdiction\n                    </h3>\n                  </div>\n                  <p className=\"text-muted-foreground\">\n                    This Agreement shall be governed by, construed, and enforced in accordance with the substantive laws\n                    of <strong className=\"text-foreground\">{currentJurisdiction.name}</strong> (\n                    {currentJurisdiction.statute}). The parties consent to the exclusive jurisdiction and venue of the\n                    courts situated in <strong className=\"text-foreground\">{currentJurisdiction.venue}</strong>.\n                  </p>\n                </section>\n\n                <Separator />\n\n                {/* Dual Signature Execution Block */}\n                <section className=\"space-y-4 pt-2\">\n                  <div className=\"flex items-center justify-between\">\n                    <h3 className=\"text-foreground text-sm font-semibold tracking-tight sm:text-base\">\n                      In Witness Whereof &bull; Execution Signatures\n                    </h3>\n                    <span className=\"text-muted-foreground font-mono text-xs\">2 of 2 Parties Bound</span>\n                  </div>\n\n                  <div className=\"grid grid-cols-1 gap-4 sm:grid-cols-2\">\n                    {/* Disclosing Party Signature Block */}\n                    <div className=\"border-border bg-muted/20 rounded-lg border p-4\">\n                      <div className=\"flex items-center justify-between\">\n                        <p className=\"text-foreground text-xs font-medium\">Disclosing Party Signature</p>\n                        <Badge\n                          variant=\"outline\"\n                          className=\"border-success/40 bg-success/10 text-success font-mono text-xs\"\n                        >\n                          <Check className=\"mr-1 size-3\" /> Signed &amp; Verified\n                        </Badge>\n                      </div>\n                      <div className=\"border-border/60 bg-card my-3 rounded-md border p-3 text-center\">\n                        <p className=\"text-success text-success text-xl font-medium tracking-wide italic\">\n                          {disclosingSignatory}\n                        </p>\n                        <p className=\"text-muted-foreground mt-0.5 font-mono text-xs\">\n                          {disclosingTitle} &bull; {disclosingCompany}\n                        </p>\n                      </div>\n                      <div className=\"text-muted-foreground space-y-1 font-mono text-xs\">\n                        <p className=\"flex justify-between\">\n                          <span>Date Countersigned:</span>\n                          <span className=\"text-foreground font-semibold tabular-nums\">\n                            Aug 21, 2026 &bull; 09:30 EDT\n                          </span>\n                        </p>\n                        <p className=\"flex justify-between\">\n                          <span>Certificate ID:</span>\n                          <span className=\"text-foreground font-semibold\">DS-CERT-UIPKGE-9941</span>\n                        </p>\n                      </div>\n                    </div>\n\n                    {/* Receiving Party Signature Block */}\n                    <div\n                      className={cn(\n                        'rounded-lg border p-4 transition-colors duration-200',\n                        isSigned ? 'border-success/40 bg-success/5' : 'border-border bg-muted/10 border-dashed',\n                      )}\n                    >\n                      <div className=\"flex items-center justify-between\">\n                        <p className=\"text-foreground text-xs font-medium\">Receiving Party Signature</p>\n                        {isSigned ? (\n                          <Badge className=\"border-success/40 bg-success/10 text-success font-mono text-xs font-medium\">\n                            <Check className=\"mr-1 size-3\" /> Signed &amp; Bound\n                          </Badge>\n                        ) : (\n                          <Badge className=\"border-warning/40 bg-warning/10 text-warning font-mono text-xs font-medium\">\n                            Awaiting Signature\n                          </Badge>\n                        )}\n                      </div>\n\n                      <div\n                        className={cn(\n                          'my-3 rounded-md border p-3 text-center transition-colors',\n                          isSigned\n                            ? 'bg-card border-success/40'\n                            : 'border-muted-foreground/30 bg-muted/20 border-dashed',\n                        )}\n                      >\n                        {isSigned ? (\n                          <>\n                            <p\n                              className={cn(\n                                'text-success text-xl font-medium tracking-wide',\n                                signatureFont === 'serif' && 'font-medium tracking-wide italic',\n                                signatureFont === 'script' && 'font-medium tracking-widest italic',\n                                signatureFont === 'sans' && 'font-semibold tracking-tight',\n                              )}\n                            >\n                              {signerName || receivingSignatory}\n                            </p>\n                            <p className=\"text-muted-foreground mt-0.5 font-mono text-xs\">\n                              {receivingTitle} &bull; {receivingCompany}\n                            </p>\n                          </>\n                        ) : (\n                          <>\n                            <p className=\"text-muted-foreground text-xs italic\">\n                              Awaiting signature execution via left panel\n                            </p>\n                            <p className=\"text-muted-foreground/80 mt-1 text-xs\">\n                              Click &ldquo;Sign &amp; Execute Agreement&rdquo; to bind {receivingCompany}\n                            </p>\n                          </>\n                        )}\n                      </div>\n\n                      <div className=\"text-muted-foreground space-y-1 font-mono text-xs\">\n                        <p className=\"flex justify-between\">\n                          <span>Date Executed:</span>\n                          <span className=\"text-foreground font-semibold tabular-nums\">\n                            {isSigned ? 'Aug 21, 2026 • 11:20 EDT' : 'Pending'}\n                          </span>\n                        </p>\n                        <p className=\"flex justify-between\">\n                          <span>Digital Audit Hash:</span>\n                          <span className=\"text-foreground font-semibold\">\n                            {isSigned ? 'SHA256:d91c7a...77a1' : 'Unsigned'}\n                          </span>\n                        </p>\n                      </div>\n                    </div>\n                  </div>\n                </section>\n\n                {/* Parchment Footer Seal */}\n                <div className=\"border-border/60 bg-muted/20 flex flex-col items-center justify-between gap-2 rounded-lg border p-3 text-xs sm:flex-row\">\n                  <div className=\"text-muted-foreground flex items-center gap-2 font-mono text-xs\">\n                    <ShieldCheck className=\"text-success size-4\" />\n                    <span>256-Bit Cryptographic Ledger Seal &bull; RFC 3161 Authenticated</span>\n                  </div>\n                  <span className=\"text-muted-foreground font-mono text-xs\">\n                    Doc ID: #NDA-2026-88F-{currentJurisdiction.tag}\n                  </span>\n                </div>\n              </div>\n            </div>\n          </main>\n        </div>\n      </div>\n    </div>\n  )\n}\n",
      "type": "registry:block",
      "target": "~/components/blocks/NdaAgreementGenerator.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/input.json",
    "https://uipkge.dev/r/react/select.json",
    "https://uipkge.dev/r/react/separator.json",
    "https://uipkge.dev/r/react/switch.json"
  ],
  "description": "Interactive Non-Disclosure Agreement (NDA) generator and contract customizer with bilateral/unilateral modes, customizable legal covenants, real-time contract parchment preview, and e-signature execution workflow.",
  "categories": [
    "legal",
    "finance",
    "app"
  ]
}