    :root {
      --black: #0a0a0a;
      --charcoal: #111111;
      --surface: #161616;
      --surface2: #1e1e1e;
      --border: #2a2a2a;
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --gold-dim: rgba(201, 168, 76, 0.15);
      --silver: #b0b8c4;
      --silver-light: #d0d8e4;
      --silver-dim: rgba(176, 184, 196, 0.15);
      --text: #e8e4dc;
      --text-muted: #8a8680;
      --text-dim: #4a4740;
      --mono: 'JetBrains Mono', monospace;
      --serif: 'DM Serif Display', serif;
      --sans: 'DM Sans', sans-serif;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      cursor: default;
    }

    a,
    button,
    [role="button"],
    .pricing-cta,
    .cta-primary,
    .cta-shimmer,
    .nav-cta,
    .faq-q,
    .mob-nav a {
      cursor: pointer;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      overflow-x: hidden;
      background: var(--black);
      color: var(--text);
      font-family: var(--sans);
      font-weight: 300;
      line-height: 1.7;
    }

    .container {
      max-width: 780px;
      margin: 0 auto;
      padding: 0 28px;
    }

    .container--wide {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 28px;
    }

    .tag {
      display: inline-block;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid var(--gold-dim);
      padding: 5px 12px;
      border-radius: 2px;
      background: rgba(201, 168, 76, 0.04);
    }

    .gold {
      color: var(--gold);
    }

    .italic {
      font-style: italic;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pulse-gold {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.25);
      }

      50% {
        box-shadow: 0 0 0 12px rgba(201, 168, 76, 0);
      }
    }

    @keyframes shimmer {
      0% {
        background-position: -200% center;
      }

      100% {
        background-position: 200% center;
      }
    }

    .fade-in {
      animation: fadeUp 0.9s ease both;
    }

    .delay-1 {
      animation-delay: 0.15s;
    }

    .delay-2 {
      animation-delay: 0.30s;
    }

    .delay-3 {
      animation-delay: 0.50s;
    }

    .delay-4 {
      animation-delay: 0.70s;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='https://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.6;
    }

    nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100;
      padding: 18px 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(10, 10, 10, 0.88);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      font-family: var(--mono);
      font-size: 13px;
      color: var(--gold);
      letter-spacing: 0.08em;
    }

    .nav-membre {
      font-family: var(--mono);
      font-size: clamp(7px, 0.8vw, 10px);
      letter-spacing: 0.12em;
      color: rgba(201,168,76,0.45);
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.2s, border-color 0.2s;
      white-space: nowrap;
      border: 1px solid rgba(201,168,76,0.45);
      border-radius: 3px;
      padding: clamp(6px, 0.7vw, 9px) clamp(10px, 1.4vw, 20px);
      margin: clamp(6px, 0.7vw, 9px) clamp(10px, 1.4vw, 20px);
      text-align: center;
      line-height: 1.6;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .nav-membre:hover {
      color: rgba(201,168,76,0.85);
      border-color: rgba(201,168,76,0.85);
    }

    .nav-cta {
      font-family: var(--mono);
      font-size: clamp(8px, 0.9vw, 11px);
      padding: clamp(6px, 0.7vw, 9px) clamp(10px, 1.4vw, 20px);
      letter-spacing: 0.08em;
      color: var(--black);
      background: var(--gold);
      padding: 8px 20px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
    }

    .nav-cta:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
    }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      padding: 120px 0 80px;
      overflow: visible;
    }

    .hero::after {
      content: '';
      position: absolute;
      top: -20%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-eyebrow {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: 0.2em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 32px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .hero-eyebrow::before {
      content: '';
      display: inline-block;
      width: 32px;
      height: 1px;
      background: var(--gold);
    }

    .hero h1 {
      font-family: var(--serif);
      font-size: clamp(1.9rem, 6vw, 5.2rem);
      line-height: 1.08;
      letter-spacing: -0.01em;
      margin-bottom: 20px;
      color: var(--text);
    }

    .hero h1 em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-sub {
      font-size: clamp(0.88rem, 2.2vw, 1.15rem);
      color: var(--text-muted);
      max-width: 560px;
      margin-bottom: 32px;
      line-height: 1.75;
    }

        .cta-primary {
      display: inline-block;
      background: var(--gold);
      color: var(--black);
      font-family: var(--mono);
      font-size: 13px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 18px 40px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      animation: pulse-gold 3s infinite;
      transition: background 0.2s, transform 0.15s;
      position: relative;
      font-weight: 700;
    }

    .cta-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      animation: none;
    }

    .cta-sub-note {
      margin-top: 14px;
      font-size: 12px;
      color: var(--text-dim);
      font-family: var(--mono);
    }

    .hero-grid-decoration {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--border) 20%, var(--gold-dim) 50%, var(--border) 80%, transparent 100%);
    }

    section {
      padding: 100px 0;
      position: relative;
      z-index: 1;
    }

    .section-label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.2em;
      color: var(--text-dim);
      text-transform: uppercase;
      margin-bottom: 48px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .section-label::before {
      content: '';
      width: 20px;
      height: 1px;
      background: var(--text-dim);
    }

    h2 {
      font-family: var(--serif);
      font-size: clamp(1.5rem, 4vw, 3.2rem);
      line-height: 1.15;
      margin-bottom: 32px;
      color: var(--text);
    }

    h3 {
      font-family: var(--serif);
      font-size: clamp(1.1rem, 2.5vw, 1.5rem);
      margin-bottom: 16px;
      color: var(--text);
    }

    ul li {
      font-size: clamp(0.85rem, 1.8vw, 1.05rem);
    }

    p {
      font-size: clamp(0.85rem, 1.8vw, 1.05rem);
      color: var(--text-muted);
      margin-bottom: 20px;
    }

    p strong {
      color: var(--text);
      font-weight: 500;
    }

    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border), transparent);
      margin: 0;
    }

    /* ══════════════════════════════════════════
       SECTION 00 — BLOCKCHAIN DEV
    ══════════════════════════════════════════ */
    .blockchain-dev-section {
      position: relative;
      overflow: hidden;
      background: var(--charcoal);
    }

    .blockchain-chain-canvas-wrap {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    .blockchain-chain-canvas-wrap canvas {
      width: 100%;
      height: 100%;
      display: block;
      opacity: 0.55;
    }

    .blockchain-dev-hook {
      font-family: var(--serif);
      font-style: italic;
      color: var(--gold);
      font-weight: 400;
      font-size: clamp(1.3rem, 2.5vw, 1.9rem);
      margin-bottom: 20px;
      text-shadow: 0 0 32px rgba(201, 168, 76, 0.25);
    }

    .blockchain-dev-list {
      list-style: none;
      margin: 0 0 24px 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .blockchain-dev-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: var(--text-muted);
      font-size: clamp(0.85rem, 1.8vw, 0.9rem);
      line-height: 1.6;
    }

    .blockchain-dev-list li::before {
      content: '◈';
      color: var(--gold);
      flex-shrink: 0;
      font-size: 0.8rem;
      margin-top: 3px;
    }

    .sol-terminal {
      margin: 40px 0 8px;
      background: #0d0d0d;
      border: 1px solid rgba(201, 168, 76, 0.25);
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 0 40px rgba(201, 168, 76, 0.07), 0 16px 48px rgba(0,0,0,0.5);
    }

    .sol-terminal-bar {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 10px 16px;
      background: #161616;
      border-bottom: 1px solid rgba(201, 168, 76, 0.12);
    }

    .sol-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .sol-dot--red    { background: #ff5f57; }
    .sol-dot--yellow { background: #febc2e; }
    .sol-dot--green  { background: #28c840; }

    .sol-terminal-title {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--text-dim);
      letter-spacing: 0.08em;
      margin-left: 8px;
    }

    .sol-terminal-body {
      padding: 20px 24px 24px;
      height: 500px;
      overflow: hidden;
      position: relative;
    }

    .sol-lines {
      font-family: var(--mono);
      font-size: 13px;
      line-height: 1.75;
      white-space: pre;
    }

    .sol-line {
      display: block;
      opacity: 0;
      animation: solLineIn 0.08s ease forwards;
    }

    @keyframes solLineIn {
      to { opacity: 1; }
    }

    .sol-kw   { color: #c792ea; }
    .sol-type { color: #82aaff; }
    .sol-fn   { color: #c9a84c; }
    .sol-str  { color: #c3e88d; }
    .sol-cmt  { color: #4a4740; font-style: italic; }
    .sol-num  { color: #f78c6c; }
    .sol-pct  { color: #89ddff; }

    .sol-cursor {
      display: inline-block;
      color: var(--gold);
      font-family: var(--mono);
      font-size: 14px;
      animation: blink 1s step-end infinite;
      vertical-align: text-bottom;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0; }
    }

    @media (max-width: 640px) {
      .sol-terminal-body { padding: 16px; height: 420px; }
      .sol-lines { font-size: 11px; }
    }

    /* ══════════════════════════════════════════
       SECTION 01 — BIG IDEA
    ══════════════════════════════════════════ */
    .big-idea {
      background: var(--charcoal);
      position: relative;
      overflow: hidden;
    }

    .big-idea::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(201, 168, 76, 0.10) 0%, rgba(201, 168, 76, 0.04) 60%, rgba(10, 10, 10, 0) 100%);
      pointer-events: none;
      z-index: 0;
    }

    .big-idea::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      pointer-events: none;
    }

    .big-idea .container {
      position: relative;
      z-index: 1;
    }

    .pullquote {
      font-family: var(--serif);
      font-size: clamp(1.6rem, 3.5vw, 2.6rem);
      line-height: 1.25;
      color: var(--text);
      border-left: 3px solid var(--gold);
      padding: 24px 0 24px 36px;
      margin: 48px 0;
      font-style: italic;
    }

    /* ══════════════════════════════════════════
      SECTION 01 — NODE NETWORK WRAP
    ══════════════════════════════════════════ */
    .big-idea-network-wrap {
      position: relative;
      overflow: hidden;
      border-radius: 2px;
    }

    .big-idea-network-wrap canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      pointer-events: none;
      z-index: 0;
      opacity: 0.55;
    }

    .big-idea-network-content {
      position: relative;
      z-index: 1;
    }

    .frustration-list {
      list-style: none;
      margin: 40px 0;
    }

    .frustration-list li {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
      color: var(--text-muted);
      font-size: clamp(0.85rem, 1.8vw, 1rem);
    }

    .frustration-list li::before {
      content: '';
      /* replaced by inline span */
      color: var(--text-dim);
      font-family: var(--mono);
      font-size: 18px;
      margin-top: 1px;
      flex-shrink: 0;
    }

    /* ══════════════════════════════════════════
    SECTION 04 — TRANSFORMATION
    ══════════════════════════════════════════ */
.morph-block {
  margin-top: 48px;
  border: 1px solid var(--border);
  padding: 28px 32px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.morph-block:hover { border-color: rgba(201, 168, 76, 0.35); }

.morph-badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin: 12px 0;
  transition: opacity 0.6s ease, color 0.4s ease;
}

.morph-block.showing-after .morph-badge { color: var(--gold); }
.morph-block.fading .morph-badge { opacity: 0; }

.morph-text-wrap {
  position: relative;
  min-height: 64px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.morph-text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  line-height: 1.35;
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.15s ease, transform 0.6s ease;
}

.morph-before {
  color: var(--text);
  opacity: 1;
  transform: translateY(0);
}

.morph-after {
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(-40%);
  font-style: italic;
}

.morph-block.showing-after .morph-before { opacity: 0; transform: translateY(-60%); }
.morph-block.showing-after .morph-after  { opacity: 1; transform: translateY(-50%); }
.morph-block.fading .morph-before,
.morph-block.fading .morph-after         { opacity: 0; }

.morph-fade-overlay {
  position: absolute;
  inset: 0;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
  z-index: 2;
}

.morph-block.fading .morph-fade-overlay { opacity: 1; }


    /* ══════════════════════════════════════════
    SECTION 04 — BLOCKCHAIN WIDGET
    ══════════════════════════════════════════ */
    .blockchain-widget-wrap {
      margin-top: 56px;
      border: 1px solid rgba(201,168,76,0.20);
      border-radius: 4px;
      overflow: hidden;
      background: rgba(6,4,1,0.92);
    }

    .blockchain-widget-bar {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 9px 16px;
      background: rgba(201,168,76,0.07);
      border-bottom: 1px solid rgba(201,168,76,0.13);
    }

    .bw-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(201,168,76,0.28);
      display: inline-block;
      flex-shrink: 0;
    }

    .blockchain-widget-title {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.14em;
      color: rgba(201,168,76,0.50);
      margin-left: 6px;
      flex: 1;
    }

    .blockchain-widget-status {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.10em;
      color: rgba(201,168,76,0.40);
    }

    .blockchain-widget-inner {
      height: 38vh;
      min-height: 280px;
      max-height: 440px;
      position: relative;
      overflow: hidden;
    }

    .blockchain-widget-inner canvas {
      display: block;
      width: 100%;
      height: 100%;
    }

    .blockchain-widget-inner #bw-labels {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 20;
      overflow: hidden;
    }

    .bw-block-label {
      position: absolute;
      transform: translate(-50%, -100%);
      text-align: center;
      white-space: nowrap;
      pointer-events: none;
      transition: opacity 0.3s;
    }

    .bw-label-num {
      font-family: var(--mono);
      font-size: 9px;
      font-weight: 700;
      color: rgba(232,201,122,0.9);
      letter-spacing: 2px;
      filter: drop-shadow(0 0 6px rgba(232,201,122,0.5));
    }

    .bw-label-sep {
      width: 28px; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,0.6), transparent);
      margin: 3px auto 4px;
    }

    .bw-label-skill {
      font-family: var(--mono);
      font-size: 8px;
      color: rgba(232,201,122,0.75);
      letter-spacing: 0.5px;
      max-width: 120px;
      white-space: normal;
      text-align: center;
      line-height: 1.4;
    }

    .bw-label-flavor {
      font-family: var(--mono);
      font-size: 7px;
      color: rgba(201,168,76,0.45);
      letter-spacing: 0.3px;
      max-width: 130px;
      white-space: normal;
      text-align: center;
      line-height: 1.5;
      margin-top: 3px;
      font-style: italic;
    }

    .bw-label-line {
      width: 1px; height: 14px;
      background: linear-gradient(to bottom, rgba(201,168,76,0.45), transparent);
      margin: 3px auto 0;
    }

    .blockchain-widget-footer {
      padding: 12px 16px;
      border-top: 1px solid rgba(201,168,76,0.10);
      display: flex;
      justify-content: center;
    }

    .blockchain-widget-btn {
      background: rgba(201,168,76,0.07);
      border: 1px solid rgba(201,168,76,0.35);
      color: rgba(232,201,122,0.85);
      padding: 10px 28px;
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      cursor: pointer;
      border-radius: 3px;
      transition: all 0.25s;
    }

    .blockchain-widget-btn:hover:not(:disabled) {
      background: rgba(201,168,76,0.16);
      box-shadow: 0 0 22px rgba(201,168,76,0.18);
    }

    .blockchain-widget-btn:disabled {
      opacity: 0.28;
      cursor: not-allowed;
    }

    .bw-forging-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: rgba(6,4,1,0.65);
      z-index: 30;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .bw-forging-overlay.active { opacity: 1; }

    .bw-ring {
      width: 44px; height: 44px;
      border: 2px solid transparent;
      border-top-color: rgba(232,201,122,0.9);
      border-right-color: rgba(201,168,76,0.6);
      border-radius: 50%;
      animation: bw-spin 0.8s linear infinite;
      margin-bottom: 10px;
    }

    .bw-ring-txt {
      font-family: var(--mono);
      font-size: 9px;
      letter-spacing: 0.22em;
      color: rgba(232,201,122,0.75);
      animation: bw-blink 1s ease-in-out infinite;
    }

    @keyframes bw-spin  { to { transform: rotate(360deg); } }
    @keyframes bw-blink { 0%,100%{opacity:0.3} 50%{opacity:1} }

    /* ── Timeline ── */
    .bw-timeline-wrap {
      position: relative;
      padding: 28px 24px 8px;
      overflow: hidden;
    }

    .bw-timeline-line {
      position: absolute;
      top: 42px;
      left: 24px;
      right: 24px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35) 8%, rgba(201,168,76,0.35) 92%, transparent);
    }

    .bw-timeline-track {
      display: flex;
      gap: 0;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding-bottom: 12px;
      scrollbar-width: none;
    }

    .bw-timeline-track::-webkit-scrollbar { display: none; }

    .bw-jalon {
      flex: 0 0 auto;
      width: 160px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
      position: relative;
    }

    .bw-jalon-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(201,168,76,0.35);
      border: 1px solid rgba(201,168,76,0.6);
      flex-shrink: 0;
      transition: all 0.4s;
      margin-bottom: 10px;
    }

    .bw-jalon--new .bw-jalon-dot {
      background: rgba(232,201,122,0.85);
      border-color: rgba(232,201,122,1);
      box-shadow: 0 0 12px rgba(232,201,122,0.7), 0 0 28px rgba(201,168,76,0.4);
      animation: bw-pulse-dot 1.2s ease-out;
    }

    @keyframes bw-pulse-dot {
      0%   { transform: scale(2.2); box-shadow: 0 0 24px rgba(232,201,122,0.9); }
      100% { transform: scale(1);   box-shadow: 0 0 12px rgba(232,201,122,0.7); }
    }

    .bw-jalon-label {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
      text-align: center;
      padding: 0 8px;
    }

    .bw-jalon-num {
      font-family: var(--mono);
      font-size: 8px;
      color: rgba(201,168,76,0.45);
      letter-spacing: 0.12em;
    }

    .bw-jalon-skill {
      font-family: var(--mono);
      font-size: 10px;
      font-weight: 700;
      color: rgba(232,201,122,0.90);
      letter-spacing: 0.06em;
    }

    .bw-jalon-flavor {
      font-family: var(--mono);
      font-size: 8px;
      color: rgba(201,168,76,0.50);
      font-style: italic;
      line-height: 1.5;
      letter-spacing: 0.03em;
    }


    /* ══════════════════════════════════════════
    SECTION 03 —
    ══════════════════════════════════════════ */

    .proof-section {
      background: var(--charcoal);
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin: 48px 0;
      background: var(--border);
    }

    .stat-block {
      background: var(--surface);
      padding: 32px 24px;
      text-align: center;
    }

    .stat-number {
      font-family: var(--serif);
      font-size: 2.8rem;
      color: var(--gold);
      display: block;
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-desc {
      font-size: 0.82rem;
      color: var(--text-dim);
      font-family: var(--mono);
      letter-spacing: 0.05em;
      line-height: 1.5;
    }

    .company-list {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 32px 0;
    }

    .company-pill {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.08em;
      border: 1px solid var(--border);
      padding: 7px 16px;
      color: var(--text-muted);
      background: var(--surface);
    }

    .sector-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 2px;
      background: var(--border);
      margin: 24px 0 8px;
    }

    .sector-item {
      background: var(--surface);
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.88rem;
      color: var(--text-muted);
      transition: background 0.2s;
    }

    .sector-item:hover {
      background: var(--surface2);
      color: var(--text);
    }

    .sector-icon {
      color: var(--gold);
      font-size: 14px;
      flex-shrink: 0;
      opacity: 0.7;
    }


    /* ══════════════════════════════════════════
    SECTION — PROGRAMME
    ══════════════════════════════════════════ */

    .modules-section {
      background: var(--black);
    }

    .module-list {
      margin-top: 48px;
      position: relative;
      z-index: 1;
    }

    .module-item-top {
      display: grid;
      grid-template-columns: 72px 1fr;
      gap: 16px;
      align-items: start;
    }

    .module-num {
      font-family: var(--serif);
      font-size: clamp(2rem, 5vw, 3.2rem);
      color: rgba(201, 168, 76, 0.25);
      letter-spacing: -0.02em;
      line-height: 1;
      display: flex;
      align-items: flex-start;
      padding-top: 3px;
      font-weight: 400;
      transition: color 0.25s;
    }

    .module-title {
      font-family: var(--serif);
      font-size: clamp(0.95rem, 3vw, 1.25rem);
      color: var(--text);
      margin-bottom: 8px;
    }

    .module-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 4px;
    }

    .module-tag {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.08em;
      padding: 3px 10px;
      border: 1px solid var(--border);
      color: var(--text-dim);
      background: var(--surface);
    }

    .module-tag--gold {
      border-color: var(--gold-dim);
      color: var(--gold);
      background: rgba(201, 168, 76, 0.04);
    }

        /* ── Module keywords line ── */
    .module-keywords-line {
      margin-top: 14px;
      font-family: var(--mono, 'JetBrains Mono', monospace);
      font-size: 10px;
      letter-spacing: 0.10em;
      color: rgba(201, 168, 76, 0.38);
      line-height: 1.8;
      border-top: 1px solid rgba(201, 168, 76, 0.08);
      padding-top: 12px;
    }

    .module-keywords-label {
      color: rgba(201, 168, 76, 0.55);
      margin-right: 4px;
    }

    /* ── Module projet block ── */
    .module-projet-block {
      background: rgba(201, 168, 76, 0.04);
      border: 1px solid rgba(201, 168, 76, 0.16);
      border-left: 2px solid rgba(201, 168, 76, 0.45);
      border-radius: 0 3px 3px 0;
      padding: 14px 18px;
      margin-top: 12px;
    }

    .module-projet-block + .module-projet-block {
      margin-top: 8px;
    }

    .module-projet-label-tag {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(201, 168, 76, 0.55);
      margin-bottom: 5px;
    }

    .module-projet-name {
      font-family: var(--serif, 'DM Serif Display', serif);
      font-size: 1rem;
      color: rgba(232, 201, 122, 0.88);
      margin-bottom: 5px;
      line-height: 1.2;
    }

    .module-projet-desc {
      font-family: var(--sans, 'DM Sans', sans-serif);
      font-size: 12px;
      line-height: 1.65;
      color: rgba(201, 168, 76, 0.50);
    }

    .module-dl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 40px auto 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    color: #060a0f;
    background: linear-gradient(105deg, #a07828 0%, #e8c97a 35%, #c9a84c 50%, #f5e0a0 65%, #c9a84c 80%, #a07828 100%);
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
    padding: 12px 28px;
    border-radius: 3px;
    border: none;
    transition: transform 0.15s;
    width: fit-content;
  }

  .module-dl-btn:hover {
    transform: translateY(-1px);
  }

  .module-dl-btn svg {
    flex-shrink: 0;
    stroke: #060a0f;
  }

    /* ══════════════════════════════════════════
    SECTION — POUR QUI ?
    ══════════════════════════════════════════ */

    .for-who {
      background: var(--charcoal);
      position: relative;
      overflow: hidden;
    }

    .for-who::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(201, 168, 76, 0.10) 0%, rgba(201, 168, 76, 0.04) 60%, rgba(10, 10, 10, 0) 100%);
      pointer-events: none;
      z-index: 0;
    }

    .for-who::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      pointer-events: none;
    }

    .for-who .container {
      position: relative;
      z-index: 1;
    }

    .profiles-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      margin-top: 40px;
      background: var(--border);
    }

    .profile-card {
      background: var(--surface);
      padding: 28px;
    }

    .profile-icon {
      font-family: var(--mono);
      font-size: 22px;
      color: var(--gold);
      margin-bottom: 12px;
      display: block;
    }

    .profile-title {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 6px;
    }

    .profile-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 0;
    }

    .faq-section {
      background: var(--charcoal);
      position: relative;
      overflow: hidden;
    }

    .faq-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(201, 168, 76, 0.10) 0%, rgba(201, 168, 76, 0.04) 60%, rgba(10, 10, 10, 0) 100%);
      pointer-events: none;
      z-index: 0;
    }

    .faq-section::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      pointer-events: none;
    }

    .faq-section .container {
      position: relative;
      z-index: 1;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
      padding: 12px 0;
    }

    .faq-q {
      font-size: clamp(0.85rem, 1.8vw, 1rem);
      font-weight: 500;
      color: var(--text);
      margin-bottom: 5px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
    }

    .faq-q::after {
      content: '+';
      font-family: var(--mono);
      color: var(--gold);
      font-size: 18px;
      flex-shrink: 0;
      transition: transform 0.3s;
    }

    .faq-item.open .faq-q::after {
      transform: rotate(45deg);
    }

    .faq-a {
      display: none;
      padding-top: 4px;
    }

    .faq-a p {
      color: var(--text-muted);
      font-size: clamp(0.82rem, 1.8vw, 0.92rem);
      line-height: 1.75;
      margin-bottom: 14px;
    }

    .faq-a p:last-child {
      margin-bottom: 0;
    }

    .faq-item.open .faq-a {
      display: block;
    }

    .identity-section {
      background: var(--charcoal);
      text-align: center;
    }

    .identity-section .container {
      max-width: 680px;
    }

    .identity-quote {
      font-family: var(--serif);
      font-size: clamp(1.8rem, 4vw, 3rem);
      line-height: 1.2;
      color: var(--text);
      font-style: italic;
      margin: 40px 0 20px;
    }

