/* ==========================================================================
   HUNKO INVEST — styles.css
   v3 Hunter solo · DA inspirée du design final_92 (Cormorant + Cinzel + DM Sans)
   Mobile-first · Dark luxury
   ========================================================================== */

/* -------------------- 1. Tokens -------------------- */
:root {
  /* Palette finance luxe — alignée final_92 */
  --noir:        #080808;
  --noir2:       #0F0F13;
  --gris:        #1A1A22;
  --gris2:       #26262F;
  --gris3:       #32323E;

  --or:          #C9A84C;
  --or2:         #E8C97A;
  --or3:         #F5DFA0;
  --or-soft:     rgba(201, 168, 76, 0.08);
  --or-soft-2:   rgba(201, 168, 76, 0.15);
  --or-border:   rgba(201, 168, 76, 0.25);
  --or-line:     rgba(201, 168, 76, 0.10);
  --or-grid:     rgba(201, 168, 76, 0.025);

  --blanc:       #F5F0E8;
  --texte:       #A0A0B0;
  --texte-mid:   #7C7C8A;

  /* Niveau Avancé — or lumineux premium */
  --or-premium:        #E8C97A;
  --or-premium-bg:     rgba(232, 201, 122, 0.08);
  --or-premium-border: rgba(232, 201, 122, 0.30);

  /* Domaines — 4 couleurs déclarées (Immo/E-Com réservées) */
  --c-bourse:    #4C7BC9;
  --c-crypto:    #F7931A;
  --c-immo:      #4CC97B;
  --c-ecom:      #C94C7B;

  /* Variantes hex brief — gardées en variables pour compat ultérieure */
  --c-bourse-brief: #1E3A5F;
  --c-immo-brief:   #2D5A3D;
  --c-ecom-brief:   #4A1D6B;

  /* Typo */
  --ff-display:  "Cormorant Garamond", Georgia, serif;
  --ff-caps:     "Cinzel", "Cormorant Garamond", serif;
  --ff-sans:     "DM Sans", -apple-system, sans-serif;

  --container:   1200px;
  --pad-x:       24px;

  --shadow-card:        0 4px 24px rgba(0,0,0,0.40);
  --shadow-card-strong: 0 12px 48px rgba(0,0,0,0.55);

  --r-card:      10px;
  --r-2:         6px;
  --r-pill:      999px;

  --t:           0.3s ease;
}

/* -------------------- 2. Reset -------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--noir);
  color: var(--blanc);
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }
p { margin: 0; }

h1, h2, h3, h4 { margin: 0; font-family: var(--ff-display); font-weight: 700; line-height: 1.1; }

.hunter-portrait-img { width: 100%; height: 100%; object-fit: cover; display: block; }

::selection { background: var(--or); color: var(--noir); }
:focus-visible { outline: 2px solid var(--or); outline-offset: 3px; }

/* -------------------- 3. Header / Nav -------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 16px 48px;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--or-line);
}
@media (max-width: 900px) {
  .site-header { padding: 14px 20px; }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (min-width: 1024px) {
  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
  }
  .nav-inner > .logo { justify-self: start; }
  .nav-inner > .nav-desktop { justify-self: center; }
  .nav-inner > .nav-membres { justify-self: end; }
}

.logo {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blanc);
  text-transform: uppercase;
  white-space: nowrap;
}
.logo-dot    { color: var(--or); margin: 0 1px; letter-spacing: 0; }
.logo-invest { color: var(--or); }

.nav-desktop {
  display: none;
  align-items: center;
  gap: 36px;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-list a {
  font-family: var(--ff-caps);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--texte);
  white-space: nowrap;
  transition: color var(--t);
}
.nav-list a:hover { color: var(--or); }

/* Premium "Accès membres" pill (sibling of .nav-desktop) */
.nav-membres {
  display: none;
}
@media (min-width: 1024px) {
  .nav-membres {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 18px 9px 16px;
    border: 1px solid var(--or-line);
    border-radius: 999px;
    color: var(--or);
    font-family: var(--ff-caps);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    white-space: nowrap;
    background:
      linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    box-shadow:
      inset 0 1px 0 rgba(255, 235, 180, 0.08),
      0 1px 0 rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: color var(--t), border-color var(--t), background var(--t), box-shadow var(--t), transform var(--t);
  }
  .nav-membres::before {
    content: "";
    width: 5px; height: 5px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--or2), var(--or));
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
    flex: 0 0 auto;
  }
  .nav-membres::after {
    content: "";
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(
      100deg,
      transparent 0%,
      rgba(255, 235, 180, 0.18) 50%,
      transparent 100%
    );
    transition: left 0.7s ease;
    pointer-events: none;
  }
  .nav-membres:hover {
    color: var(--noir);
    border-color: var(--or);
    background: linear-gradient(180deg, var(--or2), var(--or));
    box-shadow:
      inset 0 1px 0 rgba(255, 245, 210, 0.5),
      0 6px 18px -8px rgba(212, 175, 55, 0.55);
    transform: translateY(-1px);
  }
  .nav-membres:hover::before {
    background: var(--noir);
    box-shadow: none;
  }
  .nav-membres:hover::after { left: 120%; }
}

.nav-cta {
  font-family: var(--ff-caps);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--or);
  color: var(--noir);
  padding: 11px 22px;
  border-radius: 4px;
  transition: background var(--t), transform var(--t);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--or2); transform: translateY(-1px); }

/* Burger */
.nav-burger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-burger span {
  width: 22px;
  height: 1px;
  background: var(--or);
}
@media (min-width: 1024px) { .nav-burger { display: none; } }

/* Drawer */
.nav-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(360px, 86vw);
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid var(--or-line);
  padding: 80px 28px 32px;
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  font-size: 26px;
  color: var(--or);
  font-weight: 300;
}
.nav-drawer-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}
.nav-drawer-list a {
  display: block;
  padding: 18px 4px;
  font-family: var(--ff-caps);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blanc);
  border-bottom: 1px solid var(--or-line);
}
.nav-drawer-list a:hover { color: var(--or); }
.nav-drawer-cta {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--ff-caps);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--or);
  color: var(--noir);
  padding: 16px;
  border-radius: 4px;
  margin-top: 16px;
}

/* -------------------- 4. Hero -------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 40px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 900px) {
  .hero { padding: 130px 20px 70px; min-height: auto; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(201,168,76,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--or-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--or-grid) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 980px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Eyebrow */
