/* ===================================================================
 * biomorphic · 仿生 · 设计令牌
 * 气质:生物与机械结合、有机流动、细胞/神经元、科技生命感
 * 适合:生物科技/医疗AI/健康科技/仿生机器人/生命科学
 * =================================================================== */
:root {
  --color-primary: #2EC4B6;            /* 生物青绿,细胞液 */
  --color-primary-soft: rgba(46, 196, 182, 0.12);
  --color-secondary: #9B5DE5;          /* 神经紫 */

  --color-bg: #F7F9F8;                /* 极浅生物白 */
  --color-card: #FFFFFF;
  --color-border: #DCE8E4;

  --color-text: #1A2B28;              /* 深森林墨 */
  --color-text-secondary: #4A635D;
  --color-text-muted: #8AA39C;
  --color-text-disabled: #C4D2CE;
  --color-text-inverse: #FFFFFF;

  --color-success: #2EC4B6;
  --color-warning: #F4A261;
  --color-error: #E76F51;
  --color-info: #9B5DE5;

  /* 仿生渐变:有机流动 */
  --gradient-organic: linear-gradient(135deg, #2EC4B6 0%, #9B5DE5 50%, #4CC9F0 100%);
  --gradient-cell: radial-gradient(circle, #2EC4B6, #9B5DE5);

  --font-heading: 'Inter', 'PingFang SC', sans-serif;
  --font-body: 'Inter', 'PingFang SC', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --font-size-xs: 0.75rem; --font-size-sm: 0.875rem; --font-size-base: 1rem;
  --font-size-lg: 1.25rem; --font-size-xl: 1.75rem; --font-size-2xl: 2.5rem; --font-size-3xl: 4rem;

  --font-weight-regular: 400; --font-weight-medium: 500; --font-weight-semibold: 600; --font-weight-bold: 700;

  --line-height-tight: 1.25; --line-height-normal: 1.7; --line-height-relaxed: 1.85;
  --letter-spacing-tight: -0.02em; --letter-spacing-normal: 0; --letter-spacing-wide: 0.06em;

  --space-page-x: 28px; --space-section: 84px; --space-card-pad: 32px;

  /* 仿生核心:有机不规则圆角(blob形状) */
  --radius-none: 0;
  --radius-sm: 16px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --radius-full: 9999px;
  /* blob 不规则圆角(细胞/神经元感) */
  --blob-1: 63% 37% 54% 46% / 55% 48% 52% 45%;
  --blob-2: 42% 58% 64% 36% / 49% 38% 62% 51%;

  --border-width-thin: 1px; --border-width-normal: 2px;

  --shadow-sm: 0 4px 12px rgba(46,196,182,0.08);
  --shadow-md: 0 8px 28px rgba(46,196,182,0.12);
  --shadow-lg: 0 16px 48px rgba(46,196,182,0.18);

  --motion-duration-fast: 250ms; --motion-duration-normal: 500ms; --motion-duration-slow: 800ms;
  --motion-easing-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --motion-easing-decelerate: cubic-bezier(0, 0, 0.2, 1);
  --motion-easing-spring: cubic-bezier(0.34, 1.45, 0.64, 1);  /* 有机流动 */

  --container-max: 1100px;
  --ratio-card: 1 / 1;
  --color-code-bg: #1A2B28; --color-code-text: #F7F9F8;
}
