@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --color-primary: #0099d8;
  --color-primary-dark: #007bb0;
  --color-slate-900: #0f172a;
  --color-slate-800: #1e293b;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: #ffffff;
  color: #1e293b;
  overflow-x: hidden;
  letter-spacing: -0.011em;
  width: 100%;
}

.font-mono {
  font-family: var(--font-mono);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f8fafc;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Studio Glass System */
.studio-glass {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.studio-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.02), 0 1px 2px -1px rgba(0, 0, 0, 0.02);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.studio-card:hover {
  transform: translateY(-2px);
  border-color: #bae6fd;
  box-shadow: 0 12px 24px -6px rgba(0, 153, 216, 0.08), 0 4px 8px -2px rgba(0, 0, 0, 0.02);
}

/* Gradient Highlights */
.studio-brand-text {
  background: linear-gradient(135deg, #0099d8 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Radial Light Mesh */
.mesh-glow-top {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  height: 550px;
  background: radial-gradient(circle, rgba(0, 168, 225, 0.08) 0%, rgba(99, 102, 241, 0.04) 50%, rgba(255, 255, 255, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.mesh-glow-side {
  position: absolute;
  top: 300px;
  right: -100px;
  width: 600px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

/* Dot Background Pattern */
.bg-studio-dots {
  background-size: 24px 24px;
  background-image: radial-gradient(rgba(148, 163, 184, 0.22) 1px, transparent 1px);
}

/* Studio Pill / Tag */
.studio-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: #f1f5f9;
  color: #0369a1;
  border: 1px solid #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s ease;
}

.studio-tag:hover {
  background: #e0f2fe;
  border-color: #7dd3fc;
  color: #0284c7;
}

/* Mobile Friendly Horizontal Slider with Momentum Touch Scrolling */
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Subtle Pulsing Status Dot */
.status-beacon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.status-beacon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  animation: beacon-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.75;
}

@keyframes beacon-ping {
  75%, 100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Mobile responsive padding helpers */
@media (max-width: 640px) {
  .studio-card {
    border-radius: 1rem;
  }
}
