body {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    background-color: #050505;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.08), transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.08), transparent 25%);
    background-attachment: fixed;
}

/* Page-specific bg-grid removed to use global bg-grid from global.css */

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

body::before {
    background:
        radial-gradient(circle at 16% 14%, rgba(56, 189, 248, 0.14), transparent 30%),
        radial-gradient(circle at 84% 18%, rgba(168, 85, 247, 0.12), transparent 30%),
        radial-gradient(circle at 52% 84%, rgba(59, 130, 246, 0.10), transparent 34%);
    filter: blur(20px);
    animation: ambientDrift 18s ease-in-out infinite alternate;
}

.glass-panel {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page-specific reveal removed to use global reveal from global.css */

.product-hero-card {
    min-height: 50vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s ease;
}

.product-hero-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.feature-item::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: currentColor;
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
}

.chip {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

nav.glass-panel {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
