/* === VARIABLES === */
:root {
    --neon-green: #39FF14;
    --neon-pink: #FF10F0;
    --neon-blue: #00F0FF;
    --dark-bg: #0a0a0f;
    --dark-card: #14141f;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
}

/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === ANIMATED BACKGROUND === */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(57, 255, 20, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 16, 240, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 240, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: bgShift 20s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 60px 20px;
}

.veteran-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(29, 78, 216, 0.2));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
    50% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.6); }
}

.glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: -3px;
    margin: 20px 0;
    text-transform: uppercase;
    position: relative;
    color: var(--text-primary);
    text-shadow: 
        0 0 10px var(--neon-green),
        0 0 20px var(--neon-green),
        0 0 30px var(--neon-green);
    animation: glitchText 3s infinite;
}

@keyframes glitchText {
    0%, 90%, 100% { opacity: 1; }
    94% { opacity: 0.8; }
    96% { opacity: 1; }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 8px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.hero-tagline {
    margin: 30px 0;
}

.neon-text {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--neon-pink);
    text-shadow: 
        0 0 10px var(--neon-pink),
        0 0 20px var(--neon-pink);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: var(--dark-card);
    border: 2px solid var(--neon-green);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-top: 40px;
    position: relative;
}

.pulse-ring {
    width: 12px;
    height: 12px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-green);
    animation: pulseRing 1.5s ease-out infinite;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* === SECTIONS === */
section {
    padding: 100px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.neon-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-pink), var(--neon-blue));
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--neon-green);
}

/* === TRAILER === */
.trailer-showcase {
    background: var(--dark-card);
    padding: 80px 20px;
    border-top: 2px solid rgba(57, 255, 20, 0.3);
    border-bottom: 2px solid rgba(57, 255, 20, 0.3);
}

.trailer-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.trailer-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 
        0 0 30px rgba(57, 255, 20, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.5);
}

.trailer-overlay {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(57, 255, 20, 0.1);
    border: 2px solid var(--neon-green);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.feature-badge .icon {
    font-size: 1.5rem;
}

/* === MISSION === */
.mission {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-statement {
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-statement .lead {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.mission-statement .emphasis {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-card {
    background: var(--dark-card);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s;
    text-align: center;
}

.value-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.value-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--neon-green);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* === PRODUCTS === */
.products {
    background: var(--dark-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--dark-card);
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.product-card:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 16, 240, 0.3);
    transform: translateY(-8px);
}

.product-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.product-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--neon-pink);
}

.product-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* === NOTIFY === */
.notify {
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.1), rgba(255, 16, 240, 0.1));
    padding: 100px 20px;
    text-align: center;
}

.notify-content {
    max-width: 600px;
    margin: 0 auto;
}

.notify-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.notify-form {
    display: flex;
    gap: 15px;
    margin: 40px 0 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.notify-form input {
    flex: 1;
    min-width: 250px;
    padding: 18px 25px;
    background: var(--dark-card);
    border: 2px solid var(--neon-green);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    outline: none;
}

.notify-form button {
    padding: 18px 40px;
    background: var(--neon-green);
    color: var(--dark-bg);
    border: none;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.5);
}

.notify-form button:hover {
    background: var(--text-primary);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.8);
}

.privacy {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* === FOOTER === */
footer {
    background: var(--dark-card);
    padding: 60px 20px 30px;
    border-top: 2px solid rgba(57, 255, 20, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--neon-green);
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.footer-col a {
    color: var(--neon-pink);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--text-primary);
}

.veteran-text {
    color: var(--text-primary) !important;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .notify-form input,
    .notify-form button {
        width: 100%;
    }
    
    .trailer-overlay {
        flex-direction: column;
    }
}
