/* ========================================
   NEURAL.FORM — Base Styles
   ======================================== */

:root {
    /* Colors */
    --bg-color: #050505;
    --text-color: #F2F2F2;
    --accent-color: #FFFFFF;
    --text-muted: #AAAAAA;
    --text-dim: #666666;
    --grid-line: rgba(255, 255, 255, 0.15);
    --grid-line-strong: rgba(255, 255, 255, 0.3);
    
    /* Fonts */
    --font-display: 'Roboto Condensed', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-padding: 40px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

/* Custom Cursor — отключаем на тач-устройствах */
@media (hover: hover) and (pointer: fine) {
    * {
        cursor: none;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100vw;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
}
