/* Global design tokens: colors, spacing, and base variables */
:root {
  --bg: #3a3a3f;
  --text: #ffffff;
  --dim: #cfcfd6;
  --accent: #62d6ff;
  --radius: 16px;
  --maxw: 900px;
  --gap:28px;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Pixelify Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

h1 {
  margin: 0 0 8px;
  font-size: clamp(48px, 8vw, 84px);
  line-height: 1.05;
}

h2 {
  margin: 0 0 28px;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 700;
}

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

img { display: block; height: auto; }

footer { font-size: 16px; color: var(--dim); }