/* ─────────────────────────────────────────────
   base.css — Design tokens, reset, typography
   ───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Design Tokens ──────────────────────────── */

:root {
  /* Colors */
  --bg:          #0f0f0f;
  --bg-2:        #171717;
  --bg-3:        #1f1f1f;
  --border:      #2a2a2a;
  --border-2:    #333;
  --text:        #e8e8e8;
  --text-2:      #999;
  --text-3:      #555;
  --accent:      #b6f542;
  --accent-dim:  rgba(182, 245, 66, 0.15);
  --danger:      #ff6b35;
  --danger-dim:  rgba(255, 107, 53, 0.15);

  /* Typography */
  --font-body:   'DM Sans', sans-serif;
  --font-mono:   'Space Mono', monospace;

  /* Spacing */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;

  /* Radii */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-full: 9999px;

  /* Transitions */
  --t-fast:  120ms ease;
  --t-base:  200ms ease;
}

/* ── Reset ──────────────────────────────────── */

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

html, body {
  height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, textarea { font: inherit; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

/* ── Typography ─────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-mono);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-title {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-2);
}

/* ── Scrollbars ─────────────────────────────── */

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: var(--r-full); }
