/* ============================================
   FACILITATION STRATÉGIQUE — Page Pilier
   v1.0.0
   ============================================ */

.fs-page {
    background-color: #02040a !important;
    color: #F8FAFC !important;
}
.fs-page h1, .fs-page h2, .fs-page h3, .fs-page h4,
.fs-page p, .fs-page span, .fs-page blockquote,
.fs-page a, .fs-page li, .fs-page td, .fs-page th,
.fs-page label, .fs-page div, .fs-page button {
    color: inherit !important;
}
.fs-page .text-slate-50 { color: #F8FAFC !important; }
.fs-page .text-gray-300 { color: #d1d5db !important; }
.fs-page .text-gray-400 { color: #9ca3af !important; }
.fs-page .text-gray-500 { color: #6b7280 !important; }
.fs-page .text-brand-accent { color: #ffde59 !important; }
.fs-page .text-brand-dark { color: #02040a !important; }
.fs-page .text-red-400 { color: #f87171 !important; }
.fs-page .text-orange-400 { color: #fb923c !important; }
.fs-page .text-green-400 { color: #4ade80 !important; }
.fs-page .text-blue-400 { color: #60a5fa !important; }
.fs-page .text-white { color: #ffffff !important; }
.fs-page .bg-clip-text {
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}
.fs-page table .text-brand-accent { color: #ffde59 !important; }

/* Scroll Reveal */
.fs-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fs-reveal.active { opacity: 1; transform: translateY(0); }
.fs-anim-fallback .fs-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

/* Cards */
.fs-card {
    background: #0c1629;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.fs-card:hover {
    border-color: rgba(255,222,89,0.25);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

/* Glow Button */
.fs-btn-glow { position: relative; overflow: hidden; }
.fs-btn-glow::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, #ffde59, #fbbf24, #ffde59, #fbbf24);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}
.fs-btn-glow:hover::before { opacity: 1; }

@media (max-width: 768px) {
    .fs-page h1 { font-size: 3rem !important; }
    .fs-page table { font-size: 0.875rem; }
    .fs-page table td, .fs-page table th { padding: 0.75rem 0.5rem; }
}

@media print {
    .fs-reveal { opacity: 1 !important; transform: none !important; }
    section { break-inside: avoid; page-break-inside: avoid; }
}
