:root{
  --navy:#1F2D7A;
  --navy-deep:#142057;
  --navy-soft:#3548A3;
  --sky:#B4D0EE;
  --sky-deep:#7FA9DB;
  --cream:#F1F1F1;
  --cream-soft:#F1F1F1;
  --paper:#FBFAF6;
  --white:#F1F1F1;
  --card:#FFFFFF;
  --ink:#0E1330;
  --muted:#4B5275;
  --line:rgba(31,45,122,0.12);
  --line-strong:rgba(31,45,122,0.22);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
html,body{background:var(--paper);color:var(--ink);font-family:'Inter',sans-serif;font-weight:400;line-height:1.55;-webkit-font-smoothing:antialiased}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}
h1,h2,h3,h4{font-family:'Plus Jakarta Sans',sans-serif;font-weight:700;letter-spacing:-0.01em;line-height:1.1}
em{font-style:italic;color:var(--navy)}
.container{max-width:1280px;margin:0 auto;padding:0 40px}

/* ============ NAV ============ */
.nav{
  position:sticky;top:0;z-index:60;
  background:rgba(251,250,246,0.88);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid var(--line);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:76px;max-width:1280px;margin:0 auto;padding:0 40px;gap:28px}
.brand{display:flex;align-items:center;gap:12px}
.brand img{height:44px;width:44px;object-fit:contain}
.brand-name{font-family:'Plus Jakarta Sans',sans-serif;font-weight:700;color:var(--navy);font-size:18px;line-height:1.05;white-space:nowrap}
.brand-name span{font-style:italic;display:block;font-weight:500;font-size:11px;letter-spacing:0.18em;text-transform:uppercase;color:var(--navy-soft);margin-top:2px;font-family:'Inter',sans-serif;white-space:nowrap}
.nav-links{display:flex;gap:32px;list-style:none;font-size:14px;color:var(--ink);font-weight:500}
.nav-links a{position:relative;padding:6px 0;color:var(--ink);transition:color .15s}
.nav-links a:hover{color:var(--navy)}
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:13px 22px;border-radius:999px;font-weight:500;font-size:14px;
  transition:transform .2s ease, box-shadow .2s ease, background .2s, color .2s;
}
.btn-primary{background:var(--navy);color:#fff}
.btn-primary:hover{background:var(--navy-deep);transform:translateY(-1px);box-shadow:0 12px 24px -10px rgba(31,45,122,0.45)}
.btn-ghost{background:transparent;color:var(--navy);border:1.5px solid var(--navy)}
.btn-ghost:hover{background:var(--navy);color:#fff}

/* ============ HERO ============ */
.hero{
  background:
    radial-gradient(900px 600px at 110% -10%, var(--sky) 0%, transparent 55%),
    linear-gradient(180deg, var(--cream-soft) 0%, var(--paper) 100%);
  padding:80px 0 100px;
  position:relative;overflow:hidden;
}
.hero-grid{display:grid;grid-template-columns:1.05fr 1fr;gap:64px;align-items:center}
.hero h1{font-size:64px;margin:22px 0 22px;color:var(--ink)}
.hero h1 em{color:var(--navy)}
.hero-desc{font-size:16px;color:var(--muted);max-width:520px;line-height:1.7;font-weight:300}
.hero-tags{display:flex;flex-wrap:wrap;gap:8px;margin:28px 0 32px}
.tag{
  display:inline-flex;align-items:center;gap:6px;
  padding:7px 14px;border-radius:999px;
  background:var(--white);border:1px solid var(--line-strong);
  font-size:12px;color:var(--navy);font-weight:500;
}
.tag::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--sky-deep)}
.hero-stats{display:flex;gap:36px;margin-top:48px;padding-top:32px;border-top:1px solid var(--line)}
.stat-num{font-family:'Plus Jakarta Sans',sans-serif;font-size:32px;font-weight:700;color:var(--navy);line-height:1}
.stat-num em{color:var(--sky-deep)}
.stat-lbl{font-size:11px;letter-spacing:0.14em;text-transform:uppercase;color:var(--muted);margin-top:8px}

