/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE — DA cohérente avec le portfolio
   ══════════════════════════════════════════════════════════════ */

/* ── Live dot ─────────────────────────────────────────────── */
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; display: inline-block; flex-shrink: 0;
  animation: ab-live 2s ease-in-out infinite;
}
@keyframes ab-live {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,.6); }
  50%      { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}

/* ── Keyframe grid-scroll (xp cards) ─────────────────────── */
@keyframes grid-scroll {
  from { background-position: 0 0; }
  to   { background-position: 28px 28px; }
}

/* ── Reveals ──────────────────────────────────────────────── */
.ab-reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity .75s ease var(--d, 0ms),
              transform .75s cubic-bezier(0.16,1,0.3,1) var(--d, 0ms);
}
.ab-reveal.visible { opacity: 1; transform: none; }

.ab-tl {
  display: inline-block;
  transform: translateY(110%); opacity: 0;
  will-change: transform;
}
.ab-tl.visible {
  animation: ab-tl-up 1s cubic-bezier(0.16,1,0.3,1) var(--d, 0ms) forwards;
}
@keyframes ab-tl-up {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ── HERO ─────────────────────────────────────────────────── */
.ab-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--bg);
  padding: clamp(6rem, 11vh, 8rem) 0 clamp(3rem, 6vh, 5rem);
}
.ab-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: 0.38;
}
.ab-glow {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0; filter: blur(80px);
}
.ab-glow-1 {
  width: 600px; height: 500px; top: -8%; right: -4%;
  background: radial-gradient(ellipse, rgba(232,104,42,0.13) 0%, transparent 65%);
  animation: ab-glow 14s ease-in-out infinite;
}
.ab-glow-2 {
  width: 350px; height: 350px; bottom: 0; left: 8%;
  background: radial-gradient(ellipse, rgba(232,104,42,0.07) 0%, transparent 65%);
  animation: ab-glow 9s ease-in-out infinite 4s;
}
@keyframes ab-glow {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(18px,-12px) scale(1.07); }
}
.ab-wm {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(70px, 14vw, 200px);
  font-weight: 700; font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(232,104,42,0.04);
  white-space: nowrap; pointer-events: none;
  user-select: none; z-index: 0; will-change: transform;
}

/* Layout hero */
.ab-hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  width: 100%;
}

/* Photo */
.ab-photo-col { will-change: transform; }
.ab-photo-frame { position: relative; display: inline-block; width: 100%; }
.ab-photo {
  width: 100%; height: auto; max-height: 540px;
  object-fit: cover; border-radius: 18px; display: block;
  transform: rotate(-1.5deg);
  box-shadow: 8px 8px 0 var(--accent), 0 30px 80px rgba(0,0,0,0.6);
  transition: transform .5s cubic-bezier(0.16,1,0.3,1), box-shadow .4s ease;
}
.ab-photo-frame:hover .ab-photo {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 5px 5px 0 var(--accent), 0 20px 60px rgba(0,0,0,0.5);
}
.ab-photo-border {
  position: absolute; inset: -10px;
  border-radius: 24px; border: 1.5px solid rgba(232,104,42,0.22);
  transform: rotate(-1.5deg); pointer-events: none;
  transition: transform .5s ease, border-color .3s ease;
}
.ab-photo-frame:hover .ab-photo-border {
  transform: rotate(0deg); border-color: rgba(232,104,42,0.55);
}
.ab-photo-badge {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--bg3); border: 1px solid rgba(74,222,128,0.3);
  border-radius: 10px; padding: 8px 16px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; color: #4ade80;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  animation: badge-float 3.5s ease-in-out infinite;
}
.ab-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ade80;
  animation: ab-live 2s ease-in-out infinite;
}
@keyframes badge-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.ab-photo-coords {
  position: absolute; top: 50%; right: -3.5rem;
  transform: translateY(-50%) rotate(90deg);
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text3); white-space: nowrap;
}

