/* =============================================
   WIVSY — Design Tokens & CSS Custom Properties
   ============================================= */

:root {
  /* ---- Brand Colors (from official palette) ---- */
  --color-black: #0A0A0A;
  --color-white: #FFFFFF;
  --color-mint: #8ECFAD;
  --color-mint-dark: #2D5A3D;
  --color-gray-light: #D9D9D9;
  --color-bg: #F0EFED;

  /* ---- Text Colors ---- */
  --text-primary: #0A0A0A;
  --text-secondary: #555555;
  --text-muted: #666666;
  --text-light: #888888;
  --text-inverse: #FFFFFF;

  /* ---- Surfaces ---- */
  --surface-primary: #FFFFFF;
  --surface-secondary: #F5F5F3;
  --surface-dark: #0A0A0A;
  --surface-mint-subtle: rgba(125, 201, 160, 0.12);
  --surface-mint-light: rgba(125, 201, 160, 0.15);
  --surface-white-subtle: rgba(255, 255, 255, 0.05);
  --surface-white-hover: rgba(255, 255, 255, 0.08);

  /* ---- Typography ---- */
  --font-family: 'Inter', sans-serif;
  --font-weight-regular: 400;
  --font-weight-semibold: 600;
  --font-weight-extrabold: 800;

  --font-size-xs: 0.8rem;
  --font-size-sm: 0.85rem;
  --font-size-base: 0.9rem;
  --font-size-md: 0.95rem;
  --font-size-lg: 1.1rem;
  --font-size-xl: 1.2rem;
  --font-size-2xl: 1.4rem;
  --font-size-3xl: 1.5rem;
  --font-size-4xl: 2rem;
  --font-size-5xl: 2.5rem;
  --font-size-6xl: 3rem;
  --font-size-7xl: 4.2rem;
  --font-size-hero: 4.2rem;

  /* ---- Spacing ---- */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 20px;
  --space-2xl: 24px;
  --space-3xl: 28px;
  --space-4xl: 32px;
  --space-5xl: 36px;
  --space-6xl: 40px;
  --space-7xl: 48px;
  --space-8xl: 60px;

  /* ---- Border Radius ---- */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 50px;

  /* ---- Shadows ---- */
  --shadow-sm: 0 1px 20px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-dark: 0 8px 30px rgba(0, 0, 0, 0.2);

  /* ---- Transitions ---- */
  --ease-default: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-reveal: 0.7s cubic-bezier(0.22, 1, 0.36, 1);

  /* ---- Layout ---- */
  --container-max: 1200px;
  --container-padding: 24px;
  --navbar-height: 72px;
  --section-padding: 120px;
}
