body {
    background-color: #F5F5F7;
    color: #1E2029;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: crosshair;
    /* Technical feel */
}

/* Responsive Typography Clamps */
.h1-responsive {
    font-size: clamp(3rem, 10vw, 8rem);
}
.h2-responsive {
    font-size: clamp(2rem, 5vw, 4rem);
}

/* Utilitarian Grid Background */
.bg-tech-grid {
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F5F5F7;
}

::-webkit-scrollbar-thumb {
    background: #1E2029;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF4D00;
}