.hero-eyebrow {
  font-family: var(--ff-caps);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

/* Bloc nom monumental */
.hero-logo-full {
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.4s;
  margin-bottom: 8px;
}
.hero-top-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 10px;
}
.hero-rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
}
.ex-nihilo {
  font-family: var(--ff-caps);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.5em;
  font-style: italic;
  color: var(--or);
  text-transform: uppercase;
}

.hero-name {
  font-family: var(--ff-display);
  font-size: clamp(56px, 11vw, 132px);
  font-weight: 700;
  color: var(--blanc);
  letter-spacing: 0.06em;
  line-height: 0.78;
  text-transform: uppercase;
  margin: 0;
}
.hero-name span {
  background: linear-gradient(135deg, var(--or) 0%, var(--or3) 50%, var(--or) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 700;
  display: block;
  margin-top: -0.12em;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}
.lh {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or));
}
.lh.r { background: linear-gradient(90deg, var(--or), transparent); }
.hero-diamond {
  width: 6px; height: 6px;
  background: var(--or);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.hero-invest-txt {
  font-family: var(--ff-caps);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5em;
  color: var(--or);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Tagline */
.hero-tagline {
  font-family: var(--ff-display);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: var(--texte);
  margin-top: 36px;
  max-width: 720px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.7s;
}

/* Pills */
.hero-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.85s;
}
.hero-pill {
  font-family: var(--ff-caps);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  border: 1px solid;
  white-space: nowrap;
}
.hero-pill.bourse { color: var(--c-bourse); border-color: rgba(76,123,201,0.30);  background: rgba(76,123,201,0.07); }
.hero-pill.crypto { color: var(--c-crypto); border-color: rgba(247,147,26,0.35);  background: rgba(247,147,26,0.07); }
.hero-pill.expat  { color: var(--or);       border-color: var(--or-border);       background: var(--or-soft); }
.hero-pill.psy    { color: #76C99A;         border-color: rgba(76,201,123,0.30);  background: rgba(76,201,123,0.07); }
.hero-pill.ecom   { color: #C97B97;         border-color: rgba(201,76,123,0.30);  background: rgba(201,76,123,0.07); }

/* Actions */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
}
.btn-gold {
  font-family: var(--ff-caps);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--or);
  color: var(--noir);
  padding: 16px 34px;
  border-radius: 4px;
  transition: background var(--t), transform 0.2s;
  display: inline-flex;
  align-items: center;
}
.btn-gold:hover { background: var(--or2); transform: translateY(-2px); }

.btn-outline {
  font-family: var(--ff-caps);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: transparent;
  color: var(--or);
  padding: 15px 33px;
  border-radius: 4px;
  border: 1px solid var(--or-border);
  transition: border-color var(--t), transform 0.2s, background var(--t);
  display: inline-flex;
  align-items: center;
}
.btn-outline:hover { border-color: var(--or); background: var(--or-soft); transform: translateY(-2px); }

/* Scroll indicator — flux statique (mobile-safe) */
.hero-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 64px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.3s;
}
.scroll-label {
  font-family: var(--ff-caps);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--or);
  opacity: 0.6;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--or), transparent);
  animation: sPulse 2s ease infinite;
}

@keyframes sPulse {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* -------------------- 5. Stats band -------------------- */
.stats-band {
  background: var(--gris);
  border-top: 1px solid var(--or-line);
  border-bottom: 1px solid var(--or-line);
  padding: 44px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 28px 0; padding: 36px 24px; }
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.stat-item:last-child { border-right: none; }
@media (max-width: 900px) {
  .stat-item:nth-child(2n) { border-right: none; }
}
.stat-number {
  font-family: var(--ff-display);
  font-size: 44px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--or), var(--or3));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-label {
  font-family: var(--ff-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--texte);
  margin-top: 8px;
}
.stat-source {
  font-family: var(--ff-caps);
  font-size: 8px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--texte-mid);
  margin-top: 4px;
  opacity: 0.7;
}

/* -------------------- 6. Section helpers (mutualisés) -------------------- */
.section-head {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.section-eyebrow {
  font-family: var(--ff-caps);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--or);
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  color: var(--blanc);
  letter-spacing: -0.005em;
  line-height: 1.05;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--or) 0%, var(--or3) 50%, var(--or) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 240px;
  margin-top: 4px;
}

/* -------------------- 7. Hunter -------------------- */
.section-hunter {
  position: relative;
  padding: 120px 0;
  background: var(--noir2);
  border-top: 1px solid var(--or-line);
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 900px) {
  .section-hunter { padding: 80px 0; }
}

.hunter-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 50% 50% at 25% 30%, rgba(201,168,76,0.06), transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(201,168,76,0.04), transparent 60%);
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--pad-x); }

.hunter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 900px) {
  .hunter-grid {
    grid-template-columns: minmax(320px, 420px) 1fr;
    gap: 72px;
  }
}

/* Photo column */
.hunter-photo-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hunter-photo {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
}

.photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #161620 0%, #0E0E14 100%);
  border: 1px solid var(--or-border);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-card-strong);
}
.photo-frame > .hunter-portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(201,168,76,0.06) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--or);
  opacity: 0.7;
}
.photo-tag {
  font-family: var(--ff-caps);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--or);
  margin-top: 6px;
}
.photo-note {
  font-family: var(--ff-sans);
  font-size: 10.5px;
  font-style: italic;
  color: var(--texte-mid);
  letter-spacing: 0.08em;
}
.photo-corner {
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--or);
  border-style: solid;
  border-width: 0;
}
.photo-corner-tl { top: 8px;    left: 8px;    border-top-width: 1px; border-left-width: 1px; }
.photo-corner-tr { top: 8px;    right: 8px;   border-top-width: 1px; border-right-width: 1px; }
.photo-corner-bl { bottom: 8px; left: 8px;    border-bottom-width: 1px; border-left-width: 1px; }
.photo-corner-br { bottom: 8px; right: 8px;   border-bottom-width: 1px; border-right-width: 1px; }

.photo-caption {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cap-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or-border), transparent);
}
.cap-text {
  font-family: var(--ff-caps);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.36em;
  color: var(--or);
  white-space: nowrap;
}

.hunter-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--or-line);
  border-radius: var(--r-2);
  overflow: hidden;
  background: var(--gris);
}
.hs-item {
  padding: 22px 10px 20px;
  text-align: center;
  border-right: 1px solid rgba(201,168,76,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.hs-item:last-child { border-right: none; }
.hs-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--or-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--or);
}
.hs-num {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  background: linear-gradient(135deg, var(--or), var(--or3));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hs-label {
  font-family: var(--ff-caps);
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--texte);
}
  border-right: 1px solid var(--or-line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hs-item:last-child { border-right: none; }
.hs-icon {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--or-border);
  border-radius: 50%;
  background: var(--or-soft);
  color: var(--or);
}
.hs-num {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  background: linear-gradient(135deg, var(--or), var(--or3));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hs-label {
  font-family: var(--ff-caps);
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--texte);
}

