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

  :root {
    --bg: #0a0a0f;
    --surface: #111118;
    --surface2: #1a1a26;
    --accent: #6c63ff;
    --accent2: #a78bfa;
    --text: #e8e8f0;
    --muted: #8888aa;
    --border: #2a2a3a;
    --white: #ffffff;
  }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    min-height: 100vh;
    padding: 48px 24px;
  }

  .page {
    max-width: 820px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 120px rgba(108, 99, 255, 0.15);
  }

  /* HEADER */
  .header {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1030 50%, #0f1520 100%);
    padding: 56px 56px 48px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
  }

  .header::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(108,99,255,0.18) 0%, transparent 70%);
    border-radius: 50%;
  }

  .header::after {
    content: 'LJ';
    position: absolute;
    bottom: -20px; right: 48px;
    font-family: 'Syne', sans-serif;
    font-size: 140px;
    font-weight: 800;
    color: rgba(108,99,255,0.06);
    line-height: 1;
    letter-spacing: -6px;
    pointer-events: none;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    position: relative;
    z-index: 1;
  }

  .name-block h1 {
    font-family: 'Syne', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 10px;
  }

  .name-block h1 span {
    color: var(--accent2);
  }

  .title-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
  }

  .title-line .dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .title-line p {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 3px;
    text-transform: uppercase;
  }

  .contact-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
    flex-shrink: 0;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
  }

  .contact-item span {
    font-size: 13px;
    color: var(--muted);
  }

  .contact-item a {
    font-size: 13px;
    color: var(--accent2);
    text-decoration: none;
  }

  .contact-icon {
    width: 16px; height: 16px;
    opacity: 0.5;
  }

  /* BODY */
  .body {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 0;
  }

  .main-col {
    padding: 48px 48px 48px 56px;
    border-right: 1px solid var(--border);
  }

  .side-col {
    padding: 48px 40px 48px 40px;
    background: var(--surface2);
  }

  /* SECTIONS */
  .section {
    margin-bottom: 44px;
  }

  .section:last-child {
    margin-bottom: 0;
  }

  .section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
  }

  .section-label .line {
    width: 28px; height: 2px;
    background: var(--accent);
    border-radius: 2px;
    flex-shrink: 0;
  }

  .section-label h2 {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent2);
    letter-spacing: 4px;
    text-transform: uppercase;
  }

  /* FORMATION */
  .formation-item {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
  }

  .formation-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent), var(--accent2));
    border-radius: 3px 0 0 3px;
  }

  .formation-item h3 {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
  }

  .formation-item .school {
    font-size: 13px;
    color: var(--accent2);
    font-weight: 500;
    margin-bottom: 6px;
  }

  .formation-item .desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
  }

  .formation-item .year-tag {
    position: absolute;
    top: 18px; right: 20px;
    background: rgba(108,99,255,0.12);
    border: 1px solid rgba(108,99,255,0.25);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent2);
    font-family: 'Syne', sans-serif;
  }

  /* PROJETS */
  .project-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }

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

  .project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
    gap: 12px;
  }

  .project-item h3 {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
  }

  .project-tag {
    font-size: 10px;
    font-weight: 600;
    font-family: 'Syne', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(108,99,255,0.1);
    border: 1px solid rgba(108,99,255,0.2);
    border-radius: 4px;
    padding: 2px 8px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .project-item p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
  }

  /* SKILLS SIDEBAR */
  .skill-group {
    margin-bottom: 28px;
  }

  .skill-group h3 {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
  }

  .skill-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .pill {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 11px;
    font-size: 12px;
    color: var(--text);
    font-weight: 400;
    transition: border-color 0.2s;
  }

  .pill.accent {
    border-color: rgba(108,99,255,0.35);
    color: var(--accent2);
    background: rgba(108,99,255,0.08);
  }

  /* LANGUES */
  .lang-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }

  .lang-name {
    font-size: 13px;
    color: var(--text);
    font-weight: 400;
  }

  .lang-level {
    display: flex;
    gap: 4px;
  }

  .lang-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
  }

  .lang-dot.filled {
    background: var(--accent);
  }

  /* FOOTER */
  .footer {
    padding: 20px 56px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--surface2);
  }

  .footer p {
    font-size: 11px;
    color: var(--muted);
    font-family: 'Syne', sans-serif;
    letter-spacing: 1px;
  }

  .footer a {
    font-size: 11px;
    color: var(--accent2);
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    letter-spacing: 1px;
  }

  @media print {
    body { padding: 0; background: var(--bg); }
    .page { border-radius: 0; box-shadow: none; }
  }