@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes parallaxFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulseBlue {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 170, 255, 0.5); }
  50% { box-shadow: 0 0 0 12px rgba(0, 170, 255, 0); }
}
.marquee-track {
  animation: marquee 32s linear infinite;
  display: flex;
  width: max-content;
}
.parallax-float {
  animation: parallaxFloat 5s ease-in-out infinite;
}
.shimmer-btn {
  background: linear-gradient(90deg, #0055cc 0%, #00aaff 40%, #00eeff 60%, #0055cc 100%);
  background-size: 200% auto;
  animation: shimmer 2.8s linear infinite;
}
.pulse-blue {
  animation: pulseBlue 2s infinite;
}
.hero-bg {
  background-image: url('/images/hero.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.steel-gradient {
  background: linear-gradient(135deg, #0a0e1a 0%, #141c2e 50%, #0d1525 100%);
}
.card-steel {
  background: linear-gradient(145deg, #141c2e, #1a2540);
  border: 1px solid rgba(0, 170, 255, 0.18);
}
.prose {
  color: #d1d5db;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 100%;
}
.prose h2 {
  color: #00aaff;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.8rem;
  border-bottom: 2px solid rgba(0, 170, 255, 0.3);
  padding-bottom: 0.4rem;
}
.prose h3 {
  color: #a8c8f0;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}
.prose p {
  margin-bottom: 1.1rem;
  color: #c9d4e8;
}
.prose a {
  color: #00aaff;
  text-decoration: underline;
}
.prose a:hover {
  color: #66d4ff;
}
.prose ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1rem;
  color: #c9d4e8;
}
.prose ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin-bottom: 1rem;
  color: #c9d4e8;
}
.prose li {
  margin-bottom: 0.4rem;
}
.prose blockquote {
  border-left: 4px solid #00aaff;
  padding-left: 1em;
  color: #93aac8;
  font-style: italic;
  margin: 1.2rem 0;
}
.prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem auto;
  display: block;
  border: 1px solid rgba(0,170,255,0.2);
}
.prose table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  width: 100%;
}
.prose table th {
  background: rgba(0, 170, 255, 0.15);
  color: #00aaff;
  padding: 0.6em 1em;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid rgba(0,170,255,0.3);
}
.prose table td {
  padding: 0.55em 1em;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: #c9d4e8;
}
.prose table tr:hover td {
  background: rgba(0,170,255,0.06);
}

/* FAQ accordion: space between question text and indicator dot */
.fas.fa-circle.text-xs {
  margin-left: 0.5rem;
}