/* Text column */
.hunter-text-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hunter-name-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--or-line);
}
.hunter-name {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  font-style: italic;
  color: var(--blanc);
  letter-spacing: -0.005em;
  line-height: 1;
}
.hunter-role {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-caps);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--or);
}
.hunter-role .hero-diamond { width: 4px; height: 4px; }

.hunter-bio {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bio-para {
  position: relative;
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--texte);
  padding: 26px 0 26px 64px;
  border-bottom: 1px solid var(--or-line);
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.bio-para:last-child { border-bottom: 0; }
.bio-para strong {
  color: var(--blanc);
  font-weight: 500;
}
.bio-punch {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.12em;
  line-height: 1.4;
  letter-spacing: 0.005em;
  color: var(--or);
  background: linear-gradient(180deg, var(--or2) 0%, var(--or) 55%, #b48a2a 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 22px rgba(212, 175, 55, 0.18);
  position: relative;
  padding-left: 14px;
  border-left: 1px solid var(--or-line);
}
.bio-marker {
  position: absolute;
  left: 0; top: 28px;
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  background: linear-gradient(135deg, var(--or), var(--or3));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.bio-label {
  display: block;
  font-family: var(--ff-caps);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--or);
  margin-bottom: 8px;
}

.hunter-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.hunter-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-caps);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--or-border);
  background: var(--or-soft);
  color: var(--or);
  border-radius: var(--r-pill);
}
.hb-diamond {
  width: 5px; height: 5px;
  background: var(--or);
  transform: rotate(45deg);
}

.hunter-yt-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding-bottom: 6px;
  font-family: var(--ff-caps);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--or);
  width: fit-content;
  position: relative;
}
.yt-arrow {
  display: inline-block;
  transition: transform var(--t);
  font-family: var(--ff-display);
  font-size: 18px;
  line-height: 1;
}
.yt-rule {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--or);
  transition: width var(--t);
}
.hunter-yt-link:hover { color: var(--or2); }
.hunter-yt-link:hover .yt-arrow { transform: translateX(6px); }
.hunter-yt-link:hover .yt-rule { width: 64px; }

/* -------------------- 8. Formations — 2×2 grid -------------------- */
.section-formations {
  position: relative;
  padding: 120px 0;
  background: var(--noir);
  border-top: 1px solid var(--or-line);
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 900px) { .section-formations { padding: 80px 0; } }

.formations-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 50% 40% at 30% 20%, rgba(76,123,201,0.045), transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 80%, rgba(247,147,26,0.04),  transparent 60%);
}

.section-subtitle {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 400;
  color: var(--texte);
  margin-top: 10px;
  max-width: 560px;
  text-align: center;
}

.formations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 64px;
}
@media (min-width: 900px) {
  .formations-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center; /* N1 ↔ N2 face à face */
  }
}

/* ── Card chrome ── */
.formation-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--gris);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 32px 30px 28px;
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.formation-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: currentColor;
}
.formation-card:hover { transform: translateY(-4px); }

/* Domaine colors driven by `color` (used by ::before only) */
.formation-card.f-bourse { color: var(--c-bourse); }
.formation-card.f-crypto { color: var(--c-crypto); }

.formation-card.f-bourse:hover { border-color: rgba(76,123,201,0.40); }
.formation-card.f-crypto:hover { border-color: rgba(247,147,26,0.40); }

/* ─── N2 = full gold ─── */
.formation-card.f-avance {
  padding: 38px 32px 32px;
  background:
    linear-gradient(180deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0.02) 100%),
    linear-gradient(180deg, #1c1c25 0%, #15151c 100%);
  border-color: var(--or-border);
  box-shadow: 0 8px 36px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.10) inset;
}
.formation-card.f-avance::before {
  height: 3px;
  background: linear-gradient(90deg, var(--or) 0%, var(--or3) 50%, var(--or) 100%);
}
.formation-card.f-avance:hover { border-color: var(--or); }
.formation-card.f-avance .fc-domain { color: var(--or); opacity: 1; }
.formation-card.f-avance .fc-icon {
  color: var(--or);
  background: var(--or-soft);
  border-color: var(--or-border);
}
.formation-card.f-avance .fc-dash { color: var(--or2); }
.formation-card.f-avance .fc-arc { color: var(--or3); }

/* ─── Flèches progression N1 → N2 ─── */
.formations-grid { position: relative; }
.grid-arrow {
  display: none;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--or);
  opacity: 0.55;
  z-index: 3;
  pointer-events: none;
  background: var(--noir);
  padding: 0 14px;
}
.grid-arrow svg { display: block; filter: drop-shadow(0 0 6px rgba(201,168,76,0.25)); }
.grid-arrow--row1 { top: 25%; }
.grid-arrow--row2 { top: 75%; }
@media (min-width: 900px) {
  .grid-arrow { display: inline-flex; }
}

/* old rules below kept for legacy override — neutralised */
.ga-label, .grid-arrow .ga-label { display: none !important; }
.grid-arrow-OLD {
  display: none;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--or);
  pointer-events: none;
}
@media (min-width: 900px) {
  .grid-arrow { display: inline-flex; }
}
.grid-arrow--row1 { top: 25%; }
.grid-arrow--row2 { top: 75%; }
.ga-label {
  font-family: var(--ff-caps);
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--or);
  text-align: center;
  line-height: 1.5;
  background: var(--noir);
  padding: 8px 10px;
  border: 1px solid var(--or-border);
  border-radius: 4px;
  box-shadow: 0 0 0 4px var(--noir);
}
.grid-arrow svg { display: block; }

/* ── Head ── */
.fc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.fc-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.fc-badge {
  font-family: var(--ff-caps);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
  border: 1px solid;
  white-space: nowrap;
}
.fc-badge--essentiel {
  color: var(--or);
  background: rgba(212,175,55,0.10);
  border-color: rgba(212,175,55,0.25);
}
.fc-badge--avance {
  color: var(--or2);
  background: rgba(212,175,55,0.15);
  border-color: rgba(232,201,122,0.40);
  letter-spacing: 0.26em;
}
.fc-domain {
  font-family: var(--ff-caps);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--texte-mid);
  opacity: 0.7;
}