/* Texte héro */
.ab-text-col { display: flex; flex-direction: column; gap: 1.2rem; }
.ab-hero-title { margin: 0.8rem 0 0; }
.ab-tl {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 700; line-height: 1; color: var(--text); display: block;
}
.ab-tl-accent { color: var(--accent); font-style: italic; }
.ab-role { font-size: 0.9rem; color: var(--text); font-weight: 500; line-height: 1.6; }
.ab-role span { color: var(--text2); font-size: 0.82rem; }
.ab-intro { font-size: 0.95rem; color: var(--text2); line-height: 1.8; max-width: 460px; }
.ab-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── IDENTITÉ ─────────────────────────────────────────────── */
.ab-identity {
  position: relative; padding: clamp(5rem, 10vh, 8rem) 0; overflow: hidden;
}
.ab-identity-bg {
  position: absolute; inset: 0; will-change: transform;
  background:
    radial-gradient(ellipse 55% 45% at 85% 50%, rgba(232,104,42,0.07) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%);
}
.ab-identity-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 260px 1fr;
  gap: clamp(3rem, 6vw, 6rem); align-items: start;
}
.ab-identity-left { position: relative; will-change: transform; }
.ab-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700; font-style: italic;
  color: var(--text); line-height: 1.3;
  border-left: 3px solid var(--accent);
  padding-left: 1.2rem; margin: 0;
}
.ab-quote em { color: var(--accent); }
.ab-big-num {
  display: block; margin-top: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem; font-weight: 700; color: transparent;
  -webkit-text-stroke: 1px rgba(232,104,42,0.18); line-height: 1;
  will-change: transform;
}
.ab-body-text { font-size: 0.95rem; color: var(--text2); line-height: 1.8; margin-bottom: 1rem; }
.ab-body-text strong { color: var(--text); font-weight: 600; }
.ab-stats {
  display: flex; align-items: center; margin-top: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.ab-stat { flex: 1; text-align: center; padding: 0 1rem; }
.ab-stat-sep { width: 1px; height: 38px; background: var(--border); flex-shrink: 0; }
.ab-stat-num {
  font-family: 'Playfair Display', serif; font-size: 2.8rem;
  font-weight: 700; color: var(--accent); line-height: 1; display: block;
}
.ab-stat-lbl {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text3); display: block; margin-top: 4px;
}

/* ── PARCOURS ─────────────────────────────────────────────── */
.ab-parcours {
  position: relative; padding: clamp(5rem, 10vh, 8rem) 0; overflow: hidden;
}
.ab-parcours-wm {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(60px, 12vw, 170px);
  font-weight: 700; font-style: italic; color: transparent;
  -webkit-text-stroke: 1px rgba(232,104,42,0.04);
  white-space: nowrap; pointer-events: none;
  user-select: none; z-index: 0; will-change: transform;
}
.ab-sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 700; line-height: 1; color: var(--text);
  margin: 0.5rem 0 3rem; position: relative; z-index: 2;
}
.ab-sec-title em { color: var(--accent); font-style: italic; }
.ab-chapters { position: relative; z-index: 2; }
.reveal-chapter {
  opacity: 0; transform: translateY(24px);
  transition: opacity .85s cubic-bezier(0.16,1,0.3,1),
              transform .85s cubic-bezier(0.16,1,0.3,1);
}
.reveal-chapter.visible { opacity: 1; transform: none; }

.ab-ch-inner {
  display: grid; grid-template-columns: 220px 1fr;
  gap: clamp(2.5rem, 5vw, 5rem); align-items: start; padding: 3.5rem 0;
}
.ab-ch-inner-rev {
  grid-template-columns: 1fr 220px;
}
.ab-ch-inner-rev .ab-ch-right { grid-column: 1; grid-row: 1; }
.ab-ch-inner-rev .ab-ch-left  { grid-column: 2; grid-row: 1; }

.ab-ch-left { will-change: transform; }
.ab-ch-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1px rgba(232,104,42,0.25);
  line-height: 1; display: block; margin-bottom: 0.5rem;
  transition: -webkit-text-stroke-color .3s ease;
}
.ab-ch:hover .ab-ch-num { -webkit-text-stroke-color: var(--accent); }
.ab-ch-num-big { font-size: 6rem; }
.ab-ch-period {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  color: var(--accent); text-transform: uppercase; display: block; margin-bottom: 4px;
}
.ab-ch-loc { font-size: 0.78rem; color: var(--text2); margin-bottom: 0.75rem; }
.ab-ch-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 999px; border: 1px solid;
}
.ab-ch-pill-orange { color: var(--accent); border-color: rgba(232,104,42,0.35); background: rgba(232,104,42,0.07); }
.ab-ch-pill-green  { color: #4ade80; border-color: rgba(74,222,128,0.35); background: rgba(74,222,128,0.07); }
.ab-ch-tag {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text3); display: block; margin-bottom: 0.75rem;
}
.ab-ch-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 700; color: var(--text); line-height: 1.1;
  margin: 0 0 1rem; will-change: transform;
}
.ab-ch-title em { color: var(--accent); font-style: italic; }
.ab-ch-title-xl { font-size: clamp(2.5rem, 5vw, 5rem); }
.ab-ch-mention {
  display: block; font-size: 0.75rem; color: var(--accent);
  margin-top: 0.3rem; font-style: italic;
}
.ab-ch-body { font-size: 0.9rem; color: var(--text2); line-height: 1.8; max-width: 500px; }
.ab-ch-hero {
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(232,104,42,0.06) 0%, transparent 60%);
}
.ab-ch-hero .ab-ch-inner { padding: 4.5rem 0; }
.ab-ch-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, rgba(232,104,42,0.18) 50%, var(--border) 80%, transparent);
}

