/**
 * Ledger 中国官网 - 明亮主题设计系统
 * 明亮背景 + Ledger 橙强调
 */
:root {
  /* 主色 - 明亮背景 */
  --color-bg: #fafafa;
  --color-bg-subtle: #f5f5f5;
  --color-bg-card: #fff;
  --color-bg-elevated: #fff;
  
  /* 强调色 - 科技感青蓝 */
  --color-accent: #06b6d4;
  --color-accent-hover: #0891b2;
  --color-accent-muted: rgba(6,182,212,0.12);
  
  --color-highlight: #d4a0ff;
  
  /* 文字 - 深色 */
  --color-text: #171717;
  --color-text-muted: #525252;
  --color-text-dim: #737373;
  --color-text-dark: #000;
  
  /* 边框 */
  --color-border: #e5e5e5;
  --color-border-light: #d4d4d4;
  
  --font-sans: "Inter", "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
  
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3rem;
  
  --space-2: 0.5rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 100px;
  
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s ease;
  
  --white-square: 8px;
  --white-square-pos: -4px;
}

*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
