/* Critical CSS for LCP optimization - Safe approach */
body {
    font-family: var(--font-geist-sans), system-ui, -apple-system, sans-serif;
    background: #ffffff;
    color: #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* Prevent horizontal overflow */
html,
body {
    overflow-x: hidden;
}

h1 {
    font-family: system-ui, -apple-system, sans-serif;
    font-weight: 700;
    color: #000000;
    margin: 0;
    padding: 0;
}

.hero-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.precision-card {
    background: white;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}