/* 全站字体与间距规范 */
:root {
  --font-body: 'TencentSansw3', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --font-heading: 'TencentSansw7', var(--font-body);

  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-md: 17px;
  --text-lg: 18px;
  --text-xl: 22px;
  --text-2xl: 28px;
  --text-3xl: 32px;
  --text-hero: 40px;

  --leading-snug: 1.5;
  --leading-normal: 1.7;
  --leading-relaxed: 1.85;

  --color-text: #0E0A0A;
  --color-text-secondary: #444;
  --color-text-muted: #777;
  --color-text-light: #999;
  --color-accent: #B10D15;

  --space-2xs: 6px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 72px;
  --space-3xl: 96px;

  --section-py: 88px;
  --content-width: 1200px;
  --title-subtitle-gap: 14px;
}

@media screen and (max-width: 767px) {
  :root {
    --text-base: 15px;
    --text-md: 16px;
    --text-lg: 17px;
    --text-xl: 20px;
    --text-2xl: 22px;
    --text-3xl: 24px;
    --text-hero: 26px;

    --section-py: 52px;
    --space-xl: 32px;
    --space-2xl: 48px;
  }
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: var(--leading-snug);
}

p {
  line-height: var(--leading-relaxed);
}
