/* Scalper Pro — custom CSS (minimal; Tailwind handles the rest) */

/* Subtle grid overlay for hero section */
.hero-grid {
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* FAQ accordion: hide default arrow (WebKit) */
details > summary::-webkit-details-marker {
  display: none;
}
details > summary {
  marker: none;
}

/* Smooth open/close for FAQ panels */
details[open] summary {
  border-bottom: 1px solid rgb(30 41 59); /* slate-800 */
}

/* Prevent FOUC on Tailwind CDN */
html {
  visibility: visible;
}
