/* ════════════════════════════════════════════
   INSIGHT — Global Variables & Base Reset
   ════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Core palette */
    --primary:       #0f0f1a;
    --primary-light: #f3f4f6;
    --accent:        #4f46e5;
    --accent-light:  #6366f1;

    /* Pipeline stage colours */
    --color-capture: #0ea5e9;  /* Teal   — Stage 1 */
    --color-sim:     #4f46e5;  /* Indigo — Stage 2 */
    --color-ai:      #10b981;  /* Green  — Stage 3 */

    /* Convenience aliases */
    --teal:  #0ea5e9;
    --green: #10b981;

    /* Typography */
    --text:       #0f0f1a;
    --text-dark:  #0f0f1a;
    --text-light: #4b5563;

    /* Surfaces */
    --bg:        #ffffff;
    --bg-subtle: #f9fafb;
    --border:    #e5e7eb;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; }
html { scroll-behavior: smooth; }
