:root {
    --bg: #050507;
    --accent-cyan: #00f2fe;
    --accent-purple: #bf5af2;
    --text: #ffffff;
    --text-dim: #a0a0b0;
	--gradient-aura: linear-gradient(135deg, var(--accent-purple), #4facfe 50%, var(--accent-cyan) 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    background: var(--bg); 
    color: var(--text); 
    font-family: 'Outfit', sans-serif; 
    overflow-x: hidden;
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- HEADER --- */
.header { padding: 50px 0; }
.header-center { display: flex; justify-content: center; }
.main-logo { height: 40px; width: auto; opacity: 0.9; }

.header {
    padding: 30px 0;
    position: relative;
}

.header-content {
    display: flex;
    justify-content: center; /* Centre le logo parfaitement */
    align-items: center;
    position: relative; /* Nécessaire pour le positionnement de la langue */
}

.main-logo {
    height: 40px; /* Ajuste selon ton logo */
    display: block;
}

.lang-selector {
    position: absolute;
    right: 20px; /* Aligné à droite du container */
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.lang-link {
    text-decoration: none;
    color: #555;
    transition: 0.3s ease;
}

.lang-link.active {
    color: var(--accent-cyan, #00f2ff);
}

.lang-link:hover {
    color: white;
}

.lang-separator {
    color: #222;
    margin: 0 5px;
}

/* Adaptation Mobile : On réduit un peu la taille pour que tout tienne */
@media (max-width: 600px) {
    .main-logo {
        height: 30px;
    }
    .lang-selector {
        right: 15px;
        font-size: 0.7rem;
    }
}





/* --- HERO --- */
.hero { padding: 40px 0 120px 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-content{ z-index: 999; }

h1 { font-family: 'Michroma', sans-serif; font-size: 4.2rem; line-height: 1.1; margin-bottom: 24px; }
.text-gradient { background: var(--gradient-aura); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 10px rgba(191, 90, 242, 0.2)); }
.hero-description { font-size: 1.2rem; color: var(--text-dim); margin-bottom: 40px; max-width: 500px; font-weight: 300; }

.btn-primary { 
    background: var(--gradient-aura); 
    color: #000000; /* Texte noir pour une lisibilité maximale */
    padding: 18px 45px; 
    border-radius: 50px; 
    font-weight: 700; /* Poids de police augmenté */
    text-decoration: none; 
    display: inline-block; 
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.3);
    border: none;
	font-size: 1.2rem;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(161, 140, 209, 0.4); }

/* --- IPHONE (TAILLE AUGMENTÉE) --- */
.hero-image-wrapper { position: relative; display: flex; justify-content: center; }
.phone-container { position: relative; animation: float 6s ease-in-out infinite; }
.iphone { width: 110%; max-width: 480px; z-index: 2; position: relative; } /* Augmenté de 380px à 480px */

.floating-card {
    position: absolute; bottom: 20%; left: -10%;
    background: rgba(10, 10, 15, 0.85); backdrop-filter: blur(15px);
    padding: 16px 28px; border-radius: 18px; border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 3; display: flex; align-items: center; gap: 12px;
}
.icon-scan { width: 24px; height: 24px; color: var(--accent-cyan); }
.floating-card span { color: var(--accent-cyan); font-size: 1rem; font-weight: 500; }

.glow-sphere { 
    position: absolute; width: 550px; height: 550px; 
    background: radial-gradient(circle, rgba(161, 140, 209, 0.2) 0%, transparent 70%); 
    filter: blur(80px); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1;
}

/* --- FEATURES (STYLE INVERSÉ) --- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-bottom: 80px; }

.feature-card {
    background: rgba(0, 242, 254, 0.08); 
    border: 1px solid var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 242, 254, 0.15);
    padding: 35px; border-radius: 24px;
    display: flex; flex-direction: row; align-items: center; gap: 20px;
    transition: all 0.4s ease; transform: translateY(-5px);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    transform: translateY(0);
}

.icon-container { width: 50px; height: 50px; color: var(--accent-cyan); transition: 0.3s; }
.feature-card:hover .icon-container { color: var(--text-dim); }

.card-content h3 { font-size: 1.4rem; margin-bottom: 5px; font-weight: 600; }
.card-content p { font-size: 0.95rem; color: var(--text-dim); }


/* --- Footer Design --- */
.site-footer {
    margin-top: 10px; /* Espace avec le contenu du haut */
    padding: 60px 20px 40px;
    background: linear-gradient(to top, #050505, transparent); /* Dégradé subtil vers le noir */
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Ligne très fine de séparation */
}

.footer-logo {
    font-family: 'Orbitron', sans-serif; /* Assure-toi d'avoir cette police ou la tienne */
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-mission {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
    margin: 0 5px;
}

.footer-links a:hover {
    color: var(--accent-cyan); /* Utilise ta variable cyan */
}

.separator {
    color: #444;
}

/* Badge de statut "Phase 1" */
.footer-status {
    display: inline-flex;
    align-items: center;
    background: rgba(191, 90, 242, 0.1); /* Fond violet très léger */
    border: 1px solid rgba(191, 90, 242, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px var(--accent-cyan);
    animation: pulse 2s infinite;
}

.copyright {
    color: #555;
    font-size: 0.8rem;
    line-height: 1.6;
}

.privacy-note {
    color: #777;
    font-weight: 600;
}

/* Animation du petit point vert/cyan */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Adaptation Mobile */
@media (max-width: 600px) {
    .site-footer {
        margin-top: 50px;
        padding-bottom: 80px; /* Plus d'espace en bas sur mobile */
    }
}




/* --- DECO & ANIM --- */
.ambient-glow {
    position: fixed; top: -10%; right: -10%; width: 1000px; height: 1000px;
    background: radial-gradient(circle, rgba(161, 140, 209, 0.15) 0%, transparent 70%);
    z-index: -1; filter: blur(120px);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(1deg); }
}

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .features-grid { grid-template-columns: 1fr; }
    h1 { font-size: 3rem; }
    .iphone { max-width: 400px; }
}