/* Tokens de diseno -- iPhone Cam. Estilo Dark tecnico. */
:root {
  --bg: #0F172A;
  --surface: #1B2336;
  --surface-muted: #272F42;
  --text: #F8FAFC;
  --text-muted: #94A3B8;
  --border: rgba(255, 255, 255, 0.08);
  --live: #22C55E;
  --error: #EF4444;
  --action: #3B82F6;
  --stage: #000000;
  --radius: 16px;
  --font-ui: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

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

html, body {
  height: 100%;
}

body {
  font-family: var(--font-ui);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}