/* ═══════════════════════════════════════════════════
   QR Studio — Design Tokens & Base Reset
   ═══════════════════════════════════════════════════ */

:root {
  --bg: #f7f6f3;
  --surface: #ffffff;
  --border: #e2e0d8;
  --border-hover: #c8c5bb;
  --text: #1a1917;
  --text-muted: #6b6860;
  --text-hint: #a09e99;
  --accent: #1a1917;
  --radius: 10px;
  --radius-lg: 14px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  padding: 2rem 1rem 4rem;
}

.app {
  max-width: 580px;
  margin: 0 auto;
}
