:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --text-1: #1e293b;
  --text-2: #64748b;
  --accent: #2563eb;
  --border: #e2e8f0;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  background: var(--bg);
  color: var(--text-1);
}

.container {
  max-width: 960px;
  margin: 80px auto;
  padding: 0 24px;
}

h1 {
  font-size: 32px;
  margin: 0 0 8px;
}

.subtitle {
  color: var(--text-2);
  margin: 0;
}
