/* Immersion Teal — feuille des pages CV (index) et Side Projects.
   Les polices restent declarees dans site.css, chargee en amont sur toutes
   les pages : ce fichier ne porte que le design system de la refonte.
   Les url() seraient relatives a CE fichier (assets/), pas au document. */

/* ------------------------------------------------------------- socle --- */

*{ box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #f4f6f6;
  color: #16282d;
  font-family: 'Hanken Grotesk', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: #0b7285; }
a:hover { color: #07505d; }

a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #16282d;
  outline-offset: 2px;
  border-radius: 4px;
}

main:focus { outline: none; }

/* Libelle reserve aux lecteurs d'ecran : les pastilles du comparatif ne
   disent rien d'audible sans lui. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Le heros porte un fond sombre : le contour clair y reste lisible. */
.hero a:focus-visible { outline-color: #7de3c8; }

[id] { scroll-margin-top: 24px; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 200;
  background: #16282d;
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 10px 10px;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: top .18s ease;
}
.skip-link:focus { top: 0; outline: 3px solid #7de3c8; outline-offset: 2px; }

@keyframes derive {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}
@keyframes pulse {
  0%, 100% { opacity: .5; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------- typographie --- */

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #0b7285;
  margin: 0 0 12px;
}
.eyebrow-mint { color: #7de3c8; }

.mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .1em;
  color: #8a969a;
  margin: 0 0 10px;
}

h1, h2, h3 {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 800;
  letter-spacing: -.03em;
}

/* Le gabarit pose ses propres espacements : on part de zero et chaque classe
   redonne la marge qu'elle veut. Specificite volontairement basse. */
main p, main h1, main h2, main h3, main ul, main blockquote,
.site-footer p, .hero-head p { margin: 0; }

/* <picture> est inline par defaut : en bloc, il se comporte comme l'<img>
   qu'il enveloppe et ne casse ni les grilles ni les conteneurs flex. */
.portrait picture, .creation-vis picture, .studio-shot picture { display: block; width: 100%; }

.h2 { font-size: 42px; margin: 0 0 32px; }
.h2-tight { font-size: 42px; margin: 0 0 8px; }
.h2-card { font-size: 36px; margin: 0 0 14px; }
.h2-panel { font-size: 34px; line-height: 1.15; margin: 0 0 14px; }

.lead { font-size: 15.5px; line-height: 1.6; color: #5a6a6e; margin: 0 0 28px; }
.lead-w { max-width: 680px; }
.lead-narrow { max-width: 560px; }

/* ------------------------------------------------------------ gabarit --- */

.section { padding: 40px 40px; }
.section-top { padding: 80px 40px 40px; }
.section-end { padding: 40px 40px 90px; }
.section-lead { padding: 56px 40px 0; }
.section-creations { padding: 70px 40px 30px; }

.grid2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.grid3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.grid4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.grid6 { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.span2 { grid-column: span 2; }

/* -------------------------------------------------------------- cartes --- */

.card {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 16px 40px -30px rgba(13, 91, 107, .5);
}
.card-lg { border-radius: 28px; padding: 48px; box-shadow: 0 20px 50px -34px rgba(13, 91, 107, .45); }
.card-soft { border-radius: 24px; padding: 36px; }
.card-plain { border-radius: 20px; padding: 26px 24px; }
.card-xl { border-radius: 28px; padding: 46px; }

.interet-titre { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 17px; margin: 0 0 8px; letter-spacing: -.02em; }
.interet-desc { font-size: 13.5px; line-height: 1.55; color: #5a6a6e; margin: 0; }

.card-link {
  display: block;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  color: #16282d;
  text-decoration: none;
  box-shadow: 0 14px 34px -28px rgba(13, 91, 107, .55);
  transition: box-shadow .25s ease, transform .25s ease;
}
.card-link:hover {
  color: #16282d;
  transform: translateY(-3px);
  box-shadow: 0 20px 42px -24px rgba(13, 91, 107, .6);
}

.tile {
  background: #f4f8f8;
  border: 1px solid rgba(11, 114, 133, .12);
  border-radius: 14px;
  padding: 12px 13px;
}

/* ------------------------------------------------------------ boutons --- */

.btn {
  display: inline-block;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 12px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-teal { background: #0b7285; color: #fff; }
.btn-teal:hover { background: #07505d; color: #fff; }

.btn-ink { background: #16282d; color: #fff; font-size: 16px; padding: 16px 28px; border-radius: 14px; }
.btn-ink:hover { background: #0a1e22; color: #fff; }

.btn-mint { background: #7de3c8; color: #16282d; }
.btn-mint:hover { background: #a5eeda; color: #16282d; }

.btn-white { background: #fff; color: #0b7285; font-size: 16.5px; padding: 16px 32px; border-radius: 14px; }
.btn-white:hover { background: #dff0f3; color: #07505d; }

.btn-ghost {
  border: 2px solid rgba(255, 255, 255, .6);
  color: #fff;
  font-size: 16px;
  padding: 14px 26px;
  border-radius: 14px;
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); color: #fff; }

.btn-outline {
  border: 2px solid rgba(11, 114, 133, .4);
  color: #0b7285;
  padding: 11px 22px;
}
.btn-outline:hover { border-color: #0b7285; color: #07505d; }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* -------------------------------------------------------------- chips --- */

.chip {
  font-size: 12px;
  font-weight: 600;
  background: rgba(11, 114, 133, .08);
  border: 1px solid rgba(11, 114, 133, .2);
  color: #0b7285;
  padding: 5px 11px;
  border-radius: 999px;
}
.chip-mint {
  font-size: 12px;
  font-weight: 600;
  background: rgba(125, 227, 200, .15);
  border: 1px solid rgba(125, 227, 200, .4);
  color: #7de3c8;
  padding: 5px 11px;
  border-radius: 999px;
}
.chip-flat {
  font-size: 11px;
  font-weight: 600;
  background: rgba(11, 114, 133, .08);
  color: #0b7285;
  padding: 4px 9px;
  border-radius: 999px;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.chip-row-sep { margin-top: 14px; }

.badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(11, 114, 133, .1);
  color: #0b7285;
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.badge-mint { background: rgba(125, 227, 200, .14); color: #7de3c8; }

/* --------------------------------------------------------------- heros --- */

/* Le bandeau de navigation est un <header> hors de <main> — exigence du
   miroir Markdown — mais il doit reposer sur le degrade du heros : on le
   superpose en absolu et le heros lui reserve sa hauteur en padding. */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0d5b6b 0%, #0b7285 55%, #0f8a9e 100%);
  color: #fff;
  padding: 96px 0 110px;
}
.hero-short { padding-bottom: 90px; }

.orb, .ring-a, .ring-b {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orb {
  top: -120px;
  right: -100px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255, 255, 255, .14), transparent 65%);
  animation: derive 16s ease-in-out infinite;
}
.ring-a { bottom: -200px; left: 10%; width: 700px; height: 700px; border: 1.5px solid rgba(255, 255, 255, .15); }
.ring-b { bottom: -140px; left: 16%; width: 520px; height: 520px; border: 1.5px solid rgba(255, 255, 255, .1); }

.hero-head {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 40px;
  color: #fff;
}
.hero-head a:focus-visible { outline-color: #7de3c8; }

.brand {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.01em;
  color: #fff;
  text-decoration: none;
}
.brand span { opacity: .6; }
.brand:hover { color: #fff; }

.hero-nav { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.hero-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, .85);
  font-size: 14.5px;
  font-weight: 600;
  padding: 8px 13px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.hero-nav a:hover { background: rgba(255, 255, 255, .15); color: #fff; }

.hero-nav .nav-cta {
  background: #fff;
  color: #0b7285;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  padding: 11px 22px;
  margin-left: 10px;
}
.hero-nav .nav-cta:hover { background: #dff0f3; color: #07505d; }

.hero-back {
  text-decoration: none;
  color: rgba(255, 255, 255, .9);
  font-size: 14.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-back:hover { color: #fff; }

.hero-body {
  position: relative;
  z-index: 2;
  padding: 60px 40px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 60px;
  align-items: center;
}
.hero-body-plain { display: block; padding: 52px 40px 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 30px;
}
.hero-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7de3c8;
  animation: pulse 2.4s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(48px, 9vw, 124px);
  line-height: .94;
  letter-spacing: -.04em;
  margin: 0;
  overflow-wrap: break-word;
}
.hero-rule { width: 200px; height: 12px; border-radius: 999px; background: #7de3c8; margin: 28px 0; }
.hero-intro {
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .88);
  margin: 0 0 32px;
  max-width: 700px;
  text-wrap: pretty;
}

/* La photo est detouree : le degrade du medaillon se voit directement par
   transparence. Le montage precedent simulait ce detourage avec une photo a
   fond noir fusionnee en mix-blend-mode ; c'est ce qui faisait ressortir les
   aretes droites de la boite, le detourage arrondi d'un ancetre ne
   s'appliquant pas de facon fiable a une couche fusionnee. */
.portrait {
  position: relative;
  border-radius: 42% 58% 50% 50% / 48% 44% 56% 52%;
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% 8%, #10404c 0%, #0a2e38 55%, #071f26 100%);
}
.portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.15;
  object-fit: cover;
  object-position: top;
}

/* ------------------------------------------------------- chiffres cles --- */

.stats { margin-top: -64px; padding: 0 40px; position: relative; z-index: 3; }
.overlap { margin-top: -56px; padding: 0 40px; position: relative; z-index: 3; }
.stat {
  background: #fff;
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: 0 24px 48px -28px rgba(13, 91, 107, .4);
}
.stat-num {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 800;
  font-size: 46px;
  letter-spacing: -.03em;
  color: #0b7285;
  line-height: 1;
}
.stat-lab { font-size: 13.5px; color: #5a6a6e; margin-top: 8px; }
.stat-dark { background: #16282d; color: #fff; box-shadow: 0 24px 48px -28px rgba(13, 91, 107, .5); }
.stat-note { font-size: 13px; color: rgba(255, 255, 255, .75); margin: 12px 0 0; line-height: 1.5; }

/* -------------------------------------------------------------- impact --- */

.impact-hero {
  background: linear-gradient(135deg, #0b7285, #0f8a9e);
  color: #fff;
  border-radius: 22px;
  padding: 34px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 36px;
  align-items: center;
}
.impact-hero h3 { font-weight: 700; font-size: 23px; line-height: 1.25; margin: 0; letter-spacing: -.01em; }
.impact-hero .mono { color: rgba(255, 255, 255, .75); margin: 0 0 8px; }
.big { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 54px; letter-spacing: -.03em; line-height: 1; }
.big-mint { color: #7de3c8; }
.big-sub { font-size: 13.5px; opacity: .85; margin-top: 6px; max-width: 200px; }

.impact-card h3 { font-weight: 700; font-size: 18px; line-height: 1.3; margin: 0 0 16px; letter-spacing: -.01em; }
.kpis { display: flex; gap: 32px; flex-wrap: wrap; }
.kpi-num { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 38px; color: #0b7285; line-height: 1; }
.kpi-lab { font-size: 13px; color: #5a6a6e; margin-top: 5px; }

.cta-dashed {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  border: 2px dashed rgba(11, 114, 133, .35);
  border-radius: 22px;
  padding: 24px 30px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.cta-dashed p { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 20px; margin: 0; }

/* ------------------------------------------------------------ parcours --- */

.parcours { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 48px; align-items: center; }
.parcours blockquote {
  margin: 0;
  padding: 18px 22px;
  border-left: 4px solid #7de3c8;
  background: #f4f9f8;
  border-radius: 0 14px 14px 0;
  font-size: 15px;
  line-height: 1.6;
  color: #3d4c50;
  font-style: italic;
}

.timeline { display: flex; flex-direction: column; }
.tl-item { display: flex; gap: 20px; }
.tl-rail { display: flex; flex-direction: column; align-items: center; }
.tl-dot { width: 14px; height: 14px; border-radius: 50%; background: #0b7285; flex: none; }
.tl-dot-open { border: 3px solid #0b7285; background: #fff; }
.tl-line { width: 2px; flex: 1; background: rgba(11, 114, 133, .25); }
/* L'espacement separe deux postes : il se prend sur le dernier enfant de
   .tl-item, donc sur .tl-body, et ne se retire qu'au dernier poste — d'ou
   .tl-item:last-child et non .tl-body:last-child, qui viserait les deux. */
.tl-body { padding-bottom: 30px; }
.tl-item:last-child .tl-body { padding-bottom: 0; }
.tl-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .1em; color: #0b7285; }
.tl-tag-past { color: #5a6a6e; }
.tl-body h3 { font-weight: 700; font-size: 21px; margin: 6px 0 0; letter-spacing: -.02em; }
.tl-org { font-size: 13.5px; color: #8a969a; margin-top: 2px; }
.tl-body ul { margin: 12px 0 0; padding: 0 0 0 18px; font-size: 14px; line-height: 1.7; color: #3d4c50; }
.tl-body ul li { margin-bottom: 2px; }
.tl-note { font-size: 14px; line-height: 1.6; color: #3d4c50; margin-top: 10px; }

/* --------------------------------------------------------- expertises --- */

.ini {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0b7285, #0f8a9e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
}
.exp h3 { font-weight: 700; font-size: 20px; margin: 0 0 4px; letter-spacing: -.02em; }
.exp-sub { font-size: 13.5px; color: #8a969a; margin: 0 0 14px; }
.bullets { display: flex; flex-direction: column; gap: 9px; }
.bullet { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.5; color: #3d4c50; }
.bullet::before {
  content: "";
  flex: none;
  margin-top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7de3c8;
}

/* --------------------------------------------------------- panneau ink --- */

.panel-ink {
  position: relative;
  overflow: hidden;
  background: #16282d;
  border-radius: 28px;
  padding: 48px;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.panel-ink .glow {
  position: absolute;
  top: -140px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 227, 200, .18), transparent 65%);
  pointer-events: none;
}
.panel-ink > div { position: relative; }
.panel-desc { font-size: 15.5px; line-height: 1.6; color: rgba(255, 255, 255, .75); margin: 0 0 24px; }

.collage { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
/* Chaque visuel est enveloppe d'un <picture> (source AVIF) : c'est lui que
   compte :nth-child, pas l'<img>. */
.collage picture { display: block; }
.collage img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; border-radius: 16px; display: block; }
.collage .fit { object-fit: contain; background: rgba(255, 255, 255, .08); }
.collage picture:nth-child(1) { transform: rotate(-3deg); }
.collage picture:nth-child(2) { transform: rotate(2deg) translateY(14px); }
.collage picture:nth-child(3) { transform: rotate(-2deg); }
.collage picture:nth-child(4) { transform: rotate(2.5deg) translateY(-6px); }
.collage picture:nth-child(5) { transform: rotate(-1.5deg) translateY(10px); }
.collage picture:nth-child(6) { transform: rotate(3deg); }

/* ------------------------------------------------------- philosophie --- */

.philo h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.25;
  margin: 0 0 18px;
  max-width: 920px;
}
.philo h2 b { color: #0b7285; font-weight: 800; }
.philo-note { font-size: 16px; color: #5a6a6e; margin: 0 0 26px; }

/* -------------------------------------------------------- competences --- */

.skills { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 16px; align-items: start; }
.skills h2 { font-size: 28px; letter-spacing: -.02em; margin: 0 0 6px; }
.skills-desc { font-size: 14px; color: #5a6a6e; margin: 0 0 22px; }

.tool { display: flex; align-items: center; gap: 11px; }
.tool-ini {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #0b7285;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 11px;
}
.tool-txt { min-width: 0; }
.tool-nom { display: block; font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 13.5px; }
.tool-role { display: block; font-size: 11.5px; color: #8a969a; }

.metier { margin-bottom: 16px; }
.metier:last-child { margin-bottom: 0; }
.metier-titre { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 14.5px; margin-bottom: 8px; }

/* ---------------------------------------------------------- formation --- */

.line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #f4f8f8;
  border-radius: 14px;
  border: 1px solid rgba(11, 114, 133, .1);
  margin-bottom: 14px;
}
.line:last-child { margin-bottom: 0; }
.line-ini {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: #0b7285;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 11px;
}
.line-ini-dark { background: #16282d; color: #7de3c8; }
.line-txt { min-width: 0; }
.line-titre { display: block; font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 15px; line-height: 1.3; }
.line-org { display: block; font-size: 12.5px; color: #8a969a; margin-top: 3px; }
.line-desc { display: block; font-size: 13px; color: #5a6a6e; margin-top: 3px; }
.col-titre { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 19px; margin-bottom: 18px; }

/* ------------------------------------------------------ certifications --- */

.certif {
  background: #fff;
  border-radius: 18px;
  padding: 22px 16px;
  text-align: center;
  box-shadow: 0 16px 40px -30px rgba(13, 91, 107, .5);
  border-top: 4px solid #0b7285;
}
.certif-sigle { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 800; font-size: 19px; color: #0b7285; }
.certif-nom { font-size: 12px; color: #5a6a6e; line-height: 1.4; margin-top: 7px; }

/* ---------------------------------------------------------- comparatif --- */

.compare-clip { background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 16px 40px -30px rgba(13, 91, 107, .5); }
.compare-scroll { overflow-x: auto; }
.compare { min-width: 720px; }
.compare-head { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; background: #f4f8f8; border-bottom: 1px solid rgba(11, 114, 133, .12); }
.compare-head > div:first-child {
  padding: 18px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #8a969a;
}
.compare-col { padding: 14px; text-align: center; }
.compare-col b { display: block; font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 15px; }
.compare-col span { font-size: 12px; color: #8a969a; }
.compare-col-ip { background: #0b7285; color: #fff; }
.compare-col-ip span { color: rgba(255, 255, 255, .8); }

.compare-row { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; align-items: center; border-top: 1px solid #eef2f2; }
.compare-cap { padding: 13px 24px; font-size: 14.5px; font-weight: 500; color: #3d4c50; }
.compare-cell { padding: 10px; display: flex; justify-content: center; align-items: center; }
.compare-cell-ip { background: rgba(11, 114, 133, .07); align-self: stretch; }

.mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0b7285;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.mark-ip { background: #16282d; color: #7de3c8; }
.mark-basic {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: #faedcf;
  color: #b07d18;
  padding: 4px 9px;
  border-radius: 6px;
}
.mark-none { color: #c3cdcd; font-size: 16px; }

.legend { display: flex; gap: 24px; margin-top: 16px; font-size: 13px; color: #8a969a; flex-wrap: wrap; }
.legend > span { display: flex; align-items: center; gap: 7px; }
.legend .mark { width: 18px; height: 18px; font-size: 11px; }
.legend .mark-basic { font-size: 10.5px; padding: 3px 8px; }

/* --------------------------------------------------------- CTA / verre --- */

.cta-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0d5b6b, #0b7285 60%, #0f8a9e);
  border-radius: 32px;
  padding: 60px 56px;
  color: #fff;
}
.cta-panel .glow {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .14), transparent 65%);
  pointer-events: none;
}
.cta-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.cta-panel h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.1; margin: 0 0 16px; }
.cta-lead { font-size: 16.5px; line-height: 1.6; color: rgba(255, 255, 255, .85); margin: 0 0 28px; }

.glass {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  padding: 20px 24px;
  backdrop-filter: blur(6px);
}
.glass h3 { font-weight: 700; font-size: 17px; margin: 0; letter-spacing: -.01em; }
.glass p { font-size: 13.5px; color: rgba(255, 255, 255, .78); margin: 5px 0 0; }
.glass-col { display: flex; flex-direction: column; gap: 12px; }

.mint-list { display: flex; flex-direction: column; gap: 9px; margin-top: 28px; }
.mint-list div { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: rgba(255, 255, 255, .85); }
.mint-list div::before {
  content: "";
  flex: none;
  margin-top: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7de3c8;
}

/* ------------------------------------------------------------ contact --- */

.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-card { background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); border-radius: 16px; padding: 18px 20px; }
.contact-lab { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #7de3c8; }
.contact-val { font-size: 14px; font-weight: 600; margin-top: 6px; color: #fff; text-decoration: none; display: block; }
a.contact-val:hover { color: #7de3c8; }
.contact-val-break { word-break: break-all; }

/* ------------------------------------------------------------- footer --- */

.site-footer {
  padding: 0 40px 34px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .08em;
  color: #8a969a;
}
.site-footer a { color: #0b7285; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* ------------------------------------------------- Studio Decision --- */

.studio {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 56px -32px rgba(13, 91, 107, .5);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.studio-txt { padding: 44px 46px; }
.studio-desc { font-size: 15.5px; line-height: 1.6; color: #5a6a6e; margin: 0 0 22px; }
.studio-shot { background: linear-gradient(160deg, #0d5b6b, #0f8a9e); display: flex; align-items: center; justify-content: center; padding: 36px; }
.studio-shot img { width: 100%; height: auto; border-radius: 16px; box-shadow: 0 30px 60px -24px rgba(0, 0, 0, .5); display: block; }

.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-bottom: 26px; }
.step { background: #f4f8f8; border-radius: 12px; padding: 12px; text-align: center; }
.step-num { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: #8a969a; }
.step-titre { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 14px; margin-top: 3px; }
.step-desc { font-size: 11px; color: #8a969a; }

.mods { margin-top: 14px; }
.mod-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0b7285;
  margin-bottom: 8px;
}
/* Titre de carte cliquable : un <p>, pas un <h3> — un titre ne peut pas
   vivre dans un <a> (modele de contenu de phrasing). */
.mod-titre { font-family: 'Schibsted Grotesk', sans-serif; font-weight: 700; font-size: 17px; margin: 0 0 6px; letter-spacing: -.02em; }
.mod-desc { font-size: 13.5px; line-height: 1.5; color: #5a6a6e; margin: 0 0 12px; }

/* ------------------------------------------------------- livrables --- */

.livrables { position: relative; display: flex; flex-wrap: wrap; gap: 8px; }
.livrable {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 999px;
  transition: background .2s ease, border-color .2s ease;
}
.livrable:hover { background: rgba(125, 227, 200, .18); border-color: rgba(125, 227, 200, .5); color: #fff; }
.livrable span { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; color: #7de3c8; }

/* ------------------------------------------------------ big picture --- */

.bp-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 30px; }
.bp-head h2 { font-size: 34px; margin: 0; }
.bp-desc { font-size: 15px; line-height: 1.6; color: #5a6a6e; margin: 12px 0 0; max-width: 720px; }
.bp-tile { background: #f4f8f8; border-radius: 16px; padding: 20px; border-top: 4px solid #0b7285; }
.bp-tile-mint { border-top-color: #7de3c8; }
.bp-lab { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #0b7285; margin: 0 0 6px; }
.bp-tile h3 { font-weight: 700; font-size: 16px; margin: 0; letter-spacing: -.02em; }
.bp-tile-desc { font-size: 13px; color: #5a6a6e; margin: 5px 0 0; }

/* -------------------------------------------------------- creations --- */

.creation {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px -30px rgba(13, 91, 107, .5);
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s ease, transform .25s ease;
}
.creation:hover { transform: translateY(-3px); box-shadow: 0 24px 48px -26px rgba(13, 91, 107, .6); }
.creation-vis { position: relative; }
.creation-vis img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; background: #eef3f3; display: block; }
.creation-vis img.fit { object-fit: contain; }
.creation-type {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(22, 40, 45, .82);
  color: #7de3c8;
  padding: 5px 10px;
  border-radius: 999px;
}
.creation-txt { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.creation-txt h3 { font-weight: 700; font-size: 16.5px; letter-spacing: -.01em; margin: 0; }
.creation-desc { font-size: 13px; line-height: 1.5; color: #5a6a6e; flex: 1; margin: 0; }
.creation-lien {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #0b7285;
  text-decoration: none;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.creation-lien:hover { color: #07505d; text-decoration: underline; }
.creation-dispo { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: #8a969a; margin-top: 6px; }

/* --------------------------------------------------------- responsive --- */

@media (max-width: 1180px) {
  .grid6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .impact-hero { grid-template-columns: 1fr; gap: 22px; }
  .big-sub { max-width: none; }
  .parcours, .skills, .cta-grid, .panel-ink, .studio { grid-template-columns: 1fr; gap: 32px; }
  .studio-shot { order: -1; }
  .hero-body { grid-template-columns: minmax(0, 1fr) 200px; gap: 36px; }
  .cta-panel { padding: 44px 34px; }
  .card-lg { padding: 34px; }
  .panel-ink { padding: 34px; }
  .studio-txt { padding: 34px; }
}

@media (max-width: 860px) {
  .section, .section-top, .section-end, .section-lead, .section-creations,
  .stats, .overlap, .hero-body, .hero-body-plain, .site-footer { padding-left: 22px; padding-right: 22px; }
  .section-top { padding-top: 56px; }
  .section-end { padding-bottom: 64px; }
  .hero { padding: 84px 0 80px; }
  .hero-body { display: flex; flex-direction: column-reverse; align-items: stretch; gap: 30px; padding-top: 34px; }
  .portrait { width: 170px; align-self: center; }
  .hero-rule { width: 140px; height: 10px; margin: 22px 0; }
  .hero p { font-size: 17px; }
  /* Le bandeau reste sur une seule ligne : seuls la marque et l'appel a
     l'action survivent, les ancres restent atteignables au defilement. */
  .hero-nav .nav-link { display: none; }
  .hero-nav .nav-cta { margin-left: 0; padding: 10px 16px; font-size: 13.5px; }
  .hero-head { padding: 20px 22px; }
  .h2, .h2-tight { font-size: 30px; }
  .h2-card, .h2-panel, .bp-head h2 { font-size: 26px; }
  .skills h2 { font-size: 24px; }
  .grid2, .grid3, .grid4, .steps, .contact-cards, .collage { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .span2 { grid-column: span 2; }
  .card, .card-soft { padding: 24px 20px; }
  .card-lg, .panel-ink, .studio-txt { padding: 26px 20px; }
  .cta-panel { padding: 32px 22px; border-radius: 24px; }
  .stats { margin-top: -44px; }
  .overlap { margin-top: -40px; }
  .big { font-size: 40px; }
  .kpis { gap: 20px; }
  .legend { gap: 14px; }
  .site-footer { flex-direction: column; gap: 8px; }
  /* Comparatif PO / PM / Intelligence Produit : une grille de 13 lignes sur
     quatre colonnes, que `.compare { min-width: 720px }` ne peut tenir ici
     qu'au prix d'un defilement horizontal. Illisible sur un ecran etroit,
     donc masque. Le balisage reste en place : le miroir Markdown et les
     moteurs continuent de le voir. */
  .compare-section { display: none; }
}

@media (max-width: 560px) {
  .grid2, .grid3, .grid4, .grid6, .steps, .contact-cards { grid-template-columns: minmax(0, 1fr); }
  .span2 { grid-column: auto; }
  .collage { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .collage picture { transform: none; }
  .collage img { border-radius: 12px; }
  .brand { font-size: 16px; }
  .hero-nav .nav-cta { padding: 9px 14px; font-size: 13px; }
  .hero h1 { font-size: clamp(38px, 12vw, 56px); }
  .portrait { width: 145px; }
  .btn-row .btn { width: 100%; text-align: center; }
  .cta-dashed { flex-direction: column; align-items: stretch; gap: 14px; }
  .cta-dashed .btn { text-align: center; }
  .bp-head .btn { width: 100%; text-align: center; }
  .kpis { flex-direction: column; gap: 14px; }
}
