/* Theme V8 — refonte selon maquette client (fond noir uniforme + vert néon) */
:root {
    /* Brand */
    --color-primary: #27C75A;
    --color-primary-rgb: 39, 199, 90;
    --color-primary-light: #3DD471;
    --color-primary-dark: #1FA049;

    /* Backgrounds */
    --color-bg: #000000;
    --color-surface: #161B17;
    --color-surface-alt: #1A201C;
    --color-surface-card: #161B17;
    --color-surface-high: #20262A;

    /* Text */
    --color-text: #FFFFFF;
    --color-text-muted: #A8B5AB;
    --color-text-faint: #7A847C;

    /* Borders */
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-strong: rgba(39, 199, 90, 0.3);

    /* Typography */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-weight-heading: 700;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --font-weight-body: 400;

    /* Layout */
    --container-max: 1280px;
    --section-py: 6rem;
    --radius: 10px;
    --radius-lg: 16px;

    /* Effects */
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 24px rgba(39, 199, 90, 0.25);
    --transition: 200ms ease-out;
}
