/* --- SCROLL PROMPT --- */
#scroll-prompt {
    position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%);
    color: var(--primary-color); font-family: 'Courier Prime', monospace;
    font-size: 0.9rem; opacity: 0; pointer-events: none; z-index: 1000;
    text-align: center; transition: opacity 0.5s ease;
}
#scroll-prompt span { display: block; font-size: 1.5rem; margin-top: 5px; }

/* --- PROBLEM SECTION BACKGROUND --- */
#problem {
    position: relative;
    background: linear-gradient(rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.85)), url('../assets/img/emerg-comms.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
}

/* --- QUOTE SECTION BACKGROUND (Fixed "Slit") --- */
#quote-section {
    position: relative;
    background: linear-gradient(rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.85)), url('../assets/img/military-comms.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    /* Removed border-top that was causing the slit */
    border-top: none;
    padding: 80px 20px;
}

/* --- RADAR ANIMATION --- */
.radar-bg {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,87,34,0.05) 0%, transparent 70%);
    z-index: 0; pointer-events: none;
}
.radar-sweep {
    position: absolute; top: 50%; left: 50%; width: 50%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color));
    transform-origin: left;
    animation: radarSpin 4s linear infinite;
    opacity: 0.2;
}
@keyframes radarSpin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* --- TYPOGRAPHY & LAYOUT TWEAKS --- */
.test-stat h3 {
    font-size: 3.5rem; color: var(--primary-color); margin-bottom: 5px;
    font-family: 'Inter', sans-serif; font-weight: 800; line-height: 1;
}
.test-stat-label {
    font-family: 'Courier Prime', monospace; font-size: 0.75rem; color: white; opacity: 0.8; margin-bottom: 10px; display: block; letter-spacing: 1px;
}

.cta-large {
    display: inline-flex; align-items: center; gap: 10px; margin-top: 60px;
    padding: 20px 50px; font-size: 1.1rem; background: var(--primary-color);
    color: white; text-decoration: none; border-radius: 4px; font-weight: 700;
    transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(255, 87, 34, 0.2);
    text-transform: uppercase; letter-spacing: 1px;
}
.cta-large:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(255, 87, 34, 0.4); background: #ff7043; }

.testing-stat-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 60px; position: relative; z-index: 2;
}

/* --- MOBILE OVERRIDES (Added for Refactor) --- */
@media (max-width: 768px) {
    #intro-trigger-wrapper,
    #hero-home-anchor,
    #scroll-prompt {
        display: none !important;
    }

    /* Ensure the secondary hero becomes the primary hero */
    .hero-home {
        display: flex !important;
        min-height: 80vh;
        padding-top: 140px;
    }
}
