/* ============================================
   DESIGN TOKENS — Brocha Profesjonalnie
   Source of truth: brand-style-guide.md
   Flat, high-contrast, zero gradients/shadows-as-decoration.
   ============================================ */

:root {
  /* ---- Brand palette (primitive) ---- */
  --blue: #2349FF;
  --blue-deep: #2438E0;
  --cream: #FFF6A8;
  --yellow: #FFDA3D;
  --pink-soft: #FFC8DD;
  --pink: #FF6FA5;
  --pink-deep: #F71E97;
  --ink: #15171F;
  --white: #FFFFFF;

  /* ---- Semantic tokens ---- */
  --color-surface: var(--white);
  --color-surface-alt: #FAFAF7;
  --color-inverse-surface: var(--blue);
  --color-deep-surface: var(--ink);

  --color-text: var(--ink);
  --color-text-muted: rgba(21, 23, 31, 0.64);
  --color-text-inverse: var(--white);
  --color-text-inverse-muted: rgba(255, 255, 255, 0.72);

  --color-border: rgba(21, 23, 31, 0.14);
  --color-border-inverse: rgba(255, 255, 255, 0.28);

  --color-accent-primary: var(--blue);
  --color-accent-cta: var(--yellow);
  --color-accent-warm: var(--pink);
  --color-accent-warm-soft: var(--pink-soft);
  --color-accent-headline: var(--cream);

  --color-focus-ring: var(--pink-deep);

  /* ---- Typography ---- */
  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'General Sans', 'Segoe UI', sans-serif;
  --font-hand: 'Caveat', cursive;

  --fs-eyebrow: clamp(0.75rem, 0.72rem + 0.15vw, 0.875rem);
  --fs-body-sm: clamp(0.875rem, 0.85rem + 0.1vw, 0.9375rem);
  --fs-body: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --fs-body-lg: clamp(1.125rem, 1.05rem + 0.35vw, 1.375rem);
  --fs-h4: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --fs-h3: clamp(1.5rem, 1.3rem + 0.9vw, 2.125rem);
  --fs-h2: clamp(2rem, 1.6rem + 1.8vw, 3.25rem);
  --fs-h1: clamp(2.5rem, 1.85rem + 3vw, 4.75rem);
  --fs-stat: clamp(2.25rem, 1.6rem + 3vw, 4rem);

  --lh-tight: 1.08;
  --lh-snug: 1.25;
  --lh-body: 1.6;

  --tracking-eyebrow: 0.08em;

  /* ---- Spacing (8pt rhythm, marketing density) ---- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  --section-padding-y: clamp(3.5rem, 4vw + 2rem, 7rem);
  --container-max: 1240px;
  --container-padding: clamp(1.25rem, 5vw, 4rem);

  /* ---- Radius ---- */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;

  /* ---- Elevation (used sparingly — brand is flat) ---- */
  --shadow-card: 0 1px 2px rgba(21, 23, 31, 0.04), 0 8px 24px rgba(21, 23, 31, 0.06);
  --shadow-pop: 0 12px 32px rgba(21, 23, 31, 0.14);

  /* ---- Motion ---- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;

  /* ---- Z-index scale ---- */
  --z-base: 0;
  --z-decor: 1;
  --z-nav: 100;
  --z-overlay: 500;
  --z-modal: 1000;
  --z-toast: 1100;

  /* ---- Touch ---- */
  --touch-min: 44px;
}
