@import url('https://fonts.googleapis.com/css2?family=Clash+Display:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --brand-primary: #f59e0b;
  --brand-ink: #0f172a;
  --brand-soft: #f8fafc;
}

body {
  font-family: 'Manrope', sans-serif;
}

.font-display {
  font-family: 'Clash Display', sans-serif;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(to right, rgba(15,23,42,0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(15,23,42,0.03) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero-panel {
  background: radial-gradient(circle at top left, #fde68a, #fff7ed 45%, #ffffff 100%);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.lux-hero {
  background: linear-gradient(135deg, #9f1239 0%, #be185d 45%, #f59e0b 100%);
}

.animate-rise {
  animation: rise 360ms ease both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kpi-card {
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 1rem;
  padding: 1.1rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.sparkline {
  margin-top: 0.75rem;
  width: 100%;
  height: 34px;
}

.sparkline polyline {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  background: #ffffff;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.category-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

.payment-pill {
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  padding: 0.3rem 0.65rem;
  font-size: 0.72rem;
  color: #334155;
}

.pricing-card {
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 1.25rem;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
}

.pricing-card.featured {
  background: linear-gradient(165deg, #fff7ed 0%, #ffffff 55%, #fef3c7 100%);
  border-color: #f59e0b;
}

.assistant-box {
  border-radius: 1rem;
  border: 1px solid #dbeafe;
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
}

.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  border-radius: 0.9rem;
  border: 1px dashed #cbd5e1;
  background: #ffffff;
}

.marquee-track {
  display: inline-block;
  min-width: 100%;
  padding: 0.7rem 0;
  animation: ticker 24s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.store-card-float {
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.store-card-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 25px rgba(15, 23, 42, 0.12);
}

.theme-swatch {
  height: 1rem;
  width: 1rem;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
}

.chat-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  border: 1px solid #cbd5e1;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.18);
}

.theme-preview {
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
