
:root {
    --basalt: oklch(12% 0.02 260);
    --amber: #ed990b; 
    --storm: oklch(25% 0.01 260);
}
body {
    background-color: var(--basalt);
    color: #fff;
    margin: 0;
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
}
.tectonic-section {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--basalt);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.blade-mask { clip-path: polygon(0 0, 100% 0, 100% 85%, 25% 100%, 0 90%); }

.sharp-card {
    clip-path: polygon(0 0, 100% 5%, 95% 100%, 0% 95%);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(217, 119, 66, 0.2);
}
.hud-glass {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(25px) brightness(0.6);
    border: 1px solid rgba(217, 119, 66, 0.3);
}
.font-syne { font-family: 'Syncopate', sans-serif; }
.text-edge { -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3); color: transparent; }
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.stealth-btn {
    background: #000;
    position: relative;
    padding: 1rem 2rem;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    transition: all 0.4s ease;
    border: 1px solid rgb(237, 153, 11, .7);
    color: var(--amber);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    display: inline-block;
}
.stealth-btn:hover {
    background: var(--amber);
    color: #000;
    box-shadow: 0 0 30px rgba(217, 119, 66, 0.4);
}

.scroll-content {
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--amber) transparent;
}
.map-container iframe {
    width: 100% !important;
    height: 100vh !important;
    filter: grayscale(100%) contrast(120%) opacity(0.8);
    transition: all 0.5s ease;
}
.map-container:hover iframe {
    filter: grayscale(0%) contrast(100%) opacity(1);
}

/* Pages légales (mentions, ppd, pc) */
.legal-content { max-width: 900px; }
.legal-content h1, .legal-content h2, .legal-content h3, .legal-content h4 {
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--amber);
    margin: 30px 0 15px;
}
.legal-content h2 { font-size: 1.3rem; }
.legal-content h3 { font-size: 1rem; }
.legal-content p, .legal-content li { line-height: 1.8; margin-bottom: 12px; color: #ccc; font-size: 14px; }
.legal-content a { color: var(--amber); }
.legal-content a:hover { text-decoration: underline; }
.legal-content hr { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 20px 0; }

/* Blog : liste d'articles */
.blog-card { transition: all 0.4s ease; }
.blog-card:hover { border-color: var(--amber); }

/* Blog : contenu d'un article */
.article-content h2, .article-content h3 {
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--amber);
    margin: 30px 0 12px;
}
.article-content p, .article-content li { line-height: 1.8; margin-bottom: 12px; color: #ccc; font-size: 15px; }
.article-content a { color: var(--amber); }
.article-content a:hover { text-decoration: underline; }
.article-content ul, .article-content ol { padding-left: 20px; margin-bottom: 15px; }
