body {
  background: radial-gradient(1200px 800px at 20% 10%, rgba(236, 72, 153, 0.12), transparent 60%),
    radial-gradient(1100px 700px at 90% 0%, rgba(99, 102, 241, 0.14), transparent 55%),
    radial-gradient(900px 700px at 60% 95%, rgba(16, 185, 129, 0.10), transparent 50%),
    #ffffff;
}

.navbar {
  backdrop-filter: blur(10px);
}

.bg-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #fff1f2, #f5f3ff);
}

.bg-hero::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(1200px 500px at 10% 20%, rgba(236, 72, 153, 0.25), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(99, 102, 241, 0.28), transparent 55%),
    radial-gradient(800px 500px at 50% 95%, rgba(16, 185, 129, 0.18), transparent 55%);
  filter: blur(0px);
  opacity: 0.9;
  pointer-events: none;
}

.bg-hero::after {
  content: "";
  position: absolute;
  width: 1200px;
  height: 1200px;
  left: -520px;
  top: -680px;
  background: conic-gradient(from 90deg, rgba(236, 72, 153, 0.25), rgba(99, 102, 241, 0.18), rgba(16, 185, 129, 0.18), rgba(236, 72, 153, 0.25));
  filter: blur(18px);
  opacity: 0.55;
  animation: floatSpin 18s linear infinite;
  pointer-events: none;
}

@keyframes floatSpin {
  0% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(60px, 40px, 0) rotate(180deg); }
  100% { transform: translate3d(0, 0, 0) rotate(360deg); }
}

.card-link {
  text-decoration: none;
  color: inherit;
}

.card-link:hover {
  color: inherit;
}

.card-float {
  transition: transform 220ms ease, box-shadow 220ms ease;
  border: 0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.card-float:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.badge-soft {
  background: rgba(99, 102, 241, 0.12);
  color: #3730a3;
}

.btn {
  border-radius: 999px;
}

.btn-primary {
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
  border: none;
}

.btn-primary:hover {
  filter: brightness(0.98);
}

.btn-outline-primary {
  border-color: rgba(79, 70, 229, 0.35);
}

.section-title {
  letter-spacing: -0.02em;
}

.hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
  transform: translateZ(0);
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
  transition: transform 700ms ease;
}

.hero-media:hover img {
  transform: scale(1.08);
}

.hero-media .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(2, 6, 23, 0.12), rgba(2, 6, 23, 0.00));
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(10px);
}

.icon-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ec4899, #6366f1);
  box-shadow: 0 0 0 6px rgba(236, 72, 153, 0.10);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 550ms ease, transform 550ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.img-tile {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
}

.img-tile img {
  width: 100%;
  height: auto;
  display: block;
}

.cat-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.cat-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

.cat-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(2, 6, 23, 0.20), rgba(2, 6, 23, 0.00) 60%);
}

.cat-card .content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: #fff;
}

.cat-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.vendor-card {
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

.vendor-title {
  line-height: 1.15;
}

.vendor-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vendor-avatar {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
}

.vendor-initials {
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, 0.92);
  z-index: 1;
}

.vendor-icon {
  position: absolute;
  right: -8px;
  bottom: -8px;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.55);
  transform: rotate(-10deg);
}

.vendor-dot {
  width: 4px;
  height: 4px;
  border-radius: 99px;
  background: rgba(15, 23, 42, 0.35);
  display: inline-block;
}

.vendor-actions .btn {
  border-radius: 14px;
}

.tone-rose { background: linear-gradient(135deg, #fb7185, #ec4899); }
.tone-violet { background: linear-gradient(135deg, #a78bfa, #6366f1); }
.tone-amber { background: linear-gradient(135deg, #fbbf24, #fb7185); }
.tone-sky { background: linear-gradient(135deg, #38bdf8, #6366f1); }
.tone-emerald { background: linear-gradient(135deg, #34d399, #22c55e); }
.tone-pink { background: linear-gradient(135deg, #f472b6, #fb7185); }
.tone-indigo { background: linear-gradient(135deg, #818cf8, #0ea5e9); }
.tone-slate { background: linear-gradient(135deg, #94a3b8, #64748b); }