.fc-icon {
  width: 44px; height: 44px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.fc-icon--bourse {
  color: var(--c-bourse);
  background: rgba(76,123,201,0.10);
  border: 1px solid rgba(76,123,201,0.25);
}
.fc-icon--crypto {
  color: var(--c-crypto);
  background: rgba(247,147,26,0.10);
  border: 1px solid rgba(247,147,26,0.25);
}

/* ── Title + arc ── */
.fc-title {
  font-family: var(--ff-display);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--blanc);
  letter-spacing: -0.005em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.fc-dash {
  display: inline-block;
  margin: 0 0.18em;
  color: var(--or);
  font-weight: 400;
}
.fc-arc {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 15.5px;
  font-weight: 400;
  color: var(--texte);
  line-height: 1.5;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.fc-arc em { font-style: italic; }

/* ── Modules ── */
.fc-modules {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fc-modules li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--texte);
}
.fc-modules li strong {
  color: var(--blanc);
  font-weight: 500;
  font-family: var(--ff-sans);
}
.fc-bullet {
  font-size: 9px;
  line-height: 1;
  text-align: center;
  display: inline-block;
}
.f-bourse .fc-bullet { color: var(--c-bourse); }
.f-crypto .fc-bullet { color: var(--c-crypto); }
.f-avance .fc-bullet { color: var(--or); }

/* ── Foot ── */
.fc-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}
.fc-foot--ghost { border-top-color: transparent; }
.fc-bonus-label {
  font-family: var(--ff-caps);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--or);
  padding: 5px 10px;
  border: 1px solid var(--or-border);
  border-radius: 3px;
  background: var(--or-soft);
}
.fc-bonus-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 14px;
  color: var(--blanc);
}
.fc-foot--mirror { gap: 10px; }
.fc-mirror-arrow {
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--or);
  flex-shrink: 0;
}
.fc-mirror-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 14.5px;
  color: var(--texte);
  line-height: 1.4;
}
.fc-mirror-text strong {
  color: var(--blanc);
  font-weight: 600;
}

/* ── Footnote ── */
.formations-footnote {
  margin-top: 48px;
  text-align: center;
  font-size: 13px;
  color: var(--texte-mid);
}
.link-or {
  color: var(--or);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--t);
  margin-left: 8px;
}
.link-or:hover { color: var(--or2); text-decoration: underline; text-underline-offset: 4px; }

/* -------------------- 9. Douleur -------------------- */
.section-douleur {
  position: relative;
  padding: 120px 0 0;
  background: var(--noir2);
  border-top: 1px solid var(--or-line);
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 900px) { .section-douleur { padding: 80px 0 0; } }
.douleur-bg {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,168,76,0.04), transparent 70%);
}
.douleur-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}
@media (min-width: 700px) { .douleur-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }

.pain-card {
  position: relative;
  background: var(--gris);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 32px 30px 28px;
  transition: border-color var(--t), transform var(--t);
}
.pain-card:hover { border-color: var(--or-border); transform: translateY(-3px); }
.pain-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 38px;
  line-height: 1;
  background: linear-gradient(135deg, var(--or), var(--or3));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.5;
}
.pain-title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--blanc);
  letter-spacing: -0.005em;
  line-height: 1.2;
  padding-right: 60px;
  margin-bottom: 14px;
}
.pain-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--or), var(--or3));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pain-text {
  font-family: var(--ff-sans);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--texte);
}

.douleur-bridge {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 64px;
  text-align: center;
}
.bridge-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or-border), transparent);
}
.bridge-text {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  color: var(--blanc);
  line-height: 1.4;
  white-space: nowrap;
}
.bridge-text em {
  font-style: italic;
  color: var(--or2);
}
@media (max-width: 600px) {
  .bridge-text { white-space: normal; font-size: 18px; }
}

/* ─── Coût de l'inaction ─── */
.douleur-cost {
  margin-top: 80px;
  padding: 48px 40px;
  background:
    linear-gradient(180deg, rgba(201,168,76,0.04) 0%, transparent 100%),
    var(--gris);
  border: 1px solid var(--or-border);
  border-radius: 10px;
  position: relative;
}
@media (max-width: 700px) { .douleur-cost { padding: 32px 22px; } }

.cost-head { text-align: center; margin-bottom: 36px; }
.cost-eyebrow {
  font-family: var(--ff-caps);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 12px;
}
.cost-title {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--blanc);
  letter-spacing: -0.005em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.cost-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--or), var(--or3));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cost-sub {
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: var(--texte-mid);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}
.cost-sub strong { color: var(--blanc); font-weight: 500; font-style: normal; }

.cost-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
  justify-items: stretch;
}
@media (min-width: 900px) {
  .cost-grid--3 { grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
}
@media (min-width: 700px) and (max-width: 899px) {
  .cost-grid--3 { grid-template-columns: 1fr 1fr; }
}

.cost-card {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: var(--noir2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 26px 22px 22px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cost-card--worst {
  background: linear-gradient(180deg, rgba(180,80,80,0.06) 0%, transparent 100%), var(--noir2);
  border-color: rgba(180,80,80,0.18);
}
.cost-card--worst::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(180,80,80,0.55), transparent);
}
.cost-card--mid {
  border-color: rgba(255,255,255,0.10);
}
.cost-card--best {
  border-color: rgba(201,168,76,0.32) !important;
  background:
    linear-gradient(180deg, rgba(201,168,76,0.08) 0%, transparent 100%),
    var(--noir2) !important;
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(201,168,76,0.10) inset;
}
.cost-card--best::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
}
@media (max-width: 899px) {
  .cost-card--best { transform: none; }
}

.cost-label {
  font-family: var(--ff-caps);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--texte-mid);
}
.cost-card--best .cost-label { color: var(--or); }

.cost-year {
  font-family: var(--ff-display);
  font-size: 18px;
  font-style: italic;
  color: var(--texte);
  line-height: 1.1;
  margin-bottom: 8px;
}
.cost-year sup { font-size: 0.6em; vertical-align: super; }