.identity-signature {
      font-family: var(--serif);
      font-size: clamp(1.5rem, 4vw, 3.5rem);
      color: var(--gold);
      letter-spacing: 0.02em;
      font-style: italic;
    }

    .final-cta {
      background: linear-gradient(160deg, rgba(201, 168, 76, 0.10) 0%, rgba(201, 168, 76, 0.04) 60%, rgba(10, 10, 10, 0) 100%);
      border-top: 1px solid rgba(201, 168, 76, 0.45);
      box-shadow:
        inset 0 1px 0 rgba(201, 168, 76, 0.15),
        0 -8px 40px rgba(201, 168, 76, 0.08);
      text-align: center;
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      pointer-events: none;
    }

    .final-cta h2 {
      font-size: clamp(2.2rem, 5vw, 4rem);
      margin-bottom: 10px;
    }

    .final-cta p {
      max-width: 520px;
      margin: 0 auto 48px;
    }

    .cta-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    .cta-shimmer {
      background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
      background-size: 200% auto;
      animation: shimmer 2.5s linear infinite, pulse-gold 3s infinite;
      color: var(--black);
      font-family: var(--mono);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 22px 56px;
      text-decoration: none;
      display: inline-block;
      cursor: pointer;
      border: none;
      transition: transform 0.15s;
    }

    .cta-shimmer:hover {
      transform: translateY(-3px);
      animation: none;
      background: var(--gold-light);
    }

    footer {
      border-top: 1px solid var(--border);
      padding: 40px 28px;
      text-align: center;
      font-family: var(--mono);
      font-size: 11px;
      color: var(--text-dim);
      letter-spacing: 0.08em;
    }

    .footer-social {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 24px;
      margin-bottom: 20px;
    }

    .footer-social a {
      color: var(--text-dim);
      transition: color 0.2s, transform 0.2s;
      display: flex;
      align-items: center;
    }

    .footer-social a:hover {
      color: var(--gold);
      transform: translateY(-2px);
    }

    .footer-links {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 28px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: var(--text-dim);
      text-decoration: none;
      font-size: 10px;
      letter-spacing: 0.1em;
      transition: color 0.2s;
    }

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

    @media (max-width: 640px) {

      .transformation-grid,
      .stat-grid,
      .profiles-grid {
        grid-template-columns: 1fr;
      }

      .pullquote {
        padding-left: 20px;
        font-size: 1.4rem;
      }

      nav {
        padding: 14px 20px;
      }

      .hero {
        padding: 100px 0 60px;
      }
    }

    code {
      font-family: var(--mono);
      font-size: 0.85em;
      color: var(--gold);
      background: var(--gold-dim);
      padding: 2px 7px;
      border-radius: 2px;
    }

    .about-section {
      background: var(--charcoal);
    }

    .about-grid {
      display: block;
      margin-top: 8px;
      width: 100%;
    }

    .about-text h2 {
      margin-bottom: 28px;
    }

    .about-credentials {
      margin: 40px 0;
      display: flex;
      flex-direction: column;
      gap: 0;
      border-top: 1px solid var(--border);
    }

    .credential-item {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      padding: 22px 0;
      border-bottom: 1px solid var(--border);
    }

    .credential-icon {
      color: var(--gold);
      font-size: 14px;
      flex-shrink: 0;
      margin-top: 3px;
      opacity: 0.6;
    }

    .credential-title {
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 5px;
    }

    .credential-desc {
      font-size: 0.84rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .about-vision {
      border-left: 2px solid var(--gold-dim);
      padding: 4px 0 4px 24px;
      margin-top: 8px;
    }

    .about-vision p {
      font-size: 0.95rem;
      color: var(--text-muted);
    }

    .about-vision strong {
      color: var(--text);
      font-weight: 500;
    }

    .about-aside {
      position: sticky;
      top: 100px;
      background: var(--surface);
      padding: 32px 28px;
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .aside-block {
      padding: 20px 0;
      text-align: center;
    }

    .aside-number {
      display: block;
      font-family: var(--serif);
      font-size: 2.8rem;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 6px;
    }

    .aside-label {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.1em;
      color: var(--text-dim);
      text-transform: uppercase;
      line-height: 1.5;
      display: block;
    }

    .aside-divider {
      height: 1px;
      background: var(--border);
      margin: 0;
    }

    .pricing-section {
      background: var(--black);
    }

    .pricing-section .container {
      overflow: visible;
    }

    .pricing-grid {
      display: flex;
      flex-direction: row;
      gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      align-items: stretch;
      cursor: grab;
      box-sizing: border-box;
      margin: 8px calc(-50vw + 50%) 0;
      width: 100vw;
      padding: 4px max(28px, calc((100vw - 3 * 360px - 2 * 20px) / 2)) 16px;
    }

    .pricing-grid:active {
      cursor: grabbing;
    }

    .pricing-grid::-webkit-scrollbar {
      display: none;
    }

    .pricing-card {
      flex: 0 0 340px;
      scroll-snap-align: start;
      background: linear-gradient(160deg, rgba(176, 184, 196, 0.10) 0%, rgba(176, 184, 196, 0.04) 60%, rgba(10, 10, 10, 0) 100%);
      border: 1px solid rgba(176, 184, 196, 0.45);
      box-shadow:
        0 0 0 1px rgba(176, 184, 196, 0.08),
        0 8px 40px rgba(176, 184, 196, 0.10),
        inset 0 1px 0 rgba(176, 184, 196, 0.15);
      padding: 24px 24px;
      display: flex;
      flex-direction: column;
      position: relative;
      flex: 0 0 clamp(260px, 30vw, 380px);
      scroll-snap-align: start;
    }

    .pricing-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--silver), transparent);
    }

    .pricing-card-body {
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .pricing-features {
      list-style: none;
      margin-bottom: 36px;
      flex: 1;
    }

    .pricing-card--featured {
      background: linear-gradient(160deg, rgba(201, 168, 76, 0.10) 0%, rgba(201, 168, 76, 0.04) 60%, rgba(10, 10, 10, 0) 100%);
      border: 1px solid rgba(201, 168, 76, 0.45);
      box-shadow:
        0 0 0 1px rgba(201, 168, 76, 0.08),
        0 8px 40px rgba(201, 168, 76, 0.10),
        inset 0 1px 0 rgba(201, 168, 76, 0.15);
    }

    .pricing-card--featured::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .pricing-card-header {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 16px;
    }

    .pricing-card-header-top {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .pricing-badge {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--black);
      background: linear-gradient(105deg, #a07828 0%, #e8c97a 35%, #c9a84c 50%, #f5e0a0 65%, #c9a84c 80%, #a07828 100%);
      background-size: 200% auto;
      animation: shimmer-gold 5s linear infinite;
      padding: 5px 14px;
      display: inline-block;
      margin-bottom: 16px;
      align-self: flex-start;
    }

    .pricing-badge--discovery {
      background: linear-gradient(105deg, #7a3a10 0%, #c87830 30%, #f0a060 50%, #c87830 70%, #7a3a10 100%);
      background-size: 200% auto;
      animation: shimmer-bronze 8s linear infinite;
      color: var(--black);
      -webkit-text-fill-color: var(--black);
      border: none;
    }

    .pricing-card--discovery {
      background: linear-gradient(160deg, rgba(180,100,40,0.10) 0%, rgba(180,100,40,0.04) 60%, rgba(10,10,10,0) 100%);
      border: 1px solid rgba(180,100,40,0.35);
      box-shadow:
        0 0 0 1px rgba(180,100,40,0.08),
        0 8px 40px rgba(180,100,40,0.10),
        inset 0 1px 0 rgba(210,130,60,0.12);
    }

    .pricing-card--discovery .pricing-formula-name {
      font-weight: 600;
      background: linear-gradient(105deg, #7a3a10 0%, #c87830 30%, #f0a060 50%, #c87830 70%, #7a3a10 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer-bronze 8s linear infinite;
      text-shadow: none;
    }
    @keyframes shimmer-bronze {
      0%   { background-position: 200% center; }
      100% { background-position: -200% center; }
    }
        @keyframes shimmer-silver {
      0%   { background-position: -200% center; }
      100% { background-position:  200% center; }
    }
        @keyframes shimmer-gold {
      0%   { background-position: -200% center; }
      100% { background-position:  200% center; }
    }

    .pricing-card--discovery .pricing-current {
      background: linear-gradient(105deg, #7a3a10 0%, #c87830 30%, #f0a060 50%, #c87830 70%, #7a3a10 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer-bronze 5s linear infinite;
      text-shadow: none;
    }

    .pricing-card--discovery .pricing-original {
      color: rgba(210,130,60,0.45);
    }

    .pricing-card--discovery .pf-check {
      color: rgba(210,130,60,0.85);
    }

    .pricing-card--discovery .pf-bonus {
      color: rgba(210,130,60,1);
    }

    .pricing-badge--standard {
      background: linear-gradient(105deg, #6a7480 0%, #d0d8e4 35%, #b0b8c4 50%, #eaf0f8 65%, #b0b8c4 80%, #6a7480 100%);
      background-size: 200% auto;
      animation: shimmer-silver 5s linear infinite;
      color: var(--black);
      border: none;
    }

    .pricing-formula-name {
      font-family: var(--serif);
      font-size: clamp(1.2rem, 2.5vw, 1.5rem);
      color: var(--text);
      margin-bottom: 6px;
    }

    .pricing-card:not(.pricing-card--featured):not(.pricing-card--discovery) .pricing-formula-name {
      background: linear-gradient(105deg, #6a7480 0%, #d0d8e4 30%, #ffffff 50%, #d0d8e4 70%, #6a7480 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer-silver 5s linear infinite;
      text-shadow: none;
    }

    .pricing-card--featured .pricing-formula-name {
      background: linear-gradient(105deg, #a07828 0%, #e8c97a 30%, #fffbe0 50%, #e8c97a 70%, #a07828 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer-gold 5s linear infinite;
      text-shadow: none;
    }

    .pricing-formula-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin-bottom: 8px;
      line-height: 1.5;
    }

    .pricing-amount {
      display: flex;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 8px;
      flex-wrap: nowrap;
    }

    .pricing-original {
      font-family: var(--mono);
      font-size: 1rem;
      color: var(--text-dim);
      text-decoration: line-through;
    }

    .pricing-current {
      font-family: var(--serif);
      font-size: clamp(28px, 3.5vw, 36px);
      color: var(--silver);
      line-height: 1;
    }

    .pricing-card:not(.pricing-card--featured):not(.pricing-card--discovery) .pricing-current {
      background: linear-gradient(105deg, #6a7480 0%, #d0d8e4 30%, #ffffff 50%, #d0d8e4 70%, #6a7480 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer-silver 5s linear infinite;
      text-shadow: none;
    }

    .pricing-card--featured .pricing-current {
      background: linear-gradient(105deg, #a07828 0%, #e8c97a 30%, #fffbe0 50%, #e8c97a 70%, #a07828 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer-gold 5s linear infinite;
      text-shadow: none;
    }

    .pricing-period {
      font-family: var(--mono);
      font-size: 10px;
      color: var(--text-dim);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      align-self: flex-end;
      padding-bottom: 6px;
    }

    .pricing-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 6px 0;
      border-bottom: 1px solid var(--border);
      font-size: clamp(0.85rem, 1.8vw, 0.9rem);
      color: var(--text-muted);
    }

    .pricing-card:not(.pricing-card--featured):not(.pricing-card--discovery) .pricing-original {
      color: rgba(160,170,185,0.55);
    }

    .pricing-card--featured .pricing-original {
      color: rgba(201,168,76,0.45);
    }

    .pricing-card:not(.pricing-card--featured) .pricing-features li {
      border-bottom-color: rgba(176, 184, 196, 0.10);
    }

    .pricing-card--featured .pricing-features li {
      border-bottom-color: rgba(201, 168, 76, 0.10);
    }

    .pricing-features li:last-child {
      border-bottom: none;
    }

    .pf-check {
      color: var(--text-dim);
      font-family: var(--mono);
      flex-shrink: 0;
      font-size: 12px;
      margin-top: 2px;
    }

    .pricing-card:not(.pricing-card--featured) .pf-check {
      color: rgba(176, 184, 196, 0.5);
    }

    .pricing-card--featured .pf-check {
      color: rgba(201, 168, 76, 0.5);
    }

    .pricing-card:not(.pricing-card--featured) .pf-bonus {
      color: var(--silver-light) !important;
    }

    .pricing-card--featured .pf-bonus {
      color: var(--gold) !important;
    }

    .pf-value {
      font-family: var(--mono);
      font-size: 10px;
      color: var(--silver);
      border: 1px solid var(--silver-dim);
      padding: 2px 7px;
      margin-left: 6px;
      white-space: nowrap;
      align-self: center;
    }

    .pricing-card--featured .pf-value {
      color: var(--gold);
      border-color: var(--gold-dim);
    }

    .pricing-features li strong {
      color: var(--text);
      font-weight: 500;
    }

    .pricing-cta {
      display: block;
      text-align: center;
      font-family: var(--mono);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 17px 24px;
      text-decoration: none;
      transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
      margin-bottom: 14px;
    }

    .pricing-cta--secondary {
      background: linear-gradient(105deg, #6a7480 0%, #d0d8e4 35%, #b0b8c4 50%, #eaf0f8 65%, #b0b8c4 80%, #6a7480 100%);
      background-size: 200% auto;
      animation: shimmer-silver 5s linear infinite;
      border: none;
      color: var(--black);
      font-weight: 700;
      box-shadow: 0 4px 20px rgba(176, 184, 196, 0.3);
    }

    .pricing-cta--secondary:hover {
      animation: none;
      background: linear-gradient(105deg, #8a9aaa 0%, #eaf0f8 40%, #ffffff 50%, #eaf0f8 60%, #8a9aaa 100%);
      border: none;
      color: var(--black);
      box-shadow: 0 6px 28px rgba(176, 184, 196, 0.55);
      transform: translateY(-2px);
    }

    .pricing-cta--primary {
      background: linear-gradient(105deg, #a07828 0%, #e8c97a 35%, #c9a84c 50%, #f5e0a0 65%, #c9a84c 80%, #a07828 100%);
      background-size: 200% auto;
      animation: shimmer-gold 5s linear infinite;
      color: var(--black);
      border: none;
      font-weight: 700;
      box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
    }

    .pricing-cta--primary:hover {
      animation: none;
      background: linear-gradient(105deg, #c09040 0%, #f5e0a0 40%, #fffbe0 50%, #f5e0a0 60%, #c09040 100%);
      border: none;
      box-shadow: 0 6px 28px rgba(201, 168, 76, 0.55);
      transform: translateY(-2px);
    }

    .pricing-cta--bronze {
      background: linear-gradient(105deg, #7a3a10 0%, #c87830 35%, #f0a060 50%, #c87830 65%, #7a3a10 100%);
      background-size: 200% auto;
      animation: shimmer-bronze 8s linear infinite;
      color: var(--black);
      border: none;
      font-weight: 700;
      box-shadow: 0 4px 20px rgba(180,100,40,0.30);
    }

    .pricing-cta--bronze:hover {
      animation: none;
      background: linear-gradient(105deg, #a05020 0%, #e09050 40%, #f8c080 50%, #e09050 60%, #a05020 100%);
      border: none;
      box-shadow: 0 6px 28px rgba(180,100,40,0.55);
      transform: translateY(-2px);
    }

    .pricing-reassurance {
      font-family: var(--mono);
      font-size: 10px;
      color: var(--text-dim);
      text-align: center;
      letter-spacing: 0.06em;
      margin-bottom: 0;
      line-height: 1.6;
    }

    .early-adopter-block {
      margin-top: 40px;
      border: 1px solid var(--gold-dim);
      background: rgba(201, 168, 76, 0.03);
      padding: 36px;
    }

    .early-adopter-label {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
    }

    .early-adopter-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px 40px;
    }

    .early-adopter-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }

    .early-adopter-footnote {
      font-family: var(--mono);
      font-size: 10px;
      font-style: italic;
      color: var(--text);
      margin-top: 16px;
      letter-spacing: 0.06em;
      opacity: 0.7;
    }

    .ea-icon {
      color: var(--gold);
      font-size: 16px;
      flex-shrink: 0;
      margin-top: 2px;
      opacity: 0.7;
    }

    .ea-title {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 5px;
    }

    .ea-desc {
      font-size: 0.83rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .ea-limits {
      list-style: none;
      margin-top: 10px;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .ea-limits li {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--text);
      line-height: 1.6;
      padding-left: 14px;
      position: relative;
      opacity: 0.8;
    }

    .ea-limits li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--gold);
      opacity: 0.6;
    }

    .calendar-block {
      margin-top: 40px;
      background: var(--surface);
      padding: 32px 36px;
      border-left: 2px solid var(--border);
    }

    .calendar-label {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 28px;
    }

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

    .calendar-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
      position: relative;
    }

    .calendar-item:last-child {
      border-bottom: none;
    }

    .cal-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--border);
      border: 2px solid var(--text-dim);
      flex-shrink: 0;
      margin-top: 5px;
    }

    .cal-dot--active {
      background: var(--gold);
      border-color: var(--gold);
      box-shadow: 0 0 8px rgba(201, 168, 76, 0.4);
    }

    .cal-dot--dim {
      opacity: 0.35;
    }

    .cal-title {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.08em;
      color: var(--text);
      margin-bottom: 5px;
      text-transform: uppercase;
    }

    .cal-desc {
      font-size: 0.87rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .urgency-line {
      margin-top: 32px;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 16px 20px;
      background: var(--surface);
      border-left: 2px solid var(--gold);
    }

    .urgency-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      animation: pulse-gold 2s infinite;
    }

    .reveal {
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.animate {
      opacity: 0;
      transform: translateY(24px);
    }

    .reveal.animate.visible {
      opacity: 1;
      transform: translateY(0);
    }

.mob-nav {
      position: fixed;
      z-index: 99;
      background: rgba(10, 10, 10, 0.92);
      backdrop-filter: blur(12px);
      border: 1px solid var(--border);
      display: flex;
    }

    /* ── MOBILE : barre horizontale en bas ── */
    @media (max-width: 768px) {
      .mob-nav {
        bottom: 0;
        left: 0;
        right: 0;
        flex-direction: row;
        overflow-x: auto;
        scrollbar-width: none;
        padding: 0;
        border-top: 1px solid var(--border);
        border-left: none;
        border-right: none;
        border-bottom: none;
      }
      .mob-nav::-webkit-scrollbar { display: none; }
    }

    /* ── DESKTOP : barre verticale à gauche ── */
    @media (min-width: 769px) {
      .mob-nav {
        display: flex;
        position: fixed;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        flex-direction: column;
        width: 72px;
        z-index: 9999;
        background: #0d0d0d;
        border: 1px solid #2a2a2a;
        border-left: none;
        border-radius: 0 6px 6px 0;
        padding: 8px 0;
        gap: 0;
        overflow-x: unset;
        overflow-y: unset;
      }
      .mob-nav a {
        width: 100%;
        min-width: unset;
        padding: 12px 6px;
        font-size: 8px;
        border-left: 2px solid transparent;
        flex: 0 0 auto;
      }

      .mob-nav a.active {
        border-left: 2px solid var(--gold);
      }

      .mob-nav a span:first-child {
        font-size: 16px;
      }
    }

    .mob-nav a {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      padding: 10px 8px;
      text-decoration: none;
      color: var(--text-dim);
      font-family: var(--mono);
      font-size: 9px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: color 0.2s, background 0.2s;
      flex-shrink: 0;
      min-width: 56px;
      text-align: center;
      line-height: 1.3;
    }

    @media (min-width: 769px) {
      .mob-nav a {
        width: 100%;
        min-width: unset;
        padding: 12px 6px;
        font-size: 8px;
        border-left: 2px solid transparent;
      }
    }

    .mob-nav a span:first-child {
      font-size: 16px;
      line-height: 1;
    }

    .mob-nav a:hover,
    .mob-nav a.active {
      color: var(--gold);
      background: rgba(201, 168, 76, 0.06);
    }

    @media (min-width: 769px) {
      .mob-nav a.active {
        border-left: 2px solid var(--gold);
      }
    }

    @media (max-width: 768px) {
      body {
        padding-bottom: 58px;
      }

      section {
        padding: 72px 0;
      }

      .container,
      .container--wide {
        padding: 0 20px;
      }
    }

    @media (min-width: 769px) {
      .container,
      .container--wide {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        padding-left: 15%;
        padding-right: 14%;
      }

      /* Sections avec container centré par design — on conserve leur centrage */
      .identity-section .container,
      .final-cta .container {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
      }

      /* Largeur max du texte pour la lisibilité sur très grands écrans */
      .hero-sub,
      .final-cta p {
        max-width: 680px;
      }
    }

    @media (max-width: 600px) {
      .transformation-grid {
        grid-template-columns: 1fr;
      }

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

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

    /* ── HERO CHAIN ── */
    .hero-chain {
      margin: 56px auto 0;
      width: 100%;
    }

    .hero-chain svg {
      width: 100%;
      height: auto;
      display: block;
    }

    @keyframes blockAppear {
      from {
        opacity: 0;
        transform: translateY(12px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes connectorDraw {
      from {
        stroke-dashoffset: 50;
        opacity: 0;
      }

      to {
        stroke-dashoffset: 0;
        opacity: 1;
      }
    }

    @keyframes txBounce {

      0%,
      100% {
        transform: translateY(0);
        opacity: 0.5;
      }

      50% {
        transform: translateY(-5px);
        opacity: 1;
      }
    }

    @keyframes miningFill {
      0% {
        width: 0;
      }

      80% {
        width: 88px;
      }

      90% {
        width: 88px;
      }

      100% {
        width: 0;
      }
    }

    @keyframes blockPulse {

      0%,
      100% {
        opacity: 0.5;
      }

      50% {
        opacity: 1;
      }
    }

    .cb1 {
      animation: blockAppear 0.7s ease 0.2s both;
    }

    .cb2 {
      animation: blockAppear 0.7s ease 0.8s both;
    }

    .cb3 {
      animation: blockAppear 0.7s ease 1.4s both, blockPulse 2.5s ease 2.2s infinite;
    }

    .cc1 line {
      stroke-dasharray: 50;
      animation: connectorDraw 0.4s ease 0.6s both;
    }

    .cc2 line {
      stroke-dasharray: 50;
      animation: connectorDraw 0.4s ease 1.2s both;
    }

    .cc1 polygon {
      animation: blockAppear 0.3s ease 1.0s both;
    }

    .cc2 polygon {
      animation: blockAppear 0.3s ease 1.6s both;
    }

    .tp1 {
      animation: txBounce 2.8s ease-in-out 2s infinite;
    }

    .tp2 {
      animation: txBounce 3.4s ease-in-out 2.5s infinite;
    }

    .mb {
      animation: miningFill 2.8s ease-in-out 2s infinite;
    }

    /* ── HEX PATTERN on modules ── */
    .modules-section {
      background: var(--black);
      position: relative;
    }

    .modules-section .container {
      position: relative;
      z-index: 1;
    }

    /* ── HERO NODE NETWORK ── */
    .hero-canvas-wrap {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    #hero-canvas {
      width: 100%;
      height: 100%;
      display: block;
    }

    #globe-canvas {
      width: 100%;
      height: 100%;
      display: block;
    }

    .hero .container {
      position: relative;
      z-index: 1;
    }

    /* ── CODE RAIN (programme section) ── */
    .modules-section .container {
      position: relative;
      z-index: 1;
    }

    .code-rain-wrap {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    #code-rain-canvas {
      width: 100%;
      height: 100%;
      display: block;
    }

    /* ── LIVE COUNTER (marché section) ── */
    .live-counter {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0;
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.06em;
      color: var(--text-muted);
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      border-left: 3px solid var(--gold);
      padding: 0;
      margin-bottom: 0;
      margin-top: 48px;
      width: 100%;
    }

    .live-counter-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3px;
      flex: 1;
      padding: 10px 10px;
      border-right: 1px solid var(--border);
    }

    .live-counter-item:last-child {
      border-right: none;
    }

    .live-counter-label {
      font-size: 7px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-dim);
    }

    .live-counter-value {
      font-size: 0.85rem;
      color: var(--gold);
      font-family: var(--mono);
      letter-spacing: 0.04em;
      transition: opacity 0.15s;
    }

    .live-counter-value.flash {
      opacity: 0.3;
    }

    .live-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      animation: pulse-gold 1.5s infinite;
      margin-bottom: 2px;
    }

    .live-hash {
      color: var(--gold);
      letter-spacing: 0.05em;
    }

    .live-block {
      color: var(--text-muted);
    }

    /* ── MODULE HOVER ── */
    .module-tags {
      transition: transform 0.3s ease;
    }

    .module-num {
      transition: color 0.25s;
    }

    /* ── SECTOR HOVER ── */
    @keyframes hexSpin {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    .sector-icon {
      display: inline-block;
      animation: hexSpin 6s linear infinite;
    }

    .sector-item {
      transition: background 0.2s, color 0.2s, padding-left 0.2s;
    }

    /* ── COMPANY PILL HOVER ── */
    .company-pill {
      transition: border-color 0.2s, color 0.2s, box-shadow 0.2s, background 0.2s;
      cursor: default;
    }

    .company-pill:hover {
      border-color: rgba(201, 168, 76, 0.5);
      color: var(--gold);
      background: rgba(201, 168, 76, 0.06);
      box-shadow: 0 0 10px rgba(201, 168, 76, 0.12);
    }

    /* ── SPINNING HEX ── */
    .hex-spin {
      display: inline-block;
      animation: hexSpin 6s linear infinite;
      -webkit-text-stroke: 0.4px currentColor;
      filter: drop-shadow(0 0 1px currentColor);
    }

    /* ── FRUSTRATION SCAN ANIMATION ── */
    .frustration-list li {
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform: translateX(-8px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .frustration-list li.scanned {
      opacity: 1;
      transform: translateX(0);
    }

    .frustration-list li::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      bottom: 0;
      width: 100%;
      background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 76, 0.12) 50%, transparent 100%);
      transition: none;
    }

    .frustration-list li.scanning::after {
      left: 100%;
      transition: left 1.4s ease;
    }

    .frustration-list li .scan-x {
      transition: color 0.2s, text-shadow 0.2s;
      font-size: 1.3rem;
      line-height: 1;
      margin-top: 2px;
    }

    .frustration-list li.scanning .scan-x {
      color: rgba(200, 80, 50, 0.9);
      text-shadow: 0 0 8px rgba(200, 80, 50, 0.6);
    }

    .frustration-list li.scanned .scan-x {
      color: rgba(200, 80, 50, 0.85);
      text-shadow: 0 0 8px rgba(200, 80, 50, 0.5);
      animation: xPulse 2.5s ease-in-out infinite;
    }

    @keyframes xPulse {

      0%,
      100% {
        color: rgba(200, 80, 50, 0.7);
        text-shadow: 0 0 4px rgba(200, 80, 50, 0.3);
      }

      50% {
        color: rgba(220, 100, 60, 1);
        text-shadow: 0 0 12px rgba(220, 100, 60, 0.7);
      }
    }

    /* ══════════════════════════════════════
     RESPONSIVE FIXES
  ══════════════════════════════════════ */
    /* ── EARLY ADOPTER GRID ── */
    @media (max-width: 600px) {
      .early-adopter-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    /* ── STAT GRID ── */
    @media (max-width: 560px) {
      .stat-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ── FINAL CTA ── */
    @media (max-width: 768px) {
      .final-cta {
        padding: 72px 0;
      }

      .cta-shimmer {
        padding: 18px 32px;
        font-size: 12px;
      }
    }

    @media (max-width: 480px) {
      .final-cta {
        padding: 56px 0;
      }
    }

    /* ── HERO CHAIN SVG ── */
    @media (max-width: 560px) {
      .hero-chain {
        max-width: 100%;
        margin-top: 36px;
      }
    }

    /* ── FAQ ── */
    @media (max-width: 480px) {
      .faq-q {
        gap: 10px;
        font-size: 0.88rem;
      }

      .faq-item {
        padding: 12px 0;
      }
    }

    /* ── SECTION LABELS ── */
    @media (max-width: 480px) {
      .section-label {
        font-size: 10px;
        gap: 8px;
        margin-bottom: 32px;
      }

      .section-label::before {
        width: 12px;
      }
    }

    /* ── PULLQUOTE ── */
    @media (max-width: 400px) {
      .pullquote {
        padding-left: 14px;
        font-size: 1.25rem;
        border-left-width: 2px;
      }
    }

    /* ── PRICING CARDS — tighter on very small screens ── */
    @media (max-width: 640px) {
      .pricing-grid {
        gap: 16px;
        padding: 4px 20px 16px;
        margin: 8px -20px 0;
        width: 100vw;
        justify-content: flex-start;
      }

      .pricing-card {
        flex: 0 0 82vw;
        max-width: 360px;
        min-width: 260px;
        padding: 28px 24px;
        height: auto;
      }

      .early-adopter-grid {
        grid-template-columns: 1fr;
      }

      .early-adopter-block {
        padding: 24px 20px;
      }

      .calendar-block {
        padding: 24px 20px;
      }
    }

    @media (min-width: 641px) and (max-width: 1024px) {
      .pricing-grid {
        gap: 16px;
        padding: 4px 20px 16px;
        margin: 8px calc(-50vw + 50%) 0;
        width: 100vw;
        justify-content: flex-start;
      }

      .pricing-card {
        flex: 0 0 72vw;
        max-width: 400px;
        min-width: 280px;
        padding: 28px 24px;
        height: auto;
      }

      .pricing-carousel-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-family: var(--mono);
        font-size: 16px;
        letter-spacing: 0.14em;
        color: var(--gold);
        margin-bottom: 10px;
        text-transform: uppercase;
      }

      .hint-arrow {
        display: inline-block;
        color: var(--gold);
        animation: hintSlide 1.6s ease-in-out infinite;
      }
    }
    
    
    @media (max-width: 380px) {
      .pricing-card {
        flex: 0 0 92vw;
        padding: 22px 18px;
      }

      .pricing-current {
        font-size: 1.7rem;
      }

      .pricing-formula-name {
        font-size: 1.4rem;
      }
    }

    /* ══════════════════════════════════════════
      CLIMATE BLOCK
    ══════════════════════════════════════════ */
    .climate-block {
      display: flex;
      align-items: center;
      gap: 24px;
      margin: 32px 0 0;
      padding: 24px 28px;
      border: 1px solid rgba(64,145,108,0.25);
      border-radius: 4px;
      background: rgba(45,106,79,0.05);
      position: relative;
      overflow: hidden;
    }

    .climate-block::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 0% 50%, rgba(64,145,108,0.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .climate-leaf {
      flex-shrink: 0;
      opacity: 0.85;
    }

    .climate-content {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .climate-label {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .climate-badge {
      font-family: var(--mono);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(116,198,157,0.90);
      background: rgba(64,145,108,0.12);
      border: 1px solid rgba(64,145,108,0.30);
      padding: 3px 8px;
      border-radius: 2px;
    }

    .climate-text {
      font-family: var(--mono);
      font-size: 11px;
      color: rgba(116,198,157,0.65);
      letter-spacing: 0.05em;
      line-height: 1.7;
      margin: 0;
    }

    .climate-text strong {
      color: rgba(116,198,157,0.90);
    }

    .climate-link {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.10em;
      color: rgba(116,198,157,0.55);
      text-decoration: none;
      transition: color 0.2s;
    }

    .climate-link:hover {
      color: rgba(116,198,157,0.95);
    }

    @media (max-width: 480px) {
      .climate-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
      }
    }

    /* ══════════════════════════════════════════
      CRYPTO PAYMENT BLOCK
    ══════════════════════════════════════════ */
    .crypto-payment-block {
      margin: 40px 0 32px;
      border: 1px solid rgba(201,168,76,0.20);
      border-radius: 4px;
      background: rgba(201,168,76,0.04);
      padding: 18px 24px;
    }

    .crypto-payment-inner {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .crypto-icon {
      font-size: 22px;
      color: var(--gold);
      opacity: 0.7;
      flex-shrink: 0;
    }

    .crypto-payment-text {
      display: flex;
      flex-direction: column;
      gap: 3px;
      flex: 1;
    }

    .crypto-title {
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(232,201,122,0.90);
    }

    .crypto-subtitle {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.08em;
      color: rgba(201,168,76,0.55);
      font-style: italic;
    }

    .crypto-payment-link {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(232,201,122,0.80);
      text-decoration: none;
      border: 1px solid rgba(201,168,76,0.30);
      padding: 8px 16px;
      border-radius: 3px;
      white-space: nowrap;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
      flex-shrink: 0;
    }

    .crypto-payment-link:hover {
      color: rgba(232,201,122,1);
      border-color: rgba(201,168,76,0.70);
      background: rgba(201,168,76,0.08);
    }

    /* ══════════════════════════════════════════
      DONATION BLOCK
    ══════════════════════════════════════════ */
    .donation-block {
      margin: 32px 0 32px;
      border: 1px solid rgba(120,80,40,0.25);
      border-radius: 4px;
      background: rgba(80,40,10,0.06);
      padding: 18px 24px;
    }

    .donation-inner {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .donation-icon {
      font-size: 22px;
      flex-shrink: 0;
      opacity: 0.8;
    }

    .donation-text {
      display: flex;
      flex-direction: column;
      gap: 3px;
      flex: 1;
    }

    .donation-title {
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(210,160,80,0.85);
    }

    .donation-subtitle {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.06em;
      color: rgba(200,150,80,0.55);
      font-style: italic;
      line-height: 1.6;
    }

    .donation-link {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(210,160,80,0.75);
      text-decoration: none;
      border: 1px solid rgba(180,120,40,0.30);
      padding: 8px 16px;
      border-radius: 3px;
      white-space: nowrap;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
      flex-shrink: 0;
    }

    .donation-link:hover {
      color: rgba(232,190,100,1);
      border-color: rgba(210,160,80,0.60);
      background: rgba(180,120,40,0.08);
    }

    /* ── CALENDAR BLOCK ── */
    .cal-tag {
      font-family: var(--mono);
      font-size: 8px;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: rgba(201,168,76,0.6);
      border: 1px solid rgba(201,168,76,0.25);
      padding: 2px 6px;
      border-radius: 2px;
      vertical-align: middle;
      margin-left: 8px;
    }

    .cal-tag--premium {
      color: rgba(232,201,122,0.75);
      border-color: rgba(232,201,122,0.30);
    }

    .cal-premium-note {
      display: block;
      margin-top: 6px;
      font-style: italic;
      color: rgba(201,168,76,0.65);
      font-size: 0.92em;
    }
    @media (max-width: 480px) {
      .calendar-item {
        gap: 12px;
      }

      .cal-title {
        font-size: 10px;
      }

      .cal-desc {
        font-size: 0.82rem;
      }
    }

    /* ── TRANSFORMATION GRID ── */
    @media (max-width: 480px) {
      .transform-col {
        padding: 20px 16px;
      }

      .transform-item {
        font-size: 0.86rem;
      }
    }

    /* ── FRUSTRATION LIST ── */
    @media (max-width: 480px) {
      .frustration-list li {
        font-size: 0.9rem;
        padding: 14px 0;
        gap: 12px;
      }

      .scan-x {
        font-size: 1.1rem !important;
      }
    }

    /* ── PROFILES GRID ── */
    @media (max-width: 480px) {
      .profile-card {
        padding: 20px 16px;
      }

      .profile-icon {
        font-size: 18px;
      }
    }

    /* ── IDENTITY SECTION ── */
    @media (max-width: 480px) {
      .identity-quote {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        margin: 28px 0 16px;
      }
    }

    /* ── NAV LOGO truncation ── */
    @media (max-width: 360px) {
      .nav-logo {
        font-size: 10px;
      }
    }

    /* ══════════════════════════════════════
     SECTION 7 — RESPONSIVE
    ══════════════════════════════════════ */
    /* Tablet — aside moves below text as horizontal strip */
    @media (max-width: 900px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .about-aside {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
        padding: 0;
        border: none;
        background: var(--border);
      }

      .about-aside .aside-block {
        background: var(--surface);
        padding: 20px 16px;
      }

      .about-aside .aside-divider {
        display: none;
      }

      .about-aside .aside-tag {
        display: none;
      }

      .aside-number {
        font-size: 2.2rem;
      }
    }

    /* Mobile — aside strip becomes 2 columns */
    @media (max-width: 560px) {
      .about-aside {
        grid-template-columns: repeat(2, 1fr);
      }

      .aside-number {
        font-size: 1.9rem;
      }

      .aside-label {
        font-size: 9px;
      }

      .about-text h2 {
        margin-bottom: 20px;
      }
    }

    /* Credentials — tighter on small screens */
    @media (max-width: 560px) {
      .credential-item {
        gap: 12px;
        padding: 16px 0;
      }

      .credential-title {
        font-size: 0.88rem;
      }

      .credential-desc {
        font-size: 0.80rem;
        line-height: 1.6;
      }

      .credential-icon {
        font-size: 12px;
      }
    }

    /* About vision */
    @media (max-width: 560px) {
      .about-vision {
        padding-left: 16px;
        border-left-width: 1px;
      }

      .about-vision p {
        font-size: 0.88rem;
      }
    }

    /* Aside tags mobile strip */
    @media (max-width: 560px) {}

    /* Very small — aside strip becomes single column */
    @media (max-width: 360px) {
      .about-aside {
        grid-template-columns: 1fr;
      }

      .credential-item {
        gap: 10px;
        padding: 14px 0;
      }

      .about-section .section-label {
        margin-bottom: 28px;
      }
    }

    /* ── PRICING CAROUSEL MOBILE ── */
    @media (max-width: 640px) {
      .pricing-carousel-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-family: var(--mono);
        font-size: 16px;
        letter-spacing: 0.14em;
        color: var(--gold);
        margin-bottom: 10px;
        text-transform: uppercase;
      }

      .hint-arrow {
        display: inline-block;
        color: var(--gold);
        animation: hintSlide 1.6s ease-in-out infinite;
      }

      @keyframes hintSlide {

        0%,
        100% {
          transform: translateX(0);
          opacity: 0.4;
        }

        50% {
          transform: translateX(6px);
          opacity: 1;
        }
      }

      .pricing-intro-text {
        display: block;
        text-align: center;
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 0.1em;
        color: var(--text-muted);
        margin-bottom: 6px;
      }

      .pricing-intro-text strong {
        color: var(--gold);
      }

      .pricing-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
      }

      .pricing-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--border);
        transition: background 0.3s, transform 0.3s;
      }

      .pricing-dot.active {
        background: var(--gold);
        transform: scale(1.3);
      }
    }

    /* Hide hint/dots on large desktop only */
    @media (min-width: 1025px) {
      .pricing-carousel-hint,
      .pricing-intro-text,
      .pricing-dots {
        display: none !important;
      }
    }

    /* ── SECTION 7 — TX FLUX ── */
    .about-canvas-wrap {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    #about-canvas {
      width: 100%;
      height: 100%;
      display: block;
    }

    .about-section {
      position: relative;
      overflow: hidden;
    }

    .about-canvas-wrap {
      opacity: 0.75;
    }

    .about-section .container {
      position: relative;
      z-index: 1;
    }

    .about-section .container::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(17, 17, 17, 0.55);
      pointer-events: none;
      z-index: -1;
      filter: blur(20px);
    }

    /* ── SECTION 10 — PARTICLES ── */
    .identity-canvas-wrap {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    #identity-canvas {
      width: 100%;
      height: 100%;
      display: block;
    }

    .final-cta {
      position: relative;
      overflow: hidden;
    }

    .final-cta .container {
      position: relative;
      z-index: 1;
    }

    /* ── IDENTITY SECTION — WAVE ── */
    .wave-canvas-wrap {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    #wave-canvas {
      width: 100%;
      height: 100%;
      display: block;
    }

    .identity-section .container {
      position: relative;
      z-index: 1;
    }

    /* ── LIVE COUNTER MOBILE — single row, fluid ── */
    @media (max-width: 768px) {
      .live-counter {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: hidden;
        font-size: clamp(6px, 1.8vw, 11px);
        margin-top: 28px;
        border-left-width: 2px;
        width: 100%;
        box-sizing: border-box;
      }

      .live-counter-item {
        flex: 1 1 0;
        min-width: 0;
        padding: clamp(5px, 1.2vw, 10px) clamp(3px, 1vw, 8px);
        gap: 2px;
        border-right: 1px solid var(--border);
        border-bottom: none;
        overflow: hidden;
      }

      .live-counter-label {
        font-size: clamp(5px, 1.1vw, 7px);
        letter-spacing: 0.06em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
      }

      .live-counter-value {
        font-size: clamp(7px, 1.6vw, 12px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
      }

      #lc-hash {
        font-size: clamp(6px, 1.3vw, 10px) !important;
      }

      .live-dot {
        width: clamp(3px, 0.6vw, 4px);
        height: clamp(3px, 0.6vw, 4px);
      }
    }

    @media (max-width: 480px) {
      .live-counter {
        font-size: clamp(5px, 2vw, 8px);
      }

      .live-counter-item {
        padding: 4px clamp(3px, 1.5vw, 6px);

        .live-counter-value {
          font-size: clamp(7px, 2.5vw, 11px);
        }
      }}

      /* ── SECTION 3 — MEMPOOL ── */
      .mempool-wrap {
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        overflow: hidden;
        opacity: 0.75;
      }

      #mempool-canvas {
        width: 100%;
        height: 100%;
        display: block;
      }

      .proof-section {
        position: relative;
        overflow: hidden;
      }

      .proof-section .container--wide {
        position: relative;
        z-index: 1;
      }

      .proof-section .container--wide::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(17, 17, 17, 0.50);
        pointer-events: none;
        z-index: -1;
        filter: blur(20px);
      }

      /* ── SECTION 3 — transparent content over mempool ── */
      .proof-section .stat-block {
        background: rgba(28, 24, 16, 0.38) !important;
        backdrop-filter: blur(3px);
        border-bottom: 1px solid rgba(201, 168, 76, 0.08);
      }

      .proof-section .stat-grid {
        background: transparent;
        gap: 3px;
      }

      .proof-section .sector-item {
        background: rgba(28, 24, 16, 0.38) !important;
        backdrop-filter: blur(3px);
      }

      .proof-section .sector-grid {
        background: transparent;
        gap: 3px;
      }

      .proof-section .sector-item {
        background: rgba(17, 17, 17, 0.30) !important;
        backdrop-filter: blur(3px);
      }

      .proof-section .company-pill {
        background: rgba(17, 17, 17, 0.65) !important;
        backdrop-filter: blur(2px);
      }

      .proof-section .stat-grid {
        background: transparent;
      }

      .proof-section .sector-grid {
        background: transparent;
        gap: 3px;
      }

      /* ── SECTION 4 — TRANSFORMATION GOLD GRADIENT ── */
      #section-transformation {
        background: linear-gradient(160deg, rgba(201, 168, 76, 0.10) 0%, rgba(201, 168, 76, 0.04) 60%, rgba(10, 10, 10, 0) 100%);
        position: relative;
        overflow: hidden;
      }

      #section-transformation::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        pointer-events: none;
      }

      #section-transformation::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        pointer-events: none;
      }

      #section-transformation .container {
        position: relative;
        z-index: 1;
      }

      /* ── MODULE CAROUSEL ── */
      /* ── MODULES GRID ── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 48px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .modules-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .modules-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.module-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold-dim);
  padding: 20px 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.module-card:hover {
  border-left-color: var(--gold);
  background: var(--surface2);
  transform: translateY(-2px);
}

.module-card-num {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: rgba(201, 168, 76, 0.30);
  line-height: 1;
}

.module-card-title {
  font-family: var(--serif);
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
  color: var(--text);
  line-height: 1.3;
}

.module-card-hint {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: auto;
}

/* ── MODULE MODAL ── */
.module-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(4px);
}

.module-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.module-modal {
  background: var(--charcoal);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-left: 2px solid var(--gold);
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  padding: 40px 36px;
  transform: translateY(16px);
  transition: transform 0.25s ease;
}

.module-modal-overlay.open .module-modal {
  transform: translateY(0);
}

.module-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-dim);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  transition: border-color 0.2s, color 0.2s;
}