/* ── EXPÉRIENCES ──────────────────────────────────────────── */
.ab-xp { position: relative; padding: clamp(5rem, 10vh, 8rem) 0; overflow: hidden; }
.ab-xp-bg {
  position: absolute; inset: 0; will-change: transform;
  background:
    linear-gradient(rgba(232,104,42,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,104,42,0.03) 1px, transparent 1px),
    radial-gradient(ellipse 55% 50% at 95% 10%, rgba(232,104,42,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 5% 90%,  rgba(232,104,42,0.05) 0%, transparent 55%),
    linear-gradient(150deg, var(--bg3) 0%, var(--bg) 40%, var(--bg2) 100%);
  background-size: 36px 36px, 36px 36px, 100% 100%, 100% 100%, 100% 100%;
}
.ab-xp-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto; gap: 14px; margin-top: 2rem;
}
.ab-xp-large { grid-row: 1 / 3; }
.ab-xp-card {
  position: relative; border-radius: 16px; overflow: hidden;
  min-height: 300px; isolation: isolate; cursor: default;
}
.ab-xp-large { min-height: 520px; }
.ab-xp-bg-layer {
  position: absolute; inset: 0; z-index: 0;
  background: var(--cbg, var(--bg3));
  transition: transform .8s cubic-bezier(0.215,.61,.355,1);
}
.ab-xp-card:hover .ab-xp-bg-layer { transform: scale(1.04); }
.ab-xp-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,9,7,.9) 0%, rgba(10,9,7,.4) 50%, transparent 100%);
}
.ab-xp-card::before {
  content: ''; position: absolute; inset: 0; z-index: 1; opacity: 0;
  background:
    linear-gradient(rgba(0,0,0,.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.28) 1px, transparent 1px);
  background-size: 28px 28px;
  transition: opacity .4s ease; border-radius: 16px;
}
.ab-xp-card:hover::before { opacity: 1; animation: grid-scroll 3.5s linear infinite; }
.ab-xp-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  justify-content: space-between; padding: 1.6rem;
}
.ab-xp-top { display: flex; justify-content: space-between; align-items: flex-start; }
.ab-xp-badge {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  color: var(--text2); border: 1px solid var(--border); background: rgba(19,18,16,.7);
  display: inline-flex; align-items: center; gap: 6px;
}
.ab-xp-live { color: #4ade80; border-color: rgba(74,222,128,.35); background: rgba(74,222,128,.07); }
.ab-xp-yr { font-size: 0.62rem; color: rgba(240,235,224,.4); font-weight: 600; }
.ab-xp-bottom { display: flex; flex-direction: column; gap: 0.4rem; }
.ab-xp-dur { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.ab-xp-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem); font-weight: 700; color: white;
  line-height: 1.1; margin: 0;
}
.ab-xp-desc {
  font-size: 0.78rem; color: rgba(240,235,224,.6); line-height: 1.65;
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s ease .05s, transform .35s ease .05s;
}
.ab-xp-card:hover .ab-xp-desc { opacity: 1; transform: none; }
.ab-xp-tags {
  display: flex; flex-wrap: wrap; gap: 5px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s ease .1s, transform .3s ease .1s;
}
.ab-xp-card:hover .ab-xp-tags { opacity: 1; transform: none; }
.ab-xp-tags span {
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14);
  border-radius: 4px; padding: 2px 8px; font-size: 0.62rem; color: rgba(240,235,224,.7);
}

/* ── COMPÉTENCES ──────────────────────────────────────────── */
.ab-skills {
  position: relative;
  padding: clamp(5rem, 10vh, 8rem) 0;
  overflow: hidden;
}
.ab-skills-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 5% 80%, rgba(232,104,42,0.06) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg2) 0%, var(--bg) 50%, var(--bg2) 100%);
}
.ab-skills-wm {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 16vw, 220px);
  font-weight: 700; font-style: italic; color: transparent;
  -webkit-text-stroke: 1px rgba(232,104,42,0.04);
  white-space: nowrap; pointer-events: none;
  user-select: none; z-index: 0; will-change: transform;
}

/* Grille 2 × 2 */
.ab-sk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 2.5rem;
  position: relative; z-index: 2;
}

/* Carte skill */
.ab-sk-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.4rem;
  background: var(--bg2);
  overflow: hidden;
  isolation: isolate;
  transition: border-color .3s ease,
              transform .45s cubic-bezier(0.16,1,0.3,1);
}
.ab-sk-card::after {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 90% 80% at 0% 110%,
    rgba(var(--sk-rgb,232,104,42), 0.09) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .45s ease;
}
.ab-sk-card:hover { border-color: rgba(var(--sk-rgb,232,104,42), 0.38); }
.ab-sk-card:hover::after { opacity: 1; }

