@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary-orange: #F97316;
    --navy-dark: #0F172A;
    --navy-light: #1E293B;
    --gray-dark: #374151;
    --gray-light: #9CA3AF;
    --accent-blue: #3B82F6;
}

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

.font-outfit {
    font-family: 'Outfit', sans-serif;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.orange-gradient {
    background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
}

.navy-gradient {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.text-glow {
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Before/After Slider Mockup Styles */
.comparison-slider {
    position: relative;
    overflow: hidden;
}

.comparison-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-right: 2px solid white;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Pulse Animations for CTA Buttons */
@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7); transform: scale(1); }
    70% { box-shadow: 0 0 0 15px rgba(249, 115, 22, 0); transform: scale(1.05); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); transform: scale(1); }
}

@keyframes pulse-navy {
    0% { box-shadow: 0 0 0 0 rgba(15, 23, 42, 0.7); transform: scale(1); }
    70% { box-shadow: 0 0 0 15px rgba(15, 23, 42, 0); transform: scale(1.05); }
    100% { box-shadow: 0 0 0 0 rgba(15, 23, 42, 0); transform: scale(1); }
}

.animate-pulse-orange {
    animation: pulse-orange 2s infinite;
}

.animate-pulse-navy {
    animation: pulse-navy 2s infinite;
}

/* Futuristic / Modern UI Utilities */
.blueprint-grid {
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(249, 115, 22, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(249, 115, 22, 0.05) 1px, transparent 1px);
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.hero-glass {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.text-stroke {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    color: transparent;
}

@keyframes grid-move {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.animate-grid {
    animation: grid-move 4s linear infinite;
}

.scanline {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(249, 115, 22, 0.5), transparent);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { transform: translateY(-100%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

/* Wood Plank Texture Overlay */
.bg-wood-texture {
    position: relative;
}

.bg-wood-texture::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Vertical Plank Lines */
    background-image: 
        linear-gradient(90deg, rgba(0,0,0,0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 100px 100%, 102px 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-wood-texture::after {
    content: "";
    position: absolute;
    inset: 0;
    /* Subtle Wood Grain Noise */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.4' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.2'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.bg-wood-texture > * {
    position: relative;
    z-index: 1;
}
