/**
 * tokens.css — design tokens for SOHAO FD-TECH
 * Aesthetic: fruit-forward accents over clean tech base.
 * Two main colors (midnight + frost) + fruit accents (strawberry, mango, citrus).
 */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  /* Core brand */
  --color-primary: #0b1b33; /* midnight */
  --color-primary-dark: #071226;
  --color-primary-light: #1a3b66;

  /* Fruit accents */
  --color-accent: #e0563a; /* strawberry-coral */
  --color-accent-dark: #c43b22;
  --color-accent-2: #e0a84a; /* mango-gold */
  --color-accent-3: #f28a2e; /* citrus */

  /* Surfaces */
  --color-bg: #f6f7fb;
  --color-surface: #ffffff;
  --color-surface-alt: #eef2fb;
  --color-border: rgba(11, 27, 51, 0.12);
  --color-border-subtle: rgba(11, 27, 51, 0.06);

  /* Text */
  --color-text: #0d1220;
  --color-text-muted: #4c5568;
  --color-text-inverse: #ffffff;

  /* Spacing */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 2.5rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.875rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;

  --leading-tight: 1.2;
  --leading-normal: 1.65;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11, 27, 51, 0.06);
  --shadow-md: 0 10px 26px rgba(11, 27, 51, 0.10);
  --shadow-lg: 0 18px 44px rgba(11, 27, 51, 0.14);

  /* Motion */
  --ease-default: 0.2s ease;
  --ease-bounce: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index */
  --z-base: 0;
  --z-raised: 10;
  --z-sticky: 100;
  --z-overlay: 1000;
}

