{
  "$schema": "https://ui.shadcn.com/schema/registry-item.json",
  "name": "bonuses-incentives-card",
  "title": "Bonuses incentives card",
  "description": "Bonuses incentives card is a production-ready cards component from BJORK UI, packaged for shadcn registries.",
  "dependencies": [
    "class-variance-authority",
    "clsx",
    "framer-motion",
    "tailwind-merge",
    "web-haptics"
  ],
  "files": [
    {
      "path": "components/bjork-ui/cards/bonuses-incentives-card.tsx",
      "content": "\"use client\";\n\nimport { motion, useReducedMotion } from \"framer-motion\";\nimport { cn } from \"@/lib/utils\";\nimport { BjorkButton } from \"@/components/bjork-ui/primitives/button\";\n\ninterface BonusesIncentivesCardProps {\n  // Content\n  bonusText?: string;\n  incentivesText?: string;\n  bonusesValue?: number;\n  incentivesValue?: number;\n\n  // Styling\n  borderColor?: string;\n  backgroundColor?: string;\n  blurColorBlue?: string;\n  blurColorGreen?: string;\n\n  // Dots configuration\n  outerDotsCount?: number;\n  innerDotsCount?: number;\n\n  // Animation controls\n  enableAnimations?: boolean;\n\n  // Callbacks\n  onMoreDetails?: () => void;\n}\n\nconst defaultProps: Partial<BonusesIncentivesCardProps> = {\n  bonusText: \"Bonus and Incentives\",\n  incentivesText: \"Incentives\",\n  bonusesValue: 1250,\n  incentivesValue: 875,\n  borderColor: \"border-[#d8d3c7] dark:border-[#161616]\",\n  backgroundColor: \"bg-[#f4f1e9] dark:bg-[#121212]\",\n  blurColorBlue: \"bg-[#ec5c13]/10\",\n  blurColorGreen: \"bg-[#8a7a60]/10\",\n  outerDotsCount: 48,\n  innerDotsCount: 36,\n  enableAnimations: true,\n};\n\nexport function BonusesIncentivesCard(props: BonusesIncentivesCardProps) {\n  const {\n    bonusesValue,\n    incentivesValue,\n    borderColor,\n    backgroundColor,\n    outerDotsCount,\n    innerDotsCount,\n    enableAnimations,\n    onMoreDetails,\n  } = { ...defaultProps, ...props };\n\n  const shouldReduceMotion = useReducedMotion();\n  const shouldAnimate = enableAnimations && !shouldReduceMotion;\n\n  // Generate circular dots positions\n  const generateDots = (count: number, radius: number, centerX: number, centerY: number) => {\n    const dots = [];\n    for (let i = 0; i < count; i++) {\n      const angle = (i / count) * 2 * Math.PI;\n      const x = Math.round((centerX + radius * Math.cos(angle)) * 1000) / 1000;\n      const y = Math.round((centerY + radius * Math.sin(angle)) * 1000) / 1000;\n      dots.push({ x, y, angle, delay: i * 0.02 });\n    }\n    return dots;\n  };\n\n  const outerDots = generateDots(outerDotsCount!, 185, 203, 200);\n  const innerDots = generateDots(innerDotsCount!, 155, 203, 200);\n\n  // Animation variants\n  const containerVariants = {\n    hidden: {\n      opacity: 0,\n      y: 20,\n      scale: 0.95\n    },\n    visible: {\n      opacity: 1,\n      y: 0,\n      scale: 1,\n      transition: {\n        type: \"spring\",\n        stiffness: 300,\n        damping: 30,\n        staggerChildren: 0.08,\n        delayChildren: 0.1,\n      }\n    }\n  };\n\n  const dotVariants = {\n    hidden: {\n      opacity: 0,\n      scale: 0,\n    },\n    visible: {\n      opacity: 0.6,\n      scale: 1,\n      transition: {\n        duration: 0.5,\n        ease: \"easeOut\",\n      }\n    }\n  };\n\n\n  return (\n    <motion.div\n      className=\"w-full max-w-md\"\n      initial={false}\n      animate=\"visible\"\n      variants={shouldAnimate ? containerVariants : {}}\n    >\n      <motion.div\n        className={cn(\n          backgroundColor,\n          borderColor,\n          \"overflow-hidden rounded-[20px] border text-[#171717] shadow-[inset_0_7px_14px_rgba(255,255,255,0.62),inset_0_0.5px_0.5px_rgba(255,255,255,0.9),0_18px_34px_-16px_rgba(55,47,36,0.28)] dark:text-[#ededed] dark:shadow-[inset_0_7px_14px_rgba(255,255,255,0.03),inset_0_0.5px_0.5px_rgba(255,255,255,0.06),0_18px_34px_-16px_rgba(0,0,0,0.9)]\"\n        )}\n      >\n\n        {/* Middle Section - Dots */}\n        <div className=\"relative pl-4 pr-8 pb-4 pt-8 overflow-hidden\">\n          {/* Blur backgrounds */}\n          <div className={cn(\"absolute inset-0 rounded-lg backdrop-blur-[2px]\", backgroundColor)} />\n\n          {/* Dots Container */}\n          <div className=\"relative w-[28rem] h-[28rem] mx-auto\">\n            <svg className=\"w-full h-full\" viewBox=\"0 0 448 448\">\n              {/* Outer dots */}\n              {outerDots.map((dot, index) => (\n                <motion.circle\n                  key={`outer-${index}`}\n                  cx={dot.x}\n                  cy={dot.y}\n                  r=\"10\"\n                  fill=\"currentColor\"\n                  style={{ color: '#ec5c13' }}\n                  variants={shouldAnimate ? dotVariants : {}}\n                  initial={false}\n                  animate=\"visible\"\n                />\n              ))}\n\n              {/* Inner dots */}\n              {innerDots.map((dot, index) => (\n                <motion.circle\n                  key={`inner-${index}`}\n                  cx={dot.x}\n                  cy={dot.y}\n                  r=\"10\"\n                  fill=\"currentColor\"\n                  style={{ color: '#8a7a60' }}\n                  variants={shouldAnimate ? dotVariants : {}}\n                  initial={false}\n                  animate=\"visible\"\n                />\n              ))}\n            </svg>\n\n            {/* Center Text Overlay */}\n            <div className=\"absolute inset-0 flex items-center justify-center pointer-events-none -mt-24 -ml-12\">\n              <div className=\"text-center\" style={{ zIndex: 20 }}>\n                <motion.div \n                  className=\"mb-2 text-xl font-medium text-[#171717]/58 dark:text-[#ededed]/42\"\n                  initial={false}\n                  animate={shouldAnimate ? { opacity: 1, y: 0, scale: 1 } : {}}\n                  transition={{ \n                    delay: 0.3,\n                    type: \"spring\",\n                    stiffness: 400,\n                    damping: 25,\n                    mass: 0.6\n                  }}\n                >\n                  TOTAL\n                </motion.div>\n                <motion.div \n                  className=\"text-5xl font-bold text-[#171717] dark:text-[#ededed]\"\n                  initial={false}\n                  animate={shouldAnimate ? { opacity: 1, y: 0, scale: 1, filter: \"blur(0px)\" } : {}}\n                  transition={{ \n                    delay: 0.5,\n                    type: \"spring\",\n                    stiffness: 300,\n                    damping: 28,\n                    mass: 0.8\n                  }}\n                >\n                  ${(bonusesValue! + incentivesValue!).toLocaleString()}\n                </motion.div>\n              </div>\n            </div>\n          </div>\n\n          {/* Gradient fade overlay for bottom half - covers entire card */}\n          <div\n            className=\"pointer-events-none absolute -inset-4 rounded-xl dark:hidden\"\n            style={{\n              background:\n                \"linear-gradient(to bottom, rgba(244,241,233,0) 0%, rgba(244,241,233,0) 48%, rgba(244,241,233,0.48) 58%, rgba(244,241,233,0.86) 70%, #f4f1e9 86%)\",\n              zIndex: 5,\n            }}\n          />\n          <div\n            className=\"pointer-events-none absolute -inset-4 hidden rounded-xl dark:block\"\n            style={{\n              background:\n                \"linear-gradient(to bottom, rgba(18,18,18,0) 0%, rgba(18,18,18,0) 48%, rgba(18,18,18,0.52) 58%, rgba(18,18,18,0.88) 70%, #121212 86%)\",\n              zIndex: 5,\n            }}\n          />\n\n          {/* Bottom Section */}\n          <div className=\"absolute bottom-0 left-0 right-0 px-6 pb-2 pt-4\" style={{ zIndex: 10 }}>\n          <div className=\"flex items-start justify-between mb-4\">\n            {/* Bonuses Section */}\n            <div className=\"flex flex-col items-center gap-2\">\n              <div className=\"flex items-center gap-2\">\n                <motion.div\n                  className=\"w-0.5 h-4 rounded-full\"\n                  style={{ backgroundColor: '#ec5c13' }}\n                  initial={false}\n                  animate={shouldAnimate ? { opacity: 1, scaleY: 1 } : {}}\n                  transition={{ delay: 0.4, type: \"spring\" }}\n                />\n                <motion.div\n                  className=\"text-sm font-medium text-[#171717]/50 dark:text-[#ededed]/42\"\n                  initial={false}\n                  animate={shouldAnimate ? { opacity: 1, y: 0 } : {}}\n                  transition={{ delay: 0.5 }}\n                >\n                  Bonuses\n                </motion.div>\n              </div>\n              <div className=\"flex flex-col\">\n                <motion.div\n                  className=\"text-left text-xl font-bold text-[#171717] dark:text-[#ededed]\"\n                  initial={false}\n                  animate={shouldAnimate ? { opacity: 1, y: 0 } : {}}\n                  transition={{ delay: 0.6 }}\n                >\n                  ${bonusesValue!.toLocaleString()}\n                </motion.div>\n                <motion.div\n                  className=\"text-xs font-medium text-left\"\n                  style={{ color: '#ec5c13' }}\n                  initial={false}\n                  animate={shouldAnimate ? { opacity: 1, y: 0 } : {}}\n                  transition={{ delay: 0.7 }}\n                >\n                  +15.2%\n                </motion.div>\n              </div>\n            </div>\n\n            {/* Incentives Section */}\n            <div className=\"flex flex-col items-center gap-2 mb-2\">\n              <div className=\"flex items-center gap-2\">\n                <motion.div\n                  className=\"w-0.5 h-4 rounded-full\"\n                  style={{ backgroundColor: '#8a7a60' }}\n                  initial={false}\n                  animate={shouldAnimate ? { opacity: 1, scaleY: 1 } : {}}\n                  transition={{ delay: 0.8, type: \"spring\" }}\n                />\n                <motion.div\n                  className=\"text-sm font-medium text-[#171717]/50 dark:text-[#ededed]/42\"\n                  initial={false}\n                  animate={shouldAnimate ? { opacity: 1, y: 0 } : {}}\n                  transition={{ delay: 0.9 }}\n                >\n                  Incentives\n                </motion.div>\n              </div>\n              <div className=\"flex flex-col\">\n                <motion.div\n                  className=\"text-left text-xl font-bold text-[#171717] dark:text-[#ededed]\"\n                  initial={false}\n                  animate={shouldAnimate ? { opacity: 1, y: 0 } : {}}\n                  transition={{ delay: 1.0 }}\n                >\n                  ${incentivesValue!.toLocaleString()}\n                </motion.div>\n                <motion.div\n                  className=\"text-xs font-medium text-left\"\n                  style={{ color: '#ec5c13' }}\n                  initial={false}\n                  animate={shouldAnimate ? { opacity: 1, y: 0 } : {}}\n                  transition={{ delay: 1.1 }}\n                >\n                  +8.7%\n                </motion.div>\n              </div>\n            </div>\n          </div>\n\n          <BjorkButton\n            variant=\"outline\"\n            className=\"mb-4 w-full\"\n            initial={false}\n            animate={shouldAnimate ? { opacity: 1, y: 0 } : {}}\n            transition={{ delay: 1.1 }}\n            whileHover={shouldAnimate ? { scale: 1.02 } : {}}\n            whileTap={shouldAnimate ? { scale: 0.98 } : {}}\n            onClick={onMoreDetails}\n          >\n            More Details\n          </BjorkButton>\n        </div>\n        </div>\n\n      </motion.div>\n    </motion.div>\n  );\n}\n",
      "type": "registry:component",
      "target": "@components/bjork-ui/cards/bonuses-incentives-card.tsx"
    },
    {
      "path": "lib/utils.ts",
      "content": "import { clsx, type ClassValue } from \"clsx\"\nimport { twMerge } from \"tailwind-merge\"\n\nexport function cn(...inputs: ClassValue[]) {\n  return twMerge(clsx(inputs))\n}\n",
      "type": "registry:lib",
      "target": "@lib/utils.ts"
    },
    {
      "path": "components/bjork-ui/primitives/button.tsx",
      "content": "\"use client\";\n\nimport * as React from \"react\";\nimport { motion, useReducedMotion, type HTMLMotionProps } from \"framer-motion\";\nimport { cva, type VariantProps } from \"class-variance-authority\";\nimport { useWebHaptics } from \"web-haptics/react\";\nimport type { HapticInput, TriggerOptions } from \"web-haptics\";\nimport { cn } from \"@/lib/utils\";\n\nconst bjorkButtonVariants = cva(\n  \"inline-flex shrink-0 transform-gpu items-center justify-center gap-2 whitespace-nowrap rounded-[13px] text-sm font-medium tracking-[-0.01em] outline-none backdrop-blur-md transition-[background-color,border-color,color,box-shadow,opacity] duration-150 ease-out focus-visible:ring-2 focus-visible:ring-[#ec5c13]/45 focus-visible:ring-offset-2 focus-visible:ring-offset-[var(--bjork-ring-offset)] disabled:pointer-events-none disabled:opacity-35 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0\",\n  {\n    variants: {\n      variant: {\n        default:\n          \"border border-transparent bg-[var(--bjork-field)] text-[color:var(--bjork-text)] shadow-[var(--bjork-shadow-surface)] hover:bg-[var(--bjork-surface-hover)]\",\n        secondary:\n          \"border border-[color:var(--bjork-border)] bg-[var(--bjork-surface-active)] text-[color:var(--bjork-text)] shadow-[var(--bjork-shadow-soft)] hover:bg-[var(--bjork-surface-hover)]\",\n        outline:\n          \"border border-[color:var(--bjork-border)] bg-[var(--bjork-field-inset)] text-[color:var(--bjork-text-strong)] shadow-[var(--bjork-shadow-soft)] hover:border-[color:var(--bjork-border-strong)] hover:bg-[var(--bjork-surface)] hover:text-[color:var(--bjork-text)]\",\n        ghost:\n          \"border border-transparent bg-transparent text-[color:var(--bjork-text-muted)] hover:bg-[var(--bjork-surface-hover)] hover:text-[color:var(--bjork-text)]\",\n        quiet:\n          \"border border-transparent bg-[var(--bjork-field-muted)] text-[color:var(--bjork-text-soft)] hover:bg-[var(--bjork-surface-hover)] hover:text-[color:var(--bjork-text-medium)]\",\n        accent:\n          \"bjork-layered-button-accent tracking-tight text-white\",\n        raised:\n          \"bjork-layered-button-raised tracking-tight\",\n      },\n      size: {\n        sm: \"h-8 px-3 text-xs\",\n        md: \"h-[45px] px-4\",\n        lg: \"h-12 px-5 text-[15px]\",\n        icon: \"size-[45px] p-0\",\n      },\n    },\n    defaultVariants: {\n      variant: \"default\",\n      size: \"md\",\n    },\n  },\n);\n\nexport interface BjorkButtonProps\n  extends Omit<HTMLMotionProps<\"button\">, \"ref\" | \"size\">,\n    VariantProps<typeof bjorkButtonVariants> {\n  haptics?: boolean;\n  hapticPattern?: HapticInput;\n  hapticOptions?: TriggerOptions;\n}\n\nexport function BjorkButton({\n  className,\n  variant,\n  size,\n  disabled,\n  haptics = true,\n  hapticPattern = \"light\",\n  hapticOptions,\n  onPointerDown,\n  ...props\n}: BjorkButtonProps) {\n  const shouldReduceMotion = useReducedMotion();\n  const { trigger } = useWebHaptics();\n\n  const handlePointerDown = React.useCallback(\n    (event: React.PointerEvent<HTMLButtonElement>) => {\n      if (!disabled && haptics) {\n        void trigger(hapticPattern, hapticOptions);\n      }\n\n      onPointerDown?.(event);\n    },\n    [disabled, hapticOptions, hapticPattern, haptics, onPointerDown, trigger],\n  );\n\n  return (\n    <motion.button\n      data-slot=\"bjork-button\"\n      className={cn(bjorkButtonVariants({ variant, size, className }))}\n      disabled={disabled}\n      onPointerDown={handlePointerDown}\n      whileHover={disabled || shouldReduceMotion ? undefined : { scale: 1.05 }}\n      whileTap={disabled || shouldReduceMotion ? undefined : { scale: 0.95 }}\n      transition={{ type: \"spring\", stiffness: 400, damping: 25 }}\n      {...props}\n    />\n  );\n}\n\nexport { bjorkButtonVariants };\n",
      "type": "registry:component",
      "target": "@components/bjork-ui/primitives/button.tsx"
    }
  ],
  "cssVars": {
    "light": {
      "bjork-bg": "#f7f3ea",
      "bjork-surface": "#fffcf6",
      "bjork-surface-muted": "rgba(250, 246, 237, 0.94)",
      "bjork-surface-hover": "#f5efe3",
      "bjork-surface-active": "#efe7d8",
      "bjork-panel": "#f8f2e7",
      "bjork-menu": "rgba(255, 252, 246, 0.98)",
      "bjork-field": "rgba(255, 252, 246, 0.96)",
      "bjork-field-muted": "rgba(248, 242, 231, 0.82)",
      "bjork-field-inset": "rgba(239, 231, 216, 0.72)",
      "bjork-error-bg": "#fff0e8",
      "bjork-text": "#171717",
      "bjork-text-strong": "rgba(23, 23, 23, 0.9)",
      "bjork-text-medium": "rgba(23, 23, 23, 0.72)",
      "bjork-text-muted": "rgba(23, 23, 23, 0.52)",
      "bjork-text-soft": "rgba(23, 23, 23, 0.36)",
      "bjork-text-faint": "rgba(23, 23, 23, 0.22)",
      "bjork-inverted-text": "#fff8f0",
      "bjork-border": "#eee6db",
      "bjork-border-muted": "#f5ede2",
      "bjork-border-strong": "#e1d7c8",
      "bjork-thumb": "#a49b8e",
      "bjork-track": "#ded6ca",
      "bjork-accent": "#ec7d43",
      "bjork-accent-hover": "#f0935f",
      "bjork-accent-soft": "rgba(236, 125, 67, 0.1)",
      "bjork-accent-muted": "rgba(236, 125, 67, 0.2)",
      "bjork-accent-badge": "rgba(236, 125, 67, 0.16)",
      "bjork-accent-badge-foreground": "#8d421d",
      "bjork-accent-foreground": "#3f2112",
      "bjork-shadow-surface": "inset 0 7px 14px rgba(88, 72, 49, 0.045), inset 0 0.5px 0.5px rgba(255, 255, 255, 0.92), inset 1px 0 0 rgba(88, 72, 49, 0.026), inset -1px 0 0 rgba(255, 255, 255, 0.68), 0 14px 22px -9px rgba(66, 52, 33, 0.11)",
      "bjork-shadow-soft": "inset 0 1px 0 rgba(88, 72, 49, 0.045), inset 0 0.5px 0.5px rgba(255, 255, 255, 0.86)",
      "bjork-shadow-panel": "inset 0 1px 0 rgba(88, 72, 49, 0.04), inset 1px 0 0 rgba(88, 72, 49, 0.024), inset -1px 0 0 rgba(255, 255, 255, 0.64), 0 18px 38px -30px rgba(66, 52, 33, 0.2)",
      "bjork-shadow-menu": "inset 0 1px 0 rgba(88, 72, 49, 0.04), inset 0 12px 24px rgba(88, 72, 49, 0.022), inset 1px 0 0 rgba(88, 72, 49, 0.024), inset -1px 0 0 rgba(255, 255, 255, 0.62), 0 22px 44px -26px rgba(66, 52, 33, 0.22)",
      "bjork-shadow-inset": "inset 0 1px 10px rgba(88, 72, 49, 0.12), inset 0 0.5px 0.5px rgba(255, 255, 255, 0.72)",
      "bjork-ring-offset": "#f7f3ea"
    },
    "dark": {
      "bjork-bg": "#111111",
      "bjork-surface": "#121212",
      "bjork-surface-muted": "rgba(22, 22, 22, 0.92)",
      "bjork-surface-hover": "#161616",
      "bjork-surface-active": "#202020",
      "bjork-panel": "#0d0d0d",
      "bjork-menu": "rgba(18, 18, 18, 0.98)",
      "bjork-field": "rgba(18, 18, 18, 0.95)",
      "bjork-field-muted": "rgba(18, 18, 18, 0.55)",
      "bjork-field-inset": "rgba(9, 9, 9, 0.75)",
      "bjork-error-bg": "#130d0a",
      "bjork-text": "#ededed",
      "bjork-text-strong": "rgba(237, 237, 237, 0.9)",
      "bjork-text-medium": "rgba(237, 237, 237, 0.72)",
      "bjork-text-muted": "rgba(237, 237, 237, 0.52)",
      "bjork-text-soft": "rgba(237, 237, 237, 0.36)",
      "bjork-text-faint": "rgba(237, 237, 237, 0.22)",
      "bjork-inverted-text": "#080808",
      "bjork-border": "#232323",
      "bjork-border-muted": "#1c1c1c",
      "bjork-border-strong": "#343434",
      "bjork-thumb": "#626262",
      "bjork-track": "#090909",
      "bjork-accent": "#ec5c13",
      "bjork-accent-hover": "#f07832",
      "bjork-accent-soft": "rgba(236, 92, 19, 0.12)",
      "bjork-accent-muted": "rgba(236, 92, 19, 0.24)",
      "bjork-accent-badge": "#ec5c13",
      "bjork-accent-badge-foreground": "#fff2ea",
      "bjork-accent-foreground": "#fff2ea",
      "bjork-shadow-surface": "inset 0 7px 14px rgba(255, 255, 255, 0.03), inset 0 0.5px 0.5px rgba(255, 255, 255, 0.06), 0 14px 20px -6px rgba(0, 0, 0, 0.45)",
      "bjork-shadow-soft": "inset 0 1px 0 rgba(255, 255, 255, 0.045)",
      "bjork-shadow-panel": "inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 18px 36px -28px rgba(0, 0, 0, 0.9)",
      "bjork-shadow-menu": "inset 0 1px 0 rgba(255, 255, 255, 0.055), inset 0 12px 24px rgba(255, 255, 255, 0.018), inset 0 -18px 26px rgba(0, 0, 0, 0.24), 0 22px 42px -22px rgba(0, 0, 0, 0.9)",
      "bjork-shadow-inset": "inset 0 1px 10px rgba(0, 0, 0, 0.45)",
      "bjork-ring-offset": "#080808"
    }
  },
  "css": {
    ".bjork-range": {
      "box-shadow": "inset 0 1px 1px rgba(255, 255, 255, 0.04), 0 0 14px rgba(189, 69, 20, 0.06)"
    },
    ".bjork-range::-webkit-slider-thumb": {
      "appearance": "none",
      "width": "16px",
      "height": "8px",
      "border": "0",
      "border-radius": "999px",
      "background": "var(--bjork-thumb)",
      "box-shadow": "inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.42)"
    },
    ".bjork-range::-moz-range-thumb": {
      "width": "16px",
      "height": "8px",
      "border": "0",
      "border-radius": "999px",
      "background": "var(--bjork-thumb)",
      "box-shadow": "inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.42)"
    },
    ".bjork-layered-button-accent, .bjork-layered-button-raised": {
      "position": "relative",
      "isolation": "isolate",
      "appearance": "none",
      "overflow": "hidden",
      "border": "0",
      "border-radius": "13px",
      "box-shadow": "inset 0 1px 0 #ffffff38, 0 4px 6px -1px #0000001a, 0 2px 4px -2px #0000001a",
      "transition": "filter 150ms ease-out, box-shadow 150ms ease-out"
    },
    ".bjork-layered-button-accent::after, .bjork-layered-button-raised::after": {
      "position": "absolute",
      "inset": "0",
      "pointer-events": "none",
      "content": "\"\"",
      "border": "1.5px solid transparent",
      "border-radius": "inherit",
      "background": "linear-gradient(#ffffffb8, #0000003d 41% 75%, #ffffff47) border-box",
      "mix-blend-mode": "overlay",
      "-webkit-mask-image": "linear-gradient(#000, #000), linear-gradient(#000, #000)",
      "mask-image": "linear-gradient(#000, #000), linear-gradient(#000, #000)",
      "-webkit-mask-clip": "padding-box, border-box",
      "mask-clip": "padding-box, border-box",
      "-webkit-mask-origin": "padding-box, border-box",
      "mask-origin": "padding-box, border-box",
      "-webkit-mask-composite": "xor",
      "mask-composite": "exclude"
    },
    ".bjork-layered-button-accent": {
      "color": "oklch(100% 0 0)",
      "text-shadow": "0 -1px #00000040",
      "background": "radial-gradient(ellipse at -20px top, rgba(255, 255, 255, 0.14), transparent), linear-gradient(180deg, #ec5c13 0%, #ec5c13 62%, color-mix(in oklab, #ec5c13 84%, black 16%) 100%)"
    },
    ".bjork-layered-button-raised": {
      "color": "oklch(100% 0 0)",
      "text-shadow": "0 -1px #00000026",
      "background": "radial-gradient(ellipse at -20px top, #ffffff38, #fff0), linear-gradient(180deg, oklch(0.1881 0.006 265), oklch(0.5493 0.0081 265))"
    },
    ".dark .bjork-layered-button-raised": {
      "color": "oklch(0.2574 0.0056 265)",
      "text-shadow": "0 -1px #00000026",
      "background": "radial-gradient(ellipse at -20px top, #ffffff38, #fff0), linear-gradient(180deg, color-mix(in oklab, oklch(0.9674 0.0013 265) 80%, oklch(0.2574 0.0056 265) 20%), color-mix(in oklab, oklch(0.669 0.0107 265) 80%, oklch(0.2574 0.0056 265) 20%))"
    },
    "@media (hover: hover)": {
      ".bjork-layered-button-accent:hover": {
        "filter": "brightness(1.08) saturate(1.04)"
      },
      ".bjork-layered-button-raised:hover": {
        "filter": "brightness(1.08) contrast(0.9)"
      }
    }
  },
  "meta": {
    "collection": "Cards",
    "registryUrl": "https://ui.isaiahbjork.com/bonuses-incentives-card.json",
    "installCommand": "npx shadcn@latest add https://ui.isaiahbjork.com/bonuses-incentives-card.json"
  },
  "type": "registry:component"
}