/* ========== DESIGN TOKENS ========== */
:root {
  /* Font */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-xs: 13px;
  --font-size-base: 16px;
  --font-size-xl: 24px;
  --font-size-2xl: 28px;
  --font-size-3xl: 32px;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --line-height-tight: 1.2;
  --line-height-normal: 1.8;

  /* Colors */
  --color-white: #FFFFFF;
  --color-text: #111111;
  --color-text-muted: #404040;
  --color-text-tertiary: #666666;
  --color-accent: #D60202;
  --color-divider: #E5E5E5;
  --color-underline: #D9D9D9;
  --color-bg-placeholder: #F5F5F5;
  --color-bg-placeholder-hover: #EEEEEE;
}

/* Remove mobile tap highlight (blue flash on touch) */
html {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}