.cost-card--best .cost-year {
  background: linear-gradient(135deg, var(--or), var(--or3));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cost-amount {
  font-family: var(--ff-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--blanc);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.cost-card--worst .cost-amount { color: #C9606D; }
.cost-card--best .cost-amount  { color: var(--or2); }

.cost-note {
  font-family: var(--ff-sans);
  font-size: 12px;
  font-style: italic;
  color: var(--texte-mid);
  margin-bottom: 10px;
}
.cost-note strong { font-weight: 500; font-style: normal; }
.cost-card--worst .cost-note strong { color: #C9606D; }
.cost-card--mid   .cost-note strong { color: var(--texte); }
.cost-card--best  .cost-note strong { color: var(--or); }

.cost-tag {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 13px;
  color: var(--texte);
}
.cost-card--best .cost-tag { color: var(--blanc); }

.cost-callout {
  margin-top: 36px;
  padding: 24px 28px;
  border: 1px solid var(--or-border);
  border-radius: 6px;
  background: rgba(201,168,76,0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 700px) {
  .cost-callout { flex-direction: row; align-items: flex-start; gap: 24px; }
}
.callout-tag {
  font-family: var(--ff-caps);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--noir);
  background: var(--or);
  padding: 8px 14px;
  border-radius: 3px;
  white-space: nowrap;
  align-self: flex-start;
}
.callout-text {
  font-family: var(--ff-sans);
  font-size: 14.5px;
  font-weight: 300;
  color: var(--texte);
  line-height: 1.7;
  flex: 1;
}
.callout-text strong { color: var(--blanc); font-weight: 500; }
.callout-text em {
  font-style: italic;
  color: var(--or2);
  font-weight: 400;
}

.cost-disclaimer {
  margin-top: 16px;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-style: italic;
  color: var(--texte-mid);
  text-align: center;
  opacity: 0.75;
  line-height: 1.5;
}
.cost-disclaimer sup { font-size: 0.9em; }

.cost-foot {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  text-align: center;
}
.cost-foot-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or-border), transparent);
}
.cost-foot-text {
  font-family: var(--ff-display);
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 400;
  color: var(--texte);
  line-height: 1.5;
}
.cost-foot-text em {
  font-style: italic;
  color: var(--or2);
}

/* ─── Manifeste éditorial (remplace l'ancien pivot) ─── */
.manifest {
  margin-top: 80px;
  padding: 56px 40px;
  text-align: center;
  border-top: 1px solid var(--or-line);
  border-bottom: 1px solid var(--or-line);
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.05), transparent 70%),
    var(--noir2);
}
@media (max-width: 700px) { .manifest { padding: 44px 20px; } }

.manifest-head { margin-bottom: 44px; }
.manifest-eyebrow {
  font-family: var(--ff-caps);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 16px;
}
.manifest-title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--blanc);
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.manifest-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--or), var(--or3));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.manifest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
  border-top: 1px solid var(--or-line);
  border-left: 1px solid var(--or-line);
}
@media (min-width: 700px) { .manifest-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .manifest-grid { grid-template-columns: repeat(4, 1fr); } }

.manifest-pillar {
  padding: 32px 24px;
  border-right: 1px solid var(--or-line);
  border-bottom: 1px solid var(--or-line);
  text-align: left;
  position: relative;
  transition: background var(--t);
}
.manifest-pillar:hover { background: rgba(201,168,76,0.025); }

.pillar-num {
  display: inline-block;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  background: linear-gradient(135deg, var(--or), var(--or3));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
.pillar-title {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--blanc);
  line-height: 1.25;
  margin-bottom: 10px;
}
.pillar-text {
  font-family: var(--ff-sans);
  font-size: 13.5px;
  font-weight: 300;
  color: var(--texte);
  line-height: 1.65;
}

.manifest-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
  font-family: var(--ff-caps);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--or);
  transition: color var(--t);
}
.manifest-cta:hover { color: var(--or2); }
.mcta-rule {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--or));
  transition: width var(--t);
}
.mcta-rule:last-child { background: linear-gradient(90deg, var(--or), transparent); }
.manifest-cta:hover .mcta-rule { width: 64px; }
.mcta-arrow {
  font-family: var(--ff-display);
  font-size: 16px;
  line-height: 1;
  animation: sPulse 2.2s ease infinite;
}

/* ─── Old pivot (neutralized, kept for safety) ─── */
.douleur-pivot {
  display: none;
}
.pivot-eyebrow {
  font-family: var(--ff-caps);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 28px;
}
.pivot-list {
  list-style: none;
  margin: 0 auto 40px;
  padding: 0;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.pivot-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 14px 18px;
  background: rgba(255,255,255,0.015);
  border-left: 1px solid var(--or-border);
  font-family: var(--ff-sans);
  font-size: 14.5px;
  line-height: 1.55;
}
.pivot-cross {
  color: var(--texte-mid);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  text-align: center;
}
.pivot-strike {
  color: var(--texte-mid);
  text-decoration: line-through;
  text-decoration-color: rgba(160,160,176,0.5);
  margin-right: 8px;
}
.pivot-yes {
  display: inline-block;
  color: var(--blanc);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 16px;
}
@media (max-width: 600px) {
  .pivot-list li { grid-template-columns: 1fr; }
  .pivot-strike, .pivot-yes { display: block; }
  .pivot-yes { margin-top: 4px; }
}

.pivot-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-caps);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--noir);
  background: var(--or);
  padding: 16px 30px;
  border-radius: 4px;
  transition: background var(--t), transform var(--t);
}
.pivot-cta:hover { background: var(--or2); transform: translateY(-2px); }
.pcta-arrow {
  font-family: var(--ff-display);
  font-size: 18px;
  line-height: 1;
}

/* -------------------- 99. Placeholders -------------------- */
.placeholder-section {
  padding: 80px 0;
  border-top: 1px dashed var(--gris2);
  text-align: center;
  color: var(--texte-mid);
  font-family: var(--ff-caps);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

/* -------------------- 10. Bientôt -------------------- */
.section-bientot {
  position: relative;
  padding: 120px 0;
  background: var(--noir);
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 900px) { .section-bientot { padding: 80px 0; } }
.bientot-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 40% 60% at 20% 30%, rgba(45,90,61,0.06), transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 70%, rgba(74,29,107,0.06), transparent 70%);
}

.bientot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 56px;
}
@media (min-width: 900px) { .bientot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }

.coach-coming {
  position: relative;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 36px 32px 32px;
  opacity: 0.85;
  transition: opacity var(--t), transform var(--t), border-color var(--t);
  filter: saturate(0.85);
}
.coach-coming:hover {
  opacity: 1;
  transform: translateY(-3px);
  border-color: var(--or-border);
  filter: saturate(1);
}

.cc-frame { position: absolute; inset: 0; pointer-events: none; }
.cc-corner {
  position: absolute; width: 14px; height: 14px;
  border: 0 solid var(--or);
  opacity: 0.4;
}
.cc-tl { top: 8px; left: 8px; border-top-width: 1px; border-left-width: 1px; }
.cc-tr { top: 8px; right: 8px; border-top-width: 1px; border-right-width: 1px; }
.cc-bl { bottom: 8px; left: 8px; border-bottom-width: 1px; border-left-width: 1px; }
.cc-br { bottom: 8px; right: 8px; border-bottom-width: 1px; border-right-width: 1px; }

