/* ============================================
   INTERMETA GLOBAL CSS
   Shared across all pages via head-common.html
============================================ */

:root {
    --dark: #0a0a0a;
    --dark-mid: #151515;
    --dark-light: #1a1a1a;
    --orange: #fc560a;
    --orange-glow: rgba(252, 86, 10, 0.6);
    --white: #ffffff;
    --grey-light: #f8f8f8;
    --grey-mid: #e8e8e8;
    --grey-border: #333;
    --text-muted: #888888;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}
