@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700;800&family=Share+Tech+Mono&display=swap');

:root {
  --bg-color: #ffffff;
  --text-main: #000000;
  --text-muted: #555555;
  --border-hard: #000000;
  --border-light: #cccccc;
}

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

body {
  font-family: 'JetBrains Mono', monospace;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted, #888);
  border-left: 3px solid var(--accent, #555);
  padding: 0.6rem 1rem;
  margin: 0.5rem 0 1.5rem 0;
  line-height: 1.5;
  max-width: 720px;
}
/* ══════════════════════════════════════
   HEADER & NAVIGATION
══════════════════════════════════════ */

header {
  border-bottom: 2px solid var(--border-hard);
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-wrapper {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  flex-shrink: 0;
  white-space: nowrap;
}

.logo {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main);
}

.logo-subtitle {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-left: 2px;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

nav a:hover,
nav a.active {
  border-bottom: 2px solid var(--border-hard);
}
/*Drop menu/*
/* ══ DROPDOWN NAV ══ */
.drop { position: relative; }

.drop-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s;
  white-space: nowrap;
}
.drop-btn:hover { border-bottom-color: var(--border-hard); }

.drop-btn .chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #000;
  border-bottom: 1.5px solid #000;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s;
  flex-shrink: 0;
  line-height: 1;
}
.drop.open .chevron { transform: rotate(-135deg) translateY(-2px); }

.drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  background: #0a0a0a;
  min-width: 210px;
  z-index: 300;
  overflow: hidden;
}

.drop-menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: #444;
  animation: scanline 0.25s ease forwards;
  pointer-events: none;
}

@keyframes scanline {
  from { top: 0; opacity: 0.8; }
  to   { top: 100%; opacity: 0; }
}

.drop.open .drop-menu { display: block; }

.drop-menu a {
  display: block;
  padding: 13px 20px;
  color: #888;
  text-decoration: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-left: 2px solid transparent;
  border-bottom: 1px solid #111;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  animation: rowIn 0.2s ease both;
}
.drop-menu a:nth-child(1) { animation-delay: 0.02s; }
.drop-menu a:nth-child(2) { animation-delay: 0.07s; }
.drop-menu a:nth-child(3) { animation-delay: 0.12s; }

@keyframes rowIn {
  from { opacity: 0; transform: translateX(-5px); }
  to   { opacity: 1; transform: translateX(0); }
}

.drop-menu a:last-child { border-bottom: none; }

.drop-menu a:hover {
  color: #fff;
  border-left-color: #fff;
  background: #111;
}

.nav-separator {
  width: 1px;
  height: 18px;
  background: #ccc;
  flex-shrink: 0;
}
/* ══════════════════════════════════════
   MAIN LAYOUT
══════════════════════════════════════ */

main {
  flex: 1;
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.page-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  padding: 6px 12px;
  display: inline-block;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 1.5rem;
  border-bottom: 1px solid var(--border-hard);
  padding-bottom: 12px;
  margin-top: 48px;
  margin-bottom: 24px;
}

p {
  margin-bottom: 24px;
  font-size: 1rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════
   HOMEPAGE — HERO
══════════════════════════════════════ */

.hero {
  padding: 80px 0 64px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--text-muted);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 0;
}

/* Titre avec rotation de mots via JS */
.hero-title-static {
  display: block;
}

.hero-title-rotate {
  display: block;
  min-height: 1.15em;
}

.hero-title-rotate .rotate-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
}

.hero-title-rotate .rotate-word.visible {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.hero-title-separator {
  color: var(--text-muted);
  font-weight: 300;
  margin: 0 4px;
}

.rotate-word {
  font-family: 'Share Tech Mono', monospace;
  font-weight: 400;
  color: var(--text-muted);
}

.hero-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
  margin-top: 28px;
  margin-bottom: 0;
}

/* ══════════════════════════════════════
   HOMEPAGE — SECTION DIVIDER
══════════════════════════════════════ */

.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 56px 0 32px;
}

.section-divider span {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

/* ══════════════════════════════════════
   HOMEPAGE — NAV LIST (terminal)
══════════════════════════════════════ */

.nav-list {
  margin-bottom: 8px;
}

.entry {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  color: var(--text-main);
  transition: background 0.1s, color 0.1s, padding 0.1s;
}

.entry:first-child {
  border-top: 1px solid var(--border-light);
}

.entry:hover {
  background: var(--text-main);
  color: var(--bg-color);
  padding-left: 12px;
  padding-right: 12px;
  border-color: var(--text-main);
}

.entry:hover .tag  { color: rgba(255,255,255,0.45); }
.entry:hover .desc { color: rgba(255,255,255,0.45); }

.tag {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  width: 110px;
  flex-shrink: 0;
  transition: color 0.1s;
}

.entry .title {
  font-weight: 700;
  font-size: 0.85rem;
  width: 180px;
  flex-shrink: 0;
}

.entry .desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  transition: color 0.1s;
}