/* Hero scene (right) */
.hero-scene{position:relative;height:540px;display:flex;align-items:center;justify-content:center}
.hero-blob{
  position:absolute;width:480px;height:480px;border-radius:50%;
  background:radial-gradient(circle at 35% 35%, var(--sky) 0%, rgba(180,208,238,0.2) 70%);
  filter:blur(8px);z-index:0;
}
.hero-phone{
  position:relative;z-index:2;
  width:280px;height:560px;border-radius:42px;
  background:var(--white);
  box-shadow:0 40px 80px -30px rgba(31,45,122,0.45), 0 2px 0 var(--line) inset;
  border:8px solid var(--navy);
  padding:24px 18px;
  display:flex;flex-direction:column;gap:14px;
  transform:rotate(0deg);
}
.phone-notch{position:absolute;top:14px;left:50%;transform:translateX(-50%);width:80px;height:6px;border-radius:6px;background:var(--navy-deep);opacity:.4}
.phone-status{display:flex;justify-content:space-between;font-family:'JetBrains Mono',monospace;font-size:10px;color:var(--navy);padding:8px 4px 0;margin-top:6px}
.phone-card{
  background:var(--cream-soft);border-radius:16px;padding:14px;
  display:flex;align-items:center;gap:10px;
}
.phone-card-ic{width:36px;height:36px;border-radius:10px;background:var(--navy);color:#fff;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.phone-card-ic svg{width:18px;height:18px;stroke:#fff;fill:none;stroke-width:2}
.phone-card-txt{flex:1;min-width:0}
.phone-card-title{font-size:11px;font-weight:600;color:var(--ink)}
.phone-card-sub{font-size:10px;color:var(--muted);margin-top:2px;font-family:'JetBrains Mono',monospace}
.phone-card-amount{font-size:14px;font-weight:700;font-family:'Plus Jakarta Sans',sans-serif;color:var(--navy)}
.phone-cta{
  margin-top:auto;background:var(--navy);color:#fff;
  border-radius:14px;padding:14px;text-align:center;
  font-size:12px;font-weight:600;
}
.phone-cta small{display:block;font-weight:400;opacity:.7;font-size:10px;margin-top:4px;font-family:'JetBrains Mono',monospace}

/* characters */
.char{position:absolute;z-index:3}
.char-body{width:50px;height:50px;border-radius:50%;background:var(--navy);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-family:'Inter',sans-serif;font-size:14px;box-shadow:0 12px 22px -8px rgba(31,45,122,0.5)}
.char-1{top:40px;left:30px}
.char-1 .char-body{background:var(--cream);color:var(--navy);border:3px solid var(--navy)}
.char-2{bottom:80px;left:0px}
.char-2 .char-body{background:var(--sky);color:var(--navy)}
.char-3{top:50px;right:30px}
.char-3 .char-body{background:var(--navy);color:#fff}
.char-4{bottom:50px;right:10px}
.char-4 .char-body{background:var(--cream);color:var(--navy);border:3px solid var(--sky-deep)}
.char-label{
  margin-top:8px;font-size:9px;font-family:'JetBrains Mono',monospace;
  text-align:center;color:var(--navy);background:var(--white);
  padding:3px 8px;border-radius:999px;border:1px solid var(--line-strong);
  white-space:nowrap;
}
.floating-pill{
  position:absolute;background:var(--white);border:1px solid var(--line-strong);
  border-radius:14px;padding:10px 14px;font-size:11px;color:var(--ink);
  box-shadow:0 14px 28px -16px rgba(0,0,0,0.18);z-index:4;
  display:flex;align-items:center;gap:8px;
}
.floating-pill .dot{width:8px;height:8px;border-radius:50%;background:#22A85F;box-shadow:0 0 0 4px rgba(34,168,95,.18)}
.fp-1{top:140px;left:-30px;transform:rotate(-3deg)}
.fp-2{top:240px;right:-30px;transform:rotate(3deg)}

/* ============ TICKER ============ */
.ticker{
  background:var(--navy);color:#fff;padding:22px 0;overflow:hidden;
  border-top:1px solid var(--navy-deep);border-bottom:1px solid var(--navy-deep);
}
.ticker-row{display:flex;gap:48px;align-items:center;animation:ticker 32s linear infinite;width:max-content}
.ticker-item{display:flex;align-items:center;gap:14px;font-size:14px;font-weight:500;white-space:nowrap}
.ticker-item::after{content:"";width:6px;height:6px;border-radius:50%;background:var(--sky);margin-left:48px}
@keyframes ticker{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* ============ CONNECTED NODES : masqué avec la section dans index.html ============
.nodes{padding:120px 0;background:var(--paper)}
.nodes-header{text-align:center;max-width:740px;margin:0 auto 80px}
.nodes-header h2{font-size:48px;margin-top:16px}
.nodes-header p{font-size:16px;color:var(--muted);margin-top:18px;font-weight:300;line-height:1.7}
.nodes-grid{
  display:grid;grid-template-columns:1fr 1.1fr 1fr;gap:32px;align-items:center;
  position:relative;
}
.node-col{display:flex;flex-direction:column;gap:32px}
.node-card{
  background:var(--white);border:1px solid var(--line);border-radius:20px;padding:28px;
  box-shadow:0 4px 0 var(--line);
  transition:transform .25s, box-shadow .25s, border-color .25s;
  position:relative;
}
.node-card:hover{transform:translateY(-4px);box-shadow:0 24px 40px -28px rgba(31,45,122,0.35);border-color:var(--line-strong)}
.node-ic{
  width:48px;height:48px;border-radius:14px;
  background:var(--cream);color:var(--navy);
  display:flex;align-items:center;justify-content:center;margin-bottom:16px;
}
.node-ic.sky{background:var(--sky);color:var(--navy)}
.node-ic svg{width:24px;height:24px;stroke-width:2;fill:none;stroke:currentColor;stroke-linecap:round;stroke-linejoin:round}
.node-card h3{font-family:'Inter',sans-serif;font-size:17px;font-weight:600;color:var(--ink);margin-bottom:8px;letter-spacing:-0.01em}
.node-card p{font-size:13.5px;color:var(--muted);line-height:1.7;font-weight:300}
.node-card .node-num{
  position:absolute;top:18px;right:20px;font-family:'JetBrains Mono',monospace;
  font-size:11px;color:var(--navy);opacity:.4;letter-spacing:0.1em;
}
.node-center{
  aspect-ratio:1/1;border-radius:50%;
  background:radial-gradient(circle at 50% 40%, var(--white) 0%, var(--cream-soft) 70%);
  border:1px dashed var(--line-strong);
  display:flex;align-items:center;justify-content:center;flex-direction:column;
  position:relative;padding:48px;
}
.node-center::before, .node-center::after{
  content:"";position:absolute;border-radius:50%;border:1px dashed var(--line);
}
.node-center::before{inset:24px}
.node-center::after{inset:48px}
.node-center-inner{
  width:160px;height:160px;border-radius:50%;
  background:var(--navy);color:#fff;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  font-family:'Plus Jakarta Sans',sans-serif;font-style:italic;font-weight:500;
  text-align:center;font-size:14px;line-height:1.3;
  z-index:2;padding:20px;
  box-shadow:0 20px 40px -10px rgba(31,45,122,0.5);
}
.node-center-inner strong{font-size:20px;font-style:normal;font-family:'Plus Jakarta Sans',sans-serif;display:block;margin-bottom:6px}
.node-orbit{
  position:absolute;width:36px;height:36px;border-radius:50%;
  background:var(--white);border:2px solid var(--navy);
  display:flex;align-items:center;justify-content:center;
  color:var(--navy);font-size:11px;font-weight:700;font-family:'JetBrains Mono',monospace;
  z-index:3;
}
.o1{top:8%;left:50%;transform:translateX(-50%)}
.o2{top:50%;right:8%;transform:translateY(-50%);background:var(--sky);border-color:var(--navy)}
.o3{bottom:8%;left:50%;transform:translateX(-50%);background:var(--cream);border-color:var(--navy)}
.o4{top:50%;left:8%;transform:translateY(-50%)}
============================================================================ */

/* ============ IMPACT SECTION (Un simple geste) : masqué avec la section dans index.html ============
.impact{padding:120px 0;background:var(--cream-soft);position:relative;overflow:hidden}
.impact::before{
  content:"";position:absolute;top:-100px;right:-100px;width:400px;height:400px;
  background:radial-gradient(circle, var(--sky) 0%, transparent 70%);
  opacity:.4;
}
.impact-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:80px;align-items:center;position:relative;z-index:2}
.impact h2{font-size:52px;margin:16px 0 24px}
.impact h2 em{color:var(--navy)}
.impact-desc{color:var(--muted);font-size:15.5px;line-height:1.8;font-weight:300;max-width:480px}
.impact-list{margin-top:32px;display:flex;flex-direction:column;gap:18px}
.impact-item{display:flex;align-items:flex-start;gap:14px;font-size:14.5px;color:var(--ink);line-height:1.6}
--- .impact-check : déplacé dans « DEVENIR DONATEUR » (Notes de réassurance), il sert aussi aux notes des dons ---
.impact-actions{margin-top:40px;display:flex;gap:14px;flex-wrap:wrap}

--- Laptop illustration ---
.laptop{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;height:480px;width:100%;padding:0 30px}
.laptop-wrap{position:relative;width:100%;max-width:480px}
.laptop-body{
  width:100%;background:var(--white);border:10px solid var(--navy);border-radius:18px 18px 4px 4px;
  padding:14px;box-shadow:0 30px 60px -30px rgba(31,45,122,0.5);
  position:relative;z-index:2;
}
.laptop-screen{background:var(--cream-soft);border-radius:8px;padding:24px;min-height:280px;display:flex;flex-direction:column;gap:14px}
.laptop-toolbar{display:flex;gap:6px;margin-bottom:8px}
.laptop-toolbar span{width:8px;height:8px;border-radius:50%;background:var(--line-strong)}
.laptop-toolbar span:first-child{background:var(--navy);opacity:.6}
.laptop-bar{height:10px;border-radius:4px;background:var(--white);border:1px solid var(--line)}
.laptop-bar.short{width:60%}
.laptop-bar.tall{height:32px;border:none;background:var(--cream)}
.laptop-cta-row{display:flex;gap:10px;margin-top:auto}
.laptop-cta{background:var(--navy);color:#fff;padding:10px 14px;border-radius:8px;font-size:11px;font-weight:600;white-space:nowrap}
.laptop-cta.sky{background:var(--sky);color:var(--navy)}
.laptop-stand{
  width:112%;height:16px;background:var(--navy);
  border-radius:0 0 14px 14px;margin:-2px auto 0;
  position:relative;z-index:1;
  box-shadow:0 18px 28px -20px rgba(31,45,122,0.45);
}
.laptop-coin{
  position:absolute;width:60px;height:60px;border-radius:50%;
  background:var(--cream);border:4px solid var(--navy);
  display:flex;align-items:center;justify-content:center;
  font-family:'Plus Jakarta Sans',sans-serif;font-weight:700;color:var(--navy);font-size:22px;
  z-index:5;box-shadow:0 14px 24px -10px rgba(31,45,122,0.4);
}
.coin-1{top:-26px;left:-20px;transform:rotate(-10deg)}
.coin-2{bottom:-30px;right:-22px;transform:rotate(8deg);background:var(--sky);font-size:26px}
.laptop-tag{
  position:absolute;z-index:5;
  background:var(--white);border:1px solid var(--line-strong);
  border-radius:12px;padding:7px 12px;display:flex;align-items:center;gap:8px;
  box-shadow:0 12px 22px -14px rgba(31,45,122,0.35);
  font-size:11px;font-weight:600;color:var(--ink);
  white-space:nowrap;
}
.laptop-tag .ldot{width:8px;height:8px;border-radius:50%;background:#22A85F;box-shadow:0 0 0 4px rgba(34,168,95,.18);flex-shrink:0}
.laptop-tag-1{top:18px;right:-40px}
.laptop-tag-2{bottom:34px;left:-44px}
.laptop-tag-2 .ldot{background:var(--navy);box-shadow:0 0 0 4px rgba(31,45,122,0.18)}
============================================================================ */

/* ============ FEATURES (dark gradient) : masqué avec la section dans index.html ============
.features{
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 60%, var(--navy-soft) 100%);
  color:#fff;padding:120px 0;position:relative;overflow:hidden;
}
.features::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(circle at 15% 15%, rgba(180,208,238,0.18) 0%, transparent 40%),
    radial-gradient(circle at 85% 85%, rgba(237,231,214,0.1) 0%, transparent 40%);
  pointer-events:none;
}
.features-header{text-align:center;max-width:680px;margin:0 auto 64px;position:relative;z-index:2}
.features-header h2{font-size:48px;margin-top:16px;color:#fff}
.features-header h2 em{color:var(--sky)}
.features-header p{font-size:15.5px;color:rgba(255,255,255,0.7);margin-top:18px;font-weight:300}
.features-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:1px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:20px;overflow:hidden;
  position:relative;z-index:2;
}
.feature{
  background:linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  padding:36px 30px;
  transition:background .25s;
  position:relative;
}
.feature:hover{background:rgba(255,255,255,0.07)}
.feature-ic{
  width:48px;height:48px;border-radius:12px;
  background:rgba(180,208,238,0.18);color:var(--sky);
  display:flex;align-items:center;justify-content:center;margin-bottom:20px;
}
.feature-ic svg{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.feature h3{font-family:'Inter',sans-serif;font-size:17px;font-weight:600;color:#fff;margin-bottom:8px;letter-spacing:-0.01em}
.feature p{font-size:13.5px;color:rgba(255,255,255,0.65);line-height:1.7;font-weight:300}
.feature-num{
  position:absolute;top:18px;right:22px;
  font-family:'JetBrains Mono',monospace;font-size:11px;
  color:rgba(255,255,255,0.3);letter-spacing:0.1em;
}
============================================================================ */

/* ============ PROFILES (tabs) : masqué avec la section dans index.html ============
.profiles{padding:120px 0;background:var(--paper)}
.profiles-header{margin-bottom:48px;max-width:640px}
.profiles-header h2{font-size:48px;margin-top:16px}
.profiles-header p{color:var(--muted);font-size:15px;margin-top:14px;font-weight:300}
.profiles-layout{display:grid;grid-template-columns:280px 1fr;gap:32px;align-items:stretch}
.tabs{display:flex;flex-direction:column;background:var(--white);border:1px solid var(--line);border-radius:18px;padding:12px;height:fit-content}
.tab{
  display:flex;align-items:center;gap:14px;
  padding:16px 18px;border-radius:12px;text-align:left;
  font-size:14.5px;font-weight:500;color:var(--ink);
  transition:background .15s, color .15s;
}
.tab:hover{background:var(--cream-soft)}
.tab.active{background:var(--navy);color:#fff}
.tab.active .tab-num{color:var(--sky);opacity:1}
.tab-num{font-family:'JetBrains Mono',monospace;font-size:11px;color:var(--muted);opacity:.7;margin-left:auto}
.tab-ic{width:22px;height:22px;display:flex;align-items:center;justify-content:center}
.tab-ic svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.tab-panels{position:relative}
.panel{
  background:var(--white);border:1px solid var(--line);border-radius:18px;
  padding:36px;display:none;grid-template-columns:1fr 280px;gap:32px;align-items:center;
  min-height:420px;
}
.panel.active{display:grid}
.panel-body h3{font-family:'Plus Jakarta Sans',sans-serif;font-size:32px;color:var(--ink);margin-bottom:14px}
.panel-body h3 em{color:var(--navy)}
.panel-body > p{color:var(--muted);font-size:14.5px;line-height:1.8;font-weight:300;margin-bottom:24px}
.panel-bullets{display:flex;flex-direction:column;gap:12px}
.panel-bullet{display:flex;align-items:center;gap:12px;font-size:14px;color:var(--ink)}
.panel-bullet::before{
  content:"";width:6px;height:6px;border-radius:50%;background:var(--sky-deep);flex-shrink:0
}
.panel-vis{
  background:linear-gradient(160deg, var(--cream) 0%, var(--cream-soft) 100%);
  border-radius:14px;height:100%;min-height:340px;
  position:relative;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
}
.panel-vis .badge{
  position:absolute;top:18px;left:18px;
  font-family:'JetBrains Mono',monospace;font-size:10px;letter-spacing:0.1em;
  text-transform:uppercase;color:var(--navy);opacity:.6;
}
.panel-vis svg{width:60%;height:60%;color:var(--navy)}
============================================================================ */

/* ============================================================================
   CHRONOLOGIE DU LANCEMENT : masquée, conservée pour réactivation.
   Réactivation : retirer ce commentaire englobant, décommenter la section 4
   dans index.html, le lien de nav « Chronologie » et les règles .timeline /
   .timeline-placeholder des @media du bloc RESPONSIVE.
.timeline{padding:0 0 120px;background:var(--paper)}
.timeline-header{text-align:center;max-width:700px;margin:0 auto 40px}
.timeline-header h2{font-size:48px}
.timeline-header p{font-size:16px;color:var(--muted);margin-top:18px;font-weight:300;line-height:1.7}
--- Emplacement réservé : à remplacer par les étapes le moment venu. ---
.timeline-placeholder{
  min-height:280px;border:1px dashed var(--line-strong);border-radius:24px;
  background:var(--white);
}
============================================================================ */

/* ============ PRESENTATION VIDEO ============ */
/* Registre propre à la section : un châssis de lecteur posé sur un décalé,
   ni le deux-colonnes clair du don ni le bandeau sombre de l'adhésion. */
.video{padding:72px 0 120px;background:var(--paper)}
.video-head{text-align:center;max-width:720px;margin:0 auto 48px}
.video-head h2{font-size:48px}
.video-head p{color:var(--muted);font-size:15.5px;font-weight:300;line-height:1.8;margin-top:18px}

/* Le décalé donne de la profondeur sans surcharger le fond */
.video-stage{position:relative}
.video-stage::before{
  content:"";position:absolute;inset:0;
  transform:translate(14px,14px);border-radius:22px;
  background:var(--sky);opacity:.5;pointer-events:none;
}
.video-frame{
  position:relative;z-index:2;
  border:1px solid var(--line);border-radius:22px;
  background:var(--ink);overflow:hidden;
  box-shadow:0 34px 70px -34px rgba(31,45,122,0.55);
}

/* Barre de titre du lecteur */
.video-bar{
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  padding:13px 20px;background:var(--navy);
}
.video-dots{display:inline-flex;gap:7px;flex-shrink:0}
.video-dots i{width:9px;height:9px;border-radius:50%;background:rgba(255,255,255,0.26)}
.video-dots i:first-child{background:var(--sky)}
.video-tag{
  font-family:'JetBrains Mono',monospace;font-size:10.5px;letter-spacing:0.14em;
  text-transform:uppercase;color:rgba(255,255,255,0.6);
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.video-frame video{display:block;width:100%;aspect-ratio:16/9;object-fit:cover;background:var(--ink)}

/* Ce que la vidéo montre */
.video-chapters{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
  margin-top:44px;padding-top:32px;border-top:1px solid var(--line);
}
.video-chapter{
  display:flex;align-items:flex-start;gap:14px;
  font-size:14px;color:var(--muted);font-weight:300;line-height:1.6;
}
.video-chapter-num{
  font-family:'JetBrains Mono',monospace;font-size:12px;font-weight:500;
  color:var(--navy);letter-spacing:0.08em;flex-shrink:0;padding-top:1px;
}

/* ============ DEVENIR MEMBRE ============ */
/* Registre inverse de la section don : bandeau sombre pleine largeur,
   une seule colonne centrée, formulaire découpé en étapes numérotées.
   Les champs réutilisent les classes .donor-* de la section don. */
.membre{
  background-color:var(--navy);   /* repli : sans lui, un dégradé non appliqué donne du blanc sur blanc */
  background-image:linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 60%, var(--navy-soft) 100%);
  color:#fff;padding:120px 0;position:relative;overflow:hidden;
}
.membre::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(circle at 12% 10%, rgba(180,208,238,0.20) 0%, transparent 42%),
    radial-gradient(circle at 88% 90%, rgba(237,231,214,0.10) 0%, transparent 42%);
}
.membre .container{position:relative;z-index:2}

/* En-tête centré au-dessus de la carte */
.membre-header{text-align:center;max-width:760px;margin:0 auto 44px}
.membre-header h2{font-size:44px;color:#fff}
.membre-header h2 em{color:var(--sky)}
.membre-header p{font-size:15.5px;color:rgba(255,255,255,0.72);margin-top:18px;font-weight:300;line-height:1.8}
.membre-header p strong{color:#fff;font-weight:600}

/* Carte du formulaire, posée sur le bandeau sombre */
.membre-card{
  max-width:1080px;margin:0 auto;
  background:var(--card);border-radius:28px;
  box-shadow:0 40px 80px -40px rgba(0,0,0,0.65);
}
.membre-form{padding:44px 48px 36px}

/* Étapes numérotées, en rail : numéro et titre en colonne latérale, champs à droite.
   align-items:baseline pose le titre de l'étape sur la même ligne que le premier
   libellé de champ ; le numéro sort du flux pour ne pas décaler cette ligne. */
.membre-step{display:grid;grid-template-columns:230px minmax(0,1fr);gap:36px;align-items:baseline}
.membre-step + .membre-step{margin-top:34px;padding-top:34px;border-top:1px solid var(--line)}
/* Le groupe numéro + titre est centré dans la colonne du rail, d'un seul bloc. */
.membre-step-head{position:relative;padding-left:52px;width:fit-content;margin-inline:auto}
.membre-step-num{
  position:absolute;left:0;top:-5px;
  display:inline-flex;align-items:center;justify-content:center;
  width:36px;height:36px;border-radius:12px;
  background:var(--navy);color:#fff;
  font-family:'JetBrains Mono',monospace;font-size:12px;font-weight:500;letter-spacing:0.06em;
}
.membre-step-head h3{font-size:19px;color:var(--navy);line-height:1.35}
/* Les champs occupent déjà la colonne de droite : pas de décalage vertical. */
.membre-step-body .donor-grid{margin-top:0}

/* ============ LES INITIATEURS ============ */
/* Registre propre à la section : planche de trombinoscope sans photo. Fond gris
   clair veiné d'un halo ciel, en-tête éditorial (surtitre mono, titre à gauche,
   légende des disciplines à droite), puis une grille de cartes verticales à
   accent coloré — ni carte de formulaire, ni châssis de lecteur, ni bandeau
   sombre. Le relief vient de --card sur --cream-soft, des bordures et des
   ombres, jamais d'un contraste entre les gris qui sont identiques. */
.founders{
  background-color:var(--cream-soft);
  background-image:
    radial-gradient(760px 420px at 100% 0%, rgba(180,208,238,0.45) 0%, transparent 62%),
    radial-gradient(520px 320px at 0% 100%, rgba(180,208,238,0.22) 0%, transparent 60%);
  border-top:1px solid var(--line);
  padding:104px 0;position:relative;overflow:hidden;
}

/* Chaque discipline porte sa nuance, prise dans les jetons de la palette.
   --accent est déclarée une fois par classe et reprise par la légende,
   la barre de la carte, le monogramme et le numéro en filigrane. */
.founders .f-sante{--accent:var(--navy)}
.founders .f-gestion{--accent:var(--navy-soft)}
.founders .f-tech{--accent:var(--sky-deep)}
.founders .f-pharma{--accent:var(--muted)}
.founders .f-inst{--accent:var(--navy-deep)}

/* --- En-tête éditorial --- */
.founders-header{
  display:grid;grid-template-columns:minmax(0,1fr) auto;gap:24px 48px;
  align-items:end;margin-bottom:52px;
  padding-bottom:26px;border-bottom:1px solid var(--line-strong);
}
.founders-eyebrow{
  grid-column:1 / -1;display:block;margin-bottom:18px;
  font-family:'JetBrains Mono',monospace;font-size:11px;letter-spacing:0.22em;
  text-transform:uppercase;color:var(--navy-soft);
}
.founders-intro h2{font-size:46px}
.founders-intro p{color:var(--muted);font-size:15.5px;font-weight:300;line-height:1.8;margin-top:18px;max-width:640px}

/* Légende : clé de lecture des accents, et effectif par discipline */
.founders-legend{display:flex;flex-wrap:wrap;gap:10px 22px;list-style:none;justify-content:flex-end}
.founders-legend li{
  display:inline-flex;align-items:center;gap:8px;
  font-family:'JetBrains Mono',monospace;font-size:10.5px;letter-spacing:0.14em;
  text-transform:uppercase;color:var(--muted);white-space:nowrap;
}
.founders-legend b{
  display:inline-flex;align-items:center;justify-content:center;
  width:22px;height:22px;border-radius:7px;
  background:var(--accent);color:#fff;font-size:11px;font-weight:500;letter-spacing:0;
}

/* --- Grille de cartes --- */
.founders-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;list-style:none}
.founder{
  position:relative;display:flex;flex-direction:column;
  background:var(--card);border:1px solid var(--line);border-radius:20px;
  padding:26px 22px 18px;overflow:hidden;
  transition:border-color .22s, box-shadow .22s, transform .22s;
}
/* Filet d'accent en tête de carte : replié au repos, déployé au survol. */
.founder::before{
  content:"";position:absolute;top:0;left:0;height:3px;width:34px;
  background:var(--accent);border-radius:0 0 3px 0;
  transition:width .3s ease;
}
.founder:hover{
  border-color:var(--line-strong);transform:translateY(-4px);
  box-shadow:0 26px 46px -26px rgba(31,45,122,0.4);
}
.founder:hover::before{width:100%}

/* Numéro d'ordre en filigrane, dans l'angle : repère de lecture, pas une donnée. */
.founder-ord{
  position:absolute;top:14px;right:18px;
  font-family:'JetBrains Mono',monospace;font-size:34px;font-weight:500;
  color:var(--accent);opacity:.09;line-height:1;pointer-events:none;
  transition:opacity .22s;
}
.founder:hover .founder-ord{opacity:.2}

.founder-mono{
  display:inline-flex;align-items:center;justify-content:center;
  width:50px;height:50px;border-radius:15px;margin-bottom:20px;
  background:var(--accent);color:#fff;
  font-family:'JetBrains Mono',monospace;font-size:14px;font-weight:500;letter-spacing:0.04em;
  box-shadow:0 12px 22px -14px var(--accent);
}
.founder-name{font-family:'Plus Jakarta Sans',sans-serif;font-weight:700;font-size:16.5px;color:var(--ink);line-height:1.3}
.founder-role{font-size:13px;color:var(--muted);font-weight:300;line-height:1.55;margin-top:7px}

/* L'étiquette de discipline est collée en pied : les cartes d'une même ligne
   alignent leur filet quelle que soit la longueur de la fonction. */
.founder-field{
  margin-top:auto;padding-top:16px;border-top:1px solid var(--line);
  font-family:'JetBrains Mono',monospace;font-size:10px;letter-spacing:0.16em;
  text-transform:uppercase;color:var(--accent);
}

/* ============ TRUSTED BAR ============ */
.trust{padding:56px 0;background:var(--paper);border-top:1px solid var(--line);overflow:hidden}
.trust-label{
  text-align:center;font-size:11px;letter-spacing:0.2em;text-transform:uppercase;
  color:var(--muted);font-weight:500;margin-bottom:30px;
}

/* Bande déroulante, pleine largeur : les deux groupes de la piste sont identiques,
   la translation de -50% ramène donc le second exactement là où était le premier.
   L'écart entre logos est porté par leur marge droite, jamais par un gap de piste :
   sinon la moitié translatée ne coïnciderait pas et la boucle sauterait. */
.trust-marquee{
  position:relative;
  -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 7%,#000 93%,transparent 100%);
  mask-image:linear-gradient(90deg,transparent 0,#000 7%,#000 93%,transparent 100%);
}
.trust-track{display:flex;width:max-content;animation:trust-scroll 34s linear infinite}
.trust-group{display:flex;align-items:center}
.trust-marquee:hover .trust-track{animation-play-state:paused}
@keyframes trust-scroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.trust-logo{
  margin-right:72px;white-space:nowrap;
  font-family:'Plus Jakarta Sans',sans-serif;font-style:italic;font-weight:700;
  color:var(--muted);font-size:18px;letter-spacing:-0.01em;opacity:.7;
  transition:opacity .2s, color .2s;
}
.trust-logo:hover{opacity:1;color:var(--navy)}
.trust-logo.mono{font-family:'JetBrains Mono',monospace;font-style:normal;font-size:13px;letter-spacing:0.05em;text-transform:uppercase}

/* ============ FOOTER ============ */
footer{background:#0D1430;color:#fff;padding:64px 0 28px}
.footer-top{
  display:grid;grid-template-columns:1fr auto;gap:72px;align-items:start;
  padding-bottom:36px;border-bottom:1px solid rgba(255,255,255,0.12);
}

/* Bloc marque */
.f-brand-block{max-width:520px}
.f-brand{display:flex;align-items:center;gap:12px;margin-bottom:18px}
.f-brand img{width:46px;height:46px;background:var(--white);border-radius:10px;padding:5px}
.f-brand-name{font-family:'Plus Jakarta Sans',sans-serif;font-weight:700;color:#fff;font-size:19px}
.f-brand-name span{font-style:italic;display:block;font-weight:500;font-size:10px;letter-spacing:0.18em;text-transform:uppercase;color:var(--sky);margin-top:2px;font-family:'Inter',sans-serif}
.f-tagline{color:rgba(255,255,255,0.6);font-size:14px;line-height:1.8;font-weight:300;max-width:440px}

/* Les trois mots-clés : texte simple, séparés par un point médian. */
.f-pills{display:flex;gap:14px;margin-top:20px;flex-wrap:wrap}
.f-pill{font-size:11px;letter-spacing:0.16em;text-transform:uppercase;color:rgba(255,255,255,0.55);font-weight:500}
.f-pill + .f-pill::before{content:"·";margin-right:14px;color:rgba(255,255,255,0.3)}

/* Bloc contact — liens en liste simple, sans tuile ni cadre */
.f-contact{min-width:260px}
.f-contact h4{
  font-family:'Inter',sans-serif;font-size:12px;font-weight:600;letter-spacing:0.16em;
  text-transform:uppercase;color:var(--sky);margin-bottom:14px;
}
/* Placé sous la liste des coordonnées */
.f-contact-org{
  font-family:'JetBrains Mono',monospace;font-size:11.5px;letter-spacing:0.06em;
  color:rgba(255,255,255,0.5);line-height:1.7;margin-top:18px;
}
.f-contact-list{list-style:none;display:flex;flex-direction:column;gap:11px}
.f-contact-list a{
  display:flex;align-items:center;gap:11px;
  font-size:13.5px;color:rgba(255,255,255,0.72);transition:color .15s;
}
.f-contact-list a:hover{color:#fff}
.f-contact-ic{display:inline-flex;flex-shrink:0;color:var(--sky)}
.f-contact-ic svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.f-contact-txt{line-height:1.4}

/* Bas de page */
.footer-bot{
  display:flex;justify-content:space-between;align-items:center;
  padding-top:24px;color:rgba(255,255,255,0.45);font-size:12px;flex-wrap:wrap;gap:14px;
}
.f-baseline{font-family:'Plus Jakarta Sans',sans-serif;font-style:italic;color:rgba(255,255,255,0.6)}

/* ============ DEVENIR DONATEUR ============ */
.tiers{padding:120px 0;background:var(--cream-soft);position:relative;overflow:hidden}
.tiers::before{
  content:"";position:absolute;bottom:-160px;left:-120px;width:420px;height:420px;
  background:radial-gradient(circle, var(--sky) 0%, transparent 70%);
  opacity:.35;pointer-events:none;
}
.tiers::after{
  content:"";position:absolute;top:-180px;right:-140px;width:460px;height:460px;
  background:radial-gradient(circle, var(--sky) 0%, transparent 70%);
  opacity:.28;pointer-events:none;
}
.donor-layout{
  position:relative;z-index:2;
  display:grid;grid-template-columns:1fr;gap:20px;
}

/* En-tête pleine largeur — titre (et argumentaire, s'il est réactivé) */
.donor-pitch h2{font-size:52px;margin:0 0 24px;text-align:center}
.donor-pitch p{font-size:15px;color:var(--muted);font-weight:300;line-height:1.8;margin-bottom:16px}
.donor-lead{font-size:17px;color:var(--ink);font-weight:400;line-height:1.7}
.donor-pitch p strong{color:var(--navy);font-weight:600}
.donor-punch{margin-top:26px;margin-bottom:0;font-size:16px}
.donor-callout{
  display:flex;align-items:flex-start;gap:14px;margin-top:28px;
  padding:18px 20px;border-radius:16px;
  background:rgba(31,45,122,0.05);border:1px dashed var(--line-strong);
  font-size:13.5px;color:var(--muted);font-weight:300;line-height:1.6;
}
.donor-callout svg{
  width:20px;height:20px;flex-shrink:0;margin-top:1px;
  fill:none;stroke:var(--navy);stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;
}

/* Sous le titre — la carte de demande, centrée et détachée du fond par le blanc pur */
.donor-card{
  width:100%;max-width:720px;justify-self:center;
  background:var(--card);border:1px solid var(--line);border-radius:24px;overflow:hidden;
  box-shadow:0 34px 64px -36px rgba(31,45,122,0.6);
}
.donor-card-head{
  background-color:var(--navy);
  background-image:linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding:26px 28px;position:relative;overflow:hidden;
}
.donor-card-head::before{
  content:"";position:absolute;top:-70px;right:-40px;width:200px;height:200px;
  background:radial-gradient(circle, rgba(180,208,238,0.28) 0%, transparent 70%);
}
.donor-card-head h3{font-size:20px;color:#fff;position:relative;z-index:2}
.donor-card-head .donor-sub{color:rgba(255,255,255,0.72);position:relative;z-index:2}

/* Sélecteur de profil — segmenté, pleine largeur de la carte */
.donor-profile{display:flex;flex-direction:column;gap:9px}
.donor-profile-lbl{
  font-size:11px;letter-spacing:0.12em;text-transform:uppercase;
  color:var(--muted);font-weight:600;
}
.tiers-switch{
  display:grid;grid-template-columns:1fr 1fr;gap:4px;
  background:rgba(31,45,122,0.06);border:1px solid var(--line);
  border-radius:14px;padding:4px;
}
.tswitch{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  padding:12px 14px;border-radius:11px;font-size:14px;font-weight:500;
  color:var(--muted);transition:background .2s, color .2s;
}
.tswitch-ic{display:inline-flex;width:18px;height:18px}
.tswitch-ic svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.tswitch:hover{color:var(--navy)}
.tswitch.active{background:var(--navy);color:#fff;box-shadow:0 8px 18px -10px rgba(31,45,122,0.7)}

/* Récapitulatif du don */
.donor-recap{
  display:flex;align-items:center;gap:12px;margin-top:22px;
  padding:14px 18px;border-radius:14px;
  background:var(--cream-soft);border:1px solid var(--line);
  font-size:14px;color:var(--muted);font-weight:300;line-height:1.5;
}
.donor-recap-ic{
  display:inline-flex;align-items:center;justify-content:center;flex-shrink:0;
  width:24px;height:24px;border-radius:50%;
  background:var(--line-strong);transition:background .2s;
}
.donor-recap-ic svg{width:12px;height:12px;fill:none;stroke:#fff;stroke-width:3;stroke-linecap:round;stroke-linejoin:round}
.donor-recap-txt{flex:1}
.donor-recap.filled{background:rgba(31,45,122,0.06);border-color:var(--line-strong)}
.donor-recap.filled .donor-recap-ic{background:var(--navy)}
.donor-recap strong{color:var(--navy);font-weight:600}

/* Mention légale, en remplacement de la case à cocher */
.donor-mention{
  margin-top:18px;padding:14px 18px;border-radius:14px;
  background:var(--cream-soft);border:1px solid var(--line);
  font-size:13px;color:var(--muted);font-weight:300;line-height:1.6;
}

/* Pied de la carte : les actions passent pleine largeur */
.donor-card .donor-foot{flex-direction:column;align-items:stretch;gap:14px}
.donor-card .donor-actions{width:100%}
.donor-card .donor-actions .btn{flex:1;justify-content:center}

/* Notes de réassurance, empilées sous l'argumentaire.
   .impact-check sert aussi à la section Impact quand elle est réactivée. */
.tiers-notes{display:flex;flex-direction:column;gap:14px;margin-top:30px}
.tiers-note{display:flex;align-items:flex-start;gap:12px;font-size:14px;color:var(--muted);font-weight:300;line-height:1.6}
.impact-check{
  width:24px;height:24px;border-radius:50%;background:var(--navy);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:1px;
}
.impact-check svg{width:12px;height:12px;stroke:#fff;stroke-width:3;fill:none;stroke-linecap:round}

/* ============ GRILLE DE MONTANTS : masquée, conservée pour réactivation ultérieure. ============
   Remplacée par les champs « Périodicité » et « Montant » du formulaire.
   Pour la réafficher : retirer ce commentaire englobant, rétablir le balisage
   de la section #donateur dans index.html, les règles responsive commentées
   ligne à ligne dans les @media, et la machine à trois axes de js/script.js.

--- Contrôles (le sélecteur de profil reste actif plus haut) ---
.tiers-controls{display:flex;align-items:center;justify-content:center;gap:16px;flex-wrap:wrap;margin-bottom:36px}
.tiers-modes{display:inline-flex;gap:4px;background:rgba(31,45,122,0.07);border-radius:999px;padding:5px}
.tmode{
  padding:10px 22px;border-radius:999px;font-size:13.5px;font-weight:500;color:var(--muted);
  transition:background .2s, color .2s;
}
.tmode:hover{color:var(--navy)}
.tmode.active{background:var(--white);color:var(--navy);box-shadow:0 1px 3px rgba(31,45,122,0.14)}

--- Montants — cartes interactives ---
.tiers-amounts{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.tamount{
  position:relative;
  display:flex;flex-direction:column;align-items:flex-start;gap:6px;
  padding:26px 22px 22px;border:1px solid var(--line);border-radius:18px;
  background:var(--white);text-align:left;box-shadow:0 4px 0 var(--line);
  transition:transform .2s, box-shadow .2s, border-color .2s, background .2s;
}
.tamount:hover{
  transform:translateY(-3px);border-color:var(--line-strong);
  box-shadow:0 18px 30px -22px rgba(31,45,122,0.55);
}
.tamount:focus-visible{outline:2px solid var(--navy);outline-offset:3px}
.tamount-tick{
  position:absolute;top:16px;right:16px;
  display:inline-flex;align-items:center;justify-content:center;
  width:22px;height:22px;border-radius:50%;
  border:1.5px solid var(--line-strong);background:transparent;
  transition:background .2s, border-color .2s;
}
.tamount-tick svg{
  width:12px;height:12px;fill:none;stroke:#fff;stroke-width:2.6;
  stroke-linecap:round;stroke-linejoin:round;opacity:0;transition:opacity .2s;
}
.tamount:hover .tamount-tick{border-color:var(--sky-deep)}
.tamount-val{
  font-family:'Plus Jakarta Sans',sans-serif;font-weight:700;font-size:26px;color:var(--ink);
  letter-spacing:-0.02em;line-height:1.1;
}
.tamount-unit{
  font-family:'JetBrains Mono',monospace;font-size:10px;letter-spacing:0.12em;
  text-transform:uppercase;color:var(--muted);
}
.tamount.active{background:var(--navy);border-color:var(--navy);box-shadow:0 4px 0 var(--navy-deep)}
.tamount.active:hover{box-shadow:0 18px 30px -22px rgba(31,45,122,0.7)}
.tamount.active .tamount-val{color:#fff}
.tamount.active .tamount-unit{color:var(--sky)}
.tamount.active .tamount-tick{background:var(--sky-deep);border-color:var(--sky-deep)}
.tamount.active .tamount-tick svg{opacity:1}

--- Pied ---
.tiers-foot{
  display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;
  margin-top:28px;padding:22px 28px;
  background:var(--white);border:1px solid var(--line);border-radius:20px;box-shadow:0 4px 0 var(--line);
}
.tiers-recap{font-size:15px;color:var(--muted);font-weight:300}
.tiers-recap strong{color:var(--navy);font-weight:600}
.tiers-foot .btn[disabled]{opacity:.45;cursor:not-allowed;transform:none;box-shadow:none}

--- Formulaire donateur (déroulant) ---
.donor-panel{
  margin-top:14px;overflow:hidden;
  background:var(--white);border:1px solid var(--line);border-radius:20px;
  box-shadow:0 4px 0 var(--line);
  animation:donor-open .28s ease;
}
@keyframes donor-open{
  from{opacity:0;transform:translateY(-8px)}
  to{opacity:1;transform:translateY(0)}
}
============================================================================ */

/* Habillage des champs — partagé avec le formulaire d'adhésion (section #membre). */
.donor-form{padding:28px 28px 24px}
.donor-sub{font-size:14px;color:var(--muted);font-weight:300;margin-top:6px;line-height:1.6}
.donor-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-top:22px}
.donor-field{display:flex;flex-direction:column;gap:7px}
.donor-field-wide{grid-column:1 / -1}
.donor-field[hidden]{display:none}
.donor-field label{
  font-size:11px;letter-spacing:0.12em;text-transform:uppercase;
  color:var(--muted);font-weight:600;
}
.donor-field input,
.donor-field select,
.donor-field textarea{
  width:100%;padding:13px 16px;border-radius:12px;
  border:1px solid var(--line-strong);background:var(--paper);
  font-family:inherit;font-size:14.5px;color:var(--ink);
  transition:border-color .15s, box-shadow .15s;
}
.donor-field select{
  cursor:pointer;appearance:none;
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234B5275' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 14px center;background-size:16px;
  padding-right:40px;
}
.donor-field input::placeholder,
.donor-field textarea::placeholder{color:rgba(75,82,117,0.5)}
.donor-field textarea{min-height:112px;resize:vertical;line-height:1.6}
.donor-field input:focus,
.donor-field select:focus,
.donor-field textarea:focus{
  outline:none;border-color:var(--navy);
  box-shadow:0 0 0 3px rgba(31,45,122,0.12);
}
.donor-foot{
  display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap;
  margin-top:24px;padding-top:20px;border-top:1px solid var(--line);
}
.donor-actions{display:flex;gap:10px;flex-wrap:wrap}
.donor-actions .btn[disabled]{opacity:.45;cursor:not-allowed;transform:none;box-shadow:none}
.donor-status{font-size:13.5px;color:var(--muted);font-weight:300;flex:1;min-width:180px}
.donor-status.ok{color:var(--navy);font-weight:500}
.donor-status.err{color:#B3261E;font-weight:500}
@media (prefers-reduced-motion:reduce){
  /* .tamount{transition:none} */
  /* .tamount:hover{transform:none} */
  .tswitch{transition:none}
  /* Bande partenaires : défilement arrêté, la copie de bouclage devient inutile. */
  .trust-track{animation:none;width:100%;justify-content:center;flex-wrap:wrap}
  .trust-group[aria-hidden="true"]{display:none}
  .trust-marquee{-webkit-mask-image:none;mask-image:none}
}

/* ============ RESPONSIVE ============ */

/* Medium-narrow desktop */
@media (max-width:1180px){
  .container{padding:0 26px}
  .nav-inner{padding:0 26px}
  .hero{padding:48px 0 64px}
  .hero-grid{gap:28px;grid-template-columns:1fr 380px}
  .hero h1{font-size:42px}
  .nodes-header h2,.impact h2,.profiles-header h2,.features-header h2,.video-head h2,
  .timeline-header h2,.membre-header h2,.founders-header h2{font-size:38px}
  .nodes,.impact,.features,.profiles{padding:88px 0}
  .founders{padding:76px 0}
  .founders-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
  .video{padding-top:56px}
  /* .timeline{padding-bottom:88px} */
  .membre{padding:88px 0}
  .membre-form{padding:34px 32px 28px}
  .membre-step{grid-template-columns:1fr;gap:20px}
  .membre-step-head{width:auto;margin-inline:0}
  /* .nodes-grid{gap:18px} */
  /* .impact-grid{gap:48px} */
  .donor-pitch h2{font-size:40px}
  .donor-card-head{padding:22px 24px}
  /* .panel{padding:28px;gap:24px;grid-template-columns:1fr 220px} */
  /* .panel-vis{min-height:300px} */
  /* .profiles-layout{grid-template-columns:230px 1fr;gap:20px} */
  /* .laptop-wrap{max-width:380px} */
  /* .laptop-coin{width:50px;height:50px;font-size:18px} */
  /* .coin-1{top:-20px;left:-14px} */
  /* .coin-2{bottom:-22px;right:-16px;font-size:22px} */
  /* .laptop-tag{font-size:10px;padding:6px 10px} */
  /* .laptop-tag-1{right:-24px;top:14px} */
  /* .laptop-tag-2{left:-26px;bottom:24px} */
  .hero-scene{height:500px}
  .hero-phone{width:220px;height:460px;padding:18px 14px}
  .phone-card{padding:11px;gap:8px}
  .phone-card-ic{width:30px;height:30px;border-radius:8px}
  .phone-card-ic svg{width:15px;height:15px}
  .phone-card-title{font-size:10.5px}
  .phone-card-sub{font-size:9.5px}
  .phone-card-amount{font-size:13px}
  .phone-cta{padding:11px;font-size:11px}
  .hero-blob{width:380px;height:380px}
  .char-body{width:42px;height:42px;font-size:12px}
  .char-label{font-size:8px;padding:2px 6px}
  .char-1{left:0}
  .char-3{right:0}
  .char-2{left:-6px;bottom:60px}
  .char-4{right:-6px;bottom:36px}
  .fp-1{left:-18px;top:90px;font-size:10px;padding:8px 11px}
  .fp-2{right:-18px;top:200px;font-size:10px;padding:8px 11px}
  .floating-pill div div:last-child{font-size:9px}
  .hero-stats{gap:26px}
  .stat-num{font-size:26px}
  .nav-links{gap:20px;font-size:13px}
  .brand img{height:38px;width:38px}
  .brand-name{font-size:16px}
  .brand-name span{display:none}
  .btn{padding:11px 18px;font-size:13px}
}

/* Tablet */
@media (max-width:880px){
  .nav-links{display:none}
  .hero-grid{grid-template-columns:1fr;gap:48px}
  .hero-scene{margin-top:8px}
  .hero-stats{gap:28px}
  /* .nodes-grid{grid-template-columns:1fr;gap:24px} */
  /* .node-center{aspect-ratio:auto;height:240px;padding:24px} */
  /* .impact-grid{grid-template-columns:1fr;gap:40px} */
  /* .features-grid{grid-template-columns:repeat(2,1fr);gap:1px} */
  /* .profiles-layout{grid-template-columns:1fr;gap:18px} */
  /* .tabs{flex-direction:row;flex-wrap:wrap;overflow-x:auto;padding:10px} */
  /* .tab{flex:1 1 auto;min-width:130px;padding:12px 14px;font-size:13px} */
  /* .tab-num{display:none} */
  /* .panel{grid-template-columns:1fr;padding:24px} */
  /* .panel-vis{min-height:200px} */
  /* .tiers-amounts{grid-template-columns:repeat(3,1fr)} */
  /* .tiers-foot{flex-direction:column;align-items:stretch} */
  .video-chapters{grid-template-columns:1fr;gap:16px}
  /* En colonne unique, le compteur repasse à gauche sous le titre. */
  /* En colonne unique, la légende repasse sous le titre, alignée à gauche. */
  .founders-header{grid-template-columns:1fr;gap:26px;align-items:start}
  .founders-legend{justify-content:flex-start;gap:10px 18px}
  .founders-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .membre-form{padding:30px 26px 24px}
  .footer-top{grid-template-columns:1fr;gap:40px}
}

/* Mobile */
@media (max-width:640px){
  .container{padding:0 20px}
  .nav-inner{padding:0 20px;height:64px}
  .hero{padding:40px 0 56px}
  .hero h1{font-size:36px}
  .nodes-header h2,.impact h2,.profiles-header h2,.features-header h2,.video-head h2,
  .timeline-header h2,.membre-header h2,.founders-header h2{font-size:30px}
  .donor-pitch h2{font-size:32px}
  .donor-lead{font-size:16px}
  .tiers{padding:64px 0}
  /* .tiers-controls{flex-direction:column;gap:12px} */
  /* .tiers-modes{width:100%} */
  /* .tmode{flex:1} */
  /* .tiers-amounts{grid-template-columns:repeat(2,1fr);gap:12px} */
  /* .tamount{padding:22px 18px 18px} */
  /* .tamount-val{font-size:22px} */
  /* .tiers-foot{padding:18px 20px} */
  /* .tiers-foot .btn{width:100%;justify-content:center} */
  .donor-card{border-radius:20px}
  .donor-card-head{padding:20px}
  .donor-form{padding:22px 20px 20px}
  .donor-recap{padding:12px 14px;font-size:13.5px}
  .tswitch{padding:11px 10px;font-size:13px;gap:7px}
  .donor-grid{grid-template-columns:1fr}
  .donor-actions{width:100%}
  .donor-actions .btn{flex:1;justify-content:center}
  .nodes,.impact,.features,.profiles{padding:64px 0}
  .founders{padding:56px 0}
  .founders-header{margin-bottom:32px;padding-bottom:22px}
  .founders-eyebrow{margin-bottom:14px}
  .founders-grid{grid-template-columns:1fr;gap:14px}
  .founder{padding:20px 18px 16px;border-radius:16px}
  .founder-mono{width:44px;height:44px;border-radius:13px;font-size:13px;margin-bottom:16px}
  .founder-ord{font-size:28px;top:16px;right:16px}
  .founder-name{font-size:15.5px}
  .founder-field{padding-top:14px}
  /* .timeline{padding-bottom:64px} */
  .membre{padding:64px 0}
  .membre-card{border-radius:20px}
  .membre-form{padding:26px 20px 22px}
  .membre-step + .membre-step{margin-top:26px;padding-top:26px}
  .membre-step-head h3{font-size:17px}
  .donor-mention{font-size:12.5px;padding:12px 14px}
  .video{padding:40px 0 64px}
  .video-stage::before{transform:translate(8px,8px)}
  .video-frame{border-radius:16px}
  .video-bar{padding:11px 14px}
  .video-chapters{margin-top:32px;padding-top:24px}
  /* .timeline-placeholder{min-height:180px} */
  /* .features-grid{grid-template-columns:1fr} */
  /* Footer : un seul rythme vertical de 20px entre tous les textes, du bloc
     marque au bas de page, pour éviter les écarts inégaux en colonne unique. */
  .footer-top{gap:20px;padding-bottom:20px}
  .f-contact{min-width:0}
  .f-brand{margin-bottom:20px}
  .f-pills{margin-top:20px}
  .f-contact h4{margin-bottom:20px}
  .f-contact-list{gap:20px}
  .f-contact-org{margin-top:20px}
  .footer-bot{flex-direction:column;align-items:flex-start;gap:20px;padding-top:20px}
  .hero-stats{flex-wrap:wrap;gap:22px}
  .hero-scene{height:460px}
  .hero-phone{width:220px;height:460px}
  /* .laptop-body{padding:12px} */
  /* .laptop-screen{padding:18px} */
}
