/* /css/styles.css — SITE3 base styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0d0d0d;
  --bg-1: #141414;
  --bg-2: #1a1a1a;
  --bg-3: #202020;
  --line: #242424;
  --line-2: #2e2e2e;
  --accent: #7ee787;
  --txt: #f0f0f0;
  --txt-2: #a0a0a0;
  --txt-3: #606060;
  --txt-4: #404040;
  --font-mono: "JetBrains Mono", "Fira Mono", "Cascadia Code", monospace;
  --font-display: "Inter", system-ui, -apple-system, sans-serif;
}

body {
  background: var(--bg);
  color: var(--txt);
  font-family: var(--font-display);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.mono { font-family: var(--font-mono); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.lede {
  font-size: 16px;
  color: var(--txt-2);
  line-height: 1.65;
}

.bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  height: 44px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
  font-family: var(--font-mono);
  font-size: 12px;
}
