/* RIFT ARKITEKTUR — Design Tokens
   Single source of truth for all visual styling across the platform.
   Used by both public website and internal tools. */

:root {
  /* Colors — endre disse for å oppdatere hele plattformen */
  --color-black: #1a1a1a;
  --color-white: #fafaf8;
  --color-off-white: #f5f4f0;
  --color-warm-gray: #e8e4e0;
  --color-grey-50: #f7f7f7;
  --color-grey-100: #eeeeee;
  --color-grey-200: #d4d4d4;
  --color-grey-300: #a3a3a3;
  --color-grey-400: #737373;
  --color-grey-500: #555555;
  --color-grey-600: #333333;
  --color-accent: #1a1a1a;
  --color-border: #e0dcd6;
  --color-error: #dc2626;
  --color-success: #16a34a;
  --color-warning: #ca8a04;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.85rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 3rem;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --line-height: 1.6;
  --letter-spacing: -0.02em;
  --letter-spacing-wide: 0.08em;

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

  /* Layout */
  --max-width: 1280px;
  --border-radius: 4px;
  --border-color: #e0e0e0;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);

  /* Transitions */
  --transition: all 0.2s ease;
}
