/* ========================================
   SANGUINUS — Defense-Tech Biotech
   Style: Anduril / Palantir inspired
   ======================================== */

:root {
    --bg-deep: #030810;
    --bg-base: #050a14;
    --bg-surface: #0a1628;
    --bg-card: #0d1b30;
    --blue: #0088ff;
    --blue-light: #00b4ff;
    --blue-glow: rgba(0, 136, 255, 0.15);
    --blue-glow-strong: rgba(0, 136, 255, 0.3);
    --red: #ff2244;
    --text: #e2e8f0;
    --text-muted: #64748b;
    --text-dim: #334155;
    --border: rgba(255, 255, 255, 0.06);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--bg-base);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--blue);
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* ---- Typography ---- */

.text-blue { color: var(--blue); }

.text-glow {
    color: var(--blue-light);
    text-shadow: 0 0 30px var(--blue-glow-strong), 0 0 60px var(--blue-glow);
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 4rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}

/* ---- Navigation ---- */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

.nav.scrolled {
    background: rgba(5, 10, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-logo:hover { color: var(--blue); }

.nav-links {
    display: flex;
    gap: 1.75rem;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--text); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--text);
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.nav-toggle span:first-child { top: 4px; }
.nav-toggle span:last-child { bottom: 4px; }

/* ---- Hero ---- */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-deep);
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--bg-deep) 70%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-badge {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--blue);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-title {
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    line-height: 1;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.hero-line {
    width: 60px;
    height: 1px;
    background: var(--blue);
    margin: 2.5rem auto 0;
    opacity: 0.6;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dim);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- Sections ---- */

.section {
    position: relative;
    padding: clamp(5rem, 12vw, 10rem) 0;
}

/* ---- Vision / Manifesto ---- */

.section-vision {
    background: var(--bg-base);
    border-top: 1px solid var(--border);
}

.manifesto {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-lead {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.manifesto-text {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.manifesto-highlight {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.manifesto-close {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--text-muted);
    font-style: italic;
}

/* ---- Product ---- */

.section-product {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.product-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.product-tagline {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--blue-light);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.product-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.product-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.product-stats .stat {
    padding: 1rem;
}

.stat {
    padding: 1.25rem;
    background: rgba(0, 136, 255, 0.04);
    border: 1px solid rgba(0, 136, 255, 0.1);
    border-radius: 8px;
    text-align: center;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-visual img {
    width: 100%;
    max-width: 420px;
    height: auto;
    position: relative;
    z-index: 2;
    border: 2px solid rgba(0, 163, 255, 0.6);
    border-radius: 12px;
    box-shadow:
        0 0 15px rgba(0, 163, 255, 0.3),
        0 0 30px rgba(0, 163, 255, 0.15),
        inset 0 0 15px rgba(0, 163, 255, 0.05);
    overflow: hidden;
}

.product-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.2) 0%, rgba(0, 136, 255, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* ---- Technology ---- */

.section-tech {
    position: relative;
    background: var(--bg-base);
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.tech-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.tech-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.tech-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 10, 25, 0.70) 0%,
        rgba(5, 10, 25, 0.45) 35%,
        rgba(5, 10, 25, 0.55) 65%,
        rgba(5, 10, 25, 0.85) 100%
    );
}

.section-tech .container {
    position: relative;
    z-index: 1;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.tech-card {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: rgba(10, 20, 40, 0.80);
    border: 1px solid rgba(0, 163, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.tech-card:hover {
    border-color: rgba(0, 136, 255, 0.2);
    background: rgba(10, 22, 40, 0.9);
    transform: translateY(-2px);
}

.tech-icon {
    margin-bottom: 1.25rem;
    opacity: 0.8;
}

.tech-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.tech-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- Mission ---- */

.section-mission {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    text-align: center;
}

.mission-content {
    max-width: 750px;
    margin: 0 auto 5rem;
}

.mission-text {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mission-divider {
    width: 40px;
    height: 1px;
    background: var(--blue);
    margin: 3rem auto;
    opacity: 0.4;
}

.mission-question {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.mission-answer {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 300;
    color: var(--blue-light);
    font-style: italic;
    margin-bottom: 0;
}

.mission-closing {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--text-muted);
    line-height: 2;
}

.mission-cta {
    display: flex;
    justify-content: center;
}

.cta-badge {
    display: inline-block;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 1.25rem 3rem;
    border: 2px solid var(--blue);
    color: var(--blue-light);
    border-radius: 4px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.cta-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-glow) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.cta-badge:hover::before { opacity: 1; }

/* ---- Footer ---- */

.footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dim);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* ---- Capacites ---- */

.section-capacites {
    background: var(--bg-base);
    border-top: 1px solid var(--border);
}

.cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cap-card {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: rgba(10, 20, 40, 0.60);
    border: 1px solid rgba(0, 163, 255, 0.12);
    border-radius: 12px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.cap-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 136, 255, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 12px;
}

.cap-card:hover::before { opacity: 1; }

.cap-card:hover {
    border-color: rgba(0, 136, 255, 0.25);
    transform: translateY(-2px);
}

.cap-icon {
    margin-bottom: 1.25rem;
    opacity: 0.8;
}

.cap-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    position: relative;
}

.cap-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
}

.cap-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.2rem 0.65rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    border: 1px solid rgba(0, 136, 255, 0.2);
    border-radius: 50px;
    position: relative;
}

/* ---- Investisseurs ---- */

.section-investors {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}

.investor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.investor-stat {
    padding: 2rem 1.5rem;
    background: rgba(0, 136, 255, 0.04);
    border: 1px solid rgba(0, 136, 255, 0.1);
    border-radius: 12px;
    text-align: center;
}

.investor-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.investor-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.inv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.inv-card {
    padding: clamp(1.5rem, 3vw, 2rem);
    background: rgba(10, 20, 40, 0.50);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.3s;
}

.inv-card:hover {
    border-color: rgba(0, 136, 255, 0.15);
}

.inv-number {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.inv-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.inv-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Roadmap */
.roadmap {
    margin-bottom: 4rem;
}

.roadmap-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.roadmap-track {
    display: flex;
    gap: 0;
    position: relative;
}

.roadmap-track::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(0, 136, 255, 0.15);
}

.roadmap-phase {
    flex: 1;
    position: relative;
    padding-top: 2.5rem;
    padding-right: 1rem;
}

.roadmap-dot {
    position: absolute;
    top: 5px;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(0, 136, 255, 0.3);
    background: var(--bg-surface);
}

.roadmap-phase.active .roadmap-dot {
    border-color: var(--blue);
    background: var(--blue);
    box-shadow: 0 0 12px rgba(0, 136, 255, 0.4);
}

.roadmap-phase h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.roadmap-phase p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.roadmap-phase .phase-tag {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.15rem 0.5rem;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue-light);
    background: rgba(0, 136, 255, 0.1);
    border-radius: 50px;
}

/* Investor CTA */
.investor-cta {
    text-align: center;
}

.investor-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, rgba(0, 163, 255, 0.8), rgba(0, 100, 200, 0.8));
    border: 1px solid rgba(0, 163, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.investor-cta-btn:hover {
    box-shadow: 0 0 25px rgba(0, 163, 255, 0.3);
    transform: translateY(-2px);
}

/* ---- Newsletter stub ---- */

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.6rem 0.75rem;
    background: rgba(0, 10, 30, 0.6);
    border: 1px solid rgba(0, 163, 255, 0.15);
    border-radius: 6px;
    color: #fff;
    font-family: var(--font);
    font-size: 0.8rem;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-form input:focus {
    border-color: rgba(0, 163, 255, 0.4);
}

.newsletter-form button {
    padding: 0.6rem 1rem;
    background: var(--blue);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-family: var(--font);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background: var(--blue-light);
}

/* ---- Parallax tech bg ---- */

.tech-bg img {
    will-change: transform;
}

/* ---- Animations ---- */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ---- Responsive ---- */

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-visual { order: -1; }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .cap-grid {
        grid-template-columns: 1fr;
    }

    .investor-stats {
        grid-template-columns: 1fr;
    }

    .inv-grid {
        grid-template-columns: 1fr;
    }

    .roadmap-track {
        flex-direction: column;
        gap: 1.5rem;
    }

    .roadmap-track::before {
        top: 0;
        bottom: 0;
        left: 7px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .roadmap-phase {
        padding-top: 0;
        padding-left: 2.5rem;
        padding-right: 0;
    }

    .roadmap-dot {
        top: 2px;
        left: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 10, 20, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 99;
    }

    .nav-links.open { display: flex; }

    .nav-links a {
        font-size: 1.1rem;
        color: var(--text);
    }

    .nav-toggle { display: block; z-index: 101; }

    .product-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-title {
        letter-spacing: 0.08em;
    }
}

/* ---- Pages internes ---- */

.page-header {
    padding: 8rem 0 4rem;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-content {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--bg-base);
    min-height: 50vh;
}

.page-content .container {
    max-width: 800px;
}

.page-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 3rem 0 1rem;
    color: var(--text);
}

.page-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
    color: var(--text);
}

.page-content p, .page-content li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.page-content ul {
    list-style: none;
    padding: 0;
}

.page-content ul li::before {
    content: '\2014';
    color: var(--blue);
    margin-right: 0.75rem;
}

.page-content a {
    color: var(--blue-light);
    text-decoration: none;
    transition: color 0.3s;
}

.page-content a:hover {
    color: var(--blue);
}

.footer-bottom a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--text-muted);
}

