    :root {
      --hero-bg: url("./Hero.webp");
      --footer-bg: url("./Footer.webp");

      --cream: #f5f0e8;
      --cream-light: #fbf8f1;
      --black: #0e0e0e;
      --ink: #171717;
      --muted: #5f5a52;
      --muted-light: rgba(251, 248, 241, 0.62);
      --muted-soft: rgba(251, 248, 241, 0.44);
      --gold: #b8954b;
      --gold-light: rgba(184, 149, 75, 0.22);
      --gold-border: rgba(184, 149, 75, 0.26);
      --border: rgba(14, 14, 14, 0.12);

      --dark-bg: #111214;
      --dark-surface: rgba(255, 255, 255, 0.045);
      --dark-surface-hover: rgba(255, 255, 255, 0.075);
      --dark-border: rgba(255, 255, 255, 0.09);
      --dark-border-hover: rgba(184, 149, 75, 0.32);
      --dark-text: #fbf8f1;
      --dark-muted: rgba(251, 248, 241, 0.58);
      --dark-muted-soft: rgba(251, 248, 241, 0.36);

      --glass-1-bg:     rgba(255, 255, 255, 0.04);
      --glass-1-border: rgba(255, 255, 255, 0.08);
      --glass-2-bg:     rgba(255, 255, 255, 0.07);
      --glass-2-border: rgba(255, 255, 255, 0.13);
      --glass-3-bg:     rgba(255, 255, 255, 0.11);
      --glass-3-border: rgba(255, 255, 255, 0.18);
      --glass-inset:    inset 0 1px 0 rgba(255, 255, 255, 0.07);

      --radius: 16px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--dark-bg);
      color: var(--dark-text);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    h1, h2, h3 {
      font-family: "Cormorant Garamond", "Times New Roman", serif;
    }

    .s-bridge {
      display: none;
    }

    /* Séparateur subtil entre sections claires */
    .valora-overview,
    .valora-delta,
    .valora-academy,
    .valora-token,
    .valora-compensation,
    .valora-ecosystem,
    .valora-vision,
    .valora-principles,
    .valora-team,
    .valora-belonging,
    .valora-pricing,
    .valora-ecosystem-pillars {
      box-shadow: none;
    }

    .valora-hero {
      position: relative;
      min-height: 100svh;
      overflow: hidden;
      background: var(--dark-bg);
      isolation: isolate;
      --parallax-y: 0px;
    }

    .valora-hero::before {
      content: "";
      position: absolute;
      inset: -15% 0;
      z-index: -2;
      background-image: var(--hero-bg);
      background-size: 115%;
      background-position: 62% center;
      transform: translate3d(0, var(--parallax-y), 0);
      will-change: transform;
    }

    .valora-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(
          to right,
          rgba(17, 18, 20, 0.93) 0%,
          rgba(17, 18, 20, 0.72) 28%,
          rgba(17, 18, 20, 0.22) 52%,
          transparent 72%
        ),
        linear-gradient(
          to bottom,
          rgba(17, 18, 20, 0.38) 0%,
          transparent 18%,
          transparent 72%,
          rgba(17, 18, 20, 0.62) 100%
        );
      pointer-events: none;
    }

    /* Header */

    .valora-header {
      height: 80px;
      padding: 0 48px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 32px;
      background: rgba(17, 18, 20, 0.88);
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      position: sticky;
      top: 0;
      z-index: 100;
      transition:
        background 0.38s ease,
        border-color 0.38s ease,
        backdrop-filter 0.38s ease;
    }

    .valora-header.nav-transparent {
      background: transparent;
      border-bottom-color: transparent;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

    .valora-header.nav-transparent .brand-logo {
      color: var(--cream-light);
    }

    .valora-header.nav-transparent .main-nav {
      background: rgba(255, 255, 255, 0.10);
      border-color: rgba(255, 255, 255, 0.22);
    }

    .valora-header.nav-transparent .nav-contact {
      color: var(--cream-light);
      border-color: rgba(184, 149, 75, 0.70);
    }

    .brand-left {
      display: flex;
      align-items: center;
      justify-self: start;
    }

    .brand-logo {
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: 38px;
      line-height: 1;
      letter-spacing: 0.20em;
      font-weight: 500;
      color: var(--dark-text);
      text-decoration: none;
    }

    .brand-separator {
      width: 1px;
      height: 36px;
      background: rgba(184, 149, 75, 0.38);
    }

    .brand-signature {
      margin: 0;
      color: var(--gold);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.02em;
      white-space: nowrap;
    }

    .brand-signature span {
      margin: 0 7px;
    }

    /* Pill nav with sliding indicator */
    .main-nav {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1.5px solid rgba(255, 255, 255, 0.10);
      border-radius: 999px;
      padding: 5px;
      background: rgba(255, 255, 255, 0.06);
    }

    .nav-slider {
      position: absolute;
      top: 5px;
      bottom: 5px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      pointer-events: none;
      opacity: 0;
      z-index: 0;
      transition:
        left 0.30s cubic-bezier(0.22, 0.6, 0.36, 1),
        width 0.30s cubic-bezier(0.22, 0.6, 0.36, 1),
        opacity 0.18s ease;
    }

    .main-nav a {
      position: relative;
      z-index: 1;
      color: rgba(251, 248, 241, 0.82);
      text-decoration: none;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      white-space: nowrap;
      padding: 9px 20px;
      border-radius: 999px;
    }

    .main-nav a::after {
      display: none;
    }

    /* Contact CTA pill */
    .nav-contact {
      justify-self: end;
      position: relative;
      display: inline-flex;
      align-items: center;
      color: var(--dark-text);
      text-decoration: none;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      white-space: nowrap;
      padding: 11px 26px;
      border-radius: 999px;
      border: 1.5px solid rgba(184, 149, 75, 0.52);
      background: transparent;
      overflow: hidden;
      transition: color 0.26s ease, border-color 0.26s ease;
    }

    .nav-contact::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.28s cubic-bezier(0.22, 0.6, 0.36, 1);
    }

    .nav-contact::after {
      display: none;
    }

    .nav-contact:hover {
      color: var(--black);
      border-color: var(--gold);
    }

    .nav-contact:hover::before {
      transform: scaleX(1);
    }

    .nav-contact span {
      position: relative;
      z-index: 1;
    }

    /* Hero content */

    .hero-inner {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      text-align: left;
      padding: clamp(100px, 10vw, 140px) 6vw 72px;
    }

    .hero-content {
      width: min(640px, 48%);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding-top: 18px;
    }

    .hero-monogram {
      width: 70px;
      height: 70px;
      margin-bottom: 42px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(184, 149, 75, 0.64);
      border-radius: 50%;
      color: var(--gold);
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: 44px;
      font-weight: 500;
      line-height: 1;
      position: relative;
    }

    .hero-monogram::after {
      content: "";
      position: absolute;
      bottom: -7px;
      width: 6px;
      height: 6px;
      background: var(--gold);
      transform: rotate(45deg);
    }

    .hero-content h1 {
      margin: 0;
      color: var(--cream-light);
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(68px, 7vw, 118px);
      line-height: 0.86;
      font-weight: 400;
      letter-spacing: -0.04em;
    }

    .hero-line {
      width: 78px;
      height: 2px;
      margin: 42px auto 34px;
      background: var(--gold);
    }

    .hero-content p {
      margin: clamp(28px, 3vw, 44px) 0 0;
      color: rgba(251, 248, 241, 0.72);
      font-size: clamp(16px, 1.25vw, 20px);
      line-height: 1.72;
      font-weight: 300;
      letter-spacing: 0.06em;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 28px;
      margin-top: 58px;
    }

    /* ---- Pill buttons avec cercle flèche (style Halo) ---- */
    .btn-primary,
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 18px;
      text-decoration: none;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 6px 6px 6px 26px;
      border-radius: 999px;
      border: none;
      white-space: nowrap;
      transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--black);
      box-shadow: var(--glass-inset), 0 16px 40px rgba(184, 149, 75, 0.22);
    }

    .btn-primary span {
      width: 44px;
      height: 44px;
      background: var(--black);
      color: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      line-height: 1;
      transform: none;
      flex-shrink: 0;
      transition: background 0.22s ease;
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid var(--glass-1-border);
      color: var(--cream-light);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: var(--glass-inset);
    }

    .btn-secondary span {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.14);
      color: var(--cream-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      line-height: 1;
      transform: none;
      flex-shrink: 0;
      transition: background 0.22s ease;
    }

    .btn-primary:hover {
      background: rgba(184, 149, 75, 0.88);
      transform: translateY(-2px);
      box-shadow: var(--glass-inset), 0 22px 50px rgba(184, 149, 75, 0.28);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.12);
      transform: translateY(-2px);
    }

    .btn-primary:hover span {
      background: rgba(14, 14, 14, 0.90);
    }

    .btn-secondary:hover span {
      background: rgba(255, 255, 255, 0.20);
    }

    /* Responsive */

    @media (max-width: 1100px) {
      .valora-header {
        grid-template-columns: auto auto;
        justify-content: space-between;
        gap: 0;
      }

      .main-nav {
        display: none;
      }

      .nav-contact {
        justify-self: auto;
      }
    }

    @media (max-width: 760px) {
      .valora-header {
        height: 74px;
        padding: 0 22px;
      }

      .brand-logo {
        font-size: 30px;
      }

      .brand-separator,
      .brand-signature,
      .nav-contact {
        display: none;
      }

      .valora-hero::before,
      .valora-hero::after {
        inset: 82px 0 0;
      }

      .valora-hero::before {
        background-image:
          linear-gradient(
            180deg,
            rgba(17, 18, 20, 0.96) 0%,
            rgba(17, 18, 20, 0.82) 55%,
            rgba(17, 18, 20, 0.50) 100%
          ),
          var(--hero-bg);
        background-size: 200%;
        background-position: 62% center;
      }

      .hero-inner {
        min-height: calc(100svh - 82px);
        padding: 52px 24px 44px;
        align-items: flex-start;
      }

      .hero-content {
        width: 100%;
      }

      .hero-monogram {
        width: 58px;
        height: 58px;
        margin-bottom: 34px;
        font-size: 36px;
      }

      .hero-content h1 {
        font-size: clamp(62px, 18vw, 84px);
      }

      .hero-content p {
        font-size: clamp(14px, 3.8vw, 17px);
        letter-spacing: 0.02em;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        margin-top: 42px;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
        min-width: 0;
        height: 58px;
        font-size: 11px;
      }
    }

    /* ============================================================
       02 VALORA EN UN COUP D'ŒIL
    ============================================================ */

    .valora-overview {
      position: relative;
      min-height: 100svh;
      padding: clamp(44px, 4vw, 62px) clamp(32px, 4.5vw, 72px);
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--dark-bg);
      isolation: isolate;
    }

    .valora-overview::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background-image:
        linear-gradient(
          90deg,
          rgba(17, 18, 20, 0.92) 0%,
          rgba(17, 18, 20, 0.75) 45%,
          rgba(17, 18, 20, 0.40) 100%
        ),
        url("./Valora en un coup d'œil.webp");
      background-size: 100% auto;
      background-position: center center;
      background-repeat: no-repeat;
    }

    .valora-overview::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.03), transparent 32%),
        radial-gradient(circle at 82% 78%, rgba(184, 149, 75, 0.09), transparent 34%);
      pointer-events: none;
    }

    .overview-inner {
      width: min(1420px, 100%);
      margin: 0 auto;
    }

    .overview-heading {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: clamp(42px, 5vw, 68px);
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 28px;
      color: var(--gold);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.32em;
      text-transform: uppercase;
    }

    .section-kicker::before {
      content: "";
      width: 52px;
      height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .overview-heading h2 {
      margin: 0;
      max-width: 720px;
      color: var(--dark-text);
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(36px, 3.8vw, 62px);
      line-height: 1.08;
      font-weight: 400;
      letter-spacing: -0.04em;
    }

    .overview-heading p {
      margin: 0 auto;
      max-width: 560px;
      color: var(--dark-muted);
      font-size: clamp(15px, 1.1vw, 18px);
      line-height: 1.8;
      font-weight: 300;
      letter-spacing: 0.03em;
    }

    .overview-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .overview-card {
      min-height: 210px;
      padding: 30px 28px;
      border: 1px solid var(--dark-border);
      border-radius: 30px;
      background: var(--dark-surface);
      backdrop-filter: blur(18px);
      box-shadow: 0 28px 80px rgba(0, 0, 0, 0.30);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
    }

    .overview-card:hover {
      transform: translateY(-8px);
      border-color: rgba(184, 149, 75, 0.42);
      box-shadow: 0 0 0 1px rgba(184, 149, 75, 0.28), 0 34px 90px rgba(0, 0, 0, 0.45);
    }

    .overview-card.featured {
      background:
        linear-gradient(
          180deg,
          rgba(17, 18, 20, 0.35) 0%,
          rgba(17, 18, 20, 0.82) 60%,
          rgba(17, 18, 20, 0.96) 100%
        ),
        url("./Valora en un coup d'œil.webp");
      background-size: cover;
      background-position: center;
      color: var(--cream-light);
      border-color: rgba(184, 149, 75, 0.38);
    }

    .card-index {
      width: 46px;
      height: 46px;
      margin-bottom: auto;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--gold);
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: 25px;
      font-weight: 600;
      border: 1px solid rgba(184, 149, 75, 0.34);
      background: rgba(255, 255, 255, 0.06);
    }

    .overview-card.featured .card-index {
      background: rgba(184, 149, 75, 0.12);
    }

    .overview-card h3 {
      margin: 34px 0 0;
      color: inherit;
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(31px, 2.6vw, 44px);
      line-height: 0.95;
      font-weight: 600;
      letter-spacing: -0.035em;
    }

    .overview-card p {
      margin: 18px 0 0;
      color: var(--dark-muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .overview-card.featured p {
      color: rgba(251, 248, 241, 0.68);
    }

    .overview-bottom {
      margin-top: 18px;
      padding: 24px 30px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      border: 1px solid var(--dark-border);
      border-radius: 28px;
      background: var(--dark-surface);
      backdrop-filter: blur(18px);
      box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
    }

    .overview-bottom div {
      position: relative;
      padding-left: 24px;
    }

    .overview-bottom div::before {
      content: "";
      position: absolute;
      left: 0;
      top: 6px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold);
    }

    .overview-bottom strong {
      display: block;
      margin-bottom: 6px;
      color: var(--dark-text);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.04em;
    }

    .overview-bottom span {
      color: var(--dark-muted);
      font-size: 13px;
      line-height: 1.5;
    }

    @media (max-width: 1180px) {
      .overview-heading {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .overview-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .overview-card {
        min-height: 270px;
      }
    }

    @media (max-width: 760px) {
      .valora-overview {
        min-height: auto;
        padding: 72px 22px;
      }

      .overview-heading h2 {
        font-size: clamp(48px, 15vw, 68px);
      }

      .overview-heading p {
        font-size: 16px;
      }

      .overview-grid,
      .overview-bottom {
        grid-template-columns: 1fr;
      }

      .overview-card {
        min-height: 240px;
        padding: 26px 24px;
        border-radius: var(--radius);
      }

      .overview-bottom {
        padding: 24px;
      }
    }

    /* ============================================================
       03 STRATÉGIES DELTA-NEUTRES
    ============================================================ */

    .valora-delta {
      position: relative;
      padding: clamp(60px, 5.5vw, 88px) clamp(32px, 4.5vw, 72px);
      background: var(--dark-bg);
      isolation: isolate;
    }

    .valora-delta::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(184, 149, 75, 0.04), transparent 70%);
      pointer-events: none;
    }

    .delta-inner {
      width: min(1280px, 100%);
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: clamp(36px, 3.5vw, 52px);
    }

    /* Kicker line under section-kicker */
    .delta-kicker-line {
      width: 32px;
      height: 2px;
      background: var(--gold);
      margin-top: 12px;
    }

    .delta-top {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: clamp(28px, 3vw, 44px);
    }

    .delta-heading {
      width: 100%;
      max-width: 760px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .delta-heading h2 {
      margin: 0;
      color: var(--dark-text);
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(32px, 3.6vw, 54px);
      line-height: 1.12;
      font-weight: 400;
      letter-spacing: -0.04em;
    }

    .delta-heading-sep {
      width: 32px;
      height: 2px;
      background: var(--gold);
      margin: 22px 0;
    }

    .delta-heading p {
      max-width: 520px;
      margin: 0 auto;
      color: var(--dark-muted);
      font-size: clamp(14px, 1.05vw, 16.5px);
      line-height: 1.88;
      font-weight: 400;
    }

    .delta-heading p strong {
      color: var(--dark-text);
      font-weight: 700;
    }

    /* Transparency card */
    .delta-transparency-card {
      max-width: 520px;
      width: 100%;
      border: 1px solid var(--glass-2-border);
      border-radius: 20px;
      background: var(--glass-2-bg);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: var(--glass-inset), 0 24px 60px rgba(0, 0, 0, 0.32);
      padding: clamp(32px, 3vw, 48px) clamp(28px, 2.5vw, 40px);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    .delta-shield {
      color: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .delta-shield svg {
      width: 46px;
      height: 46px;
    }

    .delta-transparency-card h3 {
      margin: 0;
      color: var(--dark-text);
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(19px, 1.5vw, 23px);
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    .delta-transparency-card p {
      margin: 0;
      color: var(--dark-muted);
      font-size: 13.5px;
      line-height: 1.80;
    }

    /* 5 strategy cards */
    .delta-strategies {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
    }

    .strategy-card {
      background: var(--glass-1-bg);
      border: 1px solid var(--glass-1-border);
      border-radius: 18px;
      padding: 32px 18px 28px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: var(--glass-inset), 0 16px 40px rgba(0, 0, 0, 0.28);
      transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
    }

    .strategy-card:hover {
      transform: translateY(-5px);
      border-color: rgba(184, 149, 75, 0.34);
      box-shadow: var(--glass-inset), 0 0 0 1px rgba(184, 149, 75, 0.28), 0 20px 52px rgba(0, 0, 0, 0.40);
    }

    .strategy-icon-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
      border: 2px solid rgba(184, 149, 75, 0.30);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      flex-shrink: 0;
    }

    .strategy-icon-circle svg {
      width: 30px;
      height: 30px;
      color: var(--gold);
    }

    .strategy-sep {
      width: 20px;
      height: 1px;
      background: rgba(184, 149, 75, 0.38);
      margin-bottom: 14px;
    }

    .strategy-card h4 {
      margin: 0 0 10px;
      color: var(--dark-text);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .strategy-card p {
      margin: 0;
      color: var(--dark-muted);
      font-size: 12.5px;
      line-height: 1.68;
    }

    /* Bottom performance bar */
    .delta-bottom-bar {
      display: grid;
      grid-template-columns: auto auto 1fr auto;
      gap: 20px;
      align-items: center;
      border: 1px solid var(--glass-2-border);
      border-radius: 16px;
      background: var(--glass-2-bg);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: var(--glass-inset), 0 24px 60px rgba(0, 0, 0, 0.32);
      padding: clamp(20px, 2vw, 28px) clamp(24px, 2.5vw, 36px);
    }

    .delta-bar-icon {
      color: var(--gold);
      opacity: 0.78;
      display: flex;
      align-items: center;
    }

    .delta-bar-icon svg {
      width: 34px;
      height: 34px;
    }

    .delta-bar-sep {
      width: 1px;
      height: 38px;
      background: rgba(184, 149, 75, 0.22);
    }

    .delta-bar-text {
      padding-left: 8px;
      color: var(--dark-muted);
      font-size: 13.5px;
      line-height: 1.72;
      margin: 0;
    }

    .delta-bar-objective {
      display: flex;
      align-items: baseline;
      gap: 7px;
      white-space: nowrap;
    }

    .delta-bar-label {
      color: var(--dark-muted);
      font-size: 13px;
    }

    .delta-bar-value {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(36px, 3.2vw, 54px);
      font-weight: 500;
      color: var(--gold);
      letter-spacing: -0.03em;
      line-height: 1;
    }

    .delta-bar-suffix {
      color: var(--dark-muted);
      font-size: 13px;
    }

    @media (max-width: 1180px) {
      .delta-top {
        grid-template-columns: 1fr 280px;
      }

      .delta-strategies {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 900px) {
      .delta-top {
        grid-template-columns: 1fr;
      }

      .delta-strategies {
        grid-template-columns: repeat(2, 1fr);
      }

      .delta-bottom-bar {
        grid-template-columns: auto auto 1fr;
        row-gap: 14px;
      }

      .delta-bar-objective {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 820px) {
      .valora-delta {
        padding: 64px 22px;
      }

      .delta-heading h2 {
        font-size: clamp(44px, 13vw, 62px);
      }

      .delta-strategies {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }

      .delta-bottom-bar {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
      }

      .delta-bar-sep { display: none; }
      .delta-bar-icon { justify-content: center; }
      .delta-bar-objective { justify-content: center; }
    }

    /* ============================================================
       04 VALORA ACADEMY
    ============================================================ */

    .valora-academy {
      position: relative;
      background: var(--dark-bg);
      overflow: hidden;
      isolation: isolate;
    }

    .valora-academy::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background-image:
        linear-gradient(
          90deg,
          rgba(17, 18, 20, 0.95) 0%,
          rgba(17, 18, 20, 0.82) 36%,
          rgba(17, 18, 20, 0.45) 60%,
          rgba(17, 18, 20, 0.08) 82%
        ),
        url("./Valora Academy.webp");
      background-size: cover;
      background-position: center right;
      background-repeat: no-repeat;
    }

    .valora-academy::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(180deg,
          transparent 55%,
          rgba(17, 18, 20, 0.75) 78%,
          rgba(17, 18, 20, 0.97) 100%
        );
      pointer-events: none;
    }

    /* Hero area */
    .academy-hero {
      position: relative;
      min-height: 62vh;
      padding: clamp(56px, 5.5vw, 86px) clamp(32px, 4.5vw, 72px);
      display: flex;
      align-items: flex-start;
    }

    .academy-hero-inner {
      width: min(760px, 90%);
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .academy-monogram {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      border: 1px solid rgba(184, 149, 75, 0.60);
      display: grid;
      place-items: center;
      color: var(--gold);
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: 36px;
      font-weight: 400;
      line-height: 1;
      margin-bottom: 36px;
      position: relative;
      flex-shrink: 0;
    }

    .academy-monogram::after {
      content: "";
      position: absolute;
      bottom: -7px;
      width: 6px;
      height: 6px;
      background: var(--gold);
      transform: rotate(45deg);
    }

    .academy-hero-inner h2 {
      margin: 0;
      color: var(--dark-text);
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(26px, 2.8vw, 44px);
      line-height: 1.08;
      font-weight: 400;
      letter-spacing: -0.04em;
      white-space: nowrap;
    }

    .academy-hero-sep {
      width: 44px;
      height: 2px;
      background: var(--gold);
      margin: 28px 0 24px;
      flex-shrink: 0;
    }

    .academy-hero-inner p {
      margin: 0;
      color: var(--dark-muted);
      font-size: clamp(14px, 1.1vw, 17px);
      line-height: 1.84;
      font-weight: 300;
      max-width: 520px;
    }

    .academy-hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 18px;
      margin-top: 40px;
      padding: 6px 6px 6px 26px;
      background: var(--gold);
      color: var(--black);
      text-decoration: none;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      flex-shrink: 0;
      transition: transform 0.22s ease, background 0.22s ease;
    }

    .academy-hero-cta:hover {
      transform: translateY(-2px);
      background: rgba(184, 149, 75, 0.85);
    }

    .academy-hero-cta span {
      width: 40px;
      height: 40px;
      background: var(--black);
      color: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      line-height: 1;
      flex-shrink: 0;
    }

    /* 3-card module row */
    .academy-cards-row {
      padding: 0 clamp(32px, 4.5vw, 72px) clamp(48px, 4.5vw, 68px);
    }

    .academy-cards-inner {
      width: min(900px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .academy-module-card {
      background: var(--glass-1-bg);
      border: 1px solid var(--glass-1-border);
      border-radius: 4px;
      padding: clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 38px);
      display: flex;
      align-items: flex-start;
      gap: 24px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: var(--glass-inset), 0 16px 40px rgba(0, 0, 0, 0.28);
      transition: border-color 0.26s ease, box-shadow 0.26s ease;
    }

    .academy-module-card:hover {
      border-color: rgba(184, 149, 75, 0.34);
      box-shadow: var(--glass-inset), 0 0 0 1px rgba(184, 149, 75, 0.28), 0 20px 52px rgba(0, 0, 0, 0.40);
    }

    .module-icon-wrap {
      width: 76px;
      height: 76px;
      border-radius: 50%;
      border: 1.5px solid rgba(184, 149, 75, 0.44);
      display: grid;
      place-items: center;
      color: var(--gold);
      flex-shrink: 0;
    }

    .module-icon-wrap svg {
      width: 36px;
      height: 36px;
    }

    .module-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding-top: 4px;
    }

    .module-body h4 {
      margin: 0 0 12px;
      color: var(--dark-text);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      line-height: 1.35;
    }

    .module-body-sep {
      width: 28px;
      height: 2px;
      background: var(--gold);
      margin-bottom: 18px;
      flex-shrink: 0;
    }

    .module-body p {
      margin: 0;
      color: var(--dark-muted);
      font-size: clamp(13px, 1vw, 14.5px);
      line-height: 1.75;
      font-weight: 300;
    }

    .module-explore {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-top: 24px;
      color: var(--gold);
      text-decoration: none;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      transition: gap 0.22s ease;
    }

    .module-explore:hover {
      gap: 15px;
    }

    .module-explore span {
      font-size: 14px;
      line-height: 1;
    }

    @media (max-width: 1100px) {
      .academy-hero-inner {
        width: min(640px, 72%);
      }
    }

    @media (max-width: 820px) {
      .academy-hero {
        min-height: auto;
        padding: 60px 22px;
      }

      .academy-hero-inner {
        width: 100%;
      }

      .academy-hero-inner h2 {
        font-size: clamp(58px, 16vw, 82px);
      }

      .academy-hero::before {
        background-image:
          linear-gradient(
            180deg,
            rgba(17, 18, 20, 0.97) 0%,
            rgba(17, 18, 20, 0.92) 55%,
            rgba(17, 18, 20, 0.76) 100%
          ),
          url("./Valora Academy.webp");
        background-position: center center;
      }

      .academy-cards-row {
        padding: 0 22px 56px;
      }

      .academy-cards-inner {
        grid-template-columns: 1fr;
        gap: 14px;
      }
    }

    /* ============================================================
       05 TOKEN $VLRA
    ============================================================ */

    .valora-token {
      position: relative;
      background: var(--dark-bg);
      overflow: hidden;
      isolation: isolate;
    }

    .valora-token::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background-image:
        linear-gradient(90deg,
          rgba(17, 18, 20, 0.95) 0%,
          rgba(17, 18, 20, 0.82) 36%,
          rgba(17, 18, 20, 0.40) 60%,
          rgba(17, 18, 20, 0.06) 82%
        ),
        url("./Token $VLRA.webp");
      background-size: cover;
      background-position: center right;
      background-repeat: no-repeat;
    }

    .valora-token::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(180deg,
        transparent 55%,
        rgba(17, 18, 20, 0.75) 78%,
        rgba(17, 18, 20, 0.97) 100%
      );
      pointer-events: none;
    }

    .token-hero {
      position: relative;
      min-height: 62vh;
      padding: clamp(56px, 5.5vw, 86px) clamp(32px, 4.5vw, 72px);
      display: flex;
      align-items: flex-start;
    }

    .token-hero-inner {
      width: min(760px, 90%);
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .token-monogram {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      border: 1px solid rgba(184, 149, 75, 0.60);
      display: grid;
      place-items: center;
      color: var(--gold);
      font-family: "Cormorant Garamond", serif;
      font-size: 36px;
      font-weight: 400;
      line-height: 1;
      margin-bottom: 36px;
      position: relative;
      flex-shrink: 0;
    }

    .token-monogram::after {
      content: "";
      position: absolute;
      bottom: -7px;
      width: 6px;
      height: 6px;
      background: var(--gold);
      transform: rotate(45deg);
    }

    .token-hero-inner h2 {
      margin: 0;
      color: var(--dark-text);
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(40px, 4.2vw, 68px);
      line-height: 1.08;
      font-weight: 400;
      letter-spacing: -0.04em;
    }

    .token-hero-sep {
      width: 44px;
      height: 2px;
      background: var(--gold);
      margin: 28px 0 24px;
      flex-shrink: 0;
    }

    .token-hero-lead {
      margin: 0 auto;
      color: var(--dark-text);
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(16px, 1.3vw, 20px);
      line-height: 1.6;
      font-weight: 400;
      max-width: 700px;
      text-align: center;
    }

    .token-hero-body {
      margin: 16px auto 0;
      color: var(--dark-muted);
      font-size: clamp(13px, 1vw, 15px);
      line-height: 1.84;
      font-weight: 300;
      max-width: 580px;
      text-align: center;
    }

    .token-orbit {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }

    .token-orbit svg {
      width: 100%;
      height: 100%;
    }

    .token-cards-row {
      padding: 0 clamp(32px, 4.5vw, 72px) clamp(48px, 4.5vw, 68px);
    }

    .token-cards-inner {
      width: min(1420px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .token-disclaimer {
      text-align: right;
      padding: 0 clamp(32px, 4.5vw, 72px) clamp(32px, 3vw, 48px);
      color: var(--dark-muted);
      font-size: 11px;
      font-weight: 300;
      letter-spacing: 0.03em;
      opacity: 0.72;
    }

    @media (max-width: 820px) {
      .token-hero {
        min-height: auto;
        padding: 72px 22px;
      }

      .token-hero-inner {
        width: 100%;
      }

      .token-orbit {
        display: none;
      }

      .token-cards-row {
        padding: 0 22px 56px;
      }

      .token-cards-inner {
        grid-template-columns: 1fr;
      }

      .token-disclaimer {
        padding: 0 22px 36px;
        text-align: left;
      }
    }

    /* ============================================================
       06 PLAN DE RÉMUNÉRATION
    ============================================================ */

    .valora-compensation {
      position: relative;
      background: var(--dark-bg);
      overflow: hidden;
      isolation: isolate;
    }

    .valora-compensation::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background-image:
        linear-gradient(90deg,
          rgba(17, 18, 20, 0.95) 0%,
          rgba(17, 18, 20, 0.88) 28%,
          rgba(17, 18, 20, 0.55) 52%,
          rgba(17, 18, 20, 0.08) 72%
        ),
        url("./Plan de rémunération.webp");
      background-size: cover;
      background-position: center right;
      background-repeat: no-repeat;
    }

    .valora-compensation::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(180deg,
        transparent 48%,
        rgba(17, 18, 20, 0.60) 72%,
        rgba(17, 18, 20, 0.95) 100%
      );
      pointer-events: none;
    }

    .comp-hero {
      position: relative;
      min-height: 58vh;
      padding: clamp(56px, 5.5vw, 86px) clamp(32px, 4.5vw, 72px);
      display: flex;
      align-items: flex-start;
    }

    .comp-hero-inner {
      width: min(760px, 90%);
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .comp-monogram {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      border: 1px solid rgba(184, 149, 75, 0.60);
      display: grid;
      place-items: center;
      color: var(--gold);
      font-family: "Cormorant Garamond", serif;
      font-size: 36px;
      font-weight: 400;
      line-height: 1;
      margin-bottom: 36px;
      position: relative;
      flex-shrink: 0;
    }

    .comp-monogram::after {
      content: "";
      position: absolute;
      bottom: -7px;
      width: 6px;
      height: 6px;
      background: var(--gold);
      transform: rotate(45deg);
    }

    .comp-hero-inner h2 {
      margin: 0;
      color: var(--dark-text);
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(26px, 2.9vw, 46px);
      line-height: 1.08;
      font-weight: 400;
      letter-spacing: -0.04em;
      white-space: nowrap;
    }

    .comp-hero-sep {
      width: 44px;
      height: 2px;
      background: var(--gold);
      margin: 28px 0 24px;
      flex-shrink: 0;
    }

    .comp-hero-inner p {
      margin: 0 auto;
      color: var(--dark-muted);
      font-size: clamp(14px, 1.1vw, 17px);
      line-height: 1.7;
      font-weight: 300;
      max-width: 720px;
      text-align: center;
    }

    .comp-steps-row {
      padding: 0 clamp(32px, 4.5vw, 72px);
    }

    .comp-steps-inner {
      width: min(1420px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      align-items: stretch;
      gap: 14px;
    }

    .comp-step-card {
      background: var(--glass-1-bg);
      border: 1px solid var(--glass-1-border);
      border-radius: 4px;
      padding: clamp(28px, 3vw, 44px) clamp(20px, 2vw, 32px);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: var(--glass-inset), 0 16px 40px rgba(0, 0, 0, 0.28);
      transition: border-color 0.26s ease, box-shadow 0.26s ease;
    }

    .comp-step-card:hover {
      border-color: rgba(184, 149, 75, 0.32);
      box-shadow: var(--glass-inset), 0 0 0 1px rgba(184, 149, 75, 0.28), 0 20px 56px rgba(0, 0, 0, 0.40);
    }

    .comp-step-num {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(184, 149, 75, 0.44);
      display: grid;
      place-items: center;
      color: var(--gold);
      font-family: "Cormorant Garamond", serif;
      font-size: 18px;
      font-weight: 400;
      margin-bottom: 20px;
      flex-shrink: 0;
    }

    .comp-step-icon {
      color: var(--gold);
      margin-bottom: 22px;
      display: grid;
      place-items: center;
    }

    .comp-step-icon svg {
      width: 36px;
      height: 36px;
    }

    .comp-step-card h4 {
      margin: 0;
      color: var(--dark-text);
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(20px, 1.8vw, 26px);
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    .comp-step-sep {
      width: 28px;
      height: 2px;
      background: var(--gold);
      margin: 14px auto 16px;
      flex-shrink: 0;
    }

    .comp-step-card p {
      margin: 0;
      color: var(--dark-muted);
      font-size: clamp(12px, 0.9vw, 13.5px);
      line-height: 1.75;
      font-weight: 300;
    }

    .comp-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 16px;
      padding: 0 12px;
      flex-shrink: 0;
    }

    .comp-bottom-bar {
      margin: clamp(22px, 2.5vw, 36px) clamp(32px, 4.5vw, 72px) clamp(48px, 4.5vw, 68px);
      border: 1px solid var(--glass-2-border);
      background: var(--glass-2-bg);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: var(--glass-inset), 0 24px 60px rgba(0, 0, 0, 0.32);
      padding: 22px 40px;
      text-align: center;
    }

    .comp-bottom-bar strong {
      display: block;
      margin-bottom: 7px;
      color: var(--gold);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .comp-bottom-bar span {
      color: var(--dark-text);
      font-size: clamp(13px, 1vw, 15px);
      font-weight: 300;
    }

    @media (max-width: 820px) {
      .comp-hero {
        min-height: auto;
        padding: 72px 22px;
      }

      .comp-hero-inner {
        width: 100%;
      }

      .comp-steps-row {
        padding: 0 22px;
      }

      .comp-steps-inner {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .comp-arrow {
        transform: rotate(90deg);
        padding: 4px 0;
      }

      .comp-bottom-bar {
        margin: 22px 22px 56px;
        padding: 18px 24px;
      }
    }

    /* ============================================================
       07 RANGS / PIERRES PRÉCIEUSES  (section sombre)
    ============================================================ */

    .valora-ranks {
      position: relative;
      min-height: 100svh;
      padding: clamp(44px, 4vw, 62px) clamp(32px, 4.5vw, 72px);
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--dark-bg);
      color: var(--cream-light);
      isolation: isolate;
    }

    .valora-ranks::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background-image:
        radial-gradient(ellipse 80% 90% at 50% 50%,
          rgba(14, 14, 14, 0.18) 0%,
          rgba(14, 14, 14, 0.52) 58%,
          rgba(14, 14, 14, 0.88) 100%
        ),
        url("./Rangs : pierres précieuses.webp");
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
    }

    .valora-ranks::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(180deg,
          rgba(14, 14, 14, 0.68) 0%,
          rgba(14, 14, 14, 0.10) 18%,
          transparent 42%,
          transparent 58%,
          rgba(14, 14, 14, 0.14) 80%,
          rgba(14, 14, 14, 0.72) 100%
        );
      pointer-events: none;
    }

    .ranks-inner {
      width: min(1180px, 100%);
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    /* V medallion */
    .ranks-medallion {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: 1px solid rgba(184, 149, 75, 0.48);
      background: rgba(184, 149, 75, 0.06);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
      gap: 1px;
    }

    .ranks-medallion-v {
      color: var(--gold);
      font-family: "Cormorant Garamond", serif;
      font-size: 24px;
      font-weight: 600;
      line-height: 1;
      letter-spacing: 0.04em;
    }

    .ranks-medallion-dot {
      color: var(--gold);
      font-size: 10px;
      line-height: 1;
      opacity: 0.72;
    }

    /* Heading block */
    .ranks-heading {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: clamp(36px, 4vw, 56px);
    }

    .ranks-heading h2 {
      margin: 0;
      color: var(--cream-light);
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(50px, 5.2vw, 84px);
      line-height: 1.0;
      font-weight: 500;
      letter-spacing: -0.04em;
    }

    .ranks-separator {
      width: 40px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin-bottom: 24px;
    }

    .ranks-heading p {
      margin: 0;
      max-width: 640px;
      color: rgba(251, 248, 241, 0.58);
      font-size: clamp(14px, 1.05vw, 17px);
      line-height: 1.9;
      font-weight: 400;
    }

    /* Gem timeline */
    .ranks-gems {
      position: relative;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: clamp(12px, 2.8vw, 44px);
      width: 100%;
      margin-bottom: clamp(24px, 3vw, 38px);
    }

    .ranks-gems::before {
      content: "";
      position: absolute;
      top: 44px;
      left: 6%;
      right: 6%;
      height: 1px;
      background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(184, 149, 75, 0.30) 8%,
        rgba(184, 149, 75, 0.30) 92%,
        transparent 100%
      );
      z-index: 0;
    }

    .rank-gem-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 11px;
      flex: 1;
      max-width: 160px;
      position: relative;
      z-index: 1;
    }

    .gem-circle {
      width: 110px;
      height: 110px;
      position: relative;
      flex-shrink: 0;
      background: transparent;
      border-radius: 50%;
      overflow: hidden;
      transition: transform 0.32s ease, filter 0.32s ease;
    }

    .gem-circle::before {
      content: none;
    }

    .gem-circle::after {
      content: none;
    }

    .rank-gem-item:hover .gem-circle {
      transform: translateY(-6px);
      filter: drop-shadow(0 8px 28px rgba(184, 149, 75, 0.40));
    }

    /* Gem images - fond transparent natif */
    .gem-circle img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      border-radius: 0;
    }

    /* Uniformisation taille - Obsidiane = référence (scale 1.0)
       Valeurs calibrées d'après occupation réelle dans le canvas 512×512 */
    .rank-perle .gem-circle img    { transform: scale(1.30); transform-origin: center; }
    .rank-diamant .gem-circle img  { transform: scale(1.14); transform-origin: center; }
    .rank-emeraude .gem-circle img { transform: scale(1.22); transform-origin: center; }
    .rank-saphir .gem-circle img   { transform: scale(1.14); transform-origin: center; }
    .rank-or .gem-circle img       { transform: scale(1.22); transform-origin: center; }

    /* Gem text */
    .rank-roman {
      color: rgba(184, 149, 75, 0.78);
      font-family: "Cormorant Garamond", serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.12em;
      line-height: 1;
    }

    .rank-gem-name {
      margin: 0;
      color: var(--cream-light);
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(16px, 1.5vw, 22px);
      line-height: 1;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .rank-gem-title {
      color: rgba(251, 248, 241, 0.40);
      font-size: 9.5px;
      font-weight: 600;
      letter-spacing: 0.20em;
      text-transform: uppercase;
    }

    .rank-gem-bar {
      width: 22px;
      height: 1px;
      background: rgba(184, 149, 75, 0.40);
    }

    /* Bottom card */
    .ranks-cta {
      width: 100%;
      max-width: 880px;
      border: 1px solid var(--glass-2-border);
      border-radius: 16px;
      background: var(--glass-2-bg);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: var(--glass-inset), 0 24px 60px rgba(0, 0, 0, 0.32);
      padding: clamp(22px, 2.2vw, 32px) clamp(24px, 2.8vw, 40px);
      display: flex;
      align-items: center;
      gap: 28px;
      text-align: left;
    }

    .ranks-cta-icon {
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      opacity: 0.68;
    }

    .ranks-cta-icon svg {
      width: 52px;
      height: 52px;
    }

    .ranks-cta strong {
      display: block;
      margin-bottom: 8px;
      color: var(--cream-light);
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(16px, 1.3vw, 20px);
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    .ranks-cta p {
      margin: 0;
      color: rgba(251, 248, 241, 0.55);
      font-size: 13px;
      line-height: 1.70;
    }

    @media (max-width: 1100px) {
      .ranks-gems {
        flex-wrap: wrap;
        gap: 28px 20px;
      }

      .rank-gem-item {
        min-width: 120px;
        flex: 0 1 calc(33% - 20px);
      }

      .ranks-gems::before {
        display: none;
      }
    }

    @media (max-width: 820px) {
      .valora-ranks {
        min-height: auto;
        padding: 72px 22px;
      }

      .ranks-heading h2 {
        font-size: clamp(44px, 14vw, 68px);
      }

      .ranks-heading p {
        font-size: 15px;
      }

      .ranks-gems {
        gap: 24px 16px;
      }

      .rank-gem-item {
        flex: 0 1 calc(50% - 16px);
      }

      .gem-circle {
        width: 74px;
        height: 74px;
      }

      .ranks-gems::before {
        display: none;
      }

      .ranks-cta {
        flex-direction: column;
        text-align: center;
        gap: 18px;
        padding: 24px;
      }
    }

    /* ============================================================
       08 ÉCOSYSTÈME VALORA
    ============================================================ */

    .valora-ecosystem {
      position: relative;
      background: var(--dark-bg);
      overflow: hidden;
      isolation: isolate;
      min-height: 100svh;
      display: flex;
      align-items: center;
    }

    .valora-ecosystem::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background-image:
        linear-gradient(90deg,
          rgba(17, 18, 20, 0.95) 0%,
          rgba(17, 18, 20, 0.88) 28%,
          rgba(17, 18, 20, 0.55) 52%,
          rgba(17, 18, 20, 0.10) 72%
        ),
        url("./Écosystème Valora.webp");
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
    }

    .eco-inner {
      width: min(1400px, 100%);
      margin: 0 auto;
      padding: clamp(72px, 6vw, 96px) clamp(32px, 4.5vw, 72px);
    }

    .eco-split {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(36px, 4vw, 56px);
    }

    .eco-left {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .eco-left h2 {
      margin: 0;
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(34px, 3.6vw, 58px);
      line-height: 1.08;
      font-weight: 400;
      letter-spacing: -0.04em;
      color: var(--dark-text);
    }

    .eco-left-sep {
      width: 52px;
      height: 1.5px;
      background: var(--gold);
      margin-bottom: 22px;
      flex-shrink: 0;
    }

    .eco-left p {
      margin: 0;
      color: var(--dark-muted);
      font-size: clamp(13px, 1vw, 15px);
      line-height: 1.85;
      font-weight: 300;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }

    .eco-card-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      width: 100%;
    }

    .eco-card {
      position: relative;
      background: var(--dark-surface);
      border: 1px solid var(--dark-border);
      border-radius: 4px;
      padding: 26px 24px 28px;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-height: 188px;
      transition: border-color 0.24s ease, transform 0.24s ease;
    }

    .eco-card:hover {
      border-color: rgba(184, 149, 75, 0.42);
      transform: translateY(-3px);
      box-shadow: 0 0 0 1px rgba(184, 149, 75, 0.22), 0 16px 40px rgba(0, 0, 0, 0.40);
    }

    .eco-card-icon {
      color: var(--gold);
      flex-shrink: 0;
    }

    .eco-card h4 {
      margin: 0 0 6px;
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: 22px;
      font-weight: 500;
      color: var(--dark-text);
      letter-spacing: -0.02em;
      line-height: 1;
    }

    .eco-card p {
      margin: 0;
      font-size: 12.5px;
      line-height: 1.68;
      color: var(--dark-muted);
      font-weight: 300;
    }

    .eco-card-link {
      margin-top: auto;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      text-decoration: none;
    }

    @media (max-width: 960px) {
      .eco-split { grid-template-columns: 1fr; gap: 40px; }
      .eco-left p { max-width: 100%; }
    }

    @media (max-width: 600px) {
      .eco-card-grid { grid-template-columns: 1fr; }
      .eco-inner { padding: 64px 22px; }
    }

    /* ============================================================
       09 FEUILLE DE ROUTE  (section sombre)
    ============================================================ */

    .valora-roadmap {
      position: relative;
      min-height: 100svh;
      padding: clamp(44px, 4vw, 62px) clamp(32px, 4.5vw, 72px);
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--dark-bg);
      color: var(--cream-light);
      isolation: isolate;
    }

    .valora-roadmap::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        radial-gradient(ellipse 80% 60% at 0% 0%,  rgba(10, 8, 5, 1), transparent 70%),
        radial-gradient(ellipse 70% 80% at 100% 100%, rgba(6, 5, 3, 1), transparent 65%),
        radial-gradient(ellipse 100% 100% at 50% 50%, rgba(8, 6, 4, 1), transparent);
    }

    .valora-roadmap::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        radial-gradient(ellipse 55% 45% at 8% 18%,  rgba(184, 149, 75, 0.07), transparent),
        radial-gradient(ellipse 45% 55% at 92% 82%, rgba(184, 149, 75, 0.05), transparent),
        radial-gradient(ellipse 30% 30% at 50% 50%, rgba(184, 149, 75, 0.03), transparent);
      pointer-events: none;
    }

    .roadmap-heading-accent {
      display: block;
      width: 48px;
      height: 1.5px;
      background: linear-gradient(90deg, var(--gold), transparent);
      margin-bottom: 20px;
    }

    .roadmap-inner {
      width: min(1420px, 100%);
      margin: 0 auto;
    }

    .roadmap-heading {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: clamp(40px, 4.5vw, 58px);
    }

    .roadmap-heading h2 {
      margin: 0;
      max-width: none;
      color: var(--cream-light);
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(28px, 3vw, 50px);
      line-height: 1.08;
      font-weight: 500;
      letter-spacing: -0.05em;
      white-space: nowrap;
    }

    .roadmap-heading p {
      margin: 0 auto;
      max-width: 740px;
      color: rgba(251, 248, 241, 0.64);
      font-size: clamp(15px, 1.15vw, 18px);
      line-height: 1.7;
      font-weight: 400;
    }

    .roadmap-timeline {
      position: relative;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 10px;
    }

    .roadmap-timeline::before {
      content: "";
      position: absolute;
      left: 6%;
      right: 6%;
      top: 44px;
      height: 1px;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(184, 149, 75, 0.32) 12%,
        rgba(184, 149, 75, 0.32) 88%,
        transparent
      );
    }

    .roadmap-step {
      position: relative;
      min-height: 0;
      padding: 22px 18px 26px;
      border-radius: 6px;
      border: 1px solid rgba(184, 149, 75, 0.2);
      background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.055),
        rgba(255, 255, 255, 0.018)
      );
      backdrop-filter: blur(10px);
      box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transition:
        transform 0.26s ease,
        border-color 0.26s ease,
        box-shadow 0.26s ease;
    }

    .roadmap-step::before {
      display: none;
    }

    .roadmap-step:hover {
      transform: translateY(-5px);
      border-color: rgba(184, 149, 75, 0.42);
      box-shadow:
        0 28px 72px rgba(0, 0, 0, 0.3),
        0 0 32px rgba(184, 149, 75, 0.10);
    }

    .roadmap-step.active {
      border-color: rgba(184, 149, 75, 0.42);
      background: linear-gradient(
        180deg,
        rgba(184, 149, 75, 0.1),
        rgba(255, 255, 255, 0.02)
      );
    }

    .step-marker {
      position: relative;
      z-index: 1;
      width: 28px;
      height: 28px;
      margin-bottom: 18px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(184, 149, 75, 0.5);
      background: rgba(14, 14, 14, 0.85);
    }

    .step-marker span {
      color: var(--gold);
      font-family: "Montserrat", sans-serif;
      font-size: 10px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.04em;
    }

    .step-content {
      position: relative;
      z-index: 1;
    }

    .step-date {
      display: block;
      margin-bottom: 14px;
      color: var(--gold);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.24em;
      text-transform: uppercase;
    }

    .step-content h3 {
      margin: 0;
      color: var(--cream-light);
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(18px, 1.6vw, 26px);
      line-height: 1.1;
      font-weight: 500;
      letter-spacing: -0.03em;
    }

    .step-content p {
      margin: 10px 0 0;
      color: rgba(251, 248, 241, 0.55);
      font-size: 12px;
      line-height: 1.6;
    }

    .roadmap-footer {
      margin-top: 18px;
      padding: 22px 30px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border: 1px solid rgba(184, 149, 75, 0.18);
      border-radius: 4px;
      background: rgba(255, 255, 255, 0.03);
    }

    .roadmap-footer div {
      position: relative;
      padding: 0 28px;
      border-right: 1px solid rgba(184, 149, 75, 0.14);
    }

    .roadmap-footer div:first-child {
      padding-left: 0;
    }

    .roadmap-footer div:last-child {
      border-right: none;
    }

    .roadmap-footer strong {
      display: block;
      margin-bottom: 5px;
      color: var(--cream-light);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.03em;
    }

    .roadmap-footer span {
      color: rgba(251, 248, 241, 0.52);
      font-size: 12px;
      line-height: 1.55;
    }

    @media (max-width: 1240px) {
      .roadmap-heading {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .roadmap-timeline {
        grid-template-columns: repeat(3, 1fr);
      }

      .roadmap-timeline::before {
        display: none;
      }

      .roadmap-step {
        min-height: 220px;
      }
    }

    @media (max-width: 820px) {
      .valora-roadmap {
        min-height: auto;
        padding: 72px 22px;
      }

      .roadmap-heading h2 {
        font-size: clamp(48px, 15vw, 72px);
      }

      .roadmap-heading p {
        font-size: 16px;
      }

      .roadmap-timeline,
      .roadmap-footer {
        grid-template-columns: 1fr;
      }

      .roadmap-footer div {
        border-right: none;
        border-bottom: 1px solid rgba(184, 149, 75, 0.14);
        padding: 16px 0;
      }

      .roadmap-footer div:last-child {
        border-bottom: none;
      }

      .roadmap-step {
        min-height: 180px;
        border-radius: 6px;
      }

      .step-marker {
        width: 28px;
        height: 28px;
        margin-bottom: 22px;
      }

      .step-marker span {
        font-size: 9px;
      }

      .roadmap-footer {
        padding: 24px;
      }
    }

    /* ============================================================
       10 CTA FINAL + FORMULAIRE D'ACCÈS
    ============================================================ */
    .valora-access {
      position: relative;
      min-height: 100svh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--dark-bg);
      isolation: isolate;
    }

    .valora-access::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background-image: url("./Rejoindre Valora.webp");
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
    }

    .valora-access::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: rgba(17, 18, 20, 0.72);
      pointer-events: none;
    }

    .access-inner {
      width: min(1300px, 100%);
      margin: 0 auto;
      padding: clamp(72px, 6vw, 100px) clamp(32px, 4.5vw, 72px);
    }

    .access-grid {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: clamp(40px, 4vw, 64px);
    }

    /* --- Content centré --- */
    .access-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: none;
      width: 100%;
    }

    .access-monogram-badge {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: 1px solid rgba(184, 149, 75, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 26px;
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: 20px;
      font-weight: 400;
      color: var(--gold);
      flex-shrink: 0;
    }

    .access-content h2 {
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(22px, 2.4vw, 40px);
      font-weight: 400;
      line-height: 1.12;
      letter-spacing: -0.03em;
      color: var(--dark-text);
      margin: 0;
      white-space: nowrap;
    }

    .access-line {
      width: 52px;
      height: 1.5px;
      background: var(--gold);
      margin-bottom: 24px;
      flex-shrink: 0;
    }

    .access-content-text {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 36px;
      max-width: 500px;
      text-align: center;
    }

    .access-content-text p {
      margin: 0;
      font-size: clamp(13px, 1vw, 15px);
      line-height: 1.82;
      color: var(--dark-muted);
      font-weight: 300;
    }

    .access-trust {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      padding-top: 26px;
      border-top: 1px solid rgba(255, 255, 255, 0.10);
      width: 100%;
      max-width: 620px;
    }

    .access-trust-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding-right: 18px;
    }

    .access-trust-item + .access-trust-item {
      padding-left: 18px;
      border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    .access-trust-item:last-child {
      padding-right: 0;
    }

    .access-trust-icon {
      flex-shrink: 0;
      color: var(--gold);
      margin-top: 1px;
    }

    .access-trust-label {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .access-trust-label strong {
      font-size: clamp(13px, 1.05vw, 15.5px);
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--dark-text);
      line-height: 1.3;
    }

    .access-trust-label span {
      font-size: clamp(12px, 0.95vw, 14px);
      font-weight: 300;
      color: var(--dark-muted);
      line-height: 1.6;
    }

    .access-form-card {
      background: rgba(17, 18, 20, 0.80);
      border: 1px solid var(--glass-2-border);
      border-radius: 2px;
      padding: 40px 44px;
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      box-shadow: var(--glass-inset), 0 32px 80px rgba(0, 0, 0, 0.45);
      width: min(680px, 100%);
    }

    .form-kicker {
      font-family: "Montserrat", sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--gold);
      margin: 0 0 10px;
    }

    .form-kicker-sep {
      width: 36px;
      height: 1.5px;
      background: var(--gold);
      margin-bottom: 24px;
    }

    .access-form {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .form-field label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--dark-text);
    }

    .form-field input,
    .form-field textarea {
      font-family: "Montserrat", sans-serif;
      font-size: 13px;
      font-weight: 300;
      color: var(--dark-text);
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--dark-border);
      border-radius: 2px;
      padding: 13px 15px;
      outline: none;
      transition: border-color 0.2s;
    }

    .form-field input::placeholder,
    .form-field textarea::placeholder {
      color: var(--dark-muted-soft);
      opacity: 0.65;
    }

    .form-field input:-webkit-autofill {
      -webkit-box-shadow: 0 0 0 100px rgba(17, 18, 20, 0.95) inset;
      -webkit-text-fill-color: var(--dark-text);
    }

    .form-field input:focus,
    .form-field textarea:focus {
      border-color: var(--gold);
    }

    .form-field textarea {
      resize: vertical;
      min-height: 96px;
    }

    .form-submit {
      margin-top: 6px;
      width: 100%;
      padding: 18px 24px;
      background: var(--gold);
      color: var(--black);
      border: none;
      border-radius: 2px;
      font-family: "Montserrat", sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: opacity 0.22s;
    }

    .form-submit:hover {
      opacity: 0.82;
    }

    .form-privacy {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-top: 14px;
      font-size: 11px;
      font-weight: 300;
      color: var(--dark-muted-soft);
      line-height: 1.62;
    }

    .form-privacy svg {
      flex-shrink: 0;
      margin-top: 1px;
      opacity: 0.55;
    }

    /* --- Responsive --- */
    @media (max-width: 960px) {
      .access-grid { grid-template-columns: 1fr; }
      .access-trust { grid-template-columns: 1fr; gap: 16px; }
      .access-trust-item + .access-trust-item {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.08);
        padding: 16px 0 0;
      }
    }

    @media (max-width: 600px) {
      .valora-access { min-height: auto; }
      .access-form-card { padding: 32px 24px; }
      .access-inner { padding: 64px 20px; }
    }

    /* ============================================================
       11 FOOTER
    ============================================================ */
    .valora-footer {
      position: relative;
      min-height: 68svh;
      padding: clamp(72px, 7vw, 110px) clamp(32px, 6vw, 92px) 38px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--dark-bg);
      color: var(--cream-light);
      isolation: isolate;
      border-top: 1px solid rgba(184, 149, 75, 0.22);
    }

    .valora-footer::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        radial-gradient(ellipse 90% 70% at 15% 30%, rgba(8, 6, 4, 1), transparent),
        radial-gradient(ellipse 70% 90% at 80% 75%, rgba(5, 4, 2, 1), transparent);
    }

    .valora-footer::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        radial-gradient(circle at 22% 20%, rgba(184, 149, 75, 0.09), transparent 38%),
        radial-gradient(circle at 76% 78%, rgba(184, 149, 75, 0.06), transparent 32%);
      pointer-events: none;
    }

    .footer-inner {
      width: min(1420px, 100%);
      margin: 0 auto;
    }

    .footer-main {
      display: grid;
      grid-template-columns: minmax(360px, 0.88fr) minmax(560px, 1.12fr);
      gap: clamp(56px, 8vw, 120px);
      align-items: start;
    }

    .footer-logo {
      display: inline-block;
      color: var(--cream-light);
      text-decoration: none;
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(50px, 5.2vw, 88px);
      line-height: 0.85;
      font-weight: 500;
      letter-spacing: 0.16em;
    }

    .footer-signature {
      margin: 28px 0 0;
      color: var(--gold);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.04em;
    }

    .footer-signature span {
      margin: 0 10px;
    }

    .footer-text {
      max-width: 520px;
      margin: 34px 0 0;
      color: var(--muted-light);
      font-size: 15px;
      line-height: 1.8;
    }

    .footer-tagline {
      margin: 28px 0 0;
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(16px, 1.4vw, 20px);
      font-style: italic;
      font-weight: 300;
      color: rgba(251, 248, 241, 0.45);
      letter-spacing: 0.02em;
    }

    .footer-cta {
      width: fit-content;
      min-height: 58px;
      margin-top: 42px;
      padding: 0 30px;
      display: inline-flex;
      align-items: center;
      gap: 24px;
      border: 1px solid rgba(184, 149, 75, 0.58);
      color: var(--gold);
      text-decoration: none;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.17em;
      text-transform: uppercase;
      transition:
        transform 0.24s ease,
        background 0.24s ease,
        color 0.24s ease,
        box-shadow 0.24s ease;
    }

    .footer-cta span {
      font-size: 22px;
      line-height: 1;
    }

    .footer-cta:hover {
      transform: translateY(-3px);
      background: var(--gold);
      color: var(--black);
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
    }

    .footer-columns {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
    }

    .footer-col {
      padding: 0 clamp(22px, 3vw, 40px);
      border-left: 1px solid rgba(184, 149, 75, 0.16);
    }

    .footer-col:first-child {
      padding-left: 0;
      border-left: none;
    }

    .footer-col:last-child {
      padding-right: 0;
    }

    .footer-col h3 {
      margin: 0 0 20px;
      font-family: "Montserrat", sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .footer-col a,
    .footer-col p {
      display: block;
      margin: 0 0 15px;
      color: var(--muted-light);
      text-decoration: none;
      font-size: 13px;
      line-height: 1.65;
      transition: color 0.22s ease, transform 0.22s ease;
    }

    .footer-col a:hover {
      color: var(--gold);
      transform: translateX(4px);
    }

    .footer-divider {
      width: 100%;
      height: 1px;
      margin: clamp(52px, 6vw, 86px) 0 24px;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(184, 149, 75, 0.34),
        transparent
      );
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .footer-bottom p {
      margin: 0;
      color: var(--muted-soft);
      font-size: 12px;
      line-height: 1.6;
    }

    .footer-legal {
      display: flex;
      align-items: center;
      gap: 26px;
    }

    .footer-legal a {
      color: var(--muted-soft);
      text-decoration: none;
      font-size: 12px;
      transition: color 0.22s ease;
    }

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

    @media (max-width: 1180px) {
      .valora-footer {
        min-height: auto;
      }

      .footer-main {
        grid-template-columns: 1fr;
      }

      .footer-columns {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 820px) {
      .valora-footer {
        padding: 72px 22px 32px;
      }

      .footer-logo {
        font-size: clamp(50px, 15vw, 78px);
      }

      .footer-columns {
        grid-template-columns: 1fr;
        padding: 30px 24px;
        border-radius: var(--radius);
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-legal {
        flex-wrap: wrap;
        gap: 16px;
      }

      .footer-cta {
        width: 100%;
        justify-content: center;
      }
    }

    /* ============================================================
       DESIGN SYSTEM Radius unifié (--radius: 16px) partout
    ============================================================ */
    .overview-card,
    .overview-bottom,
    .delta-transparency-card,
    .strategy-card,
    .delta-bottom-bar,
    .academy-module-card,
    .comp-step-card,
    .comp-bottom-bar,
    .ranks-cta,
    .eco-card,
    .roadmap-step,
    .roadmap-footer,
    .access-form-card {
      border-radius: var(--radius);
    }

    /* Boutons = pill 999px */
    .btn-primary,
    .btn-secondary,
    .academy-hero-cta,
    .footer-cta,
    .form-submit {
      border-radius: 999px;
    }

    .form-field input,
    .form-field textarea {
      border-radius: 12px;
    }

    /* ============================================================
       GLASS SYSTEM Upgrade complet, variables unifiées
    ============================================================ */

    /* Overview-card : passer sur glass-1 */
    .overview-card {
      background: var(--glass-1-bg);
      border-color: var(--glass-1-border);
      -webkit-backdrop-filter: blur(14px);
      backdrop-filter: blur(14px);
    }

    /* Overview-bottom : glass-2 */
    .overview-bottom {
      background: var(--glass-2-bg);
      border-color: var(--glass-2-border);
      -webkit-backdrop-filter: blur(18px);
      backdrop-filter: blur(18px);
    }

    /* Eco-card : passer sur glass-1 */
    .eco-card {
      background: var(--glass-1-bg);
      border-color: var(--glass-1-border);
    }

    /* Roadmap-footer : glass-2 avec bordure gold */
    .roadmap-footer {
      background: var(--glass-2-bg);
      border-color: var(--glass-2-border);
      -webkit-backdrop-filter: blur(18px);
      backdrop-filter: blur(18px);
      box-shadow: var(--glass-inset), 0 16px 40px rgba(0, 0, 0, 0.28);
    }

    /* Roadmap-step : harmoniser sur glass-1 */
    .roadmap-step {
      background: var(--glass-1-bg);
      border-color: var(--glass-1-border);
      box-shadow: var(--glass-inset), 0 16px 48px rgba(0, 0, 0, 0.22);
    }

    /* Bouton secondaire : glass subtil */
    .btn-secondary {
      background: var(--glass-1-bg);
      border-color: var(--glass-1-border);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: var(--glass-inset);
    }

    /* Bouton primaire : inset glow */
    .btn-primary {
      box-shadow: var(--glass-inset), 0 22px 46px rgba(14, 14, 14, 0.28);
    }

    /* ============================================================
       GLASS SYSTEM Inset glow harmonisation (cards existantes)
    ============================================================ */
    .overview-card,
    .overview-bottom,
    .eco-card {
      box-shadow: var(--glass-inset), 0 28px 80px rgba(0, 0, 0, 0.30);
    }

    /* ============================================================
       FONDU ENTRE SECTIONS Transitions invisibles
       mask-image top + bottom : le contenu apparaît et disparaît
       en fondu dans le fond anthracite commun, sans aucune démarcation.
    ============================================================ */

    /* Sections avec fondu haut ET bas */
    .valora-overview,
    .valora-delta,
    .valora-academy,
    .valora-token,
    .valora-compensation,
    .valora-ranks,
    .valora-ecosystem,
    .valora-ecosystem-pillars,
    .valora-roadmap,
    .valora-access,
    .valora-vision,
    .valora-principles,
    .valora-team,
    .valora-belonging,
    .valora-pricing {
      -webkit-mask-image: linear-gradient(
        to bottom,
        transparent           0px,
        rgba(0,0,0,0.15)    40px,
        rgba(0,0,0,0.65)    90px,
        black               160px,
        black               calc(100% - 160px),
        rgba(0,0,0,0.65)    calc(100% - 90px),
        rgba(0,0,0,0.15)    calc(100% - 40px),
        transparent         100%
      );
      mask-image: linear-gradient(
        to bottom,
        transparent           0px,
        rgba(0,0,0,0.15)    40px,
        rgba(0,0,0,0.65)    90px,
        black               160px,
        black               calc(100% - 160px),
        rgba(0,0,0,0.65)    calc(100% - 90px),
        rgba(0,0,0,0.15)    calc(100% - 40px),
        transparent         100%
      );
    }

    /* Footer : fondu haut seulement (dernière section) */
    .valora-footer {
      -webkit-mask-image: linear-gradient(
        to bottom,
        transparent           0px,
        rgba(0,0,0,0.15)    40px,
        rgba(0,0,0,0.65)    90px,
        black               160px
      );
      mask-image: linear-gradient(
        to bottom,
        transparent           0px,
        rgba(0,0,0,0.15)    40px,
        rgba(0,0,0,0.65)    90px,
        black               160px
      );
    }

    /* ============================================================
       FOND UNI SOMBRE Suppression des images de fond sur toutes
       les sections (hormis hero) pour un noir anthracite uniforme
    ============================================================ */
    .valora-overview::before,
    .valora-academy::before,
    .valora-token::before,
    .valora-compensation::before,
    .valora-ranks::before,
    .valora-ecosystem::before,
    .valora-access::before {
      background-image: none;
    }

    /* Supprime aussi les pseudo-éléments de fondu en bas (academy/token/comp) */
    .valora-overview::after,
    .valora-academy::after,
    .valora-token::after,
    .valora-compensation::after,
    .valora-access::after {
      display: none;
    }

    /* ============================================================
       SECTION A - VISION FONDATRICE
    ============================================================ */
    .valora-vision {
      position: relative;
      background: var(--dark-bg);
      padding: clamp(72px, 7vw, 110px) clamp(32px, 4.5vw, 72px);
      isolation: isolate;
    }
    .valora-vision::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(184, 149, 75, 0.04), transparent 70%);
      pointer-events: none;
    }
    .vision-inner {
      width: min(860px, 100%);
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: clamp(32px, 3.5vw, 52px);
    }
    .vision-heading h2 {
      margin: 0;
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(32px, 3.6vw, 54px);
      line-height: 1.12;
      font-weight: 400;
      letter-spacing: -0.04em;
      color: var(--dark-text);
    }
    .vision-quote {
      margin: 0;
      padding: clamp(28px, 3vw, 44px) clamp(32px, 4vw, 56px);
      background: var(--glass-2-bg);
      border: 1px solid var(--glass-2-border);
      border-left: 3px solid rgba(184, 149, 75, 0.52);
      border-radius: var(--radius);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: var(--glass-inset), 0 24px 60px rgba(0, 0, 0, 0.28);
      text-align: left;
    }
    .vision-quote p {
      margin: 0;
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(18px, 1.6vw, 26px);
      line-height: 1.65;
      font-weight: 400;
      font-style: italic;
      color: var(--dark-text);
      letter-spacing: -0.01em;
    }
    .vision-pillars {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      width: 100%;
    }
    .vision-pillar {
      padding: 20px 18px;
      background: var(--glass-1-bg);
      border: 1px solid var(--glass-1-border);
      border-radius: var(--radius);
      box-shadow: var(--glass-inset), 0 16px 40px rgba(0, 0, 0, 0.22);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      text-align: center;
    }
    .vision-pillar-icon {
      color: var(--gold);
      font-size: 10px;
      opacity: 0.75;
    }
    .vision-pillar p {
      margin: 0;
      color: var(--dark-muted);
      font-size: clamp(12px, 0.95vw, 14px);
      line-height: 1.65;
      font-weight: 300;
    }

    /* ============================================================
       SECTION B - NOS PRINCIPES
    ============================================================ */
    .valora-principles {
      position: relative;
      background: var(--dark-bg);
      padding: clamp(60px, 5.5vw, 88px) clamp(32px, 4.5vw, 72px);
      isolation: isolate;
    }
    .principles-inner {
      width: min(1280px, 100%);
      margin: 0 auto;
    }
    .principles-heading {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: clamp(36px, 4vw, 56px);
    }
    .principles-heading h2 {
      margin: 0;
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(32px, 3.6vw, 54px);
      line-height: 1.12;
      font-weight: 400;
      letter-spacing: -0.04em;
      color: var(--dark-text);
    }
    .principles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .principle-card {
      padding: clamp(28px, 3vw, 44px) clamp(24px, 2.5vw, 36px);
      background: var(--glass-1-bg);
      border: 1px solid var(--glass-1-border);
      border-radius: var(--radius);
      box-shadow: var(--glass-inset), 0 20px 56px rgba(0, 0, 0, 0.28);
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: border-color 0.26s ease, transform 0.26s ease;
    }
    .principle-card:hover {
      border-color: var(--dark-border-hover);
      transform: translateY(-4px);
      box-shadow: var(--glass-inset), 0 0 0 1px rgba(184, 149, 75, 0.22), 0 28px 72px rgba(0, 0, 0, 0.38);
    }
    .principle-num {
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: 42px;
      font-weight: 400;
      color: rgba(184, 149, 75, 0.28);
      line-height: 1;
      letter-spacing: -0.04em;
    }
    .principle-body h3 {
      margin: 0 0 14px;
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(20px, 1.7vw, 28px);
      font-weight: 500;
      letter-spacing: -0.02em;
      color: var(--dark-text);
      line-height: 1.15;
    }
    .principle-body p {
      margin: 0;
      color: var(--dark-muted);
      font-size: clamp(13px, 1vw, 15px);
      line-height: 1.82;
      font-weight: 300;
    }

    /* ============================================================
       SECTION C - L'ÉCOSYSTÈME VALORA (6 PILIERS)
    ============================================================ */
    .valora-ecosystem-pillars {
      position: relative;
      background: var(--dark-bg);
      padding: clamp(72px, 6vw, 100px) clamp(32px, 4.5vw, 72px);
      isolation: isolate;
    }
    .valora-ecosystem-pillars::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(184, 149, 75, 0.05), transparent 65%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(184, 149, 75, 0.03), transparent 60%);
      pointer-events: none;
    }
    .ep-inner {
      width: min(1420px, 100%);
      margin: 0 auto;
    }
    .ep-heading {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: clamp(42px, 5vw, 68px);
    }
    .ep-heading h2 {
      margin: 0;
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(32px, 3.6vw, 54px);
      line-height: 1.12;
      font-weight: 400;
      letter-spacing: -0.04em;
      color: var(--dark-text);
    }
    .ep-heading p {
      margin: 0;
      color: var(--dark-muted);
      font-size: clamp(14px, 1.1vw, 17px);
      font-weight: 300;
      line-height: 1.75;
      max-width: 520px;
    }
    .ep-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .ep-card {
      padding: clamp(28px, 3vw, 44px) clamp(22px, 2.2vw, 34px);
      background: var(--glass-1-bg);
      border: 1px solid var(--glass-1-border);
      border-radius: var(--radius);
      box-shadow: var(--glass-inset), 0 20px 56px rgba(0, 0, 0, 0.26);
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: border-color 0.26s ease, transform 0.26s ease, box-shadow 0.26s ease;
    }
    .ep-card:hover {
      border-color: var(--dark-border-hover);
      transform: translateY(-4px);
      box-shadow: var(--glass-inset), 0 0 0 1px rgba(184, 149, 75, 0.22), 0 28px 72px rgba(0, 0, 0, 0.36);
    }
    .ep-card-status {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      width: fit-content;
    }
    .ep-card-status::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
      box-shadow: 0 0 8px rgba(184, 149, 75, 0.55);
    }
    .ep-card-status--dev {
      color: var(--dark-muted);
    }
    .ep-card-status--dev::before {
      background: var(--dark-muted);
      box-shadow: none;
    }
    .ep-card h3 {
      margin: 0;
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(20px, 1.7vw, 28px);
      font-weight: 500;
      letter-spacing: -0.02em;
      color: var(--dark-text);
      line-height: 1.15;
    }
    .ep-card p {
      margin: 0;
      color: var(--dark-muted);
      font-size: clamp(12.5px, 0.95vw, 14.5px);
      line-height: 1.78;
      font-weight: 300;
    }

    /* ============================================================
       SECTION D - L'ÉQUIPE FONDATRICE
    ============================================================ */
    .valora-team {
      position: relative;
      background: var(--dark-bg);
      padding: clamp(52px, 4.5vw, 72px) clamp(32px, 4.5vw, 72px);
      isolation: isolate;
    }
    .team-inner {
      width: min(1200px, 100%);
      margin: 0 auto;
    }
    .team-heading {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: clamp(28px, 3.5vw, 44px);
    }
    .team-heading h2 {
      margin: 0;
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(28px, 3vw, 46px);
      line-height: 1.12;
      font-weight: 400;
      letter-spacing: -0.04em;
      color: var(--dark-text);
    }
    .team-heading p {
      margin: 0;
      color: var(--dark-muted);
      font-size: clamp(13px, 1vw, 15px);
      font-weight: 300;
      line-height: 1.75;
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    /* Layout horizontal : photo gauche, bio droite */
    .team-card {
      background: var(--glass-1-bg);
      border: 1px solid var(--glass-1-border);
      border-radius: var(--radius);
      box-shadow: var(--glass-inset), 0 20px 52px rgba(0, 0, 0, 0.28);
      overflow: hidden;
      display: flex;
      flex-direction: row;
      align-items: stretch;
      transition: border-color 0.26s ease, transform 0.26s ease;
    }
    .team-card:hover {
      border-color: var(--dark-border-hover);
      transform: translateY(-3px);
    }
    .team-photo-wrap {
      width: 220px;
      flex-shrink: 0;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.04);
    }
    .team-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 15%;
      display: block;
      transition: transform 0.48s ease;
    }
    .team-card:hover .team-photo {
      transform: scale(1.04);
    }
    .team-bio {
      padding: clamp(20px, 2vw, 28px) clamp(20px, 2vw, 28px);
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1;
      min-width: 0;
    }
    .team-meta h3 {
      margin: 0 0 5px;
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(20px, 1.7vw, 26px);
      font-weight: 500;
      letter-spacing: -0.02em;
      color: var(--dark-text);
      line-height: 1.1;
    }
    .team-title {
      margin: 0;
      font-size: 8px;
      font-weight: 700;
      letter-spacing: 0.20em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .team-sep {
      width: 32px;
      height: 1px;
      background: linear-gradient(90deg, var(--gold), transparent);
      flex-shrink: 0;
    }
    .team-bio > p {
      margin: 0;
      color: var(--dark-muted);
      font-size: clamp(12px, 0.9vw, 13.5px);
      line-height: 1.78;
      font-weight: 300;
    }
    .team-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 2px;
    }
    .team-tag {
      display: inline-flex;
      padding: 4px 10px;
      border: 1px solid var(--glass-2-border);
      border-radius: 999px;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--dark-muted);
      background: var(--glass-1-bg);
    }

    /* ============================================================
       SECTION E - CE QUE SIGNIFIE APPARTENIR
    ============================================================ */
    .valora-belonging {
      position: relative;
      background: var(--dark-bg);
      padding: clamp(72px, 6vw, 100px) clamp(32px, 4.5vw, 72px);
      isolation: isolate;
    }
    .belonging-inner {
      width: min(840px, 100%);
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: clamp(28px, 3vw, 42px);
    }
    .belonging-heading h2 {
      margin: 0;
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(32px, 3.6vw, 54px);
      line-height: 1.12;
      font-weight: 400;
      letter-spacing: -0.04em;
      color: var(--dark-text);
    }
    .belonging-content {
      display: flex;
      flex-direction: column;
      gap: 18px;
      max-width: 680px;
    }
    .belonging-content p {
      margin: 0;
      color: var(--dark-muted);
      font-size: clamp(14px, 1.1vw, 17px);
      line-height: 1.88;
      font-weight: 300;
    }
    .belonging-callout {
      width: 100%;
      max-width: 640px;
      padding: clamp(24px, 2.5vw, 36px) clamp(28px, 3vw, 48px);
      background: var(--glass-2-bg);
      border: 1px solid var(--glass-2-border);
      border-radius: var(--radius);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: var(--glass-inset), 0 24px 60px rgba(0, 0, 0, 0.32);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }
    .belonging-callout-label {
      margin: 0;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .belonging-callout-values {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .belonging-callout-values span {
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(22px, 2vw, 32px);
      font-weight: 500;
      color: var(--dark-text);
      letter-spacing: -0.02em;
      line-height: 1;
    }
    .belonging-dot {
      color: var(--gold) !important;
      font-size: 10px !important;
      font-family: "Montserrat", sans-serif !important;
      opacity: 0.65;
    }
    .belonging-footnote {
      margin: 0;
      font-size: clamp(12px, 0.95vw, 14px);
      color: var(--dark-muted-soft);
      font-weight: 300;
      font-style: italic;
      letter-spacing: 0.04em;
    }

    /* ============================================================
       SECTION F - ADHÉSION À VIE (PRICING)
    ============================================================ */
    .valora-pricing {
      position: relative;
      background: var(--dark-bg);
      padding: clamp(72px, 6vw, 100px) clamp(32px, 4.5vw, 72px);
      isolation: isolate;
    }
    .pricing-inner {
      width: min(1420px, 100%);
      margin: 0 auto;
    }
    .pricing-heading {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: clamp(42px, 5vw, 68px);
    }
    .pricing-heading h2 {
      margin: 0;
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(32px, 3.6vw, 54px);
      line-height: 1.12;
      font-weight: 400;
      letter-spacing: -0.04em;
      color: var(--dark-text);
    }
    .pricing-heading p {
      margin: 0;
      color: var(--dark-muted);
      font-size: clamp(14px, 1.1vw, 17px);
      font-weight: 300;
      line-height: 1.75;
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      align-items: stretch;
    }
    .pricing-card {
      position: relative;
      background: var(--glass-1-bg);
      border: 1px solid var(--glass-1-border);
      border-radius: var(--radius);
      box-shadow: var(--glass-inset), 0 20px 56px rgba(0, 0, 0, 0.28);
      padding: clamp(28px, 3vw, 40px) clamp(22px, 2.2vw, 32px);
      display: flex;
      flex-direction: column;
      gap: 24px;
      transition: border-color 0.26s ease, transform 0.26s ease, box-shadow 0.26s ease;
    }
    .pricing-card:hover {
      border-color: var(--dark-border-hover);
      transform: translateY(-4px);
      box-shadow: var(--glass-inset), 0 0 0 1px rgba(184, 149, 75, 0.22), 0 28px 72px rgba(0, 0, 0, 0.36);
    }
    .pricing-card--featured {
      background: linear-gradient(160deg, rgba(184, 149, 75, 0.10) 0%, rgba(255, 255, 255, 0.04) 60%, rgba(255, 255, 255, 0.03) 100%);
      border-color: rgba(184, 149, 75, 0.42);
      box-shadow: var(--glass-inset), 0 0 0 1px rgba(184, 149, 75, 0.18), 0 28px 72px rgba(0, 0, 0, 0.34);
    }
    .pricing-card--featured:hover {
      border-color: rgba(184, 149, 75, 0.62);
      box-shadow: var(--glass-inset), 0 0 0 1px rgba(184, 149, 75, 0.32), 0 36px 90px rgba(184, 149, 75, 0.10);
    }
    .pricing-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--black);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 999px;
      white-space: nowrap;
    }
    .pricing-card-head {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .pricing-card-head h3 {
      margin: 0;
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(26px, 2.2vw, 36px);
      font-weight: 500;
      letter-spacing: -0.03em;
      color: var(--dark-text);
      line-height: 1;
    }
    .pricing-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
    }
    .pricing-amount {
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(38px, 3.5vw, 56px);
      font-weight: 400;
      color: var(--gold);
      line-height: 1;
      letter-spacing: -0.04em;
    }
    .pricing-currency {
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(20px, 1.8vw, 28px);
      color: var(--gold);
      font-weight: 400;
      line-height: 1;
    }
    .pricing-desc {
      margin: 0;
      color: var(--dark-muted);
      font-size: clamp(12px, 0.9vw, 13.5px);
      line-height: 1.65;
      font-weight: 300;
    }
    .pricing-features {
      margin: 0;
      padding: 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex: 1;
    }
    .pricing-features li {
      position: relative;
      padding-left: 20px;
      color: var(--dark-muted);
      font-size: clamp(12px, 0.9vw, 13.5px);
      line-height: 1.6;
      font-weight: 300;
    }
    .pricing-features li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--gold);
      font-size: 11px;
      font-weight: 700;
      line-height: 1.6;
    }
    .pricing-features li.pricing-feature-header {
      padding-left: 0;
      color: var(--dark-text);
      font-weight: 500;
      font-size: clamp(11px, 0.85vw, 12.5px);
      letter-spacing: 0.04em;
    }
    .pricing-features li.pricing-feature-header::before {
      display: none;
    }
    .pricing-cta {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 14px 20px;
      background: transparent;
      border: 1px solid var(--glass-2-border);
      border-radius: 999px;
      color: var(--dark-text);
      text-decoration: none;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      transition: background 0.24s ease, border-color 0.24s ease, color 0.24s ease;
      margin-top: auto;
    }
    .pricing-cta:hover {
      background: var(--glass-2-bg);
      border-color: rgba(184, 149, 75, 0.42);
      color: var(--gold);
    }
    .pricing-cta--gold {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--black);
    }
    .pricing-cta--gold:hover {
      background: rgba(184, 149, 75, 0.88);
      border-color: transparent;
      color: var(--black);
    }
    .pricing-card--legacy {
      background: linear-gradient(160deg, rgba(184, 149, 75, 0.06) 0%, rgba(255, 255, 255, 0.03) 60%, rgba(255, 255, 255, 0.02) 100%);
      border-color: rgba(184, 149, 75, 0.30);
    }
    .pricing-card--legacy:hover {
      border-color: rgba(184, 149, 75, 0.55);
      box-shadow: var(--glass-inset), 0 0 0 1px rgba(184, 149, 75, 0.20), 0 32px 80px rgba(184, 149, 75, 0.08);
    }
    .pricing-badge--legacy {
      background: transparent;
      color: var(--gold);
      border: 1px solid rgba(184, 149, 75, 0.50);
      font-size: 8px;
      letter-spacing: 0.16em;
    }
    .pricing-footnote {
      text-align: center;
      margin: clamp(22px, 2.5vw, 36px) 0 0;
      color: var(--dark-muted-soft);
      font-size: 12px;
      font-weight: 300;
      font-style: italic;
      letter-spacing: 0.04em;
    }

    /* ============================================================
       RESPONSIVE - Nouvelles sections
    ============================================================ */
    @media (max-width: 1200px) {
      .pricing-grid { grid-template-columns: repeat(2, 1fr); }
      .ep-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 960px) {
      .principles-grid { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 760px) {
      .valora-vision,
      .valora-principles,
      .valora-team,
      .valora-belonging,
      .valora-pricing,
      .valora-ecosystem-pillars {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 52px;
        padding-bottom: 52px;
      }
      /* Vision : 2 colonnes compactes, quote moins haute */
      .vision-pillars { grid-template-columns: 1fr 1fr; gap: 10px; }
      .vision-pillar { padding: 14px 12px; }
      .vision-quote { padding: 20px 20px; }
      .vision-inner { gap: 24px; }
      /* Piliers écosystème : 2 colonnes sur mobile */
      .ep-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
      .ep-card { padding: 18px 14px; gap: 10px; }
      /* Pricing : 1 colonne */
      .pricing-grid { grid-template-columns: 1fr; }
      /* Équipe : carte verticale, container proche du carré pour éviter le zoom excessif */
      .team-card { flex-direction: column; }
      .team-photo-wrap { width: 100%; aspect-ratio: 4/3; height: auto; }
      .team-photo { object-position: center 22%; }
      .team-bio { padding: 18px 18px 22px; gap: 10px; }
      /* Appartenir */
      .belonging-callout { padding: 20px 18px; }
      .belonging-inner { gap: 22px; }
    }
    @media (max-width: 480px) {
      .vision-pillars { grid-template-columns: 1fr 1fr; }
      .ep-grid { grid-template-columns: 1fr; }
      .team-photo-wrap { aspect-ratio: 1/1; }
    }

    /* ============================================================
       ANIMATIONS Motion Design
    ============================================================ */

    @keyframes stepPop {
      from { opacity: 0; transform: scale(0.6); }
      to   { opacity: 1; transform: scale(1); }
    }

    /* Scroll reveal état initial caché */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.60s cubic-bezier(0.22, 0.6, 0.36, 1),
                  transform 0.60s cubic-bezier(0.22, 0.6, 0.36, 1);
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-24px);
      transition: opacity 0.55s cubic-bezier(0.22, 0.6, 0.36, 1),
                  transform 0.55s cubic-bezier(0.22, 0.6, 0.36, 1);
    }

    .reveal-line {
      transform-origin: left center;
      transform: scaleX(0);
      transition: transform 0.70s cubic-bezier(0.22, 0.6, 0.36, 1);
    }

    /* Scroll reveal état visible (ajouté par JS) */
    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-left.is-visible {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-line.is-visible {
      transform: scaleX(1);
    }

    /* Roadmap marker pop déclenché par parent .is-visible */
    .roadmap-step.is-visible .step-marker {
      animation: stepPop 0.50s cubic-bezier(0.34, 1.56, 0.64, 1) both;
      animation-delay: 0.30s;
    }

    /* Transform-origin pour toutes les lignes dorées */
    .hero-line {
      transform-origin: left center;
    }

    /* ============================================================
       SÉPARATEUR DORÉ Unifié entre titre et paragraphe
    ============================================================ */
    .section-sep,
    .ranks-separator,
    .eco-left-sep,
    .access-line,
    .roadmap-heading-accent {
      display: block;
      width: 48px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      border: none;
      border-radius: 0;
      margin: clamp(26px, 2.8vw, 40px) auto;
      flex-shrink: 0;
    }

    /* ============================================================
       METRICS TICKER Bande défilante après hero
    ============================================================ */
    .valora-ticker {
      overflow: hidden;
      padding: 15px 0;
      border-top: 1px solid var(--dark-border);
      border-bottom: 1px solid var(--dark-border);
      background: var(--dark-bg);
      position: relative;
      z-index: 2;
    }

    .ticker-track {
      display: flex;
      width: max-content;
      align-items: center;
      animation: ticker-scroll 32s linear infinite;
    }

    @keyframes ticker-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    .ticker-item {
      flex-shrink: 0;
      white-space: nowrap;
      padding: 0 28px;
      font-family: "Montserrat", sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.26em;
      text-transform: uppercase;
      color: var(--dark-text);
    }

    .ticker-dot {
      flex-shrink: 0;
      color: var(--gold);
      font-size: 7px;
      line-height: 1;
      display: flex;
      align-items: center;
      opacity: 0.7;
    }

    /* ============================================================
       BACKERS Section partenaires DeFi avec marquee
    ============================================================ */
    .valora-backers {
      padding: clamp(44px, 4.5vw, 68px) 0;
    }

    .backers-inner {
      width: min(1420px, 100%);
      margin: 0 auto;
      padding: 0 clamp(32px, 4.5vw, 72px);
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: clamp(40px, 5vw, 80px);
      align-items: center;
    }

    .backers-label p {
      color: var(--dark-muted);
      font-size: 13px;
      line-height: 1.82;
      font-weight: 400;
      letter-spacing: 0.02em;
    }

    .backers-overflow {
      overflow: hidden;
      position: relative;
    }

    /* Fade edges */
    .backers-overflow::before,
    .backers-overflow::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 60px;
      z-index: 1;
      pointer-events: none;
    }

    .backers-overflow::before {
      left: 0;
      background: linear-gradient(to right, var(--dark-bg), transparent);
    }

    .backers-overflow::after {
      right: 0;
      background: linear-gradient(to left, var(--dark-bg), transparent);
    }

    .backers-track {
      display: flex;
      width: max-content;
      align-items: center;
      animation: backers-scroll 34s linear infinite;
    }

    @keyframes backers-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    .backers-brand {
      flex-shrink: 0;
      white-space: nowrap;
      padding: 0 36px;
      color: rgba(251, 248, 241, 0.40);
      transition: color 0.26s ease;
      cursor: default;
    }

    .backers-brand:hover {
      color: rgba(251, 248, 241, 0.75);
    }

    @media (max-width: 768px) {
      .backers-inner {
        grid-template-columns: 1fr;
        gap: 28px;
      }
    }

    /* ============================================================
       ROADMAP DOT TIMELINE
    ============================================================ */
    .roadmap-dot-line {
      position: relative;
      display: flex;
      align-items: flex-start;
      padding-top: 40px;
      gap: 0;
    }

    .rdl-track {
      position: absolute;
      top: 0;
      left: 5%;
      right: 5%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(184,149,75,0.35) 15%, rgba(184,149,75,0.35) 85%, transparent);
    }

    .rdl-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 10px;
    }

    .rdl-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: 1.5px solid rgba(184,149,75,0.45);
      background: var(--dark-bg);
      margin-top: -6px;
      margin-bottom: 22px;
      flex-shrink: 0;
      transition: background 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
    }

    .rdl-item.done .rdl-dot {
      background: var(--gold);
      border-color: var(--gold);
      box-shadow: 0 0 14px rgba(184,149,75,0.40);
    }

    .rdl-item:hover .rdl-dot {
      border-color: var(--gold);
      box-shadow: 0 0 10px rgba(184,149,75,0.28);
    }

    .rdl-name {
      display: block;
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(15px, 1.4vw, 21px);
      font-weight: 500;
      color: var(--dark-text);
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-bottom: 8px;
    }

    .rdl-status {
      display: block;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.20em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: 0.75;
      margin-bottom: 14px;
    }

    .rdl-desc {
      font-size: 12px;
      color: var(--dark-muted);
      line-height: 1.65;
      margin: 0;
    }

    @media (max-width: 768px) {
      .roadmap-dot-line {
        flex-direction: column;
        padding-top: 0;
        gap: 32px;
      }

      .rdl-track { display: none; }

      .rdl-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 18px;
      }

      .rdl-dot {
        margin-top: 4px;
        margin-bottom: 0;
        flex-shrink: 0;
      }

      .rdl-item > div:last-of-type {
        display: flex;
        flex-direction: column;
      }
    }

    /* ============================================================
       ACCESSIBILITÉ prefers-reduced-motion
    ============================================================ */
    @media (prefers-reduced-motion: reduce) {
      .ticker-track, .backers-track {
        animation: none;
      }

      *, *::before, *::after {
        transition-duration:       0.01ms !important;
        animation-duration:        0.01ms !important;
        animation-iteration-count: 1      !important;
      }

      .reveal,
      .reveal-left {
        opacity:   1 !important;
        transform: none !important;
      }

      .reveal-line {
        transform: scaleX(1) !important;
      }
    }

    /* ============================================================
       BUDGET GPU MOBILE Retrait backdrop-filter sur cards
    ============================================================ */
    @media (max-width: 768px) {
      .strategy-card,
      .academy-module-card,
      .comp-step-card,
      .delta-transparency-card,
      .delta-bottom-bar,
      .comp-bottom-bar,
      .overview-card,
      .eco-card,
      .ranks-cta {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
      }

      /* Libère les titres forcés sur 1 ligne pour éviter le débordement */
      .academy-hero-inner h2,
      .comp-hero-inner h2,
      .roadmap-heading h2,
      .access-content h2 {
        white-space: normal;
      }
    }

    /* ============================================================
       TITRES DE SECTION Architecture typographique cohérente
       Toutes les sections après Stratégies adoptent EXACTEMENT
       la taille et la typo du titre Delta (référence).
    ============================================================ */
    .overview-heading h2,
    .delta-heading h2,
    .academy-hero-inner h2,
    .token-hero-inner h2,
    .comp-hero-inner h2,
    .ranks-heading h2,
    .eco-left h2,
    .roadmap-heading h2,
    .access-content h2 {
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(32px, 3.6vw, 54px);
      line-height: 1.12;
      font-weight: 400;
      letter-spacing: -0.04em;
      white-space: normal;
      max-width: 760px;
    }

    /* ============================================================
       SUPPRESSION Ticks dorés au-dessus des titres
    ============================================================ */
    .delta-kicker-line,
    .section-kicker,
    .roadmap-heading-accent {
      display: none !important;
    }

    /* ============================================================
       RESPONSIVE MOBILE Audit complet (≤760px puis ≤480px)
       Bloc final : l'emporte par cascade sur les règles existantes.
    ============================================================ */
    @media (max-width: 760px) {
      /* --- Grilles de cartes → empilées --- */
      .overview-grid,
      .delta-strategies,
      .comp-steps-inner,
      .academy-cards-inner,
      .token-cards-inner,
      .roadmap-timeline {
        grid-template-columns: 1fr !important;
      }

      .eco-card-grid {
        grid-template-columns: 1fr 1fr !important;
      }

      /* --- Barres en grille → empilées --- */
      .overview-bottom,
      .roadmap-footer {
        grid-template-columns: 1fr !important;
        gap: 16px;
        text-align: center;
      }

      .delta-bottom-bar,
      .comp-bottom-bar {
        grid-template-columns: 1fr !important;
        gap: 14px;
        text-align: center;
        justify-items: center;
      }

      /* --- Boutons hero → pleine largeur, empilés --- */
      .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 14px;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
        justify-content: space-between;
      }

      /* --- Ticker métriques → compact --- */
      .ticker-item {
        font-size: 9px;
        padding: 0 16px;
        letter-spacing: 0.16em;
      }

      /* --- Section backers → label au-dessus, centré --- */
      .backers-inner {
        grid-template-columns: 1fr !important;
        gap: 22px;
        text-align: center;
      }

      .backers-label p {
        text-align: center;
      }

      .backers-brand {
        padding: 0 24px;
      }

      /* --- Gems (Rangs) → wrap pour éviter le débordement --- */
      .ranks-gems {
        flex-wrap: wrap;
        gap: 28px 18px;
      }

      .ranks-gems::before {
        display: none;
      }

      /* --- Trust (Accès) → empilé verticalement --- */
      .access-trust {
        grid-template-columns: 1fr !important;
        gap: 0;
        max-width: 340px;
      }

      .access-trust-item {
        padding: 16px 0;
        justify-content: center;
        text-align: left;
      }

      .access-trust-item + .access-trust-item {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-left: 0;
      }

      /* --- Séparateurs : marge verticale réduite --- */
      .section-sep,
      .ranks-separator,
      .eco-left-sep,
      .access-line {
        margin: 18px auto;
      }

      /* --- Uniformisation des titres h2 sur mobile --- */
      .overview-heading h2,
      .delta-heading h2,
      .academy-hero-inner h2,
      .token-hero-inner h2,
      .comp-hero-inner h2,
      .ranks-heading h2,
      .roadmap-heading h2,
      .access-content h2,
      .vision-heading h2,
      .principles-heading h2,
      .team-heading h2,
      .belonging-heading h2,
      .pricing-heading h2,
      .ep-heading h2 {
        font-size: clamp(32px, 8vw, 42px) !important;
        white-space: normal !important;
      }

      /* --- Paddings horizontaux des sections (anti-débordement) --- */
      .valora-overview,
      .valora-delta,
      .valora-academy,
      .valora-token,
      .valora-compensation,
      .valora-ranks,
      .valora-ecosystem-pillars,
      .valora-roadmap {
        padding-left: 20px;
        padding-right: 20px;
      }

      .overview-inner,
      .delta-inner,
      .roadmap-inner,
      .academy-cards-inner,
      .token-cards-inner,
      .comp-steps-inner,
      .eco-inner,
      .access-inner,
      .backers-inner {
        padding-left: 18px;
        padding-right: 18px;
      }

      /* --- Cartes : padding interne réduit --- */
      .overview-card,
      .strategy-card,
      .academy-module-card,
      .comp-step-card,
      .eco-card,
      .roadmap-step,
      .access-form-card {
        padding: 24px 20px;
      }

      /* --- Anti-débordement global --- */
      .delta-transparency-card {
        max-width: 100%;
      }
    }

    @media (max-width: 480px) {
      /* Eco cards → 1 colonne sur petit écran */
      .eco-card-grid {
        grid-template-columns: 1fr !important;
      }

      /* Header plus serré */
      .valora-header {
        padding-left: 18px;
        padding-right: 18px;
      }

      /* Ticker encore plus compact */
      .ticker-item {
        font-size: 8.5px;
        padding: 0 12px;
      }

      /* Form card padding */
      .access-form-card {
        padding: 28px 20px;
      }
    }

    /* Sécurité globale : pas de scroll horizontal */
    html, body {
      overflow-x: hidden;
      max-width: 100%;
    }

    /* ============================================================
       MENU MOBILE Hamburger + Drawer
    ============================================================ */
    .nav-burger {
      display: none;
      justify-self: end;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      padding: 0 9px;
      background: transparent;
      border: none;
      cursor: pointer;
      z-index: 210;
    }

    .nav-burger span {
      display: block;
      height: 1.5px;
      width: 100%;
      background: var(--dark-text);
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.25s ease;
    }

    .valora-header.menu-open .nav-burger span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }
    .valora-header.menu-open .nav-burger span:nth-child(2) {
      opacity: 0;
    }
    .valora-header.menu-open .nav-burger span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }

    .mobile-menu {
      position: fixed;
      inset: 0;
      z-index: 300;
    }

    .mobile-menu[hidden] {
      display: none;
    }

    .mobile-menu-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(8, 9, 11, 0.55);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      opacity: 0;
      transition: opacity 0.34s ease;
    }

    .mobile-menu.is-open .mobile-menu-backdrop {
      opacity: 1;
    }

    .mobile-menu-panel {
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      width: min(360px, 86vw);
      padding: 28px 30px 40px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      background: rgba(17, 18, 20, 0.96);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      border-left: 1px solid var(--glass-2-border);
      box-shadow: -30px 0 80px rgba(0, 0, 0, 0.5);
      transform: translateX(100%);
      transition: transform 0.40s cubic-bezier(0.22, 0.6, 0.36, 1);
      overflow-y: auto;
    }

    .mobile-menu.is-open .mobile-menu-panel {
      transform: translateX(0);
    }

    .mobile-menu-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 26px;
    }

    .mobile-menu-brand {
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: 26px;
      font-weight: 500;
      letter-spacing: 0.18em;
      color: var(--dark-text);
    }

    .mobile-menu-close {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: none;
      color: var(--dark-text);
      font-size: 30px;
      line-height: 1;
      cursor: pointer;
      transition: color 0.22s ease;
    }

    .mobile-menu-close:hover {
      color: var(--gold);
    }

    .mobile-menu-panel a {
      color: var(--dark-text);
      text-decoration: none;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      transition: color 0.22s ease, padding-left 0.22s ease;
    }

    .mobile-menu-panel a:hover {
      color: var(--gold);
      padding-left: 6px;
    }

    .mobile-menu-cta {
      margin-top: 22px;
      display: inline-flex !important;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      background: var(--gold);
      color: var(--black) !important;
      border-radius: 999px;
      padding: 16px 24px !important;
      border-bottom: none !important;
    }

    .mobile-menu-cta:hover {
      color: var(--black) !important;
      padding-left: 24px !important;
      background: rgba(184, 149, 75, 0.88);
    }

    .mobile-menu-cta span {
      font-size: 18px;
    }

    /* Affichage du burger là où la nav centrale disparaît */
    @media (max-width: 1100px) {
      .nav-burger {
        display: flex;
      }
      .valora-header .nav-contact {
        display: none;
      }
    }

    /* Sur drawer ouvert, masquer le burger sous le panneau si besoin */
    body.menu-locked {
      overflow: hidden;
    }

    /* ============================================================
       AJOUTS BRIEF V3 - liens de section, cartes ecosysteme, pages dediees
    ============================================================ */

    /* Lien "En savoir plus" sous une section */
    .section-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: clamp(28px, 3vw, 44px);
      color: var(--gold);
      text-decoration: none;
      font-family: "Montserrat", sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      transition: gap 0.26s ease, color 0.26s ease;
    }
    .section-link span { transition: transform 0.26s ease; }
    .section-link:hover { gap: 16px; color: var(--cream-light); }

    /* Lien dans une carte ecosysteme */
    .ep-card-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
      color: var(--gold);
      text-decoration: none;
      font-family: "Montserrat", sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: gap 0.24s ease, color 0.24s ease;
    }
    .ep-card-link:hover { gap: 14px; color: var(--cream-light); }
    .ep-card { display: flex; flex-direction: column; }
    .ep-card p { flex: 1; }

    /* ============================================================
       PAGES DEDIEES - hero + prose
    ============================================================ */
    .page-shell {
      background: var(--dark-bg);
      min-height: 100vh;
    }

    .page-hero {
      position: relative;
      padding: clamp(140px, 16vw, 220px) clamp(24px, 5vw, 80px) clamp(60px, 7vw, 100px);
      text-align: center;
      overflow: hidden;
      isolation: isolate;
      border-bottom: 1px solid var(--dark-border);
    }
    .page-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(184,149,75,0.10), transparent 70%);
      pointer-events: none;
    }
    .page-hero .page-kicker {
      display: inline-block;
      color: var(--gold);
      font-family: "Montserrat", sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.30em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }
    .page-hero h1 {
      margin: 0 auto;
      max-width: 16ch;
      color: var(--cream-light);
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(40px, 6vw, 86px);
      line-height: 1.02;
      font-weight: 400;
      letter-spacing: -0.03em;
    }
    .page-hero .page-lead {
      margin: clamp(24px, 3vw, 38px) auto 0;
      max-width: 60ch;
      color: var(--dark-muted);
      font-size: clamp(15px, 1.2vw, 18px);
      line-height: 1.8;
      font-weight: 300;
    }
    .page-hero .section-sep { margin-left: auto; margin-right: auto; }

    .page-section {
      padding: clamp(56px, 7vw, 110px) clamp(24px, 5vw, 80px);
    }
    .page-section:nth-child(even) {
      background: rgba(255,255,255,0.012);
    }
    .page-wrap {
      width: min(880px, 100%);
      margin: 0 auto;
    }
    .page-wrap--wide { width: min(1180px, 100%); }

    .page-section h2 {
      margin: 0 0 8px;
      color: var(--cream-light);
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(28px, 3.6vw, 50px);
      line-height: 1.08;
      font-weight: 400;
      letter-spacing: -0.03em;
    }
    .page-section h3 {
      margin: 0 0 14px;
      color: var(--cream-light);
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(22px, 2.4vw, 32px);
      font-weight: 500;
      letter-spacing: -0.02em;
    }
    .page-section h4 {
      margin: 0 0 8px;
      color: var(--cream-light);
      font-family: "Montserrat", sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.04em;
    }
    .page-prose p {
      color: var(--dark-muted);
      font-size: clamp(14px, 1.05vw, 16.5px);
      line-height: 1.85;
      font-weight: 300;
      margin: 0 0 18px;
    }
    .page-prose p strong { color: var(--cream-light); font-weight: 500; }
    .page-prose .lead {
      color: rgba(251,248,241,0.78);
      font-size: clamp(16px, 1.4vw, 20px);
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .page-block + .page-block { margin-top: clamp(40px, 5vw, 72px); }

    .prose-list {
      list-style: none;
      padding: 0;
      margin: 8px 0 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .prose-list li {
      position: relative;
      padding-left: 26px;
      color: var(--dark-muted);
      font-size: clamp(14px, 1.05vw, 16px);
      line-height: 1.7;
      font-weight: 300;
    }
    .prose-list li::before {
      content: "◆";
      position: absolute;
      left: 0;
      top: 1px;
      color: var(--gold);
      font-size: 8px;
    }
    .prose-list li strong { color: var(--cream-light); font-weight: 500; }

    .page-disclaimer {
      margin-top: 22px;
      padding: 16px 20px;
      border: 1px solid var(--dark-border);
      border-radius: var(--radius);
      background: rgba(255,255,255,0.02);
      color: var(--dark-muted-soft);
      font-size: 11.5px;
      line-height: 1.7;
      font-weight: 300;
    }

    .page-cta {
      text-align: center;
      padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 80px) clamp(80px, 9vw, 140px);
    }
    .page-cta h2 { margin-bottom: 28px; }
    .page-cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      justify-content: center;
      align-items: center;
      margin-top: 32px;
    }

    /* Strategy pole block on /strategies */
    .pole-block {
      border-top: 1px solid var(--dark-border);
      padding-top: clamp(36px, 4vw, 56px);
    }
    .pole-status {
      display: inline-block;
      margin-bottom: 16px;
      color: var(--gold);
      font-family: "Montserrat", sans-serif;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.20em;
      text-transform: uppercase;
    }

    /* Manifesto page */
    .manifesto-text {
      width: min(720px, 100%);
      margin: 0 auto;
      text-align: center;
    }
    .manifesto-text p {
      color: rgba(251,248,241,0.82);
      font-family: "Cormorant Garamond", "Times New Roman", serif;
      font-size: clamp(20px, 2.4vw, 30px);
      line-height: 1.5;
      font-weight: 300;
      margin: 0 0 clamp(22px, 2.6vw, 34px);
    }
    .manifesto-text .manifesto-emphasis {
      color: var(--gold);
      font-style: italic;
    }
    .manifesto-text .manifesto-list {
      list-style: none;
      padding: 0;
      margin: clamp(28px,3vw,40px) auto;
      width: fit-content;
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .manifesto-text .manifesto-list li {
      position: relative;
      padding-left: 28px;
      color: rgba(251,248,241,0.72);
      font-family: "Montserrat", sans-serif;
      font-size: clamp(14px,1.1vw,16px);
      line-height: 1.6;
      font-weight: 300;
    }
    .manifesto-text .manifesto-list li::before {
      content: "◆";
      position: absolute;
      left: 0;
      top: 4px;
      color: var(--gold);
      font-size: 9px;
    }

    @media (max-width: 768px) {
      .page-cta-actions { flex-direction: column; }
      .page-cta-actions .btn-primary,
      .page-cta-actions .btn-secondary { width: 100%; max-width: 340px; justify-content: space-between; }
    }

    /* ============================================================
       HEADER SUR PAGES DEDIEES (pas de hero sombre derriere)
    ============================================================ */
    .valora-header--page {
      position: sticky;
      top: 0;
      background: rgba(17, 18, 20, 0.92);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }
    .valora-header--page .brand-logo,
    .valora-header--page .main-nav a,
    .valora-header--page .nav-contact { color: var(--cream-light); }
    .valora-header--page .nav-burger span { background: var(--cream-light); }

    .main-nav a.is-active { color: var(--gold); }
