 :root {
     --noir: #0f0e0c;
     --card: #1a1917;
     --border: #2a2825;
     --gris: #6b6860;
     --blanc: #f9f7f2;
     --bleu: #0078D4;
     --vert: #2E7D32;
 }

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

 html {
     scroll-behavior: smooth
 }

 body {
     font-family: 'Outfit', sans-serif;
     background: var(--noir);
     color: var(--blanc);
     min-height: 100vh
 }

 a {
     text-decoration: none;
     color: inherit
 }

 /* ── HEADER ── */
 .site-header {
     background: rgba(15, 14, 12, .95);
     backdrop-filter: blur(12px);
     padding: 0 2rem;
     position: sticky;
     top: 0;
     z-index: 100;
     border-bottom: 1px solid var(--border)
 }

 .header-inner {
     max-width: 1280px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     justify-content: space-between;
     height: 64px;
     gap: 2rem
 }

 .logo {
     font-family: 'Syne', sans-serif;
     font-size: 1.4rem;
     font-weight: 800
 }

 .logo span {
     color: #0078D4
 }

 nav {
     display: flex;
     gap: .25rem
 }

 nav a {
     color: rgba(255, 255, 255, .55);
     font-size: .88rem;
     font-weight: 500;
     padding: .4rem .85rem;
     border-radius: 6px;
     transition: all .2s
 }

 nav a:hover,
 nav a.active {
     background: rgba(255, 255, 255, .1);
     color: #fff
 }

 /* ── HERO ── */
 .hero {
     background: var(--noir);
     padding: 5rem 2rem 4rem;
     position: relative;
     overflow: hidden;
     border-bottom: 1px solid var(--border)
 }

 .hero::before {
     content: '';
     position: absolute;
     top: -80px;
     left: 50%;
     transform: translateX(-50%);
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(0, 120, 212, .1) 0%, transparent 65%);
     pointer-events: none
 }

 .hero-inner {
     max-width: 860px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: auto 1fr;
     gap: 3rem;
     align-items: center;
     position: relative;
     z-index: 1
 }

 /* Avatar */
 .avatar-wrap {
     position: relative;
     flex-shrink: 0
 }

 .avatar {
     width: 140px;
     height: 140px;
     border-radius: 50%;
     background: linear-gradient(135deg, #0d2540, #0078D4);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 3.5rem;
     border: 3px solid rgba(0, 120, 212, .4);
     position: relative
 }

 .avatar-ring {
     position: absolute;
     inset: -8px;
     border-radius: 50%;
     border: 1px solid rgba(0, 120, 212, .2);
     animation: spin 20s linear infinite
 }

 .avatar-ring::before {
     content: '';
     position: absolute;
     top: 0;
     left: 50%;
     transform: translateX(-50%);
     width: 8px;
     height: 8px;
     background: #0078D4;
     border-radius: 50%;
     margin-top: -4px
 }

 @keyframes spin {
     to {
         transform: rotate(360deg)
     }
 }

 .status-dot {
     position: absolute;
     bottom: 8px;
     right: 8px;
     width: 18px;
     height: 18px;
     background: #2E7D32;
     border-radius: 50%;
     border: 3px solid var(--noir)
 }

 /* Infos héro */
 /* .hero-text {} */

 .hero-label {
     display: inline-flex;
     align-items: center;
     gap: .4rem;
     background: rgba(0, 120, 212, .1);
     border: 1px solid rgba(0, 120, 212, .25);
     color: #60b4ff;
     font-size: .75rem;
     font-weight: 700;
     letter-spacing: .08em;
     text-transform: uppercase;
     padding: .3rem .8rem;
     border-radius: 50px;
     margin-bottom: 1rem
 }

 .hero h1 {
     font-family: 'Syne', sans-serif;
     font-size: clamp(2rem, 4vw, 3rem);
     font-weight: 800;
     letter-spacing: -.03em;
     line-height: 1.1;
     margin-bottom: .6rem
 }

 .hero h1 em {
     font-style: normal;
     color: var(--bleu)
 }

 .hero-subtitle {
     color: rgba(255, 255, 255, .5);
     font-size: 1rem;
     line-height: 1.7;
     margin-bottom: 1.5rem;
     max-width: 520px
 }

 .hero-socials {
     display: flex;
     gap: .6rem;
     flex-wrap: wrap
 }

 .social-btn {
     display: inline-flex;
     align-items: center;
     gap: .4rem;
     font-size: .82rem;
     font-weight: 600;
     padding: .45rem 1rem;
     border-radius: 7px;
     border: 1px solid var(--border);
     background: rgba(255, 255, 255, .04);
     color: rgba(255, 255, 255, .65);
     transition: all .2s
 }

 .social-btn:hover {
     border-color: rgba(255, 255, 255, .2);
     background: rgba(255, 255, 255, .08);
     color: #fff
 }

 /* ── STATS BANDE ── */
 .stats-band {
     background: var(--card);
     border-bottom: 1px solid var(--border);
     border-top: 1px solid var(--border);
     padding: 2rem
 }

 .stats-inner {
     max-width: 860px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1px;
     background: var(--border)
 }

 .stat-item {
     background: var(--card);
     padding: 1.5rem;
     text-align: center
 }

 .stat-num {
     font-family: 'Syne', sans-serif;
     font-size: 2.2rem;
     font-weight: 800;
     letter-spacing: -.03em;
     line-height: 1;
     margin-bottom: .3rem
 }

 .stat-lbl {
     font-size: .8rem;
     color: rgba(255, 255, 255, .4);
     font-weight: 500
 }

 /* ── CONTENU ── */
 .page-content {
     max-width: 860px;
     margin: 0 auto;
     padding: 4rem 2rem
 }

 /* Section */
 .section {
     margin-bottom: 4rem
 }

 .section-label {
     display: inline-flex;
     align-items: center;
     gap: .4rem;
     font-size: .72rem;
     font-weight: 700;
     letter-spacing: .1em;
     text-transform: uppercase;
     color: rgba(255, 255, 255, .3);
     margin-bottom: 1rem
 }

 .section-label::before {
     content: '';
     display: block;
     width: 20px;
     height: 1px;
     background: rgba(255, 255, 255, .2)
 }

 .section h2 {
     font-family: 'Syne', sans-serif;
     font-size: 1.8rem;
     font-weight: 800;
     letter-spacing: -.02em;
     margin-bottom: 1.25rem;
     line-height: 1.2
 }

 .section h2 em {
     font-style: normal;
     color: var(--bleu)
 }

 .section p {
     color: rgba(255, 255, 255, .6);
     line-height: 1.85;
     font-size: 1rem;
     margin-bottom: 1rem;
     max-width: 680px
 }

 /* Timeline */
 .timeline {
     position: relative;
     padding-left: 2rem
 }

 .timeline::before {
     content: '';
     position: absolute;
     left: 0;
     top: 8px;
     bottom: 8px;
     width: 1px;
     background: linear-gradient(to bottom, var(--bleu), var(--vert), transparent)
 }

 .timeline-item {
     position: relative;
     margin-bottom: 2rem;
     padding-left: 1.5rem
 }

 .timeline-item::before {
     content: '';
     position: absolute;
     left: -2rem;
     top: 6px;
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: var(--noir);
     border: 2px solid var(--border);
     transition: border-color .2s
 }

 .timeline-item:hover::before {
     border-color: var(--bleu)
 }

 .timeline-year {
     font-size: .75rem;
     font-weight: 700;
     color: var(--bleu);
     letter-spacing: .06em;
     text-transform: uppercase;
     margin-bottom: .25rem
 }

 .timeline-title {
     font-family: 'Syne', sans-serif;
     font-size: 1rem;
     font-weight: 700;
     color: rgba(255, 255, 255, .9);
     margin-bottom: .3rem
 }

 .timeline-desc {
     font-size: .88rem;
     color: rgba(255, 255, 255, .45);
     line-height: 1.6
 }

 /* Compétences */
 .skills-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
     gap: .85rem;
     margin-top: .5rem
 }

 .skill-item {
     background: var(--card);
     border: 1px solid var(--border);
     border-radius: 10px;
     padding: 1rem 1.1rem;
     display: flex;
     flex-direction: column;
     gap: .6rem;
     transition: border-color .2s
 }

 .skill-item:hover {
     border-color: rgba(255, 255, 255, .12)
 }

 .skill-head {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: .88rem;
     font-weight: 600
 }

 .skill-pct {
     font-size: .78rem;
     color: rgba(255, 255, 255, .4)
 }

 .skill-bar {
     height: 4px;
     background: rgba(255, 255, 255, .08);
     border-radius: 2px;
     overflow: hidden
 }

 .skill-fill {
     height: 100%;
     border-radius: 2px;
     transition: width 1.2s ease
 }

 /* Mission -->
    .mission-cards{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:1rem;margin-top:.5rem}
    .mission-card{background:var(--card);border:1px solid var(--border);border-radius:12px;padding:1.4rem;transition:border-color .2s,transform .2s}
    .mission-card:hover{border-color:rgba(255,255,255,.1);transform:translateY(-3px)}
    .mission-icon{font-size:1.8rem;margin-bottom:.75rem;display:block}
    .mission-title{font-family:'Syne',sans-serif;font-size:.95rem;font-weight:800;margin-bottom:.4rem}
    .mission-desc{font-size:.85rem;color:rgba(255,255,255,.45);line-height:1.6}

    /* CTA */
 .cta-section {
     background: var(--card);
     border: 1px solid var(--border);
     border-radius: 16px;
     padding: 3rem;
     text-align: center;
     margin-top: 2rem
 }

 .cta-section h2 {
     font-family: 'Syne', sans-serif;
     font-size: 1.8rem;
     font-weight: 800;
     letter-spacing: -.02em;
     margin-bottom: .75rem
 }

 .cta-section p {
     color: rgba(255, 255, 255, .5);
     margin-bottom: 2rem;
     font-size: .97rem
 }

 .cta-btns {
     display: flex;
     justify-content: center;
     gap: 1rem;
     flex-wrap: wrap
 }

 .btn-primary {
     background: var(--bleu);
     color: #fff;
     padding: .75rem 1.75rem;
     border-radius: 8px;
     font-weight: 600;
     font-size: .95rem;
     transition: all .2s
 }

 .btn-primary:hover {
     background: #005ea6;
     transform: translateY(-2px)
 }

 .btn-secondary {
     background: transparent;
     border: 1px solid var(--border);
     color: rgba(255, 255, 255, .7);
     padding: .75rem 1.75rem;
     border-radius: 8px;
     font-weight: 500;
     font-size: .95rem;
     transition: all .2s
 }

 .btn-secondary:hover {
     border-color: rgba(255, 255, 255, .3);
     color: #fff
 }

 /* ── FOOTER ── */
 .site-footer {
     background: #070706;
     border-top: 1px solid var(--border);
     text-align: center;
     padding: 2rem;
     font-size: .82rem;
     color: rgba(255, 255, 255, .3)
 }

 .site-footer a {
     color: rgba(255, 255, 255, .4)
 }

 @media(max-width:700px) {
     .hero-inner {
         grid-template-columns: 1fr;
         text-align: center
     }

     .hero-socials {
         justify-content: center
     }

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

     .avatar-wrap {
         margin: 0 auto
     }

     nav {
         display: none
     }
 }