/* Final CTA Section - Secure Defense */
.secure-defense-section {
    min-height: 100vh;
    background: radial-gradient(ellipse at center, #1a1f3a 0%, #0a0e27 100%);
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.secure-defense-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 80%, rgba(53, 67, 240, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.05) 0%, transparent 70%);
    animation: rotateGradient 30s linear infinite;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Particle Effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float-up 20s linear infinite;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Content Container */
.secure-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* New CTA Title */
.cta-main-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CTA Subtitle */
.cta-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 600;
    line-height: 1.4;
}

/* CTA Disclaimer */
.cta-disclaimer {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 4rem;
    margin-top: 2rem;
}

/* Main CTA Button - Waitlist Style */
.secure-cta-button {
    background: linear-gradient(135deg, #3543F0 0%, #8B5CF6 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 20px 50px;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.05em;
    box-shadow: 
        0 15px 30px rgba(53, 67, 240, 0.4),
        0 0 50px rgba(139, 92, 246, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    display: inline-block;
}

@keyframes pulse-button {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.secure-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.secure-cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(53, 67, 240, 0.5),
        0 0 60px rgba(139, 92, 246, 0.4);
}

.secure-cta-button:hover::before {
    left: 100%;
}

.secure-cta-button:active {
    transform: translateY(-2px) scale(1.03);
}

/* Supporting Text */
.secure-tagline {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-bottom: 4rem;
    font-weight: 600;
}

.secure-tagline span {
    display: block;
    margin-top: 0.5rem;
}

.secure-highlight {
    color: #4ade80;
    font-weight: 700;
}

/* Brand Statement */
.brand-statement {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin: 4rem 0 3rem;
    line-height: 1.3;
}

.brand-name {
    background: linear-gradient(135deg, #3543F0 0%, #667eea 50%, #3543F0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2em;
}

.brand-tagline {
    font-size: 0.6em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(236, 72, 153, 0.1);
    border: 2px solid rgba(236, 72, 153, 0.3);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #f472b6;
    margin-top: 2rem;
    animation: glow-badge 2s ease-in-out infinite;
}

@keyframes glow-badge {
    0%, 100% {
        box-shadow: 0 0 20px rgba(236, 72, 153, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(236, 72, 153, 0.5);
    }
}

.coming-soon-badge::before {
    content: '🚀';
    font-size: 1.5rem;
}

/* Floating Elements */
.float-element {
    position: absolute;
    opacity: 0.1;
    font-size: 2rem;
    color: #3543F0;
    animation: float-around 20s ease-in-out infinite;
}

@keyframes float-around {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, -50px) rotate(90deg);
    }
    50% {
        transform: translate(-50px, -100px) rotate(180deg);
    }
    75% {
        transform: translate(-100px, 50px) rotate(270deg);
    }
}

.float-element:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.float-element:nth-child(2) { top: 20%; right: 15%; animation-delay: 5s; }
.float-element:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 10s; }
.float-element:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 15s; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .secure-defense-section {
        min-height: 100vh;
        padding: 60px 20px;
    }
    
    .secure-cta-button {
        padding: 25px 40px;
        font-size: 1.25rem;
    }
    
    .secure-tagline {
        font-size: 1.25rem;
    }
    
    .brand-statement {
        font-size: 1.75rem;
    }
    
    .coming-soon-badge {
        font-size: 1rem;
        padding: 12px 24px;
    }
}

/* High Impact Entrance Animation */
@keyframes heroEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.secure-container > * {
    animation: heroEntrance 1s ease-out backwards;
}

.secure-cta-button { animation-delay: 0.2s; }
.secure-tagline { animation-delay: 0.4s; }
.brand-statement { animation-delay: 0.6s; }
.coming-soon-badge { animation-delay: 0.8s; }