/* Home page specific styles - Cold Mission-Critical Intelligence Aesthetic */

/* Hero section - Stark tactical grid */
.hero-section {
    position: relative;
    overflow: hidden;
    background: #0a101f;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, #30363d 1px, transparent 1px),
        linear-gradient(180deg, #30363d 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(106, 168, 204, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Form inputs focus states - Tactical cyan accent */
input:focus {
    outline: none;
    border-color: #6AA8CC !important;
    box-shadow: 0 0 0 2px rgba(106, 168, 204, 0.2) !important;
}

input {
    background-color: #0a101f !important;
    border-color: #30363d !important;
    color: #e6f1ff !important;
}

input::placeholder {
    color: #8b949e !important;
}

/* Subscription form animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subscription-form {
    animation: fadeInUp 0.6s ease-out;
}

/* Card hover effect - Subtle tactical glow */
.tactical-card {
    transition: all 0.3s ease;
    border: 1px solid #30363d;
}

.tactical-card:hover {
    border-color: #6AA8CC;
    box-shadow: 0 0 20px rgba(106, 168, 204, 0.15);
}

/* Button hover effects */
button[type="submit"]:active {
    transform: scale(0.98);
}

/* Data grid overlay for sections */
.data-section {
    position: relative;
}

.data-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, rgba(55, 65, 81, 0.4) 1px, transparent 1px),
        linear-gradient(180deg, rgba(55, 65, 81, 0.4) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

/* Responsive typography adjustments */
@media (max-width: 640px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
}
