/* Custom styles - extend as needed */
* {
  transition: all 0.2s ease;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

body {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1e293b;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Plus Jakarta Sans", "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

code, pre, .font-mono {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

button {cursor:pointer}

.font-urbanist {
  font-family: "Urbanist", sans-serif;
}

.text-balance {
  text-wrap: balance;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-gradient {
  background: radial-gradient(circle at top right, #3b82f620, transparent),
              radial-gradient(circle at bottom left, #0ea5e910, transparent);
}

.mask-fade-bottom {
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.card-hover-effect {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.card-hover-effect:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

input::placeholder {
  color: #94a3b8;
}

@media (max-width: 768px) {
  .text-balance {
    text-wrap: wrap;
  }
}

.text-white {color:#fff !important}