@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, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
    scroll-behavior: smooth;
}

.hardware-image { filter: drop-shadow(0 0 30px rgba(16, 185, 129, 0.3)); }

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

.form-input:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.text-gray-300 { color: rgb(226, 232, 240); }

.glass-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

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

.border-techEmerald { border-color: #10b981 !important; }
.bg-techEmerald { background-color: #10b981 !important; }
.text-techEmerald { color: #10b981 !important; }

.cookie-banner {
    background: #1e293b;
    border: 1px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    background: #10b981;
    color: #0f172a;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #34d399;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

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

.btn-secondary:hover { background: rgba(16, 185, 129, 0.1); }

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.5);
}

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