/* Central Rewards Club — design tokens (from blueprint design system) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,500;1,600&display=swap');

:root {
  /* Brand */
  --crc-primary: #7A1F2B;      /* Deep Burgundy */
  --crc-primary-dark: #4D1019; /* Burgundy 900 */
  --crc-primary-soft: #F3E7E9;
  --crc-gold: #C9A961;         /* Gold accent */
  --crc-gold-deep: #A8863C;
  --crc-gold-soft: #F6EFDD;
  --crc-coral: #FF6B5B;        /* Promotions / social */
  --crc-coral-soft: #FFE9E6;

  /* Semantic */
  --crc-success: #2E8B57;
  --crc-success-soft: #E4F2EA;
  --crc-warning: #E6A817;
  --crc-warning-soft: #FBF1D9;
  --crc-error: #D32F2F;
  --crc-info: #1976D2;

  /* Neutrals */
  --crc-ink: #1A1A1A;
  --crc-ink-2: #6B6B6B;
  --crc-line: #E5E5E5;
  --crc-line-soft: #EFEFEF;
  --crc-bg: #FAFAFA;
  --crc-surface: #FFFFFF;

  /* Tier accents (overridden per tier at runtime) */
  --crc-tier: #C9A961;
  --crc-tier-deep: #A8863C;

  /* Type */
  --crc-font: 'Inter', -apple-system, system-ui, sans-serif;
  --crc-display: 'Playfair Display', Georgia, serif;

  /* Radii */
  --crc-r-sm: 8px;
  --crc-r-md: 12px;
  --crc-r-lg: 16px;
  --crc-r-xl: 24px;

  /* Elevation */
  --crc-sh-sm: 0 1px 2px rgba(26,26,26,0.06), 0 1px 3px rgba(26,26,26,0.05);
  --crc-sh-md: 0 4px 12px rgba(26,26,26,0.08), 0 2px 4px rgba(26,26,26,0.04);
  --crc-sh-lg: 0 16px 40px rgba(26,26,26,0.16);
  --crc-sh-brand: 0 10px 30px rgba(122,31,43,0.28);
}

* { -webkit-tap-highlight-color: transparent; }

.crc-app {
  font-family: var(--crc-font);
  color: var(--crc-ink);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  height: 100%;
  background: var(--crc-bg);
}
.crc-app *::-webkit-scrollbar { width: 0; height: 0; }

.crc-display { font-family: var(--crc-display); letter-spacing: -0.01em; }

@keyframes crc-rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes crc-pop { 0% { transform: scale(.85); opacity: 0; } 60% { transform: scale(1.04); } 100% { transform: scale(1); opacity: 1; } }
@keyframes crc-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes crc-sheet-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes crc-spin { to { transform: rotate(360deg); } }
@keyframes crc-confetti { 0% { transform: translateY(0) rotate(0); opacity: 1; } 100% { transform: translateY(420px) rotate(620deg); opacity: 0; } }
@keyframes crc-shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes crc-scan { 0% { top: 14%; } 50% { top: 80%; } 100% { top: 14%; } }
@keyframes crc-slide-in { from { transform: translateX(100%); } to { transform: translateX(0); } }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; }
}
