/* --- Ignite Page Specific Styles --- */
.ignite-body {
    background-color: #030303; /* Deep space black */
    color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Fix header links specifically for the dark background on this page */
.ignite-body .site-header.scrolled {
    background: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.btn-ignite-call {
    color: white; 
    border-color: rgba(255,255,255,0.5); 
    background: transparent;
}
.ignite-body .site-header.scrolled .btn-ignite-call {
    color: rgb(40, 179, 187);
    border-color: rgba(255,255,255,0.2);
}
.ignite-body .btn-call:hover {
    background: var(--accent-color, #00d2d3) !important;
    color: #000 !important;
    border-color: var(--accent-color, #00d2d3) !important;
}

/* Hero Section setup */
.ignite-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
    padding: 150px 20px 80px; 
    overflow: hidden; 
}

/* =========================================
   ANIMATED BACKGROUNDS (NEW)
   ========================================= */

/* Cyber Grid Background */
.ignite-grid-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    transform: perspective(500px) rotateX(60deg) translateY(-100px);
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

/* Floating Elements (NEW) */
.floating-icons {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: -1;
}

.float-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.05);
    animation: floatUpDown 6s ease-in-out infinite alternate;
}

.float-icon-1 { top: 20%; left: 15%; font-size: 3rem; animation-delay: 0s; color: rgba(0, 210, 211, 0.1); }
.float-icon-2 { top: 60%; left: 10%; font-size: 5rem; animation-delay: -2s; }
.float-icon-3 { top: 25%; right: 15%; font-size: 4rem; animation-delay: -4s; color: rgba(255, 94, 0, 0.1); }
.float-icon-4 { top: 70%; right: 10%; font-size: 3.5rem; animation-delay: -1s; }

@keyframes floatUpDown {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-40px) rotate(15deg); }
}

/* Ambient Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
    animation: drift 10s infinite alternate ease-in-out;
}

.orb-top {
    width: 400px;
    height: 400px;
    background: rgba(0, 210, 211, 0.4); 
    top: 5%;
    left: 15%;
}

.orb-bottom {
    width: 500px;
    height: 500px;
    background: rgba(138, 43, 226, 0.2); 
    bottom: -10%;
    right: 5%;
    animation-delay: -5s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

/* Content Container */
.ignite-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 2;
    width: 100%;
    position: relative;
}

.badge-container { margin-bottom: 30px; }

.ignite-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.ignite-badge i {
    color: #ff5e00;
    margin-right: 8px;
    animation: flicker 2s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.ignite-title {
    font-size: clamp(1.8rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #ffffff;
    text-transform: uppercase;
}

/* =========================================
   NEW GLOWING SCAN-LINE TEXT EFFECT
   ========================================= */
.coming-soon-wrapper {
    position: relative;
    display: inline-block;
    margin: 0 0 30px 0;
}

.glowing-text {
    font-size: clamp(2.5rem, 8vw, 7rem);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
    margin: 0;
    text-shadow: 
        0 0 10px rgba(255,255,255,0.3),
        0 0 40px rgba(0, 210, 211, 0.4),
        0 0 80px rgba(0, 210, 211, 0.4);
}

/* Shiny sweep overlay */
.glowing-text::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: var(--accent-color, #00d2d3);
    overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    animation: sweep 4s ease-in-out infinite;
    text-shadow: 0 0 20px var(--accent-color, #00d2d3);
}

@keyframes sweep {
    0%, 10% { clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%); }
    50% { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    90%, 100% { clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%); }
}

.ignite-desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ignite-desc strong {
    color: var(--accent-color, #00d2d3);
}

/* Buttons */
.ignite-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-ignite-home {
    padding: 15px 35px;
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(5px);
}

.btn-ignite-home:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-3px);
}

.btn-ignite-notify {
    padding: 15px 35px;
    background: var(--accent-color, #00d2d3);
    color: #000000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 20px rgba(0, 210, 211, 0.4);
}

.btn-ignite-notify:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 210, 211, 0.8);
    background: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .ignite-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .btn-ignite-home, .btn-ignite-notify {
        width: 100%;
        justify-content: center;
    }

    .orb-top {
        width: 250px;
        height: 250px;
        top: 0;
        left: -10%;
    }

    .orb-bottom {
        width: 300px;
        height: 300px;
        bottom: 0;
        right: -20%;
    }
    
    .float-icon { display: none; } /* Hide floating icons on small screens to reduce clutter */
}