/* SmartLittleBoxes Landing Page — Custom Styles */

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #818cf8 0%, #6366f1 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Primary button */
.btn-primary {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: white;
  transition: all 0.2s ease;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #818cf8, #6366f1);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.4);
}

/* Secondary button */
.btn-secondary {
  background: transparent;
  color: #d1d5db;
  border: 1px solid #374151;
  transition: all 0.2s ease;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: #6366f1;
  color: white;
  background: rgba(99, 102, 241, 0.08);
}

/* Social login buttons */
.btn-social {
  background: rgba(31, 41, 55, 0.8);
  border: 1px solid rgba(75, 85, 99, 0.6);
  color: #e5e7eb;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-social:hover {
  background: rgba(55, 65, 81, 0.9);
  border-color: rgba(99, 102, 241, 0.5);
  transform: translateY(-1px);
}

/* Code block styling */
.code-block {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(55, 65, 81, 0.5);
  line-height: 1.7;
}

/* Demo window */
.demo-window {
  background: #111827;
}

/* Nav scrolled state */
.nav.scrolled {
  background: rgba(3, 7, 18, 0.95);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Hero section gradient background */
.hero {
  background: radial-gradient(
    ellipse 80% 50% at 50% -10%,
    rgba(99, 102, 241, 0.12) 0%,
    transparent 60%
  );
}

/* Step connector alignment */
.steps-container .step-connector {
  padding-left: 1.5rem;
}

/* Responsive nav: hide links on small screens */
@media (max-width: 768px) {
  .nav .hidden {
    display: none;
  }
}

/* Card hover effects */
.feature-card,
.use-case-card,
.access-card {
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.feature-card:hover,
.use-case-card:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.4);
}
