@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Sans:wght@300;400;600;700&display=swap');

:root {
  --ink: #0b0b0b;
  --steel: #e7e7e7;
  --night: #0a0f1e;
  --accent: #ff6a00;
  --accent-soft: #ffb15c;
}

body {
  font-family: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  background: var(--ink);
  color: #111827;
}

.font-display {
  font-family: "Bebas Neue", "IBM Plex Sans", sans-serif;
  letter-spacing: 0.04em;
}

.text-stroke {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.35);
  color: transparent;
}

.bg-glass {
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
}

.surface-grid {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0),
    linear-gradient(135deg, rgba(255, 106, 0, 0.08), rgba(15, 23, 42, 0.1));
  background-size: 24px 24px, 100% 100%;
}

.hero-parallax {
  background-position: center;
  background-size: cover;
  will-change: transform;
  transform: translateY(0);
}

.shadow-glow {
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}
