/* ZNOMax Design Tokens — витягнуто з Figma ruTk5lr79MaggzWQXQ4aih */
:root {
  /* === COLORS === */
  --color-bg:          #010213;
  --color-bg-alt:      #080a1c;
  --color-bg-dark:     #02021a;
  --color-bg-card:     #0a1978;
  --color-bg-card-alt: #0d1a2e;

  --color-primary:       #2623d8;
  --color-primary-light: #2823ec;
  --color-primary-dark:  #0200ac;

  --color-accent:       #e8b429;
  --color-accent-light: #f5b12a;

  --color-green:  #4bd700;
  --color-purple: #a756fc;

  --color-text:       #ffffff;
  --color-text-muted: #b3adae;
  --color-text-dark:  #d9d9d9;
  --color-btn-label:  #e8e6ff;

  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-accent: rgba(232, 180, 41, 0.4);

  /* === TYPOGRAPHY === */
  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Arimo', sans-serif;

  /* Scale: Major Third 1.25 */
  --text-xs:   0.625rem;   /* 10px */
  --text-sm:   0.75rem;    /* 12px */
  --text-base: 1rem;       /* 16px */
  --text-lg:   1.125rem;   /* 18px */
  --text-xl:   1.625rem;   /* 26px */
  --text-2xl:  2rem;       /* 32px */
  --text-3xl:  2.625rem;   /* 42px */
  --text-4xl:  3.375rem;   /* 54px */

  /* === SPACING (base 4px) === */
  --space-1:  0.25rem;   /* 4px */
  --space-2:  0.5rem;    /* 8px */
  --space-3:  0.75rem;   /* 12px */
  --space-4:  1rem;      /* 16px */
  --space-5:  1.25rem;   /* 20px */
  --space-6:  1.5rem;    /* 24px */
  --space-8:  2rem;      /* 32px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */
  --space-20: 5rem;      /* 80px */
  --space-24: 6rem;      /* 96px */

  /* === LAYOUT === */
  --container-max: 1200px;
  /* Було space-20/12 — між секціями складалось 160/96px; Figma-ритм компактніший */
  --section-py: var(--space-12);
  --section-py-mobile: var(--space-8);

  /* === RADIUS === */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 100px;

  /* === SHADOWS === */
  --shadow-sm:  0 1px 4px rgba(0, 0, 0, 0.3);
  --shadow-md:  0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg:  0 12px 48px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 0 32px rgba(232, 180, 41, 0.2);
  --shadow-blue:   0 0 32px rgba(38, 35, 216, 0.3);

  /* === TRANSITIONS === */
  --transition-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:   250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
