@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700&family=DM+Sans:wght@400;500&display=swap');

/* ============================================================
   EvenKeel Design System — CSS Custom Properties
   Shared across all marketing pages. Page-specific styles
   go in separate stylesheets, not here.
   ============================================================ */

:root {
  /* Brand colors */
  --color-indigo: #655BA4;
  --color-lavender: #E1DAFF;
  --color-text-primary: #202124;
  --color-text-secondary: #5f6368;
  --color-bg: #ffffff;
  --color-code-bg: #f1f1f1;

  /* Accent colors (from store assets) */
  --color-green: #6ee7b7;
  --color-blue: #93c5fd;
  --color-pink: #f0a8d0;

  /* Typography */
  --font-heading: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'SFMono-Regular', Consolas, monospace;

  /* Type scale */
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Layout */
  --max-width-content: 640px;
  --max-width-page: 1100px;
}

/* Base reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  background-color: var(--color-bg);
  line-height: 1.7;
  margin: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

/* Links */
a {
  color: var(--color-indigo);
}
