/* ============================================================
   专测平台推广页 - CSS Variables
   ============================================================ */

:root {
  /* ============ 颜色（参考 pc.boyuantest.com 蓝色风格） ============ */
  --color-primary: #1c64f2;
  --color-primary-dark: #0d4cdb;
  --color-primary-darker: #0a3eb0;
  --color-primary-light: #4f8af5;
  --color-primary-soft: #eaf1fe;
  --color-primary-tint: #f5f8fe;

  --color-accent: #ff6633;
  --color-accent-dark: #e54a16;
  --color-gold: #d4a574;

  --color-success: #16a34a;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;

  --color-bg: #ffffff;
  --color-bg-soft: #f5f8fc;
  --color-bg-tint: #eef3fa;

  --color-text: #1a1a1a;
  --color-text-soft: #4a5568;
  --color-text-muted: #8b95a5;
  --color-text-on-dark: #ffffff;
  --color-text-on-dark-soft: rgba(255, 255, 255, 0.85);

  --color-border: #e5e9f0;
  --color-border-soft: #eef1f6;

  /* ============ 字体 ============ */
  --font-serif: "Noto Serif SC", "Source Han Serif SC", "STSong", serif;
  --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-display: "Manrope", "Inter", var(--font-sans);

  /* ============ 字号 ============ */
  --fs-hero: clamp(2.5rem, 4.5vw + 1rem, 4rem);
  --fs-h2: clamp(1.75rem, 2vw + 1rem, 2.5rem);
  --fs-h3: clamp(1.25rem, 0.8vw + 0.9rem, 1.5rem);
  --fs-h4: 1.125rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;

  /* ============ 字重 ============ */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* ============ 行高 ============ */
  --lh-tight: 1.2;
  --lh-snug: 1.4;
  --lh-normal: 1.6;
  --lh-relaxed: 1.8;

  /* ============ 间距 ============ */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 5rem;
  --space-4xl: 6rem;

  /* ============ 圆角 ============ */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  /* ============ 阴影 ============ */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 6px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.10);
  --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.14);
  --shadow-blue: 0 8px 24px rgba(28, 100, 242, 0.30);

  /* ============ 过渡 ============ */
  --t-fast: 0.2s ease;
  --t-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* ============ 布局 ============ */
  --container-max: 1200px;
  --container-pad: clamp(1rem, 3vw, 1.5rem);
  --section-pad-y: clamp(3.5rem, 6vw, 5.5rem);
}
