:root {
  --brand: #FF6A00;
  --bg: #0A0A0A;
  --fg: #FFFFFF;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
}

.font-display {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  letter-spacing: -0.02em;
}

#hero-canvas {
  pointer-events: none;
}

::selection {
  background: var(--brand);
  color: #000;
}

.bg-bg { background-color: var(--bg); }
.text-fg { color: var(--fg); }
.text-fg\/40 { color: rgba(255,255,255,0.4); }
.text-fg\/50 { color: rgba(255,255,255,0.5); }
.text-fg\/70 { color: rgba(255,255,255,0.7); }
.text-fg\/75 { color: rgba(255,255,255,0.75); }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-bind] {
  animation: fade-up 0.8s ease-out backwards;
}

.service-card {
  animation: fade-up 0.8s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