/* Numéro fantôme */
.ab-sk-num {
  position: absolute; top: 1.2rem; right: 1.8rem;
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem; font-weight: 700; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--sk-rgb,232,104,42), 0.12);
  user-select: none; pointer-events: none;
  transition: -webkit-text-stroke-color .35s ease;
}
.ab-sk-card:hover .ab-sk-num {
  -webkit-text-stroke-color: rgba(var(--sk-rgb,232,104,42), 0.42);
}

/* Corps */
.ab-sk-body { position: relative; z-index: 1; }
.ab-sk-icon { font-size: 2.2rem; margin-bottom: 0.75rem; display: block; }
.ab-sk-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 700; color: var(--text);
  line-height: 1.05; margin: 0 0 1.3rem;
}

/* Barre de niveau */
.ab-sk-level {
  display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.4rem;
}
.ab-sk-bar {
  flex: 1; height: 2px;
  background: rgba(var(--sk-rgb,232,104,42), 0.14);
  border-radius: 2px; overflow: hidden;
}
.ab-sk-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg,
    rgba(var(--sk-rgb,232,104,42), 0.4) 0%,
    rgb(var(--sk-rgb,232,104,42)) 100%);
  border-radius: 2px;
  transition: width 1.4s cubic-bezier(0.16,1,0.3,1);
}
.ab-sk-fill.run { width: var(--w); }
.ab-sk-pct {
  font-size: 0.7rem; font-weight: 700;
  color: rgb(var(--sk-rgb,232,104,42));
  letter-spacing: 0.06em; white-space: nowrap; min-width: 2.6rem; text-align: right;
}

/* Tags outils */
.ab-sk-tools { display: flex; flex-wrap: wrap; gap: 5px; }
.ab-sk-tool {
  font-size: 0.62rem; font-weight: 600;
  padding: 3px 10px; border-radius: 999px;
  border: 1px solid var(--border); color: var(--text3);
  transition: border-color .25s ease, color .25s ease;
}
.ab-sk-card:hover .ab-sk-tool {
  border-color: rgba(var(--sk-rgb,232,104,42), 0.3);
  color: var(--text2);
}

/* Ligne skills transversaux */
.ab-sk-extras {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem 2.4rem;
  background: var(--bg2);
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
}
.ab-sk-extras-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent); white-space: nowrap;
}
.ab-sk-extras-list { display: flex; flex-wrap: wrap; gap: 7px; flex: 1; }
.ab-sk-extra {
  font-size: 0.7rem; font-weight: 500;
  padding: 5px 14px; border-radius: 999px;
  border: 1px solid var(--border); color: var(--text2);
  transition: border-color .25s, color .25s, background .25s;
}
.ab-sk-extra:hover { border-color: var(--border-h); color: var(--text); background: var(--bg3); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ab-hero-inner     { grid-template-columns: 320px 1fr; gap: 3rem; }
  .ab-identity-inner { grid-template-columns: 200px 1fr; gap: 3rem; }
}
@media (max-width: 900px) {
  .ab-sk-grid { grid-template-columns: 1fr; }
  .ab-sk-num  { font-size: 3.5rem; top: 1rem; right: 1.2rem; }
  .ab-skills-wm { display: none; }
  .ab-sk-extras { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .ab-hero-inner { grid-template-columns: 1fr; }
  .ab-photo-col  { order: -1; }
  .ab-photo      { max-height: 360px; width: min(300px, 80%); margin: 0 auto; }
  .ab-photo-coords { display: none; }
  .ab-identity-inner { grid-template-columns: 1fr; gap: 2rem; }
  .ab-identity-left  { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
  .ab-ch-inner, .ab-ch-inner-rev {
    grid-template-columns: 1fr; padding: 2.5rem 0; gap: 1.5rem;
  }
  .ab-ch-inner-rev .ab-ch-right,
  .ab-ch-inner-rev .ab-ch-left { grid-column: auto; grid-row: auto; }
  .ab-ch-left { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
  .ab-ch-num { font-size: 2.5rem; }
  .ab-ch-num-big { font-size: 3.5rem; }
  .ab-ch-title    { font-size: clamp(1.5rem, 6vw, 2.5rem); }
  .ab-ch-title-xl { font-size: clamp(2rem, 7vw, 3.5rem); }
  .ab-parcours-wm { display: none; }
  .ab-xp-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .ab-xp-large { grid-row: auto; min-height: 320px; }
  .ab-xp-card  { min-height: 260px; }
  .ab-xp-desc, .ab-xp-tags { opacity: 1; transform: none; }
}
@media (max-width: 600px) {
  .ab-tl { font-size: clamp(2rem, 9vw, 3rem); }
  .ab-ctas { flex-direction: column; }
  .ab-stats { flex-wrap: wrap; gap: 1.5rem; }
  .ab-stat-sep { display: none; }
}
