/* Matches app/globals.css custom layers (Tailwind utilities via CDN) */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  letter-spacing: 0.02em;
}

.space-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
}

.space-card:hover {
  border-color: rgba(255, 160, 60, 0.25);
}

.glow-orange {
  box-shadow: 0 0 40px rgba(255, 140, 40, 0.15);
}

.gradient-text {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #f97316;
  border-radius: 3px;
}

::selection {
  background: #f97316;
  color: black;
}

/* Marquee — Framer duration 25s linear infinite x */
@keyframes marquee-x-l {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-x-r {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.marquee-track-l {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee-x-l 25s linear infinite;
}

@media (min-width: 768px) {
  .marquee-track-l {
    gap: 2.5rem;
  }
}

.marquee-track-r {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee-x-r 25s linear infinite;
}

@media (min-width: 768px) {
  .marquee-track-r {
    gap: 2.5rem;
  }
}

/* FAQ answer expand — mirrors Framer height 0.2s */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s ease, opacity 0.2s ease;
  opacity: 0;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
}

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

/* Lucide-style stroke icons (match default 24 viewBox, stroke-2) */
.icon-sprite {
  display: block;
  flex-shrink: 0;
}