.cc-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.cc-badge {
  font-family: var(--ff-caps);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--texte-mid);
  background: #2A2A2A;
  padding: 6px 12px;
  border-radius: 99px;
}
.cc-domain-tag {
  font-family: var(--ff-caps);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--or);
  opacity: 0.7;
}

.cc-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--or-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.c-immo .cc-icon { color: #5A8A6D; background: rgba(45,90,61,0.10); }
.c-ecom .cc-icon { color: #8D5FAF; background: rgba(74,29,107,0.12); }

.cc-name {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--blanc);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.cc-role {
  font-family: var(--ff-caps);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 24px;
}

.cc-pitch {
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--texte);
  line-height: 1.6;
  margin-bottom: 10px;
}
.cc-arc {
  font-family: var(--ff-display);
  font-size: 16px;
  font-style: italic;
  color: var(--texte-mid);
  line-height: 1.4;
  margin-bottom: 26px;
}
.cc-arc em { font-style: italic; }

.cc-tags {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.cc-tags li {
  font-family: var(--ff-caps);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--texte-mid);
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
}

.bientot-notice {
  display: flex; align-items: center; gap: 18px;
  margin: 56px auto 0;
  max-width: 720px;
}
.bn-rule {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--or-border), transparent);
}
.bn-text {
  font-family: var(--ff-display);
  font-size: 15px;
  font-style: italic;
  color: var(--texte);
  text-align: center;
}

.bientot-form {
  max-width: 560px;
  margin: 48px auto 0;
  text-align: center;
  padding: 36px 32px;
  background: var(--noir2);
  border: 1px solid var(--or-border);
  border-radius: 6px;
}
.bf-eyebrow {
  font-family: var(--ff-caps);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 14px;
}
.bf-title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--blanc);
  margin-bottom: 8px;
  line-height: 1.2;
}
.bf-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--or), var(--or3));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bf-sub {
  font-family: var(--ff-sans);
  font-size: 13.5px;
  font-style: italic;
  color: var(--texte-mid);
  margin-bottom: 22px;
  line-height: 1.5;
}
.bf-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto 14px;
}
@media (min-width: 560px) {
  .bf-row { flex-direction: row; gap: 8px; }
}
.bf-field { flex: 1; display: block; }
.bf-field input {
  width: 100%;
  background: var(--noir);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: var(--ff-sans);
  font-size: 14px;
  color: var(--blanc);
  transition: border-color var(--t);
}
.bf-field input::placeholder { color: var(--texte-mid); opacity: 0.6; }
.bf-field input:focus { outline: none; border-color: var(--or); }
.bf-submit {
  font-family: var(--ff-caps);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--noir);
  background: var(--or);
  border: none;
  padding: 14px 24px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  transition: background var(--t), transform var(--t);
}
.bf-submit:hover { background: var(--or2); transform: translateY(-1px); }
.bf-submit-arrow { font-size: 14px; line-height: 1; }
.bf-legal {
  font-family: var(--ff-sans);
  font-size: 11px;
  color: var(--texte-mid);
  opacity: 0.7;
}
.bf-success {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--or);
  margin-top: 12px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* -------------------- 11. Pricing -------------------- */
.section-pricing {
  position: relative;
  padding: 120px 0;
  background: var(--noir2);
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 900px) { .section-pricing { padding: 80px 0; } }
.pricing-bg {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(201,168,76,0.05), transparent 70%);
}

.pricing-notice {
  max-width: 720px;
  margin: 12px auto 0;
  font-family: var(--ff-sans);
  font-size: 13.5px;
  font-weight: 300;
  color: var(--texte-mid);
  line-height: 1.7;
  text-align: center;
}
.pricing-notice strong { color: var(--blanc); font-weight: 500; }
.pricing-notice em { color: var(--or2); font-style: italic; }

.pricing-toggle {
  position: relative;
  display: inline-flex;
  margin: 40px auto 0;
  background: var(--noir);
  border: 1px solid var(--or-border);
  border-radius: 999px;
  padding: 4px;
  gap: 0;
}
.pricing-toggle { display: flex; width: max-content; margin-left: auto; margin-right: auto; }
.pt-btn {
  position: relative;
  z-index: 1;
  font-family: var(--ff-caps);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--texte-mid);
  background: transparent;
  border: none;
  padding: 12px 22px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  transition: color var(--t);
}
.pt-btn.is-active { color: var(--noir); }
.pt-btn:not(.is-active):hover { color: var(--texte); }
.pt-save {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0;
  color: var(--or2);
  padding: 2px 6px;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--or-border);
  border-radius: 4px;
  text-transform: none;
}
.pt-btn.is-active .pt-save {
  color: var(--noir);
  background: rgba(0,0,0,0.15);
  border-color: rgba(0,0,0,0.2);
}
.pt-track {
  position: absolute;
  top: 4px; left: 4px;
  height: calc(100% - 8px);
  width: calc(50% - 4px);
  background: linear-gradient(135deg, var(--or), var(--or3));
  border-radius: 999px;
  transition: transform var(--t-slow);
  z-index: 0;
}
.pricing-toggle[data-period="yearly"] .pt-track { transform: translateX(100%); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}
@media (min-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr 1.1fr; gap: 24px; align-items: center; }
}

.price-card {
  position: relative;
  background: var(--gris);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), border-color var(--t);
}
.price-card.is-featured {
  background:
    linear-gradient(180deg, rgba(201,168,76,0.06) 0%, transparent 100%),
    var(--gris);
  border-color: rgba(201,168,76,0.32);
  padding: 44px 36px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(201,168,76,0.08) inset;
}
.price-card.is-featured::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  border-radius: 8px 8px 0 0;
}
@media (min-width: 900px) {
  .price-card.is-featured { transform: translateY(-12px); }
}
.price-card:hover { border-color: var(--or-border); }

.pc-recommend {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-caps);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--noir);
  background: var(--or);
  padding: 7px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.pc-recommend-diamond { font-size: 11px; line-height: 1; }

