/**
 * Marketing icon tier convention.
 * Use these configs to ensure consistent sizing, stroke weight, and color
 * across all marketing surfaces — hero, section headers, and inline body.
 */

export const iconTiers = {
  hero: {
    size: 28,
    strokeWidth: 2.5,
    className: 'text-primary',
  },
  section: {
    size: 22,
    strokeWidth: 2,
    className: 'text-primary',
  },
  inline: {
    size: 16,
    strokeWidth: 1.5,
    className: 'text-muted-foreground',
  },
} as const;

export type IconTier = keyof typeof iconTiers;
