/* HypeCrew shared stylesheet — extends the Tailwind CDN with theme-specific
   utilities used by both the landing page and the Coming Soon page. */

:root { color-scheme: dark; }
html { background-color: hsl(222 47% 5%); }
body {
  font-family: Inter, system-ui, sans-serif;
  background: hsl(222 47% 5%);
  color: hsl(210 40% 98%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3 {
  font-family: 'Space Grotesk', Inter, sans-serif;
  letter-spacing: -0.02em;
}
::selection { background: hsl(187 100% 50% / 0.35); color: hsl(210 40% 98%); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: hsl(222 47% 5%); }
::-webkit-scrollbar-thumb {
  background: hsl(217 33% 16%);
  border-radius: 8px;
  border: 2px solid hsl(222 47% 5%);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; border-radius: 0.5rem; font-size: 0.875rem; font-weight: 500;
  transition: all 0.2s; user-select: none; text-decoration: none;
}
.btn-primary {
  height: 2.5rem; padding: 0.5rem 1.25rem;
  background: hsl(187 100% 55%); color: hsl(222 47% 6%);
  box-shadow: 0 0 0 1px hsl(187 100% 60% / 0.25), 0 8px 32px hsl(187 100% 50% / 0.25);
}
.btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 0 1px hsl(187 100% 60% / 0.35), 0 18px 60px hsl(187 100% 50% / 0.35);
}
.btn-outline {
  height: 2.5rem; padding: 0.5rem 1.25rem;
  background: transparent; color: hsl(210 40% 98%);
  border: 1px solid hsl(217 33% 14%);
}
.btn-outline:hover {
  background: hsl(217 33% 16%);
  border-color: hsl(187 100% 55% / 0.4);
}

/* Cards */
.card {
  position: relative; border-radius: 0.875rem;
  border: 1px solid hsl(217 33% 14%);
  background: hsl(222 40% 8% / 0.7); backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 hsl(210 40% 98% / 0.04) inset, 0 12px 40px hsl(222 47% 2% / 0.5);
}
.card-hover { transition: border-color 0.2s; }
.card-hover:hover { border-color: hsl(187 100% 55% / 0.4); }

.card-accent { position: relative; overflow: hidden; }
.card-accent::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, hsl(187 100% 60% / 0.6) 50%, transparent 100%);
}

/* Pills */
.pill {
  display: inline-flex; align-items: center; gap: 0.375rem;
  border-radius: 9999px; border: 1px solid hsl(217 33% 14% / 0.8);
  background: hsl(217 33% 14% / 0.6);
  padding: 0.125rem 0.625rem; font-size: 0.75rem; font-weight: 500;
  color: hsl(215 20% 70%);
}
.pill-success {
  border-color: hsl(160 84% 50% / 0.3);
  background: hsl(160 84% 50% / 0.1);
  color: hsl(160 84% 50%);
}
.pill-glow {
  border-color: hsl(187 100% 55% / 0.4);
  background: hsl(187 100% 55% / 0.1);
  color: hsl(187 100% 55%);
}

/* Effects */
.text-gradient {
  background: linear-gradient(135deg, hsl(187 100% 70%) 0%, hsl(187 100% 55%) 35%, hsl(258 87% 70%) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.shadow-glow {
  box-shadow: 0 0 0 1px hsl(187 100% 60% / 0.25), 0 8px 32px hsl(187 100% 50% / 0.25);
}
.bg-grid {
  background-image:
    linear-gradient(hsl(217 33% 14% / 0.55) 1px, transparent 1px),
    linear-gradient(90deg, hsl(217 33% 14% / 0.55) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, #000 30%, transparent 80%);
}
.bg-aurora {
  background-image:
    radial-gradient(60% 40% at 18% 8%, hsl(187 100% 50% / 0.20) 0%, transparent 60%),
    radial-gradient(45% 35% at 85% 18%, hsl(258 87% 60% / 0.18) 0%, transparent 60%),
    radial-gradient(40% 30% at 50% 95%, hsl(187 100% 50% / 0.12) 0%, transparent 60%);
}
.orb {
  position: absolute; border-radius: 9999px; filter: blur(60px);
  opacity: 0.55; pointer-events: none;
}
.hr-glow {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, hsl(187 100% 60% / 0.4) 50%, transparent 100%);
}

/* Animations */
.anim-fade-up { animation: fade-up 0.6s ease-out both; }
@keyframes fade-up {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.anim-pulse-slow { animation: pulse-slow 4s ease-in-out infinite; }
@keyframes pulse-slow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.anim-shimmer {
  background: linear-gradient(
    90deg,
    hsl(187 100% 55% / 0.0) 0%,
    hsl(187 100% 55% / 0.4) 50%,
    hsl(187 100% 55% / 0.0) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Scroll offset for anchor links under the sticky header */
.scroll-mt-20 { scroll-margin-top: 5rem; }