.nav-cursor {
  display: inline-block;
  width: 7px;
  height: 13px;
  background: var(--text-main);
  vertical-align: middle;
  margin-top: 16px;
  margin-bottom: 40px;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ══════════════════════════════════════
   HOMEPAGE — STATS BAR
══════════════════════════════════════ */

.footer-stats {
  display: flex;
  gap: 48px;
  padding: 28px 0;
  border-top: 1px solid var(--border-light);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ══════════════════════════════════════
   CARDS GRILLE (pages intérieures)
══════════════════════════════════════ */

.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.data-card {
  border: 1px solid var(--border-hard);
  padding: 24px;
  text-decoration: none;
  color: var(--text-main);
  transition: background-color 0.15s, color 0.15s;
  display: flex;
  flex-direction: column;
}

.data-card:hover {
  background-color: var(--text-main);
  color: var(--bg-color);
}

.data-card:hover .card-meta,
.data-card:hover p {
  color: var(--bg-color);
}

.card-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.card-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-contrib {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.contrib-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.contrib-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.contrib-tags span {
  font-size: 0.6rem;
  border: 1px solid #ccc;
  padding: 2px 8px;
  letter-spacing: 0.3px;
  color: #666;
  transition: color 0.15s, border-color 0.15s;
}

.data-card:hover .card-contrib {
  border-top-color: rgba(255,255,255,0.2);
}

.data-card:hover .contrib-label {
  color: rgba(255,255,255,0.5);
}

.data-card:hover .contrib-tags span {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════
   LISTE DE LECTURE
══════════════════════════════════════ */

.status-section {
  margin-top: 48px;
}

.status-header {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-main);
  padding-bottom: 8px;
  margin-bottom: 0;
}

.reading-list {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--border-hard);
}

.list-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.15s ease;
}

.list-item:hover {
  background-color: var(--text-main);
  color: var(--bg-color);
  padding-left: 16px;
  padding-right: 16px;
  border-bottom-color: var(--border-hard);
}

.list-item:hover .item-meta,
.list-item:hover .item-author {
  color: var(--bg-color);
  opacity: 0.8;
}

.item-title {
  font-weight: 600;
  font-size: 1.05rem;
}

.item-author {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.item-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  margin-left: 20px;
  text-align: right;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */

footer {
  border-top: 1px solid var(--border-hard);
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 24px;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-main);
}

/* ══════════════════════════════════════
   CROSS-NAVIGATION FLOATING BUTTON
══════════════════════════════════════ */

.crossnav-float {
    position: fixed;
    bottom: 28px;
    left: 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    font-weight: 600;
    color: #fff;
    background: #000;
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 18px;
    border: 1px solid #000;
    z-index: 50;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.crossnav-float:hover {
    background: #fff;
    color: #000;
    border-color: #000;
    box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.crossnav-float .arrow {
    font-size: 0.8rem;
    transition: transform 0.15s;
    display: inline-block;
}
.crossnav-float:hover .arrow { transform: translateX(4px); }

@media (max-width: 900px) {
    .crossnav-float {
        bottom: 16px;
        left: 16px;
        font-size: 0.58rem;
        padding: 8px 14px;
    }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (< 900px)
══════════════════════════════════════ */

@media (max-width: 900px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
  }

  nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    width: auto;
    border-top: none;
  }

  .drop-btn {
    font-size: 0.75rem;
    padding: 6px 10px;
    border: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }

  .drop-btn:hover,
  .drop.open .drop-btn {
    border-color: var(--border-hard);
    background: var(--text-main);
    color: var(--bg-color);
  }

  .drop.open .drop-btn .chevron {
    border-color: var(--bg-color);
  }

  .drop-menu {
    top: calc(100% + 6px);
    min-width: 160px;
  }
  /* Contact */
  .contact-list {
    display: flex;
    flex-direction: column;
    border-top: 2px solid var(--border-hard);
    max-width: 640px;
}

.contact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.15s ease;
}

.contact-row:hover {
    background-color: var(--text-main);
    color: var(--bg-color);
    padding-left: 16px;
    padding-right: 16px;
    border-bottom-color: var(--border-hard);
}

.contact-row:hover .contact-label,
.contact-row:hover .contact-value,
.contact-row:hover .contact-arrow {
    color: var(--bg-color);
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.15s;
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    transition: color 0.15s;
}

.contact-arrow {
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: color 0.15s;
}

@media (max-width: 900px) {
    .contact-list {
        max-width: 100%;
    }
}
  /* lang switcher */
  nav > a {
    padding: 6px 10px;
    font-size: 0.7rem;
    align-self: center;
  }

  main {
    padding: 40px 20px;
  }

  .hero {
    padding: 48px 0 40px;
  }

  .footer-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .data-grid {
    grid-template-columns: 1fr;
  }

  .list-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .item-meta {
    margin-left: 0;
    margin-top: 8px;
    text-align: left;
  }

  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 24px 20px;
  }

  .footer-links a {
    margin: 0 12px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
  }
}
.crossnav-link { font-size:0.72rem; color:#555; text-decoration:none; letter-spacing:1.5px; font-weight:600; transition:all .15s; text-transform:uppercase; border-bottom:none !important; }
.crossnav-link:hover { color:#000 !important; border-bottom:none !important; }
.lang-switch-btn { font-size:0.7rem; color:#999; border:1px solid #ccc; padding:4px 10px; text-decoration:none; letter-spacing:1.5px; transition:all .15s; border-bottom:1px solid #ccc !important; }
.lang-switch-btn:hover { color:#000 !important; border-color:#000 !important; }

.solutions-intro { max-width: 640px; margin-bottom: 16px; }
.solutions-intro p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

/* BREAKOUT */
.breakout {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0 max(40px, calc(50vw - 600px));
    -webkit-overflow-scrolling: touch;
}
.breakout::-webkit-scrollbar { height: 3px; }
.breakout::-webkit-scrollbar-track { background: #eee; }
.breakout::-webkit-scrollbar-thumb { background: #999; }

/* ══════════════════════════════════════
   EXEMPLES — Accordion
══════════════════════════════════════ */
.cases-intro {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 640px;
}

.case-list {
    display: flex;
    flex-direction: column;
    border-top: 2px solid var(--border-hard);
    margin-bottom: 16px;
}

.case-item {
    border-bottom: 1px solid var(--border-light);
}

.case-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    cursor: pointer;
    transition: all 0.15s;
}

.case-item:hover .case-header,
.case-item.open .case-header {
    padding-left: 12px;
    padding-right: 12px;
    background: var(--text-main);
    color: var(--bg-color);
}
.case-item:hover .case-cat,
.case-item:hover .case-toggle,
.case-item.open .case-cat,
.case-item.open .case-toggle { color: rgba(255,255,255,0.55); }

.case-cat {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    width: 110px;
    flex-shrink: 0;
    transition: color 0.15s;
}

.case-question {
    font-weight: 700;
    font-size: 0.85rem;
    flex: 1;
}

.case-toggle {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: all 0.2s;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.case-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.case-item.open .case-body {
    max-height: 700px;
}

.case-steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    padding: 20px 0 24px 0;
}

.case-step {
    padding: 16px;
    border: 1px solid var(--border-light);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.case-item.open .case-step { opacity: 1; transform: translateY(0); }
.case-item.open .case-step:nth-child(1) { transition-delay: 0.05s; }
.case-item.open .case-step:nth-child(2) { transition-delay: 0.15s; }
.case-item.open .case-step:nth-child(3) { transition-delay: 0.25s; }

.cs-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.cs-label::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 1px;
    background: var(--text-muted);
}

.cs-title {
    font-weight: 700;
    font-size: 0.78rem;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.cs-text {
    font-size: 0.66rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ══════════════════════════════════════
   APPROCHE — 4 phases horizontal (echo méthode)
══════════════════════════════════════ */
.approche-intro {
    max-width: 640px;
    margin-bottom: 28px;
}
.approche-intro p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.approche-flow {
    min-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
    align-items: stretch;
    margin-bottom: 24px;
    padding-top: 4px;
}

.appr-card {
    border: 2px solid #000;
    background: #fff;
    transition: background 0.2s, color 0.2s;
    cursor: default;
    display: flex;
    flex-direction: column;
}
.appr-card:hover { background: #000; color: #fff; }
.appr-card:hover .ac-label,
.appr-card:hover .ac-desc,
.appr-card:hover .ac-out-label { color: rgba(255,255,255,0.55); }
.appr-card:hover .ac-title { color: #fff; }
.appr-card:hover .ac-head,
.appr-card:hover .ac-foot { border-color: rgba(255,255,255,0.18); }
.appr-card:hover .ac-out-tag {
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.3);
}

.ac-head {
    padding: 14px 16px 12px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color 0.2s;
}
.ac-num {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1;
}
.ac-label {
    font-size: 0.4rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s;
}

.ac-body { padding: 14px 16px; flex: 1; }
.ac-title {
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: -0.3px;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.ac-desc {
    font-size: 0.62rem;
    color: var(--text-muted);
    line-height: 1.65;
    transition: color 0.2s;
}

.ac-foot {
    padding: 11px 16px 13px;
    border-top: 1px solid var(--border-light);
    transition: border-color 0.2s;
}
.ac-out-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.42rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
    transition: color 0.2s;
}
.ac-out-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.ac-out-tag {
    font-size: 0.46rem;
    border: 1px solid var(--border-light);
    padding: 2px 6px;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    transition: all 0.2s;
}

.appr-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    position: relative;
    height: 2px;
}
.appr-arrow::before {
    content: '';
    position: absolute;
    left: 0; right: 7px;
    height: 2px;
    background: #000;
}
.appr-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    width: 0; height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #000;
}

.approche-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 4px;
    transition: all 0.15s;
}
.approche-link:hover { color: var(--text-main); border-bottom-color: var(--border-hard); }

/* DOMAINES REDIRECT */
.domains-redirect {
    border: 2px solid var(--border-hard);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 16px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.15s;
}
.domains-redirect:hover { background: var(--text-main); color: var(--bg-color); }
.domains-redirect:hover .dr-desc { color: rgba(255,255,255,0.6); }
.domains-redirect:hover .dr-arrow { transform: translateX(6px); }
.domains-redirect:hover .dr-label { color: rgba(255,255,255,0.55); }
.dr-left { flex: 1; }
.dr-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.dr-title {
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}
.dr-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.6;
    transition: color 0.15s;
}
.dr-arrow {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.3rem;
    transition: transform 0.15s;
    flex-shrink: 0;
}

/* CTA */
.solutions-cta { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--border-light); text-align: center; display: flex; flex-direction: column; align-items: center; }
.solutions-cta p { font-size: 0.85rem; color: var(--text-muted); max-width: 540px; margin-bottom: 20px; }
.solutions-cta a {
    display: inline-block;
    background: var(--text-main);
    color: var(--bg-color);
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--border-hard);
    transition: all 0.15s;
}
.solutions-cta a:hover { background: var(--bg-color); color: var(--text-main); }

/* RESPONSIVE */
@media (max-width: 900px) {
    .case-cat { width: 80px; font-size: 0.5rem; }
    .case-question { font-size: 0.78rem; }
    .case-steps { grid-template-columns: 1fr; }

    .approche-flow {
        min-width: auto;
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .appr-arrow {
        height: 22px;
        width: 2px;
        margin: 0 auto;
    }
    .appr-arrow::before {
        left: 0; right: 0;
        top: 0; bottom: 7px;
        width: 2px;
        height: auto;
    }
    .appr-arrow::after {
        right: auto;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        border-top: 7px solid #000;
        border-bottom: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
    }

    .domains-redirect { flex-direction: column; align-items: flex-start; padding: 22px 20px; }
    .dr-arrow { align-self: flex-end; }
}
.crossnav-link { font-size:0.72rem; color:#555; text-decoration:none; letter-spacing:1.5px; font-weight:600; transition:all .15s; text-transform:uppercase; border-bottom:none !important; }
.crossnav-link:hover { color:#000 !important; border-bottom:none !important; }
.lang-switch-btn { font-size:0.7rem; color:#999; border:1px solid #ccc; padding:4px 10px; text-decoration:none; letter-spacing:1.5px; transition:all .15s; border-bottom:1px solid #ccc !important; }
.lang-switch-btn:hover { color:#000 !important; border-color:#000 !important; }

/* ══════════════════════════════════════
   DIAGRAM BREAKOUT (full-width from 900px main)
══════════════════════════════════════ */

.method-intro {
    max-width: 640px;
    margin-bottom: 48px;
}
.method-intro p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ── Legend ── */
.flow-legend {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding: 14px 0 22px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 48px;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.55rem;
    color: var(--text-muted);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.legend-swatch-flow { width: 24px; height: 2px; background: #000; }
.legend-swatch-retro { width: 24px; height: 0; border-top: 2px dashed #999; }
.legend-swatch-livrable {
    width: 9px; height: 9px;
    border: 2px solid #000;
    transform: rotate(45deg);
    flex-shrink: 0;
}
.legend-swatch-alt {
    width: 18px; height: 8px;
    border: 1.5px dashed #000;
}
.legend-swatch-opt {
    width: 18px; height: 8px;
    border: 1px solid var(--border-light);
    position: relative;
}
.legend-swatch-opt::after {
    content: '?';
    position: absolute;
    top: -2px; right: -1px;
    font-size: 0.35rem;
    color: var(--text-muted);
}

/* ── Diagram wrapper — breaks out of 900px main ── */
.diagram-scroll {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0 max(40px, calc(50vw - 600px)) 16px;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
}
.diagram-scroll::-webkit-scrollbar { height: 3px; }
.diagram-scroll::-webkit-scrollbar-track { background: #eee; }
.diagram-scroll::-webkit-scrollbar-thumb { background: #999; }

.diagram-wrap {
    position: relative;
    min-width: 1160px;
    padding-bottom: 52px;
}

/* ── Main horizontal track ── */
.flow-track {
    display: grid;
    grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
    align-items: start;
    gap: 0;
    position: relative;
    z-index: 2;
}

/* ── Phase card ── */
.phase-card {
    border: 2px solid #000;
    background: #fff;
    position: relative;
    transition: background 0.2s, color 0.2s;
    cursor: default;
    z-index: 2;
}
.phase-card:hover {
    background: #000;
    color: #fff;
}
.phase-card:hover .pc-label,
.phase-card:hover .pc-desc,
.phase-card:hover .pc-duration { color: rgba(255,255,255,0.5); }
.phase-card:hover .pc-title { color: #fff; }
.phase-card:hover .pc-head { border-bottom-color: rgba(255,255,255,0.15); }
.phase-card:hover .pc-foot { border-top-color: rgba(255,255,255,0.15); }
.phase-card:hover .livrable-diamond { border-color: #fff; }

.pc-head {
    padding: 14px 14px 10px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color 0.2s;
}
.pc-num {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1;
}
.pc-label {
    font-size: 0.4rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s;
}

.pc-body {
    padding: 12px 14px;
}
.pc-title {
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: -0.3px;
    margin-bottom: 5px;
    transition: color 0.2s;
}
.pc-desc {
    font-size: 0.56rem;
    color: var(--text-muted);
    line-height: 1.55;
    transition: color 0.2s;
}

.pc-foot {
    padding: 9px 14px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.2s;
}
.pc-duration {
    font-size: 0.44rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}
.livrable-diamond {
    width: 8px; height: 8px;
    border: 2px solid #000;
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: border-color 0.2s;
}

/* ── Arrow connectors ── */
.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    position: relative;
    height: 2px;
    margin-top: 32px;
}
.flow-arrow::before {
    content: '';
    position: absolute;
    left: 0; right: 7px;
    height: 2px;
    background: #000;
}
.flow-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    width: 0; height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid #000;
}

/* ══════════════════════════════════════
   SUBSTEPS GRID
══════════════════════════════════════ */
.substeps-row {
    display: grid;
    grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
    gap: 0;
    position: relative;
    z-index: 2;
}

.sub-connector {
    width: 2px;
    height: 22px;
    background: #000;
    margin: 0 auto;
}

.sub-column {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

/* ── Column label ── */
.sub-col-label {
    font-size: 0.42rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0 0 6px;
    margin-bottom: 0;
}

/* ── Standard substep card ── */
.sub-card {
    border: 1px solid var(--border-light);
    border-bottom: none;
    background: #fff;
    position: relative;
    transition: all 0.2s;
    cursor: default;
    z-index: 2;
}
.sub-card:last-of-type { border-bottom: 1px solid var(--border-light); }
.sub-card:first-of-type { border-top: 2px solid #000; }
.sub-card.first-after-label { border-top: 2px solid #000; }

.sub-card:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    z-index: 3;
}
.sub-card:hover + .sub-card { border-top-color: #000; }
.sub-card:hover .sc-num,
.sub-card:hover .sc-desc,
.sub-card:hover .sc-dur { color: rgba(255,255,255,0.5); }
.sub-card:hover .sc-title { color: #fff; }
.sub-card:hover .sc-right { border-left-color: rgba(255,255,255,0.15); }
.sub-card:hover .livrable-diamond { border-color: #fff; }
.sub-card:hover .alt-tag { background: #fff; color: #000; border-color: #fff; }
.sub-card:hover .opt-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.3); }

.sc-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: stretch;
}
.sc-left {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sc-top {
    display: flex;
    align-items: baseline;
    gap: 7px;
}
.sc-num {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.56rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    transition: color 0.2s;
    flex-shrink: 0;
}
.sc-title {
    font-weight: 700;
    font-size: 0.66rem;
    letter-spacing: -0.2px;
    transition: color 0.2s;
}
.sc-desc {
    font-size: 0.5rem;
    color: var(--text-muted);
    line-height: 1.5;
    transition: color 0.2s;
}
.sc-right {
    border-left: 1px solid var(--border-light);
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 46px;
    transition: border-color 0.2s;
}
.sc-dur {
    font-size: 0.38rem;
    color: var(--text-muted);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-align: center;
    transition: color 0.2s;
}

/* ══════════════════════════════════════
   ALTERNATIVE CARDS (Phase 01)
   — dashed border, "OU" separators
══════════════════════════════════════ */
.sub-card.alt-card {
    border: 1.5px dashed #aaa;
    border-bottom: none;
}
.sub-card.alt-card:first-of-type {
    border-top: 2px dashed #000;
}
.sub-card.alt-card:last-of-type {
    border-bottom: 1.5px dashed #aaa;
}
.sub-card.alt-card:hover {
    border-color: #000;
    border-style: solid;
}

/* "OU" separator between alternatives */
.ou-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    height: 20px;
}
.ou-sep span {
    font-size: 0.42rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    background: #fff;
    padding: 0 8px;
    position: relative;
    z-index: 1;
}
.ou-sep::before {
    content: '';
    position: absolute;
    left: 20%; right: 20%;
    top: 50%;
    height: 1px;
    background: #ddd;
}

/* Alt tag inside card */
.alt-tag {
    font-size: 0.32rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999;
    border: 1px dashed #bbb;
    padding: 1px 5px;
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    transition: all 0.2s;
}

/* ══════════════════════════════════════
   OPTIONAL CARDS (Phase 02)
   — lighter style, "selon contexte" tag
══════════════════════════════════════ */
.sub-card.opt-card {
    border-color: #ddd;
    background: #fafafa;
}
.sub-card.opt-card:first-of-type {
    border-top: 2px solid #000;
}
.sub-card.opt-card:hover {
    background: #000;
    border-color: #000;
}

.opt-tag {
    font-size: 0.3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aaa;
    border: 1px solid #ddd;
    padding: 1px 5px;
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    transition: all 0.2s;
}

/* ══════════════════════════════════════
   SVG FEEDBACK ARROWS
══════════════════════════════════════ */
.retro-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: visible;
}
.retro-path {
    fill: none;
    stroke: #999;
    stroke-width: 1.5;
    stroke-dasharray: 6 4;
    opacity: 0.5;
    transition: opacity 0.3s, stroke 0.3s;
}
.retro-arrow-head {
    fill: #999;
    opacity: 0.5;
    transition: opacity 0.3s, fill 0.3s;
}
.diagram-wrap:hover .retro-path { opacity: 0.85; stroke: #555; }
.diagram-wrap:hover .retro-arrow-head { opacity: 0.85; fill: #555; }
.retro-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 7px;
    fill: #999;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: fill 0.3s;
}
.diagram-wrap:hover .retro-label { fill: #555; }

/* Mobile fallback */
.retro-mobile-h {
    display: none;
    font-size: 0.44rem;
    color: #999;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 0 4px 12px;
}
.retro-mobile-h::before {
    content: '↩';
    font-size: 0.6rem;
    margin-right: 4px;
}

/* ══════════════════════════════════════
   PRESTATIONS
══════════════════════════════════════ */
.presta-section {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 2px solid #000;
}
.presta-section-title {
    font-size: 0.58rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.presta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.presta-chip {
    font-size: 0.56rem;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    padding: 7px 14px;
    text-transform: uppercase;
    transition: all 0.15s;
    cursor: default;
}
.presta-chip:hover { background: #000; color: #fff; border-color: #000; }
.presta-chip .chip-code {
    font-family: 'Share Tech Mono', monospace;
    margin-right: 8px;
    opacity: 0.5;
}

/* ══════════════════════════════════════
   PRINCIPLES
══════════════════════════════════════ */
.principle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 2px solid #000;
    margin-top: 32px;
}
.principle-item {
    padding: 20px 18px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.2s;
    cursor: default;
}
.principle-item:last-child { border-right: none; }
.principle-item:hover {
    background: #000;
    color: #fff;
}
.principle-item:hover .principle-num,
.principle-item:hover .principle-desc { color: rgba(255,255,255,0.5); }
.principle-item:hover .principle-title { color: #fff; }
.principle-num {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.5rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 10px;
    transition: color 0.2s;
}
.principle-title {
    font-weight: 800;
    font-size: 0.82rem;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
    transition: color 0.2s;
}
.principle-desc {
    font-size: 0.62rem;
    color: var(--text-muted);
    line-height: 1.6;
    transition: color 0.2s;
}

/* CTA */
.method-cta {
    text-align: center; padding: 56px 0 24px;
}
.method-cta p { font-size: 0.88rem; color: var(--text-muted); margin: 0 auto 24px; max-width: 520px; }
.method-cta a {
    display: inline-block; font-family:'JetBrains Mono',monospace; font-size:0.78rem;
    font-weight:700; letter-spacing:3px; text-transform:uppercase; text-decoration:none;
    color:#fff; background:#000; padding:14px 44px; transition:background 0.12s;
}
.method-cta a:hover { background:#333; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
    .retro-svg { display: none; }
    .retro-mobile-h { display: block !important; }
    .principle-grid { grid-template-columns: 1fr 1fr; }
    .principle-item { border-right: 1px solid var(--border-light); }
    .principle-item:nth-child(2n) { border-right: none; }
    .diagram-scroll { padding: 0 20px 16px; }
}
@media (max-width: 600px) {
    .principle-grid { grid-template-columns: 1fr; }
    .principle-item { border-right: none; }
}
.crossnav-link { font-size:0.72rem; color:#555; text-decoration:none; letter-spacing:1.5px; font-weight:600; transition:all .15s; text-transform:uppercase; border-bottom:none !important; }
.crossnav-link:hover { color:#000 !important; border-bottom:none !important; }
.lang-switch-btn { font-size:0.7rem; color:#999; border:1px solid #ccc; padding:4px 10px; text-decoration:none; letter-spacing:1.5px; transition:all .15s; border-bottom:1px solid #ccc !important; }
.lang-switch-btn:hover { color:#000 !important; border-color:#000 !important; }

/* ── Globe navigation ── */
.globe-wrap { position:relative; width:min(100vw, 1100px); left:50%; transform:translateX(-50%); aspect-ratio:16/7; max-height:520px; overflow:visible; margin-bottom:16px; }
.globe-wrap svg#globeCanvas { position:absolute; top:0; left:0; width:100%; height:100%; display:block; }
.reticle-anchor { position:absolute; width:56px; height:56px; z-index:12; transform:translate(-28px,-28px); }
.reticle-anchor svg { width:100%; height:100%; overflow:visible; }
.reticle-ring { fill:none; stroke:#ccc; stroke-width:1.2; transition:stroke 0.3s, stroke-width 0.3s; }
.reticle-cross { stroke:#ccc; stroke-width:0.8; transition:stroke 0.3s; }
.reticle-bracket { fill:none; stroke:#000; stroke-width:1.8; stroke-linecap:square; opacity:0; transition:opacity 0.25s; }
.reticle-dot { fill:none; stroke:#ccc; stroke-width:1; transition:fill 0.3s, stroke 0.3s; }
.reticle-ping { fill:none; stroke:#000; stroke-width:1; opacity:0; }
.reticle-inner { transform-origin:32px 32px; transition:transform 0.6s cubic-bezier(0.22,1,0.36,1); }
@keyframes ping { 0%{r:20;opacity:0.35;stroke-width:1.5;} 100%{r:42;opacity:0;stroke-width:0.5;} }
.target-link { position:absolute; z-index:15; text-decoration:none; color:inherit; cursor:pointer; opacity:0; transition:opacity 0.6s cubic-bezier(0.22,1,0.36,1); }
.target-link.revealed { opacity:1; }
.target-link[data-side='left'] { text-align:right; }
.target-link[data-side='left'] .target-desc { margin-left:auto; }
.target-name { font-family:'Share Tech Mono',monospace; font-weight:400; font-size:0.82rem; letter-spacing:1.5px; text-transform:uppercase; color:var(--text-muted); transition:color 0.25s; white-space:nowrap; }
.target-desc { font-size:0.6rem; color:var(--text-muted); line-height:1.55; max-width:180px; margin-top:4px; max-height:0; overflow:hidden; opacity:0; transition:max-height 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.3s; }
.target-link:hover .target-name { color:#000; }
.target-link:hover .target-desc { max-height:80px; opacity:1; }
.target-arrow { font-size:0.55rem; letter-spacing:1px; color:var(--text-muted); opacity:0; transform:translateX(-4px); transition:opacity 0.2s 0.1s, transform 0.2s 0.1s; margin-top:4px; }
.target-link:hover .target-arrow { opacity:1; transform:translateX(0); }
.leader-svg { position:absolute; top:0; left:0; width:100%; height:100%; pointer-events:none; z-index:11; overflow:visible; }
.leader-line { stroke:#ccc; stroke-width:1; fill:none; stroke-linejoin:round; }
.leader-dot { fill:#ccc; }
.ret-expertise { left:30%; top:18%; }
.ret-methode { left:28%; top:68%; }
.ret-lab { left:58%; top:58%; }
.ret-contact { left:50%; top:35%; }
.lbl-solutions { left:0; top:8%; }
.lbl-expertise { left:0; top:38%; }
.lbl-methode { left:0; top:68%; }
.lbl-lab { right:0; top:55%; }
.lbl-contact { right:0; top:28%; }

/* ── Team section ── */
/* ─── FOUNDER ─── */
/* DESKTOP : layout original 2 colonnes (inchangé) */
.team-section {
    padding: 56px 0;
    border-top: 2px solid var(--border-hard);
}
.team-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    column-gap: 40px;
    row-gap: 0;
    align-items: start;
    border: none;
    background: transparent;
    max-width: none;
    margin: 0;
    padding: 0;
}
.team-head {
    display: contents;
    cursor: default;
}
.team-portrait {
    width: 200px;
    height: 260px;
    background: var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    outline: none;
    grid-column: 1;
    grid-row: 1 / span 2;
}
.team-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: none;
}
.team-portrait-placeholder {
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.team-head-info {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
}
.team-info-name {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.3px;
    margin-bottom: 4px;
}
.team-info-role {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.team-info-role br { display: none; }
.team-toggle { display: none; }
.team-body {
    grid-column: 2;
    grid-row: 2;
    max-height: none;
    overflow: visible;
    border-top: none !important;
}
.team-body-inner { padding: 0; }
.team-meta { display: none; }
.team-info-bio {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 520px;
}
.team-info-bio + .team-info-bio { margin-top: 1.8em; }
.team-info-bio em {
    color: #000;
    font-style: normal;
    font-weight: 600;
}
.team-links {
    margin-top: 20px;
    display: flex;
    gap: 16px;
}
.team-links a {
    font-size: 0.65rem;
    color: #555;
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'JetBrains Mono', monospace;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 0 0 2px;
    background: transparent;
    transition: all 0.15s;
}
.team-links a:hover {
    color: #000;
    border-color: #000;
    background: transparent;
}

/* MOBILE : carte dépliante */
@media (max-width: 900px) {
    .globe-wrap { width:100vw; transform:translateX(-50%); aspect-ratio:16/8; max-height:400px; }
    .reticle-anchor { width:40px; height:40px; transform:translate(-20px,-20px); }
    .target-name { font-size:0.65rem; letter-spacing:1px; }
    .target-desc { font-size:0.5rem; max-width:130px; }

    .team-card {
        display: block;
        border: 2px solid var(--border-hard);
        background: #fff;
        max-width: 640px;
        margin: 0 auto;
    }
    .team-head {
        display: grid;
        grid-template-columns: 84px 1fr auto;
        gap: 14px;
        align-items: center;
        padding: 14px;
        cursor: pointer;
        background: #fff;
        color: #000;
        transition: background .15s, color .15s;
    }
    .team-head:hover { background: #000; color: #fff; }
    .team-head:hover .team-info-role,
    .team-head:hover .team-toggle { color: #fff; }
    .team-head:hover .team-toggle { border-color: #fff; }
    .team-head:hover .team-portrait { outline-color: #fff; }

    .team-portrait {
        width: 84px;
        height: 104px;
        outline: 2px solid #000;
        outline-offset: 3px;
        transition: outline-color .15s;
        grid-column: auto;
        grid-row: auto;
    }
    .team-portrait img { filter: none; }

    .team-head-info { grid-column: auto; grid-row: auto; }
    .team-info-name {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }
    .team-info-role {
        font-size: 0.55rem;
        line-height: 1.5;
        transition: color .15s;
    }
    .team-info-role br { display: inline; }

    .team-toggle {
        display: flex;
        width: 32px;
        height: 32px;
        border: 2px solid #000;
        align-items: center;
        justify-content: center;
        font-family: 'JetBrains Mono', monospace;
        font-size: 1rem;
        font-weight: 700;
        transition: transform .25s, border-color .15s, color .15s;
        flex-shrink: 0;
        user-select: none;
    }
    .team-card.open .team-toggle { transform: rotate(45deg); }

    .team-body {
        display: block;
        grid-column: auto;
        grid-row: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
        border-top: 0 solid #000 !important;
    }
    .team-card.open .team-body {
        max-height: 800px;
        border-top: 2px solid #000 !important;
    }
    .team-body-inner { padding: 22px 16px 24px; }

    .team-meta {
        display: flex;
        gap: 14px;
        font-family: 'Share Tech Mono', monospace;
        font-size: 0.58rem;
        letter-spacing: 1.5px;
        color: var(--text-muted);
        text-transform: uppercase;
        margin-bottom: 16px;
        padding-bottom: 14px;
        border-bottom: 1px dashed var(--border-light);
    }
    .team-meta span::before { content: "› "; }

    .team-info-bio {
        font-size: 0.85rem;
        line-height: 1.75;
        max-width: none;
    }

    .team-links {
        margin-top: 22px;
    }
    .team-links a {
        color: #000;
        font-weight: 700;
        border: 2px solid #000;
        padding: 10px 22px;
    }
    .team-links a:hover {
        background: #000;
        color: #fff;
    }
}
@media (max-width: 480px) {
    .globe-wrap { aspect-ratio:4/3; max-height:340px; }
    .target-name { font-size:0.55rem; }
    .target-desc { max-width:100px; }
    .lbl-expertise, .lbl-methode { left:-2%; }
    .lbl-lab, .lbl-contact { right:-2%; }
}
.crossnav-link { font-size:0.72rem; color:#555; text-decoration:none; letter-spacing:1.5px; font-weight:600; transition:all .15s; text-transform:uppercase; border-bottom:none !important; }
.crossnav-link:hover { color:#000 !important; border-bottom:none !important; }
.lang-switch-btn { font-size:0.7rem; color:#999; border:1px solid #ccc; padding:4px 10px; text-decoration:none; letter-spacing:1.5px; transition:all .15s; border-bottom:1px solid #ccc !important; }
.lang-switch-btn:hover { color:#000 !important; border-color:#000 !important; }

/* ══════════════════════════════════════
   BREAKOUT CONTAINER
══════════════════════════════════════ */
.breakout {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0 max(40px, calc(50vw - 600px));
    -webkit-overflow-scrolling: touch;
}
.breakout::-webkit-scrollbar { height: 3px; }
.breakout::-webkit-scrollbar-track { background: #eee; }
.breakout::-webkit-scrollbar-thumb { background: #999; }

.section-anchor { scroll-margin-top: 80px; }

/* ══════════════════════════════════════
   DOMAINS — 4 HORIZONTAL CARDS
══════════════════════════════════════ */
.domains-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    min-width: 1020px;
    border-top: 2px solid #000;
    margin-top: 16px;
    margin-bottom: 48px;
}

.domain-card {
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 20px 18px;
    transition: all 0.2s;
    cursor: default;
}
.domain-card:last-child { border-right: none; }

.domain-card:hover {
    background: #000;
    color: #fff;
}
.domain-card:hover .dc-num,
.domain-card:hover .dc-desc { color: rgba(255,255,255,0.5); }
.domain-card:hover .dc-title { color: #fff; }
.domain-card:hover .dc-tag { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.25); }

.dc-num {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.5rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 10px;
    transition: color 0.2s;
}
.dc-title {
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: -0.2px;
    margin-bottom: 10px;
    transition: color 0.2s;
}
.dc-desc {
    font-size: 0.58rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
    transition: color 0.2s;
}
.dc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.dc-tag {
    font-size: 0.42rem;
    border: 1px solid var(--border-light);
    padding: 2px 7px;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    transition: all 0.2s;
}

/* ══════════════════════════════════════
   PRESTATIONS — HORIZONTAL POLES + SERVICES
══════════════════════════════════════ */
.poles-wrap {
    min-width: 1020px;
    margin-bottom: 32px;
}

/* Pole header cards */
.poles-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.pole-card {
    border: 2px solid #000;
    background: #fff;
    transition: all 0.2s;
    cursor: default;
}
.pole-card:hover {
    background: #000;
    color: #fff;
}
.pole-card:hover .pk-label,
.pole-card:hover .pk-desc { color: rgba(255,255,255,0.5); }
.pole-card:hover .pk-title { color: #fff; }

.pk-head {
    padding: 14px 16px 10px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pole-card:hover .pk-head { border-bottom-color: rgba(255,255,255,0.15); }

.pk-num {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1;
}
.pk-label {
    font-size: 0.4rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s;
}
.pk-body { padding: 12px 16px; }
.pk-title {
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: -0.3px;
    margin-bottom: 5px;
    transition: color 0.2s;
}
.pk-desc {
    font-size: 0.54rem;
    color: var(--text-muted);
    line-height: 1.55;
    transition: color 0.2s;
}

/* Service drop-down grid */
.services-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.svc-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.svc-card {
    border: 1px solid var(--border-light);
    border-bottom: none;
    background: #fff;
    transition: all 0.2s;
    cursor: default;
    position: relative;
    z-index: 2;
}
.svc-card:first-child { border-top: 2px solid #000; }
.svc-card:last-child { border-bottom: 1px solid var(--border-light); }

.svc-card:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    z-index: 3;
}
.svc-card:hover + .svc-card { border-top-color: #000; }
.svc-card:hover .sv-desc { color: rgba(255,255,255,0.5); }
.svc-card:hover .sv-title { color: #fff; }

.sv-inner { padding: 12px 14px; }
.sv-title {
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: -0.2px;
    margin-bottom: 4px;
    transition: color 0.2s;
}
.sv-desc {
    font-size: 0.5rem;
    color: var(--text-muted);
    line-height: 1.55;
    transition: color 0.2s;
}

/* ══════════════════════════════════════
   FORMATS — 6 HORIZONTAL
══════════════════════════════════════ */
.formats-section {
    margin-top: 48px;
    padding: 28px 0;
    border-top: 2px solid var(--border-hard);
}
.formats-section h3 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.format-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    border-top: 1px solid var(--border-light);
}
.format-item {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    transition: all 0.15s;
    cursor: default;
}
.format-item:nth-child(6n) { border-right: none; }
.format-item:hover { background: #000; color: #fff; }
.format-item:hover .fmt-name { color: #fff; }
.format-item:hover .fmt-duration { color: rgba(255,255,255,0.5); }

.fmt-name { font-weight: 700; font-size: 0.78rem; margin-bottom: 4px; transition: color 0.15s; }
.fmt-duration { font-size: 0.52rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; transition: color 0.15s; }

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
.cta-block { text-align: center; padding: 56px 0 24px; }
.cta-block p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-btn {
    display: inline-block; font-family:'JetBrains Mono',monospace; font-size:0.78rem;
    font-weight:700; letter-spacing:3px; text-transform:uppercase; text-decoration:none;
    color:#fff; background:#000; padding:14px 44px; transition:background 0.12s;
}
.cta-btn:hover { background:#333; }

/* Misc */
.crossnav-float {
    position: fixed; bottom: 28px; left: 32px;
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'JetBrains Mono', monospace; font-size: 0.62rem;
    color: #777; text-decoration: none; letter-spacing: 1.5px;
    text-transform: uppercase; transition: color 0.12s; z-index: 50;
}
.crossnav-float:hover { color: #000; }
.crossnav-float .arrow { font-size: 0.75rem; transition: transform 0.15s; display: inline-block; }
.crossnav-float:hover .arrow { transform: translateX(4px); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
    .breakout { padding: 0 20px; }
    .format-grid { grid-template-columns: repeat(3, 1fr); }
    .format-item:nth-child(6n) { border-right: 1px solid var(--border-light); }
    .format-item:nth-child(3n) { border-right: none; }
}
@media (max-width: 600px) {
    .format-grid { grid-template-columns: 1fr 1fr; }
    .format-item:nth-child(3n) { border-right: 1px solid var(--border-light); }
    .format-item:nth-child(2n) { border-right: none; }
}
/* ══════════════════════════════════════
   FOOTER
/* ============================================
   SITE FOOTER
   ============================================ */
   .site-footer {
    border-top: 2px solid var(--border-hard);
    margin-top: 120px;
    padding: 60px 40px 30px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-main);
    background: var(--bg-color);
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-light);
  }
  
  .footer-col {
    display: flex;
    flex-direction: column;
  }
  
  .footer-identity .footer-brand {
    font-family: 'Share Tech Mono', monospace;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    color: var(--text-main);
  }
  
  .footer-meta {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.8;
    letter-spacing: 0.5px;
  }
  
  .footer-link {
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
    width: fit-content;
  }
  
  .footer-link:hover {
    color: var(--text-main);
    border-bottom-color: var(--text-main);
  }
  
  .footer-copy {
    margin-top: 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .footer-title {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-main);
    padding-bottom: 10px;
    margin-bottom: 16px;
    border-bottom: 2px solid var(--border-hard);
  }
  
  .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-list li a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
  }
  
  .footer-list li a:hover {
    color: var(--text-main);
    padding-left: 8px;
  }
  
  /* Bottom bar */
  .footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
  }
  
  .footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 11px;
    letter-spacing: 0.5px;
  }
  
  .footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
  }
  
  .footer-legal a:hover {
    color: var(--text-main);
  }
  
  .footer-sep {
    color: var(--border-light);
  }
  
  .footer-baseline {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    letter-spacing: 2.5px;
    color: var(--text-main);
    text-transform: uppercase;
  }
  
  /* Responsive */
  @media (max-width: 820px) {
    .site-footer {
      padding: 50px 24px 25px;
      margin-top: 80px;
    }
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 40px;
      padding-bottom: 35px;
    }
    .footer-baseline {
      font-size: 11px;
      letter-spacing: 2px;
    }
  }