.pc-head { margin-bottom: 22px; text-align: left; }
.pc-badge {
  display: inline-block;
  font-family: var(--ff-caps);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--texte-mid);
  border: 1px solid var(--or-border);
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.pc-badge--gold {
  color: var(--or);
  background: rgba(201,168,76,0.08);
}
.pc-title {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--blanc);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.pc-tagline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 15px;
  color: var(--texte-mid);
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
}
.pc-amount {
  font-family: var(--ff-display);
  font-size: 60px;
  font-weight: 700;
  color: var(--blanc);
  line-height: 1;
  letter-spacing: -0.02em;
}
.is-featured .pc-amount {
  background: linear-gradient(135deg, var(--or), var(--or3));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pc-unit {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 18px;
  color: var(--texte);
}
.pc-unit small { font-size: 13px; color: var(--texte-mid); }
.pc-yearly-note {
  flex-basis: 100%;
  font-family: var(--ff-sans);
  font-size: 11.5px;
  font-style: italic;
  color: var(--texte-mid);
  margin-top: 6px;
}

.pc-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.pc-features li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: baseline;
  font-family: var(--ff-sans);
  font-size: 13.5px;
  color: var(--texte);
  line-height: 1.55;
}
.pc-features strong { color: var(--blanc); font-weight: 500; }
.pc-check {
  color: var(--or);
  font-size: 10px;
  line-height: 1;
}
.pc-features .pc-out {
  color: var(--texte-mid);
  opacity: 0.55;
  text-decoration: line-through;
  text-decoration-color: rgba(160,160,176,0.4);
}
.pc-features .pc-out span { color: var(--texte-mid); }
.pc-features .pc-out strong { color: var(--texte-mid); font-weight: 400; }

.pc-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--ff-caps);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 16px 20px;
  border-radius: 4px;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
  margin-bottom: 14px;
}
.pc-cta--outline {
  color: var(--or);
  border: 1px solid var(--or-border);
  background: transparent;
}
.pc-cta--outline:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--or);
  transform: translateY(-2px);
}
.pc-cta--gold {
  color: var(--noir);
  background: var(--or);
  border: 1px solid var(--or);
}
.pc-cta--gold:hover {
  background: var(--or2);
  transform: translateY(-2px);
}
.pc-arrow { font-size: 14px; line-height: 1; }

.pc-foot {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-style: italic;
  color: var(--texte-mid);
  text-align: center;
  opacity: 0.75;
}

/* Trust strip */
.pricing-trust {
  list-style: none;
  margin: 56px auto 0;
  padding: 24px 0;
  border-top: 1px solid var(--or-line);
  border-bottom: 1px solid var(--or-line);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 48px;
  max-width: 860px;
}
.pricing-trust li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-caps);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--texte);
}
.pt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--or);
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--or-border);
}

.pricing-bridge {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 56px auto 0;
  max-width: 820px;
}
.pb-rule {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--or-border), transparent);
}
.pb-text {
  font-family: var(--ff-display);
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--texte);
  text-align: center;
  line-height: 1.5;
}
.pb-text em {
  font-style: italic;
  color: var(--or2);
}

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


/* ==========================================================================
   MULTI-PAGE — Nav active, Teasers, CTA final, Footer
   Ajouté pour le découpage en 4 pages (accueil + hunter + formations + rdv)
   ========================================================================== */

/* ---------- Nav active state ---------- */
.nav-list a.is-active,
.nav-drawer-list a.is-active { color: var(--or); }
.nav-list a.is-active { position: relative; }
.nav-list a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--or); opacity: 0.6;
}

/* ---------- Section teaser (générique) ---------- */
.section-teaser {
  padding: 120px 0;
  background: var(--noir);
  border-top: 1px solid var(--or-line);
  position: relative;
  isolation: isolate;
}
.section-teaser .container { position: relative; z-index: 1; }

/* ---------- Teaser Hunter ---------- */
.teaser-hunter { background: var(--noir2); }
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .teaser-grid { grid-template-columns: 1fr; gap: 48px; }
}
.teaser-photo {
  position: relative;
  margin: 0;
}
.teaser-portrait-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  border: 1px solid var(--or-border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.teaser-caption {
  display: flex; align-items: center; gap: 14px;
  margin-top: 18px; justify-content: center;
}
.teaser-caption .cap-rule {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--or-border), transparent);
}
.teaser-caption .cap-text {
  font-family: var(--ff-caps);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.36em; color: var(--or);
  white-space: nowrap;
}
.teaser-body .section-title { margin-top: 12px; }
.teaser-lead {
  font-family: var(--ff-display);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--texte);
  margin: 24px 0 28px;
}
.teaser-bullets {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.teaser-bullets li {
  font-family: var(--ff-sans);
  font-size: 15px; color: var(--blanc);
  display: flex; align-items: flex-start; gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--or-line);
}
.teaser-bullets li:last-child { border-bottom: 0; }
.tb-bullet { color: var(--or); font-size: 10px; line-height: 1.5; }