.module-modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Contenu injecté dans le modal */
.module-modal-num {
  font-family: var(--serif);
  font-size: 3rem;
  color: rgba(201, 168, 76, 0.20);
  line-height: 1;
  margin-bottom: 4px;
}

.module-modal-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.50);
  margin-bottom: 10px;
}

.module-modal-title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}

.module-modal-divider {
  height: 1px;
  background: rgba(201, 168, 76, 0.08);
  margin-bottom: 20px;
}

.module-modal-desc {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.78;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.module-modal-keywords {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.10em;
  color: rgba(201, 168, 76, 0.38);
  border-top: 1px solid rgba(201, 168, 76, 0.07);
  padding-top: 12px;
  margin-bottom: 16px;
  line-height: 1.8;
}

.module-modal-keywords span {
  color: rgba(201, 168, 76, 0.55);
}

.module-modal-projet {
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.16);
  border-left: 2px solid rgba(201, 168, 76, 0.50);
  border-radius: 0 3px 3px 0;
  padding: 14px 18px;
  margin-top: 8px;
}

.module-modal-projet + .module-modal-projet {
  margin-top: 8px;
}

.module-modal-projet-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.55);
  margin-bottom: 5px;
}

.module-modal-projet-name {
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(232, 201, 122, 0.88);
  margin-bottom: 5px;
}

