/*
Theme Name: QAIOS Landing
Theme URI: https://qaios.io
Description: A simple landing page theme for QAIOS.IO - The Q AI Operating System
Author: BridgeBrain
Author URI: https://qaios.io
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: qaios-landing
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #1a2f3a;
    background: linear-gradient(135deg, #1a2f3a 0%, #1f3d4a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.landing-container {
    text-align: center;
    padding: 2rem;
}

.main-title {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    line-height: 1.1;
}

.subtitle {
    font-size: clamp(0.875rem, 2.5vw, 1.25rem);
    color: #8fa5b0;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 768px) {
    .landing-container {
        padding: 1rem;
    }
}
