/* Tailwind via CDN handles most styling.
   This file holds custom utilities, keyframes, and overrides. */

:root {
  --brand: #8b5cf6; /* violet-500 */
  --brand-dark: #7c3aed; /* violet-600 */
  --accent: #a78bfa; /* violet-300/400 */
  --text: #e5e7eb; /* slate-200 */
  --muted: #a1a1aa; /* zinc-400 */
  --bg: #0b0b0f; /* near-black */
}

html, body {
  scroll-behavior: smooth;
}

.btn-gradient {
  background-image: linear-gradient(90deg, var(--brand), var(--accent));
  color: white;
}
.btn-gradient:hover {
  filter: brightness(0.95);
}

.glass {
  background: rgba(18, 18, 26, 0.6);
  backdrop-filter: blur(10px);
}

/* Simple fade/slide animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fadeUp {
  animation: fadeUp 0.8s ease-out both;
}

@keyframes floatSlow {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
.animate-float {
  animation: floatSlow 6s ease-in-out infinite;
}

.shadow-soft {
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.25);
}

.hero-bg {
  background: radial-gradient(1200px 600px at 10% 10%, rgba(139,92,246,0.16), transparent 60%),
              radial-gradient(1000px 500px at 90% 10%, rgba(167,139,250,0.12), transparent 60%),
              linear-gradient(180deg, #0b0b0f 0%, #0f0f16 100%);
}

.card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(139, 92, 246, 0.25);
}

/* Forms */
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], textarea, select {
  border: 1px solid #2a2a3b;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  width: 100%;
  outline: none;
  background: #0f0f16;
  color: var(--text);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(139,92,246,0.2);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  background: rgba(139,92,246,0.15);
  color: #c4b5fd;
  font-weight: 600;
  font-size: 0.85rem;
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
}

/* Dark theme overrides for common Tailwind utilities to avoid editing every HTML file */
body.theme-dark {
  background: var(--bg);
  color: var(--text);
}
body.theme-dark .bg-white { background-color: #12121a !important; }
body.theme-dark .bg-white\/90 { background-color: rgba(18,18,26,0.9) !important; }
body.theme-dark .border, 
body.theme-dark .border-b, 
body.theme-dark .border-t, 
body.theme-dark .border-l, 
body.theme-dark .border-r { border-color: #26263a !important; }
body.theme-dark .text-slate-900 { color: #f1f5f9 !important; }
body.theme-dark .text-slate-700 { color: #cbd5e1 !important; }
body.theme-dark .text-slate-600 { color: #a1a1aa !important; }
body.theme-dark .text-slate-400 { color: #94a3b8 !important; }
body.theme-dark .text-sky-700 { color: #a78bfa !important; }
body.theme-dark .hover\:text-sky-700:hover { color: #c4b5fd !important; }
body.theme-dark a.underline.text-sky-700 { color: #c4b5fd !important; }

/* CTA outline buttons */
body.theme-dark .border-sky-200 { border-color: #3b2d5f !important; }
body.theme-dark .hover\:bg-sky-50:hover { background-color: #1a1428 !important; }

/* Hero image background wrapper */
body.theme-dark .glass img { filter: saturate(1.05) contrast(1.02); }

/* Gradient CTA sections used across pages */
body.theme-dark .bg-gradient-to-r.from-sky-50.to-emerald-50 {
  background-image: linear-gradient(90deg, rgba(139,92,246,0.12), rgba(24,18,38,0.6)) !important;
  background-color: #12121a !important;
}

/* Partner placeholder tiles */
body.theme-dark .text-slate-400 { color: #a1a1aa !important; }