.module-modal-projet-desc {
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(201, 168, 76, 0.50);
}

      /* ── SECTION MODULE 0 — VIDEO ── */
      .module0-section {
        background: var(--black);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
      }

      .module0-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201, 168, 76, 0.06), transparent);
        pointer-events: none;
      }

      .module0-section .container {
        position: relative;
        z-index: 1;
      }

      .module0-header {
        text-align: left;
        margin-bottom: 48px;
      }

      .module0-header h2 {
        font-family: var(--serif);
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
        color: var(--text);
        margin-bottom: 16px;
      }

      .module0-header p {
        font-size: 1rem;
        color: var(--text-muted);
        max-width: 560px;
        margin: 0;
        line-height: 1.7;
      }

      .module0-header p em {
        color: var(--gold);
        font-style: normal;
      }

      /* Video wrapper — 16:9 responsive */
      .video-wrap {
        position: relative;
        width: 100%;
        max-width: 820px;
        margin: 0 auto;
        aspect-ratio: 16 / 9;
        background: #000;
        border: 1px solid rgba(201, 168, 76, 0.25);
        box-shadow: 0 0 60px rgba(201, 168, 76, 0.08), 0 24px 64px rgba(0, 0, 0, 0.6);
      }

      .video-wrap iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: none;
        display: block;
        pointer-events: auto;
      }

      /* Overlay to block YouTube interactions (suggestions, logo, link) */
      .video-overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
        cursor: default;
        /* Only cover the bottom bar & YouTube logo — not the play button */
        background: transparent;
        pointer-events: none;
      }

      /* Bottom bar blocker */
      .video-overlay-bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 52px;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
        z-index: 3;
        pointer-events: none;
        cursor: default;
      }

      /* Top-right YouTube logo blocker */
      .video-overlay-topright {
        position: absolute;
        top: 0;
        right: 0;
        width: 140px;
        height: 48px;
        background: rgba(0, 0, 0, 0.01);
        z-index: 3;
        pointer-events: none;
        cursor: default;
      }

      /* After video ends — block suggestions */
      .video-overlay-center {
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
      }

      .video-note {
        text-align: center;
        margin-top: 20px;
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: 0.12em;
        color: var(--text-dim);
        text-transform: uppercase;
      }

      .video-note span {
        color: rgba(201, 168, 76, 0.5);
      }

      @media (max-width: 600px) {
        .module0-section {
          padding: 72px 0;
        }

        .module0-header h2 {
          font-size: 1.6rem;
        }
      }

      /* ── SECTOR WORD CLOUD ── */
      .sector-cloud {
        position: relative;
        width: 100%;
        height: 320px;
        margin: 48px 0;
        overflow: hidden;
      }

      @media (max-width: 640px) {
        .sector-cloud {
          height: 420px;
        }
      }

      .sector-bubble {
        position: absolute;
        display: inline-flex;
        align-items: center;
        gap: clamp(4px, 1vw, 8px);
        padding: clamp(5px, 1.2vw, 9px) clamp(8px, 2vw, 16px);
        background: rgba(28, 24, 16, 0.38);
        border: 1px solid rgba(201, 168, 76, 0.20);
        backdrop-filter: blur(3px);
        font-family: var(--mono);
        font-size: clamp(8px, 1.8vw, 11px);
        letter-spacing: 0.06em;
        color: var(--text-muted);
        white-space: nowrap;
        cursor: default;
        transition: color 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s;
        user-select: none;
        will-change: transform;
      }

      .sector-bubble:hover {
        color: var(--gold);
        border-color: rgba(201, 168, 76, 0.55);
        background: rgba(201, 168, 76, 0.08);
        box-shadow: 0 0 16px rgba(201, 168, 76, 0.15);
        z-index: 10;
      }

      .sector-hex {
        color: rgba(201, 168, 76, 0.7);
        font-size: 13px;
        display: inline-block;
        animation: hexSpin 6s linear infinite;
        flex-shrink: 0;
      }

      /* ── EMPLOYER CAROUSEL ── */
      .employer-carousel-wrap {
        margin: 48px 0 0;
        position: relative;
      }

      .ec-track-outer {
        overflow: hidden;
        width: 100%;
        background: var(--surface);
        border-top: 1px solid rgba(201, 168, 76, 0.20);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
      }
      .ec-track {
        display: flex;
        transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        will-change: transform;
      }

      .ec-slide {
        flex: 0 0 100%;
        min-width: 0;
        padding: 32px 36px;
      }

      .ec-label {
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 24px;
        opacity: 0.8;
      }

      .ec-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      .ec-pill {
        font-family: var(--mono);
        font-size: 12px;
        color: var(--text-muted);
        letter-spacing: 0.06em;
        padding: 0;
      }

      .ec-pill::before {
        content: '◈ ';
        color: var(--text-dim);
        font-size: 9px;
      }

      .ec-pill.lit {
        color: var(--gold);
        border-color: rgba(201, 168, 76, 0.65);
        background: rgba(201, 168, 76, 0.10);
        box-shadow: 0 0 14px rgba(201, 168, 76, 0.25), inset 0 0 6px rgba(201, 168, 76, 0.08);
      }

      /* Pagination dots */
      .ec-dots {
        display: none;
      }

      @media (max-width: 640px) {
        .ec-slide {
          padding: 24px 20px;
        }
      }

      /* ── STATS ACCORDION (mobile only) ── */
      @media (max-width: 640px) {
        .stat-grid {
          display: none !important;
        }

        .stat-accordion {
          display: flex;
          flex-direction: column;
          gap: 0;
          margin: 48px 0;
          border-top: 1px solid var(--border);
        }

        .stat-acc-item {
          border-bottom: 1px solid var(--border);
          overflow: hidden;
        }

        .stat-acc-trigger {
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 18px 4px;
          cursor: pointer;
          gap: 16px;
          user-select: none;
          -webkit-tap-highlight-color: transparent;
        }

        .stat-acc-number {
          font-family: var(--serif);
          font-size: 2rem;
          color: var(--gold);
          line-height: 1;
          flex-shrink: 0;
          min-width: 72px;
        }

        .stat-acc-short {
          font-family: var(--mono);
          font-size: 11px;
          letter-spacing: 0.06em;
          color: var(--text-muted);
          flex: 1;
          line-height: 1.4;
        }

        .stat-acc-chevron {
          font-family: var(--mono);
          font-size: 14px;
          color: var(--gold);
          transition: transform 0.3s ease;
          flex-shrink: 0;
          opacity: 0.7;
        }

        .stat-acc-item.open .stat-acc-chevron {
          transform: rotate(180deg);
        }

        .stat-acc-body {
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .stat-acc-item.open .stat-acc-body {
          max-height: 120px;
        }

        .stat-acc-desc {
          font-size: 0.88rem;
          color: var(--text-muted);
          line-height: 1.65;
          padding: 0 4px 20px;
          border-left: 2px solid var(--gold);
          padding-left: 16px;
          margin-left: 4px;
        }
      }

      /* Hide accordion on desktop */
      @media (min-width: 641px) {
        .stat-accordion {
          display: none !important;
        }
      }

      /* ── TRANSFORMATION — mobile horizontal snap ── */
      @media (max-width: 640px) {
        .transformation-grid {
          display: flex;
          flex-direction: row;
          gap: 0;
          overflow-x: auto;
          scroll-snap-type: x mandatory;
          -webkit-overflow-scrolling: touch;
          scrollbar-width: none;
          background: transparent;
          margin-left: -20px;
          margin-right: -20px;
          padding: 0 20px 16px;
        }

        .transformation-grid::-webkit-scrollbar {
          display: none;
        }

        .transform-col {
          flex: 0 0 82vw;
          max-width: 320px;
          scroll-snap-align: start;
          padding: 24px 20px;
          margin-right: 2px;
        }

        .transform-col:last-child {
          margin-right: 0;
        }

        .transform-label {
          margin-bottom: 20px;
        }

        .transform-item {
          font-size: 0.88rem;
          padding: 10px 0;
        }
      }

      /* ── PROFILES GRID — mobile horizontal snap + auto-swipe ── */
      @media (max-width: 640px) {
        .profiles-grid {
          display: flex;
          flex-direction: row;
          gap: 0;
          overflow-x: auto;
          scroll-snap-type: x mandatory;
          -webkit-overflow-scrolling: touch;
          scrollbar-width: none;
          background: transparent;
          margin-left: -20px;
          margin-right: -20px;
          padding: 0 20px 16px;
          margin-top: 32px;
        }

        .profiles-grid::-webkit-scrollbar {
          display: none;
        }

        .profile-card {
          flex: 0 0 78vw;
          max-width: 300px;
          scroll-snap-align: start;
          padding: 24px 20px;
          margin-right: 2px;
          background: var(--surface);
        }

        .profile-card:last-child {
          margin-right: 0;
        }
      }

      /* ── DIPLOMA BUTTONS ── */
      /* ── DIPLOMA BUTTONS ── */
      .diploma-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 36px;
        width: 100%;
        box-sizing: border-box;
      }

      .diploma-btn {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 20px;
      background: var(--surface);
      border: 1px solid var(--border);
      color: var(--text);
      cursor: pointer;
      text-align: left;
      transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
      width: 100%;
      box-sizing: border-box;
    }

      .diploma-btn:hover {
        border-color: rgba(201, 168, 76, 0.5);
        background: rgba(201, 168, 76, 0.05);
        box-shadow: 0 0 16px rgba(201, 168, 76, 0.08);
      }

      .diploma-btn-icon {
        font-size: 18px;
        color: rgba(201, 168, 76, 0.6);
        flex-shrink: 0;
        animation: hexSpin 6s linear infinite;
      }

      .diploma-btn-text {
        display: flex;
        flex-direction: column;
        gap: 3px;
        flex: 1;
        min-width: 0;
      }

      .diploma-btn-label {
        font-family: var(--mono);
        font-size: 9px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--gold);
        opacity: 0.8;
      }

      .diploma-btn-name {
        font-family: var(--sans);
        font-size: 0.9rem;
        color: var(--text-muted);
        line-height: 1.3;
      }

      .diploma-btn-arrow {
        font-family: var(--mono);
        font-size: 14px;
        color: rgba(201, 168, 76, 0.5);
        flex-shrink: 0;
        transition: transform 0.2s, color 0.2s;
      }

      .diploma-btn:hover .diploma-btn-arrow {
        transform: translate(2px, -2px);
        color: var(--gold);
      }

      /* ── DIPLOMA MODAL ── */
      .diploma-modal {
        position: fixed;
        inset: 0;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
      }

      .diploma-modal.open {
        opacity: 1;
        pointer-events: all;
      }

      .diploma-modal-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.82);
        backdrop-filter: blur(6px);
        cursor: pointer;
      }

      .diploma-modal-box {
        position: relative;
        z-index: 1;
        background: var(--surface);
        border: 1px solid rgba(201, 168, 76, 0.3);
        box-shadow: 0 0 60px rgba(201, 168, 76, 0.1), 0 32px 64px rgba(0, 0, 0, 0.7);
        padding: 32px;
        max-width: 720px;
        width: 100%;
        transform: translateY(12px);
        transition: transform 0.3s ease;
      }

      .diploma-modal.open .diploma-modal-box {
        transform: translateY(0);
      }

      .diploma-modal-title {
        font-family: var(--mono);
        font-size: 10px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 10px;
        opacity: 0.8;
      }

      .diploma-modal-img-wrap {
        position: relative;
        width: 100%;
        min-height: 320px;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }

      #diploma-modal-img {
        max-width: 100%;
        max-height: 60vh;
        display: none;
        object-fit: contain;
      }

      #diploma-modal-img.loaded {
        display: block;
      }

      .diploma-modal-placeholder {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 48px;
      }

      .dmp-icon {
        font-size: 32px;
        color: rgba(201, 168, 76, 0.3);
        animation: hexSpin 6s linear infinite;
      }

      .dmp-text {
        font-family: var(--mono);
        font-size: 12px;
        letter-spacing: 0.12em;
        color: var(--text-dim);
        text-transform: uppercase;
      }

      .dmp-sub {
        font-family: var(--mono);
        font-size: 10px;
        color: rgba(201, 168, 76, 0.4);
      }

      @media (max-width: 480px) {
        .diploma-modal-box {
          padding: 24px 16px;
        }

        .diploma-modal-img-wrap {
          min-height: 200px;
        }
      }

      /* ── ASIDE TAGS — 3 tags, single row, uniform height ── */
      .aside-tags-mobile {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: clamp(4px, 1.5vw, 10px);
        margin-bottom: 28px;
      }

      .aside-tags-mobile .aside-tag {
        flex: 1 1 0;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-family: var(--mono);
        font-size: clamp(7px, 1.8vw, 10px);
        letter-spacing: 0.06em;
        color: var(--gold);
        border: 1px solid var(--gold-dim);
        background: rgba(201, 168, 76, 0.04);
        padding: clamp(8px, 1.5vw, 12px) clamp(6px, 1.5vw, 12px);
        line-height: 1.4;
        white-space: normal;
        word-break: break-word;
        margin-top: 0;
      }

    /* ══════════════════════════════════════════
       BANDEAU COOKIES
    ══════════════════════════════════════════ */
    .cookie-banner {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 99998;
      width: 340px;
      background: rgba(13, 13, 13, 0.96);
      border: 1px solid rgba(201, 168, 76, 0.3);
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(201, 168, 76, 0.05);
      transform: translateY(calc(100% + 40px));
      opacity: 0;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    }

    .cookie-banner.visible {
      transform: translateY(0);
      opacity: 1;
    }

    /* Fond Solidity défilant */
    .cookie-code-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
      z-index: 0;
    }

    .cookie-code-scroll {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      font-family: var(--mono);
      font-size: 9px;
      line-height: 1.8;
      color: rgba(201, 168, 76, 0.25);
      white-space: pre;
      animation: code-scroll 18s linear infinite;
      padding: 8px;
      user-select: none;
    }

    @keyframes code-scroll {
      0%   { transform: translateY(0); }
      100% { transform: translateY(-50%); }
    }

    /* Contenu */
    .cookie-content {
      position: relative;
      z-index: 1;
      padding: 20px;
    }

    .cookie-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .cookie-header-icon {
      font-size: 1rem;
      animation: cookie-pulse 2.5s ease-in-out infinite;
    }

    @keyframes cookie-pulse {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.4; }
    }

    .cookie-header-title {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .cookie-text {
      font-family: var(--sans);
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .cookie-text strong { color: var(--text); font-weight: 500; }

    .cookie-text a {
      color: var(--gold);
      text-decoration: none;
      font-size: 0.72rem;
      display: inline-block;
      margin-top: 4px;
    }

    .cookie-text a:hover { text-decoration: underline; }

    .cookie-actions {
      display: flex;
      gap: 8px;
    }

    .cookie-btn {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 9px 16px;
      border: none;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, transform 0.15s;
      flex: 1;
      white-space: nowrap;
    }

    .cookie-btn--accept {
      background: var(--gold);
      color: var(--black);
      font-weight: 700;
      position: relative;
      overflow: hidden;
    }

    .cookie-btn--accept:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
    }

    .cookie-btn-shimmer {
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      animation: shimmer 2.8s ease-in-out infinite;
    }

    @keyframes shimmer {
      0%      { left: -75%; }
      60%,100% { left: 125%; }
    }

    .cookie-btn--refuse {
      background: transparent;
      color: var(--text-dim);
      border: 1px solid var(--border);
    }

    .cookie-btn--refuse:hover {
      color: var(--text-muted);
      border-color: var(--text-dim);
    }

    /* Mobile — barre pleine largeur classique */
    @media (max-width: 768px) {
      .cookie-banner {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        padding-bottom: env(safe-area-inset-bottom);
      }

      .cookie-content {
        padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
      }
    }
    
    /* ── MODULE ARROW ── */
    .module-arrow--prev {
      left: -52px;
    }

    .module-arrow--next {
      right: -52px;
    }

    @media (max-width: 900px) {
      .module-arrow--prev {
        left: 4px;
      }

      .module-arrow--next {
        right: 4px;
      }

      .module-arrow {
        width: 32px;
        height: 32px;
        font-size: 18px;
      }
    }

    /* ── MODULE ITEM — factorised ── */
    .module-item {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 20px 24px 20px 20px;
      border-left: 2px solid var(--gold);
      background: rgba(201, 168, 76, 0.08);
    }

    .module-item .module-num {
      color: var(--gold);
    }

    .module-tags {
      transition: transform 0.3s ease;
    }

    .module-item:hover .module-tags {
      transform: translateX(4px);
    }

    /* Carousel slide padding clears arrows */
    .module-slide .module-item {
      padding: 20px 52px;
    }


    /* LEGAL PAGES */

    .page-wrap {
      max-width: 720px;
      margin: 0 auto;
      padding: 120px 28px 80px;
    }

    .page-label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.2em;
      color: var(--text-dim);
      text-transform: uppercase;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .page-label::before {
      content: '';
      width: 20px;
      height: 1px;
      background: var(--text-dim);
    }

    .h1-leg {
      font-family: var(--serif);
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.1;
      margin-bottom: 16px;
      color: var(--text);
    }

    .update-date {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--text-dim);
      letter-spacing: 0.1em;
      margin-bottom: 48px;
    }

    .h2-leg {
      font-family: var(--serif);
      font-size: 1.3rem;
      color: var(--gold);
      margin: 48px 0 16px;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--border);
    }

    .h3-leg {
      font-family: var(--sans);
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text);
      margin: 24px 0 8px;
    }

    .p-leg { color: var(--text-muted); margin-bottom: 16px; font-size: 0.95rem; }
    .a-leg { color: var(--gold); text-decoration: none; }
    .a-leg:hover { text-decoration: underline; }

    .ul-leg {
      list-style: none;
      margin: 0 0 20px 0;
    }

    .ul-leg li {
      color: var(--text-muted);
      font-size: 0.95rem;
      padding: 6px 0;
      padding-left: 20px;
      position: relative;
    }

    .ul-leg li::before {
      content: '◈';
      color: var(--gold);
      font-size: 0.7rem;
      position: absolute;
      left: 0;
      top: 9px;
    }

    .info-block {
      background: var(--surface);
      border: 1px solid var(--border);
      border-left: 2px solid var(--gold);
      padding: 20px 24px;
      margin: 24px 0;
      font-family: var(--mono);
      font-size: 0.82rem;
      line-height: 2;
      color: var(--text-muted);
    }

    .info-block strong {
      color: var(--text);
      display: inline-block;
      min-width: 180px;
    }

    .rights-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin: 20px 0;
    }

    .right-item {
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 16px;
    }

    .right-item-title {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
    }

    .right-item-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .highlight-block {
      background: rgba(201, 168, 76, 0.05);
      border: 1px solid var(--gold-dim);
      border-left: 2px solid var(--gold);
      padding: 20px 24px;
      margin: 24px 0;
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .highlight-block strong { color: var(--text); }

    .formulas-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin: 24px 0;
    }

    .formula-card {
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 20px;
    }

    .formula-card--featured {
      border-color: rgba(201, 168, 76, 0.35);
    }

    .formula-name {
      font-family: var(--serif);
      font-size: 1.1rem;
      color: var(--text);
      margin-bottom: 6px;
    }

    .formula-price {
      font-family: var(--mono);
      font-size: 0.85rem;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .formula-features {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.8;
    }

    .info-block {
      background: var(--surface);
      border: 1px solid var(--border);
      border-left: 2px solid var(--gold);
      padding: 20px 24px;
      margin: 24px 0;
      font-family: var(--mono);
      font-size: 0.82rem;
      line-height: 2;
      color: var(--text-muted);
    }

    .info-block strong {
      color: var(--text);
      display: inline-block;
      min-width: 220px;
    }