/* ---------- Teaser Formations ---------- */
.teaser-formations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 64px 0 48px;
}
@media (max-width: 800px) {
  .teaser-formations-grid { grid-template-columns: 1fr; }
}
.teaser-fc {
  background: linear-gradient(180deg, #161620 0%, #0E0E14 100%);
  border: 1px solid var(--or-line);
  border-radius: 4px;
  padding: 40px 32px;
  transition: border-color var(--t), transform 0.3s var(--t);
}
.teaser-fc:hover { border-color: var(--or-border); transform: translateY(-4px); }
.tfc-domain {
  font-family: var(--ff-caps);
  font-size: 9px; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--or);
}
.teaser-fc--bourse .tfc-domain { color: var(--c-bourse, #6F95D1); }
.teaser-fc--crypto .tfc-domain { color: var(--c-crypto, #F7931A); }
.tfc-title {
  font-family: var(--ff-display);
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 600;
  margin: 14px 0 12px;
  color: var(--blanc);
}
.tfc-text {
  font-family: var(--ff-sans);
  font-size: 15px; line-height: 1.7;
  color: var(--texte);
  margin: 0 0 20px;
}
.tfc-levels {
  font-family: var(--ff-caps);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--or); display: flex; gap: 10px;
}
.tfc-sep { opacity: 0.4; }
.teaser-cta-center {
  display: inline-flex;
  margin: 0 auto;
  width: fit-content;
}
.teaser-formations .container > .teaser-cta-center,
.teaser-formations .btn-gold {
  display: block; margin: 0 auto; width: fit-content;
}

/* ---------- CTA final ---------- */
.section-cta-final {
  padding: 60px 0 140px;
  background: var(--noir2);
  border-top: 1px solid var(--or-line);
  position: relative; overflow: hidden; isolation: isolate;
}
.section-cta-final .cta-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,168,76,0.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--noir2) 0%, var(--noir) 100%);
}
.cta-final-inner {
  max-width: 720px; margin: 0 auto;
  text-align: center;
}
.cta-final-title { margin: 14px 0 0; }
.cta-final-lead {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--texte);
  margin: 28px auto 36px;
  max-width: 580px;
}
.cta-final-actions {
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 24px;
}
.cta-final-foot {
  font-family: var(--ff-caps);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--or); opacity: 0.7;
  margin-top: 18px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--noir);
  border-top: 1px solid var(--or-line);
  padding: 80px 0 32px;
  color: var(--texte);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--or-line);
  align-items: start;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo {
  font-size: 18px; letter-spacing: 0.18em;
  display: inline-block; margin-bottom: 14px;
}
.footer-tag {
  font-family: var(--ff-display);
  font-style: italic; font-size: 16px;
  color: var(--texte); margin: 0 0 22px;
  max-width: 360px;
}
.footer-social { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-social a {
  font-family: var(--ff-caps);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--or); text-decoration: none;
  padding: 8px 14px;
  border: 1px solid var(--or-border);
  border-radius: var(--r-pill);
  background: var(--or-soft);
  transition: background var(--t), color var(--t);
}
.footer-social a:hover { background: var(--or); color: var(--noir); }
.footer-title {
  font-family: var(--ff-caps);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--or); margin: 0 0 18px;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col ul a {
  font-family: var(--ff-sans);
  font-size: 14px; color: var(--blanc);
  text-decoration: none;
  transition: color var(--t);
}
.footer-col ul a:hover { color: var(--or); }
.footer-disclaimer {
  padding: 32px 0;
  border-bottom: 1px solid var(--or-line);
}
.footer-disclaimer p {
  font-family: var(--ff-sans);
  font-size: 12px; line-height: 1.7;
  color: var(--texte);
  opacity: 0.7;
  max-width: 920px;
  margin: 0;
}
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p {
  font-family: var(--ff-caps);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--or); opacity: 0.7;
  margin: 0;
}


/* ---------- Transition éditoriale (entre Douleur et CTA RDV) ---------- */
.section-bridge {
  padding: 80px 0;
  background: var(--noir);
  text-align: center;
  border-top: 1px solid var(--or-line);
  border-bottom: 1px solid var(--or-line);
}
.bridge-quote {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
.bq-mark {
  font-family: var(--ff-display);
  font-size: 64px;
  line-height: 0.8;
  color: var(--or);
  opacity: 0.5;
  font-weight: 300;
}
.bq-mark--r { align-self: flex-end; }
.bq-text {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.4;
  color: var(--blanc, var(--blanc-creme, #F5F0E8));
  margin: 0;
}
.bq-text em {
  font-style: italic;
  color: var(--or);
}

/* ---------- Pages légales ---------- */
.section-legal {
  padding: 160px 0 120px;
  background: var(--noir);
  color: var(--blanc-creme);
  position: relative;
}
.legal-inner {
  max-width: 820px;
  margin: 0 auto;
}
.legal-eyebrow {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--or);
  text-align: center;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.legal-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 12px;
  color: var(--blanc-creme);
}
.legal-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--or);
}
.legal-meta {
  text-align: center;
  font-family: var(--ff-sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 230, 0.55);
  text-transform: uppercase;
  margin: 0 0 56px;
}
.legal-meta::before, .legal-meta::after {
  content: "·";
  margin: 0 12px;
  color: var(--or);
}
.legal-prose {
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.86);
}
.legal-prose h2 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--blanc-creme);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--or-line);
  letter-spacing: -0.005em;
}
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose h2 .legal-num {
  display: inline-block;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  color: var(--or);
  margin-right: 12px;
  font-size: 20px;
}
.legal-prose h3 {
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--or);
  margin: 28px 0 10px;
}
.legal-prose p { margin: 0 0 16px; }
.legal-prose strong { color: var(--blanc-creme); font-weight: 600; }
.legal-prose em { font-style: italic; color: var(--or); }
.legal-prose a {
  color: var(--or);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 175, 110, 0.4);
  transition: border-color .2s;
}
.legal-prose a:hover { border-bottom-color: var(--or); }
.legal-prose ul, .legal-prose ol {
  margin: 0 0 20px;
  padding-left: 22px;
}
.legal-prose li { margin: 0 0 8px; }
.legal-prose ul li::marker { color: var(--or); }
.legal-callout {
  margin: 24px 0;
  padding: 20px 24px;
  background: rgba(212, 175, 110, 0.06);
  border-left: 2px solid var(--or);
  font-size: 15px;
  color: var(--blanc-creme);
}
.legal-callout strong { color: var(--or); }
.legal-toc {
  margin: 0 0 56px;
  padding: 24px 28px;
  background: rgba(245, 240, 230, 0.03);
  border: 1px solid var(--or-line);
}
.legal-toc-title {
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--or);
  margin: 0 0 14px;
}
.legal-toc ol {
  margin: 0;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.9;
  font-family: var(--ff-sans);
}
.legal-toc a {
  color: rgba(245, 240, 230, 0.8);
  text-decoration: none;
  transition: color .2s;
}
.legal-toc a:hover { color: var(--or); }

/* ---------- Page hero générique (pages hunter/formations/rdv) ---------- */
.page-hero {
  padding: 160px 0 60px;
  background: var(--noir);
  text-align: center;
  border-bottom: 1px solid var(--or-line);
}
body[data-page="formations"] .page-hero {
  padding-bottom: 30px;
  border-bottom: 0;
}
body[data-page="formations"] .section-formations {
  padding-top: 30px;
}
.page-hero .section-title { margin: 14px 0 0; }
.page-hero-lead {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--texte);
  max-width: 640px;
  margin: 28px auto 0;
}
.page-hero-lead--punch {
  margin-top: 8px;
}
.section-placeholder-page {
  padding: 100px 0 140px;
  background: var(--noir2);
}
.placeholder-card {
  max-width: 580px; margin: 0 auto;
  text-align: center;
  padding: 56px 32px;
  border: 1px solid var(--or-border);
  border-radius: 4px;
  background: var(--or-soft);
}
.placeholder-tag {
  font-family: var(--ff-caps);
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--or); margin: 0 0 14px;
}
.placeholder-title {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400; font-style: italic;
  color: var(--blanc); margin: 0 0 18px;
}
.placeholder-text {
  font-family: var(--ff-sans);
  font-size: 15px; line-height: 1.7;
  color: var(--texte); margin: 0;
}
.placeholder-text a { color: var(--or); text-decoration: underline; }
