    :root{
      --bg: #0f1720;
      --panel: #0f1720;
      --text: #e5e7eb;
      --muted: #9aa4b2;
      --line: #233041;
      --chip: #1c2736;
      --chip-text: #dbe4ee;
      --chip-border: #2a3a4e;
      --accent: #c4d0ff;
    }

    html,body{height:100%;}
    body{
      background: var(--bg);
      color: var(--text);
      font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial;
      letter-spacing: .01em;
    }

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

    .download-btn {
      position: absolute;
      top: 20px;
      right: 0px;
      background-color: var(--accent);
      color: #0f1720;
      font-weight: 600;
      border: none;
      border-radius: 50px 0 0 50px;
      padding: 10px 20px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
      transition: all 0.2s ease-in-out;
      z-index: 1000;
    }
    .download-btn:hover {
      background-color: #aab8ff;
      transform: translateY(-2px);
    }

    /* --- Animation machine à écrire --- */
    .headline,
    .subtitle {
      letter-spacing: 0; /* pas d'espacement ici pour coller le curseur */
    }

    .typewriter-cursor {
      display: inline-block;
      width: 2px;
      height: 1em;
      background-color: var(--accent);
      margin-left: 0;
      animation: blink 0.8s infinite;
      vertical-align: text-bottom;
      transform: translateX(-4px); /* ajustement fin */
    }

    @keyframes blink {
      0%, 50% { opacity: 1; }
      51%, 100% { opacity: 0; }
    }

    .page{
      min-height:100vh;
      display:flex;
      align-items:center;
      padding-block: 48px;
    }
    .left-col{
      padding-right: 48px;
      border-right: 1px solid var(--line);
    }
    .right-col{
      padding-left: 48px;
    }
    .avatar{
      width: 168px;
      height: 168px;
      border-radius: 50%;
      object-fit: cover;
      display:block;
      margin: 0 auto 24px;
      box-shadow: 0 0 0 6px rgba(255,255,255,0.02);
    }
    .headline{
      font-weight: 700;
      font-size: 32px;
      text-align:center;
      margin-bottom: 6px;
      min-height: 40px;
    }
    .subtitle{
      text-align:center;
      color: var(--muted);
      font-weight: 500;
      margin-bottom: 16px;
      min-height: 28px;
    }
    .divider-dot{
      width: 64px;
      height: 2px;
      background: var(--line);
      margin: 10px auto 16px;
    }
    .blurb{
      text-align:center;
      color: var(--muted);
      max-width: 520px;
      margin: 0 auto 18px;
      line-height: 1.6;
    }
    .info-line{
      color: var(--muted);
      gap:10px;
      justify-content:center;
      margin: 6px 0;
    }
    .socials{
      display:flex; gap:16px; justify-content:center; margin-top:10px;
    }
    .socials a{
      display:inline-flex; width:34px; height:34px; border-radius:50%;
      align-items:center; justify-content:center;
      border:1px solid var(--line); color:var(--text); text-decoration:none;
    }
    .section-title{
      font-weight: 600; letter-spacing:.02em;
      margin-bottom: 14px;
    }
    .chip{
      display:inline-flex; align-items:center;
      border:1px solid var(--chip-border);
      background: var(--chip);
      color: var(--chip-text);
      border-radius: 999px;
      padding: 6px 12px;
      font-size: 0.92rem;
      margin: 6px 8px 0 0;
      white-space: nowrap;
    }
    .icon-label{
      color: var(--muted);
      font-weight: 600;
      text-transform: none;
      margin-top: 4px;
      margin-bottom: 2px;
      display:flex; align-items:center; gap:8px;
    }
    .rule{
      border-top:1px solid var(--line); margin: 14px 0 18px;
    }

    /* Timeline */
    .timeline{
      border-left: 1.5px solid var(--line);
      margin-left: 10px;
    }
    .tl-item{
      position: relative;
      padding-left: 20px;
      margin-bottom: 46px;
    }
    .tl-item::before{
      content:''; position:absolute; left:-8px; top:6px;
      width:10px; height:10px; border-radius:50%;
      background:#2c3f55; border:3px solid #3f536b;
    }

    .tl-item.active::before{
      content:''; position:absolute; left:-8px; top:6px;
      width:10px; height:10px; border-radius:50%;
      background:#22c55e; border:2px solid #22c55e;
    }

    .tl-role{ font-weight:600; }
    .tl-company{ color: var(--muted); }
    .tl-dates{ color: var(--muted); font-size: .95rem; }
    .tl-desc{ color: var(--muted); margin-top: 6px; }
    @media (max-width: 991.98px){
      .left-col{ border-right: none; border-bottom:1px solid var(--line); padding-right: 0; padding-bottom:32px; margin-bottom:32px; }
      .right-col{ padding-left: 0; }
    }

    @media (min-width: 992px) {
      .right-col {
        margin-top: 60px;
      }
    }

    .qr-contact {
      text-align: center;
      padding-top: 24px;
    }
    .qr-img {
      width: 120px; /* taille raisonnable */
      border-radius: 12px;
      box-shadow: 0 0 8px rgba(0,0,0,0.4);
    }
    .qr-text {
      margin-top: 8px;
      color: var(--muted);
      font-size: 0.9rem;
      font-weight: 500;
    }


    @media (max-width: 700px) {
      .avatar {
        margin-top: 30px !important;
      }


      .download-btn {
        position: absolute;
        top: 20px;
        right: 0px;
        border-radius: 50px 0 0 50px;
        font-size:12px;
      }
    }}
