html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: #ffffff;
  color: #1e293b;
}

.neon-glow {
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
}

.bg-gradient-hero {
  background:
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.05), transparent),
    radial-gradient(
      circle at bottom left,
      rgba(13, 166, 242, 0.05),
      transparent
    );
}

/* Tech icons */
.tech-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.tech-icon-wrapper:hover {
  transform: translateY(-4px);
}

.tech-icon-wrapper:hover .tech-icon-bg {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.tech-icon-bg {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.3s ease;
}

.tech-label {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.04em;
}

/* Step cards */
.step-card {
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* FAQ accordion */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-content.open {
  max-height: 200px;
}

.faq-chevron {
  transition: transform 0.3s ease;
}

.faq-chevron.open {
  transform: rotate(180deg);
}

/* Avatar glow */
.avatar-glow {
  box-shadow:
    0 0 0 4px rgba(13, 166, 242, 0.15),
    0 0 0 8px rgba(13, 166, 242, 0.07);
}
