/*
 * tech-boot.css — boot/loading styles for /tech, extracted from an inline
 * <style> block so the page can run under a strict CSP (style-src 'self',
 * no 'unsafe-inline'). Linked first in <head>, before fonts.css/styles.css,
 * so the base resets and the loading overlay paint on the first frame.
 */

:root {
  --black: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

.loading {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s;
}

.loading.hide {
  opacity: 0;
  pointer-events: none;
}

.loader-text {
  font-family:
    Orbitron,
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 700;
}
