@charset "UTF-8";
/*
Theme Name: LifePods Child Theme
Theme URI: https://lifepods.fr/
Template: hello-elementor
Author: Momentum Technologies
Author URI: https://lifepods.fr/
Description: Child theme designed for the LifePods / Momentum Technologies corporate website.
Version: 1.0.0
*/

:root {
    --font-title: 'Outfit', 'Inter', 'Roboto', 'Helvetica Neue', sans-serif;
    --font-sans: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;

    /* Palette de Couleurs (Dark Mode Prédominant) */
    --color-bg-dark: #050608;          /* Noir Tactique / Bunker */
    --color-bg-panel: rgba(10, 12, 16, 0.75); /* Anthracite Foncé semi-transparent */
    --color-bg-panel-solid: #0a0c10;   /* Anthracite Foncé solide */
    
    --color-text-main: #ffffff;        /* Blanc Pur / Blanc Cassé */
    --color-text-muted: #cbd5e1;       /* Gris Technique Clair / Haute Lisibilité */
    --color-text-dimmed: #94a3b8;      /* Gris sombre / Muted original */

    /* Accentuation Technologique (UI / Code) */
    --color-accent-cyan: #00f2fe;      /* Bleu Cyan Électrique / Bleu Futuriste */
    --color-accent-blue: #0077ff;      /* Bleu Tactique B01 */
    --color-accent-orange: #ff5a00;    /* Orange Néon (Alerte / Statut) */
    --color-accent-red: #ff3300;       /* Rouge Alerte */

    /* Lignes de structure et bordures (1px fine border) */
    --color-border: rgba(0, 242, 254, 0.15); /* Bordure fine cyan électrique estompée */
    --color-border-grey: rgba(142, 159, 174, 0.2); /* Bordure fine grise technique */
    --color-border-active: rgba(0, 242, 254, 0.5); /* Bordure fine cyan active */
    --border-width-fine: 1px;          /* Bordure fine de 1px */
    --border-fine: var(--border-width-fine) solid var(--color-border-grey);
    --border-cyan-fine: var(--border-width-fine) solid var(--color-border);

    /* Gradients */
    --gradient-cyan-blue: linear-gradient(135deg, #00f2fe, #0077ff);
    --gradient-orange: linear-gradient(135deg, #ff5a00, #ff3300);
    --gradient-dark: linear-gradient(180deg, #0a0c10, #050608);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.005));

    /* UI Specs */
    --border-radius-tactical: 0px;     /* Pas ou très peu d'arrondis pour le style de commandement tactique */
    --border-radius-badge: 2px;
    --transition-fast: 0.15s ease-in-out;
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-tactical: 0 10px 30px rgba(0, 0, 0, 0.7);
    --header-height: 80px;
}

/* Premium Blueprint Background Grid (CAD / Tactical Interface) */
body {
    background-color: var(--color-bg-dark) !important;
    background-image: 
        linear-gradient(to right, rgba(0, 242, 254, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 242, 254, 0.015) 1px, transparent 1px) !important;
    background-size: 40px 40px !important;
    background-attachment: fixed !important;
}

/* Enforce Tactical Style: Sharp Edges & Fine Borders globally */
.lp-cta-btn,
.lp-capsule-card,
.lp-glass-panel,
.lp-timeline-box,
.lp-feature-card,
.lp-p-price-box,
.dropdown-menu,
.lp-form-input,
.lp-form-select,
.lp-form-textarea {
    border-radius: var(--border-radius-tactical) !important;
    border-width: var(--border-width-fine) !important;
}

/* Dynamic glow interactions for premium visual feedback */
.lp-capsule-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 20px var(--color-card-glow) !important;
    border-color: rgba(0, 242, 254, 0.3) !important;
}

.lp-timeline-item.active .lp-timeline-marker {
    background: var(--color-accent-cyan) !important;
    box-shadow: 0 0 15px var(--color-accent-cyan) !important;
}

.lp-timeline-marker {
    border-color: var(--color-accent-cyan) !important;
}

/* Spaces out tech titles and labels */
.lp-section-badge {
    border-radius: 0 !important;
    font-weight: 700 !important;
    letter-spacing: 0.2em !important;
    color: var(--color-accent-cyan) !important;
    background: rgba(0, 242, 254, 0.04) !important;
    border: 1px solid rgba(0, 242, 254, 0.2) !important;
}

.lp-section-title {
    font-family: var(--font-title);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lp-logo-main {
    letter-spacing: 0.15em !important;
    font-weight: 900 !important;
}

.lp-logo-sub {
    color: var(--color-accent-cyan) !important;
    letter-spacing: 0.28em !important;
}

/* Smooth micro-animations for interactive elements */
.lp-cta-btn {
    transition: var(--transition-smooth) !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 13px !important;
}

.lp-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.15);
}

/* Legibility overrides for dark theme headings */
h1, h2, h3, h4, h5, h6,
.lp-section-title,
.lp-capsule-name,
.lp-market-title,
.lp-news-title,
.lp-founder-name {
    color: #ffffff !important;
}

/* Hero Banner Alignment Override (Align Left on Desktop, Center on Mobile) */
.lp-hero .lp-container {
    justify-content: flex-start !important;
}
.lp-hero-content {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}
.lp-hero-btns {
    justify-content: flex-start !important;
}

@media (max-width: 992px) {
    .lp-hero .lp-container {
        justify-content: center !important;
    }
    .lp-hero-content {
        text-align: center !important;
        margin: 0 auto !important;
    }
    .lp-hero-btns {
        justify-content: center !important;
    }
}

/* Market tags colors & styling for high visibility */
.lp-market-tag {
    padding: 6px 14px !important;
    border-radius: var(--border-radius-tactical) !important; /* Pas ou très peu d'arrondis pour le style tactique */
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    transition: var(--transition-smooth) !important;
}

.lp-market-tag.tag-sec-01 {
    background: rgba(0, 119, 255, 0.1) !important;
    border: 1px solid rgba(0, 119, 255, 0.4) !important;
    color: #38bdf8 !important; /* Cyan-blue clair très lisible */
}
.lp-market-tag.tag-sec-01:hover {
    background: rgba(0, 119, 255, 0.2) !important;
    border-color: #38bdf8 !important;
    box-shadow: 0 0 12px rgba(0, 119, 255, 0.3) !important;
}

.lp-market-tag.tag-sec-02 {
    background: rgba(255, 90, 0, 0.1) !important;
    border: 1px solid rgba(255, 90, 0, 0.4) !important;
    color: #ff7849 !important; /* Orange clair très lisible */
}
.lp-market-tag.tag-sec-02:hover {
    background: rgba(255, 90, 0, 0.2) !important;
    border-color: #ff7849 !important;
    box-shadow: 0 0 12px rgba(255, 90, 0, 0.3) !important;
}

.lp-market-tag.tag-sec-03 {
    background: rgba(0, 242, 254, 0.1) !important;
    border: 1px solid rgba(0, 242, 254, 0.4) !important;
    color: #22d3ee !important; /* Cyan clair très lisible */
}
.lp-market-tag.tag-sec-03:hover {
    background: rgba(0, 242, 254, 0.2) !important;
    border-color: #22d3ee !important;
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.3) !important;
}

.lp-market-tag.tag-sec-04 {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #f1f5f9 !important; /* Blanc cassé très lisible */
}
.lp-market-tag.tag-sec-04:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: #f1f5f9 !important;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.2) !important;
}


