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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #18181b 0%, #09090b 100%);
    color: #e4e4e7;
    scroll-behavior: smooth;
}

.hardware-image { filter: drop-shadow(0 0 35px rgba(245, 158, 11, 0.4)); }

.form-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e4e4e7;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.form-input:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.glass-card {
    background: rgba(39, 39, 42, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.border-cyberAmber { border-color: #f59e0b !important; }
.bg-cyberAmber { background-color: #f59e0b !important; }
.text-cyberAmber { color: #f59e0b !important; }

.cookie-banner {
    background: linear-gradient(135deg, #27272a 0%, #18181b 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.btn-primary {
    background: #f59e0b;
    color: #09090b;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    background: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #f59e0b;
    border: 2px solid #f59e0b;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover { background: rgba(245, 158, 11, 0.1); }

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.5);
}

.compliance-banner {
    background: #d97706;
    color: #ffffff;
    text-align: center;
    padding: 12px 0;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.spec-row {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.spec-row:last-child { border-bottom: none; }