/* Reset, typography, focus */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

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

body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Rajdhani', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: hsl(var(--primary) / 0.35);
  color: hsl(var(--background));
}

:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 3px;
}

.font-display {
  font-family: 'Orbitron', monospace;
}

.mono {
  font-family: 'Share Tech Mono', monospace;
}

h1,
h2 {
  font-family: 'Orbitron', monospace;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h3,
h4 {
  font-family: 'Orbitron', monospace;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 600;
}

.eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: var(--text-caption);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: hsl(var(--primary));
}

.muted {
  color: hsl(60 8% 70%);
}

.lead {
  font-size: 1.15rem;
  color: hsl(60 8% 78%);
  max-width: 60ch;
  line-height: 1.55;
  text-transform: none;
}

.disclaimer {
  font-family: 'Share Tech Mono', monospace;
  font-size: var(--text-caption);
  color: hsl(var(--muted-foreground) / 0.9);
}
