/*
 * Home theme inspired by cybersecurity dashboard patterns.
 * Original implementation for Humanaid homepage.
 */

.theme-cyber-intel {
    background:
        radial-gradient(1200px 500px at 10% -10%, rgba(37, 99, 235, 0.14), transparent 60%),
        radial-gradient(900px 420px at 90% -5%, rgba(14, 165, 233, 0.12), transparent 60%),
        var(--light-bg);
}

.theme-cyber-intel .intel-notice {
    background: linear-gradient(90deg, #0a1020 0%, #101a34 50%, #0a1020 100%);
    border-top: 1px solid rgba(96, 165, 250, 0.2);
    border-bottom: 1px solid rgba(96, 165, 250, 0.2);
    color: #e2ecff;
    font-size: clamp(12px, 1.1vw, 13px);
    letter-spacing: 0.01em;
}

.theme-cyber-intel .intel-notice .container {
    padding: clamp(8px, 1vw, 10px) 0;
}

.theme-cyber-intel .intel-notice p {
    margin: 0;
}

.theme-cyber-intel .hero {
    background:
        linear-gradient(130deg, #070b16 0%, #0d1730 52%, #122245 100%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.theme-cyber-intel .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: 0.18;
    pointer-events: none;
    z-index: 1;
}

.theme-cyber-intel .hero .container {
    position: relative;
    z-index: 2;
}

.theme-cyber-intel .hero-title {
    text-shadow: 0 8px 24px rgba(2, 6, 23, 0.55);
}

.theme-cyber-intel .hero-subtitle {
    color: rgba(226, 232, 240, 0.95);
}

.theme-cyber-intel .hero-intel-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 clamp(14px, 1.8vw, 20px);
    max-width: 560px;
}

.theme-cyber-intel .intel-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: clamp(12px, 1.05vw, 13px);
    font-weight: 700;
    color: #dbeafe;
    background: rgba(30, 58, 138, 0.32);
    border: 1px solid rgba(125, 211, 252, 0.38);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.theme-cyber-intel .intel-chip::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22d3ee;
    box-shadow: 0 0 12px #22d3ee;
}

.theme-cyber-intel .hero-intel-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: clamp(4px, 0.8vw, 8px);
}

.theme-cyber-intel .hero-intel-actions .btn {
    min-width: 150px;
    justify-content: center;
}

.theme-cyber-intel .hero-intel-actions .btn-outline {
    border-color: rgba(147, 197, 253, 0.45);
    color: #e2e8f0;
}

.theme-cyber-intel .hero-intel-actions .btn-outline:hover {
    border-color: #93c5fd;
    background: rgba(147, 197, 253, 0.12);
}

.theme-cyber-intel .main-news-section,
.theme-cyber-intel .vision-section,
.theme-cyber-intel .services-section,
.theme-cyber-intel .partners-section {
    position: relative;
}

.theme-cyber-intel .news-card.featured.text-only,
.theme-cyber-intel .vision-main,
.theme-cyber-intel .service-card-new,
.theme-cyber-intel .partner-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 251, 255, 0.98) 100%);
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.theme-cyber-intel .news-card.featured.text-only:hover,
.theme-cyber-intel .service-card-new:hover,
.theme-cyber-intel .partner-card:hover {
    box-shadow: 0 22px 36px rgba(15, 23, 42, 0.14);
}

.theme-cyber-intel .section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.theme-cyber-intel .section-subtitle::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #38bdf8;
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.7);
}

@media (max-width: 768px) {
    .theme-cyber-intel .intel-notice {
        font-size: 12px;
    }

    .theme-cyber-intel .hero-intel-chips {
        justify-content: center;
        max-width: 100%;
    }

    .theme-cyber-intel .hero-intel-actions {
        justify-content: center;
    }

    .theme-cyber-intel .hero-intel-actions .btn {
        min-width: 132px;
    }
}
