:root {
  --primary: #0055FF;
  --secondary: #0F172A;
  --bg: #F9F9FB;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--secondary);
  overflow-x: hidden;
}

.font-jakarta {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.industrial-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.industrial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.text-balance {
  text-wrap: balance;
}

.bg-grid {
  background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Container utility */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* Animation utilities */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-bounce {
  animation: bounce 1s infinite;
}

.delay-150 {
  animation-delay: 150ms;
}

.delay-300 {
  animation-delay: 300ms;
}

/* Scroll smooth */
html {
  scroll-behavior: smooth;
}

/* Additional utility classes */
.max-w-7xl {
  max-width: 80rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-xs {
  max-width: 20rem;
}

/* Z-index utilities */
.z-\[100\] {
  z-index: 100;
}

.z-\[200\] {
  z-index: 200;
}

.z-\[300\] {
  z-index: 300;
}

.z-50 {
  z-index: 50;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

/* Font weight utilities */
.font-\[900\] {
  font-weight: 900;
}

.font-\[800\] {
  font-weight: 800;
}

/* Tracking utilities */
.tracking-\[0\.3em\] {
  letter-spacing: 0.3em;
}

.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}

.tracking-tighter {
  letter-spacing: -0.05em;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

/* Leading utilities */
.leading-\[0\.95\] {
  line-height: 0.95;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

/* Shadow utilities */
.shadow-\[0_40px_100px_rgba\(0\,0\,0\,0\.15\)\] {
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

/* Opacity utilities */
.opacity-10 {
  opacity: 0.1;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

/* Backdrop blur */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Transform utilities */
.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.-translate-y-1\/2 {
  transform: translateY(-50%);
}

.translate-x-1 {
  transform: translateX(0.25rem);
}

.translate-y-1 {
  transform: translateY(0.25rem);
}

.-translate-y-1 {
  transform: translateY(-0.25rem);
}

.-inset-4 {
  inset: -1rem;
}

.-inset-10 {
  inset: -2.5rem;
}

.-inset-24 {
  inset: -6rem;
}

.-left-10 {
  left: -2.5rem;
}

.-left-24 {
  left: -6rem;
}

.-top-1 {
  top: -0.25rem;
}

.-top-24 {
  top: -6rem;
}

.-right-1 {
  right: -0.25rem;
}

.-right-10 {
  right: -2.5rem;
}

.-bottom-10 {
  bottom: -2.5rem;
}

.-mt-20 {
  margin-top: -5rem;
}

.-mt-40 {
  margin-top: -10rem;
}

/* Scale utilities */
.scale-105 {
  transform: scale(1.05);
}

.scale-110 {
  transform: scale(1.1);
}

.scale-125 {
  transform: scale(1.25);
}

/* Rotate utilities */
.rotate-2 {
  transform: rotate(2deg);
}

.rotate-6 {
  transform: rotate(6deg);
}

.rotate-12 {
  transform: rotate(12deg);
}

.-rotate-1 {
  transform: rotate(-1deg);
}

.skew-y-1 {
  transform: skewY(1deg);
}

.skew-x-12 {
  transform: skewX(12deg);
}

/* Blur utilities */
.blur-\[100px\] {
  filter: blur(100px);
}

.blur-\[120px\] {
  filter: blur(120px);
}

.blur-\[150px\] {
  filter: blur(150px);
}

.blur-2xl {
  filter: blur(40px);
}

/* Gradient utilities */
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.from-transparent {
  --tw-gradient-from: transparent;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.from-blue-600 {
  --tw-gradient-from: #2563eb;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0));
}

.from-slate-950 {
  --tw-gradient-from: #020617;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(2, 6, 23, 0));
}

.via-blue-500\/50 {
  --tw-gradient-stops: var(--tw-gradient-from), rgba(59, 130, 246, 0.5), var(--tw-gradient-to, rgba(59, 130, 246, 0.5));
}

.via-slate-900\/80 {
  --tw-gradient-stops: var(--tw-gradient-from), rgba(15, 23, 42, 0.8), var(--tw-gradient-to, rgba(15, 23, 42, 0.8));
}

.to-transparent {
  --tw-gradient-to: transparent;
}

.to-indigo-600 {
  --tw-gradient-to: #4f46e5;
}

.to-indigo-700 {
  --tw-gradient-to: #4338ca;
}

.to-blue-600 {
  --tw-gradient-to: #2563eb;
}

/* Text size utilities */
.text-\[10px\] {
  font-size: 10px;
}

.text-\[11px\] {
  font-size: 11px;
}

.text-\[13px\] {
  font-size: 13px;
}

.text-\[14px\] {
  font-size: 14px;
}

.text-\[9px\] {
  font-size: 9px;
}

/* Width/Height utilities */
.w-\[400px\] {
  width: 400px;
}

.h-\[600px\] {
  height: 600px;
}

/* Border radius utilities */
.rounded-\[1\.5rem\] {
  border-radius: 1.5rem;
}

.rounded-\[2\.5rem\] {
  border-radius: 2.5rem;
}

.rounded-\[3rem\] {
  border-radius: 3rem;
}

.rounded-\[3\.5rem\] {
  border-radius: 3.5rem;
}

.rounded-\[4rem\] {
  border-radius: 4rem;
}

/* Pointer events */
.pointer-events-none {
  pointer-events: none;
}

/* Flex utilities */
.flex-1 {
  flex: 1 1 0%;
}

.shrink-0 {
  flex-shrink: 0;
}

/* Overflow utilities */
.overflow-hidden {
  overflow: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

/* Position utilities */
.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inset-0 {
  inset: 0;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.top-full {
  top: 100%;
}

/* Display utilities */
.hidden {
  display: none;
}

/* Custom animations */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoom-in {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-in {
  animation: fade-in 0.3s ease-in-out;
}

.fade-in {
  animation: fade-in 0.3s ease-in-out;
}

.zoom-in {
  animation: zoom-in 0.3s ease-in-out;
}

.duration-300 {
  animation-duration: 300ms;
}

.duration-500 {
  animation-duration: 500ms;
}

.duration-700 {
  animation-duration: 700ms;
}

/* Responsive breakpoints - ensure container works */
@media (min-width: 640px) {
  .sm\:flex {
    display: flex;
  }
  
  .sm\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .md\:block {
    display: block;
  }
  
  .md\:flex {
    display: flex;
  }
  
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  
  .md\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
  
  .md\:text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
  
  .md\:p-12 {
    padding: 3rem;
  }
  
  .md\:p-16 {
    padding: 4rem;
  }
  
  .md\:p-20 {
    padding: 5rem;
  }
  
  .md\:p-24 {
    padding: 6rem;
  }
}

@media (min-width: 1024px) {
  .lg\:flex {
    display: flex;
  }
  
  .lg\:hidden {
    display: none;
  }
  
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  
  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  
  .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }
  
  .lg\:col-span-4 {
    grid-column: span 4 / span 4;
  }
  
  .lg\:col-span-8 {
    grid-column: span 8 / span 8;
  }
  
  .lg\:flex-row {
    flex-direction: row;
  }
  
  .lg\:h-80 {
    height: 20rem;
  }
  
  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  
  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
}

/* Ensure proper spacing */
.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.space-y-10 > * + * {
  margin-top: 2.5rem;
}

.space-y-12 > * + * {
  margin-top: 3rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

/* Text colors */
.text-white {
  color: #ffffff;
}

.text-slate-200 {
  color: #e2e8f0;
}

.text-slate-300 {
  color: #cbd5e1;
}

.text-slate-400 {
  color: #94a3b8;
}

.text-slate-500 {
  color: #64748b;
}

.text-slate-600 {
  color: #475569;
}

.text-slate-700 {
  color: #334155;
}

.text-slate-900 {
  color: #0f172a;
}

.text-blue-400 {
  color: #60a5fa;
}

.text-blue-500 {
  color: #3b82f6;
}

.text-blue-600 {
  color: #2563eb;
}

.text-blue-700 {
  color: #1d4ed8;
}

.text-emerald-100 {
  color: #d1fae5;
}

.text-emerald-400 {
  color: #34d399;
}

.text-emerald-500 {
  color: #10b981;
}

.text-indigo-400 {
  color: #818cf8;
}

.text-indigo-600 {
  color: #4f46e5;
}

.text-indigo-800 {
  color: #3730a3;
}

.text-indigo-900 {
  color: #312e81;
}

.text-red-600 {
  color: #dc2626;
}

.text-orange-600 {
  color: #ea580c;
}

.text-green-600 {
  color: #16a34a;
}

.text-amber-600 {
  color: #d97706;
}

/* Background colors */
.bg-white {
  background-color: #ffffff;
}

.bg-slate-50 {
  background-color: #f8fafc;
}

.bg-slate-100 {
  background-color: #f1f5f9;
}

.bg-slate-200 {
  background-color: #e2e8f0;
}

.bg-slate-800 {
  background-color: #1e293b;
}

.bg-slate-900 {
  background-color: #0f172a;
}

.bg-slate-950 {
  background-color: #020617;
}

.bg-blue-50 {
  background-color: #eff6ff;
}

.bg-blue-100 {
  background-color: #dbeafe;
}

.bg-blue-500 {
  background-color: #3b82f6;
}

.bg-blue-600 {
  background-color: #2563eb;
}

.bg-blue-700 {
  background-color: #1d4ed8;
}

.bg-emerald-50 {
  background-color: #ecfdf5;
}

.bg-emerald-500 {
  background-color: #10b981;
}

.bg-indigo-50 {
  background-color: #eef2ff;
}

.bg-indigo-100 {
  background-color: #e0e7ff;
}

.bg-indigo-600 {
  background-color: #4f46e5;
}

.bg-indigo-700 {
  background-color: #4338ca;
}

.bg-red-50 {
  background-color: #fef2f2;
}

.bg-orange-50 {
  background-color: #fff7ed;
}

.bg-green-50 {
  background-color: #f0fdf4;
}

.bg-amber-50 {
  background-color: #fffbeb;
}

/* Border colors */
.border-slate-100 {
  border-color: #f1f5f9;
}

.border-slate-200 {
  border-color: #e2e8f0;
}

.border-slate-800 {
  border-color: #1e293b;
}

.border-slate-900 {
  border-color: #0f172a;
}

.border-blue-100 {
  border-color: #dbeafe;
}

.border-blue-200 {
  border-color: #bfdbfe;
}

.border-blue-500 {
  border-color: #3b82f6;
}

.border-emerald-100 {
  border-color: #d1fae5;
}

.border-emerald-500 {
  border-color: #10b981;
}

.border-indigo-100 {
  border-color: #e0e7ff;
}

.border-white {
  border-color: #ffffff;
}

.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.border-white\/50 {
  border-color: rgba(255, 255, 255, 0.5);
}

/* Hover states */
.hover\:bg-blue-600:hover {
  background-color: #2563eb;
}

.hover\:bg-blue-700:hover {
  background-color: #1d4ed8;
}

.hover\:bg-slate-100:hover {
  background-color: #f1f5f9;
}

.hover\:bg-slate-200:hover {
  background-color: #e2e8f0;
}

.hover\:text-white:hover {
  color: #ffffff;
}

.hover\:text-blue-600:hover {
  color: #2563eb;
}

.hover\:text-blue-700:hover {
  color: #1d4ed8;
}

.hover\:border-blue-200:hover {
  border-color: #bfdbfe;
}

.hover\:border-blue-500:hover {
  border-color: #3b82f6;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:scale-110:hover {
  transform: scale(1.1);
}

.hover\:-translate-y-1:hover {
  transform: translateY(-0.25rem);
}

/* Focus states */
.focus\:ring-2:focus {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.focus\:ring-4:focus {
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.focus\:border-blue-500:focus {
  border-color: #3b82f6;
}

.focus\:ring-blue-600\/10:focus {
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.focus\:bg-white\/20:focus {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Transition utilities */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Cursor utilities */
.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

/* Whitespace utilities */
.whitespace-nowrap {
  white-space: nowrap;
}

/* Object fit */
.object-cover {
  object-fit: cover;
}

/* Resize */
.resize-none {
  resize: none;
}

/* Appearance */
.appearance-none {
  appearance: none;
}

/* Disabled state */
.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

.disabled\:opacity-70:disabled {
  opacity: 0.7;
}

.disabled\:hover\:scale-100:disabled:hover {
  transform: scale(1);
}

