/* Premium Industrial Design Tokens */

:root {
    --brand-teal: #00f2ff;
    --brand-orange: #ff6b00;
}

body {
    background-color: #ffffff;
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Metallic Text Effect */
.metallic-text {
    background: linear-gradient(135deg, #1f2937 0%, #4b5563 50%, #111827 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism Product Card */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-teal);
}

/* Rotating Saw Animation: Continuous Mechanical Feel */
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-spin-slow {
    animation: spin-slow 30s linear infinite;
}

.blade-rotate {
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.2));
}

/* Section Transitions */
section {
    position: relative;
    z-index: 1;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-thumb {
    background: #111827;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-orange);
}