/* Site-wide styles layered on top of Tailwind CDN */
:root {
  --bg-0: #0b0d17;
  --bg-1: #131628;
  --accent-1: #7c5cff;
  --accent-2: #ff6bd9;
  --accent-3: #4ad6ff;
}

html { scroll-behavior: smooth; }

body {
  background: radial-gradient(1200px 800px at 80% -10%, rgba(124,92,255,0.25), transparent 60%),
              radial-gradient(900px 700px at -10% 30%, rgba(255,107,217,0.18), transparent 60%),
              radial-gradient(1000px 800px at 50% 120%, rgba(74,214,255,0.18), transparent 60%),
              var(--bg-0);
  color: #e7e9f5;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  min-height: 100vh;
}

.glass {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
}

.gradient-text {
  background: linear-gradient(90deg, #b39bff 0%, #ff8be0 50%, #6ce4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn-primary {
  background: linear-gradient(120deg, #7c5cff, #ff6bd9);
  color: white;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow: 0 10px 30px -10px rgba(124,92,255,0.6);
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 18px 40px -12px rgba(255,107,217,0.55); }

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.18);
  color: #e7e9f5;
  background: rgba(255,255,255,0.03);
  transition: background .2s ease, border-color .2s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); }

.card-hover { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card-hover:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.18); box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7); }

.dot-grid {
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
}

.shine {
  position: relative; overflow: hidden;
}
.shine::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .8s ease;
}
.shine:hover::after { transform: translateX(100%); }

.prose-legal h2 { font-size: 1.25rem; font-weight: 600; margin-top: 1.75rem; color: #fff; }
.prose-legal h3 { font-size: 1.05rem; font-weight: 600; margin-top: 1.25rem; color: #d6d9ee; }
.prose-legal p, .prose-legal li { color: #c4c8df; line-height: 1.7; }
.prose-legal ul { list-style: disc; padding-left: 1.25rem; margin: .5rem 0 1rem; }
.prose-legal a { color: #9ab8ff; text-decoration: underline; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float-slow { animation: float 6s ease-in-out infinite; }
.float-slower { animation: float 9s ease-in-out infinite; }
