/* Smooth scrolling & clean scrollbar */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  color: #1e293b;
  /* Slate 800 */
}

/* Blue Glow */
.hero-glow {
  background: radial-gradient(
    circle at 50% 0%,
    rgba(59, 130, 246, 0.15) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  pointer-events: none;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

/* Bento Card Styles */
.bento-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -15px rgba(37, 99, 238, 0.1);
  border-color: #93c5fd;
}

.btn-shimmer {
  background: linear-gradient(110deg, #2563ee 8%, #2563ee 18%, #2563ee 33%);
  background-size: 200% 100%;
  animation: 4s shimmer linear infinite;
}

.text-gradient {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.debug-icon {
  display: none;
}
