/**
 * FutGen Capital - Base Styles
 * Shared tokens matching Shaela Beard brand ecosystem
 */

:root {
    /* Colors */
    --color-black-steel: #1c1f2e;
    --color-ember: #d4501e;
    --color-white: #ffffff;
    --color-off-white: #fafaf9;
    --color-muted: #737373;
    --color-border: #e5e5e5;

    /* Typography */
    --font-brand: 'Playfair Display', Georgia, serif;
    --font-serif: 'IBM Plex Serif', Georgia, serif;
    --font-sans: 'IBM Plex Sans', -apple-system, sans-serif;

    /* Type Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1.125rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-2xl: 2rem;
    --text-3xl: 2.5rem;
    --text-4xl: 3rem;

    /* 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;

    /* Layout */
    --max-width: 1000px;
    --content-width: 600px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-serif);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-black-steel);
    background: var(--color-white);
}
