/* assets/css/landing.css — ScoutAI Custom Overrides */
html {
    scroll-behavior: smooth;
}

/* Custom pattern for purple tint edges */
.pixel-edge-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 32px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="64" height="32" viewBox="0 0 64 32"><path fill="%23ffffff" d="M0 16h16v16H0zM16 8h16v16H16zM32 16h16v16H32zM48 8h16v16H48z"/></svg>');
    background-repeat: repeat-x;
    background-position: bottom left;
    z-index: 10;
}

/* Marquee Animation */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 2px #fff;
}
.text-outline-dark {
    color: transparent;
    -webkit-text-stroke: 2px #131313;
}

/* Smooth fade in */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Accordion */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-item.active .faq-answer {
    max-height: 500px;
}
.faq-icon {
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Blend mode for purple hero images */
.blend-purple {
    background-color: #4c35b9;
}
.blend-purple img {
    mix-blend-mode: luminosity;
    opacity: 0.8;
}

/* Image zoom effect */
.img-zoom-container {
    overflow: hidden;
}
.img-zoom-container img {
    transition: transform 0.7s ease;
}
.img-zoom-container:hover img {
    transform: scale(1.05);
}

/* Footer SCOUTAI Logo Text - Ultra condensed heavy */
.footer-logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 5rem;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    font-stretch: ultra-condensed;
    transform: scaleX(0.75);
    transform-origin: left bottom;
}
@media (min-width: 768px) {
    .footer-logo-text {
        font-size: 8rem;
    }
}
@media (min-width: 1024px) {
    .footer-logo-text {
        font-size: 10rem;
    }
}