/* ---- Contact Modal ---- */

.contact-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal {
    position: relative;
    background: rgba(10, 18, 35, 0.95);
    border: 1px solid rgba(0, 163, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 40px rgba(0, 163, 255, 0.1);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.contact-overlay.active .contact-modal {
    transform: translateY(0);
}

.contact-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.contact-close:hover {
    color: var(--text);
}

.contact-title {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--blue-light);
    margin-bottom: 0.75rem;
}

.contact-line {
    width: 40px;
    height: 2px;
    background: var(--blue);
    margin-bottom: 1.75rem;
    box-shadow: 0 0 8px rgba(0, 136, 255, 0.5);
}

.contact-modal input,
.contact-modal select,
.contact-modal textarea {
    width: 100%;
    background: rgba(0, 10, 30, 0.6);
    border: 1px solid rgba(0, 163, 255, 0.15);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-family: var(--font);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.contact-modal input:focus,
.contact-modal select:focus,
.contact-modal textarea:focus {
    border-color: rgba(0, 163, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 163, 255, 0.1);
}

.contact-modal select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%2364748b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.contact-modal select option {
    background: #0a1628;
    color: #fff;
}

.contact-modal textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.contact-submit {
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(135deg, rgba(0, 163, 255, 0.8), rgba(0, 100, 200, 0.8));
    border: 1px solid rgba(0, 163, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.2s;
}

.contact-submit:hover {
    box-shadow: 0 0 20px rgba(0, 163, 255, 0.3);
    transform: translateY(-1px);
}

.contact-submit:disabled {
    opacity: 0.6;
    cursor: wait;
}

.contact-success {
    display: none;
    text-align: center;
    padding: 2rem 0;
}

.contact-success svg {
    margin-bottom: 1rem;
}

.contact-success h3 {
    color: var(--blue-light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-success p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ---- Info Modals (Recherche / Publications) ---- */

.info-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.info-overlay.active {
    opacity: 1;
    visibility: visible;
}

.info-modal {
    position: relative;
    background: rgba(10, 18, 35, 0.95);
    border: 1px solid rgba(0, 163, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 680px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 0 40px rgba(0, 163, 255, 0.1);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.info-overlay.active .info-modal {
    transform: translateY(0);
}

.info-modal::-webkit-scrollbar { width: 4px; }
.info-modal::-webkit-scrollbar-track { background: transparent; }
.info-modal::-webkit-scrollbar-thumb { background: rgba(0, 136, 255, 0.3); border-radius: 2px; }

.info-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    z-index: 2;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-close:hover { color: var(--text); }

.info-title {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: var(--blue-light);
    margin-bottom: 0.75rem;
}

.info-line {
    width: 40px;
    height: 2px;
    background: var(--blue);
    margin-bottom: 1.75rem;
    box-shadow: 0 0 8px rgba(0, 136, 255, 0.5);
}

.info-domain {
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.info-domain:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-domain h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.info-domain p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.pub-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pub-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.pub-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.pub-meta {
    font-size: 0.8rem;
    color: var(--blue-light);
    margin-bottom: 0.4rem;
}

.pub-relevance {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pub-link {
    display: inline-block;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: var(--blue);
    text-decoration: none;
    transition: color 0.2s;
}

.pub-link:hover {
    color: var(--blue-light);
}

/* ---- Page Presse ---- */

.press-hero {
    position: relative;
    padding: 10rem 0 6rem;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.press-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.press-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.press-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(3, 8, 16, 0.6) 0%,
        rgba(3, 8, 16, 0.4) 40%,
        rgba(3, 8, 16, 0.85) 100%
    );
}

.press-hero .container {
    position: relative;
    z-index: 1;
}

.press-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 2rem;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.8);
}

.press-hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 650px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}

.press-vision-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

.press-vision-p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.press-vision-image img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(0, 163, 255, 0.15);
    box-shadow: 0 0 30px rgba(0, 163, 255, 0.08);
}

.press-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.press-stat {
    padding: 2rem 1.5rem;
    background: rgba(0, 136, 255, 0.04);
    border: 1px solid rgba(0, 136, 255, 0.1);
    border-radius: 12px;
}

.press-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.press-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.press-stat-source {
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

.press-kit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.press-kit-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
    transition: border-color 0.3s;
}

.press-kit-card:hover {
    border-color: rgba(0, 136, 255, 0.2);
}

.press-kit-preview {
    height: 200px;
    background: var(--bg-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1.5rem;
}

.press-kit-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.press-kit-preview--wide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.press-kit-card h3 {
    font-size: 1rem;
    font-weight: 600;
    padding: 1.25rem 1.25rem 0.25rem;
}

.press-kit-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0 1.25rem;
    line-height: 1.5;
}

.press-kit-dl {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    padding: 1rem 1.25rem;
    letter-spacing: 0.03em;
    transition: color 0.3s;
}

.press-kit-dl:hover {
    color: var(--blue-light);
}

.press-contact-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, rgba(0, 163, 255, 0.8), rgba(0, 100, 200, 0.8));
    border: 1px solid rgba(0, 163, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.press-contact-btn:hover {
    box-shadow: 0 0 25px rgba(0, 163, 255, 0.3);
    transform: translateY(-2px);
}

/* ---- Page Carrières ---- */

.careers-hero {
    padding: 10rem 0 6rem;
    background: var(--bg-deep);
    text-align: center;
}

.careers-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.careers-hero-line {
    width: 60px;
    height: 2px;
    background: var(--blue);
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 136, 255, 0.4);
}

.careers-manifesto {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 4rem;
}

.careers-slogan {
    position: relative;
    padding-left: 4rem;
}

.careers-slogan-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: 0.05em;
}

.careers-slogan h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.careers-slogan p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.careers-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.careers-value {
    padding: 2rem;
    background: rgba(10, 20, 40, 0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.3s;
}

.careers-value:hover {
    border-color: rgba(0, 136, 255, 0.15);
}

.careers-value-icon {
    margin-bottom: 1.25rem;
    opacity: 0.8;
}

.careers-value h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.careers-value p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.careers-cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.careers-cta-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 1.5rem;
}

.careers-apply-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, rgba(0, 163, 255, 0.8), rgba(0, 100, 200, 0.8));
    border: 1px solid rgba(0, 163, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.2s;
}

.careers-apply-btn:hover {
    box-shadow: 0 0 25px rgba(0, 163, 255, 0.3);
    transform: translateY(-2px);
}

/* ---- Responsive: Presse & Carrières ---- */

@media (max-width: 900px) {
    .press-vision-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .press-stats-grid,
    .press-kit-grid,
    .careers-values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .careers-slogan {
        padding-left: 3rem;
    }

    .press-hero {
        min-height: auto;
        padding: 8rem 0 4rem;
    }
}
