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

    :root {
      --teal:      #21B1A1;
      --teal-dark: #189080;
      --teal-10:   rgba(33,177,161,0.10);
      --teal-20:   rgba(33,177,161,0.20);
      --yellow:    #D4CC4D;
      --yellow-dk: #b8b030;
      --charcoal:  #303437;
      --charcoal2: #272b2e;
      --charcoal3: #1e2225;
      --gray-mid:  #676B70;
      --gray-lt:   #D7D0CE;
      --white:     #ffffff;
      --radius:    12px;
    }

    body {
      font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
      background: var(--charcoal3);
      color: var(--gray-lt);
      line-height: 1.7;
    }

    /* ── TOP BANNER ── */
    .top-banner {
      background: var(--teal);
      padding: 0 32px;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      box-shadow: 0 2px 16px rgba(0,0,0,0.4);
      color: var(--charcoal3);
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 16px;
      min-height: 58px;
    }
    .banner-left {
      font-size: 1.05rem;
      font-weight: 900;
      line-height: 1.25;
      letter-spacing: 0.2px;
    }
    .banner-center {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 10px 0;
    }
    .banner-center .banner-label {
      font-size: 0.68rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      opacity: 0.75;
      margin-bottom: 3px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .banner-center .timer-inline {
      font-size: 1.25rem;
      font-weight: 900;
      letter-spacing: 4px;
      color: var(--charcoal3);
    }
    .banner-right {
      display: flex;
      justify-content: flex-end;
    }
    .btn-banner {
      display: inline-block;
      background: var(--charcoal3);
      color: var(--teal);
      font-size: 0.78rem;
      font-weight: 800;
      padding: 9px 20px;
      border-radius: 50px;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      font-family: 'Poppins', sans-serif;
      white-space: nowrap;
      transition: background 0.15s, color 0.15s;
    }
    .btn-banner:hover {
      background: var(--yellow);
      color: var(--charcoal3);
    }
    @media (max-width: 700px) {
      .top-banner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 8px 14px;
        gap: 4px;
      }
      .banner-left { display: none; }
      .banner-center { padding: 2px 0; justify-content: center; }
      .banner-right { justify-content: center; }
    }

    /* ── TIMER ── */
    .timer-wrap { text-align: center; margin: 24px 0 0; }
    .timer-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--gray-mid);
      margin-bottom: 12px;
      font-weight: 500;
    }
    .timer { display: inline-flex; gap: 8px; justify-content: center; align-items: center; }
    .timer-block {
      background: var(--charcoal2);
      border: 1px solid var(--teal-20);
      border-radius: 8px;
      padding: 12px 18px;
      min-width: 74px;
      text-align: center;
    }
    .timer-block .num {
      font-size: 2.1rem;
      font-weight: 900;
      display: block;
      line-height: 1;
      color: var(--teal);
    }
    .timer-block .unit {
      font-size: 0.6rem;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--gray-mid);
      margin-top: 5px;
      display: block;
    }
    .timer-sep { font-size: 1.8rem; font-weight: 900; color: var(--teal); opacity: 0.4; }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(160deg, var(--charcoal) 0%, var(--charcoal2) 100%);
      padding: 80px 24px 64px;
      text-align: center;
      border-bottom: 1px solid var(--teal-20);
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--teal-10) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -100px; left: -100px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212,204,77,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero .eyebrow {
      display: inline-block;
      border: 1.5px solid var(--teal);
      color: var(--teal);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      padding: 6px 20px;
      border-radius: 50px;
      margin-bottom: 32px;
    }
    .hero h1 {
      font-size: clamp(1.8rem, 4vw, 3rem);
      font-weight: 900;
      line-height: 1.2;
      max-width: 840px;
      margin: 0 auto 18px;
      color: var(--white);
    }
    .hero h1 em {
      font-style: normal;
      color: var(--teal);
    }
    .hero .sub {
      font-size: 1rem;
      color: var(--gray-mid);
      margin-bottom: 16px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .hero ul.benefits {
      list-style: none;
      display: inline-flex;
      flex-direction: column;
      gap: 8px;
      text-align: left;
      margin: 0 auto 40px;
      font-size: 0.98rem;
    }
    .hero ul.benefits li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--gray-lt);
    }
    .hero ul.benefits li::before {
      content: '';
      display: inline-block;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--teal);
      flex-shrink: 0;
    }

    /* ── EVENT INFO ── */
    .event-info {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      margin: 0 auto 40px;
    }
    .event-pill {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 50px;
      padding: 8px 20px;
      font-size: 0.88rem;
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--gray-lt);
    }
    .event-pill strong { color: var(--white); }

    /* ── CTA BUTTON ── */
    .btn {
      display: inline-block;
      background: linear-gradient(135deg, var(--yellow), var(--yellow-dk));
      color: var(--charcoal3);
      font-size: 1.05rem;
      font-weight: 800;
      padding: 18px 44px;
      border-radius: 50px;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-family: 'Poppins', sans-serif;
      box-shadow: 0 6px 28px rgba(212,204,77,0.28);
      transition: transform 0.15s, box-shadow 0.15s;
      cursor: pointer;
      border: none;
    }
    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(212,204,77,0.42);
    }
    .btn-wrap { text-align: center; margin: 20px 0 10px; }

    /* ── DIVIDER ── */
    .divider {
      width: 60px; height: 3px;
      background: var(--teal);
      border-radius: 2px;
      margin: 0 auto 16px;
    }

    /* ── SECTIONS ── */
    section { padding: 72px 24px; }
    .container { max-width: 900px; margin: 0 auto; }
    .section-title {
      text-align: center;
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 900;
      color: var(--white);
      margin-bottom: 10px;
    }
    .section-intro {
      text-align: center;
      color: var(--gray-lt);
      max-width: 720px;
      margin: 0 auto 50px;
      font-size: 1rem;
      font-weight: 300;
    }

    /* ── GLOBAL CHAIN TEXTURE ── */
    .page-texture {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }
    .page-texture i {
      position: absolute;
      color: var(--teal);
      opacity: 0.035;
      line-height: 1;
    }
    body > *:not(.page-texture):not(.top-banner) { position: relative; z-index: 1; }
    .hero { margin-top: 58px; }
    @media (max-width: 700px) { .hero { margin-top: 48px; padding-top: 16px; } }

    /* ── ARROWS ── */
    .arrows {
      text-align: center;
      margin: -20px 0 30px;
      display: flex;
      justify-content: center;
      gap: 4px;
    }
    .arrows span {
      display: inline-block;
      width: 0; height: 0;
      border-left: 9px solid transparent;
      border-right: 9px solid transparent;
      border-top: 12px solid var(--teal);
      opacity: 0.5;
    }
    .arrows span:nth-child(2) { opacity: 0.75; margin-top: 6px; }
    .arrows span:nth-child(3) { opacity: 1; margin-top: 12px; }

    /* ── CHAINS ── */
    .chains-section { background: var(--charcoal2); }
    .chain-card {
      background: var(--charcoal3);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--radius);
      margin-bottom: 20px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 220px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .chain-card:hover {
      border-color: rgba(33,177,161,0.3);
      box-shadow: 0 4px 32px rgba(33,177,161,0.08);
    }
    .chain-card-text {
      padding: 36px 32px;
      border-left: 4px solid var(--teal);
      transition: border-color 0.2s;
    }
    .chain-card:hover .chain-card-text { border-left-color: var(--yellow); }
    .chain-card-img {
      position: relative;
      overflow: hidden;
    }
    .chain-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      mix-blend-mode: lighten;
      display: block;
      mask-image: linear-gradient(to right, transparent 0%, black 30%, black 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%, black 100%);
    }
    .chain-label {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 10px;
    }
    .chain-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--white);
      line-height: 1.35;
    }
    .chain-card p { color: var(--gray-lt); font-weight: 300; font-size: 0.96rem; }
    .chain-highlight {
      margin-top: 14px;
      font-weight: 600;
      color: var(--yellow);
      font-size: 0.92rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .chain-highlight::before {
      content: '→';
      color: var(--teal);
    }
    @media (max-width: 640px) {
      .chain-card { grid-template-columns: 1fr; }
      .chain-card-img { height: 180px; }
      .chain-card-img img {
        mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
      }
      .chain-card:nth-child(1) .chain-card-img img {
        object-position: center 40%;
      }
      .chain-card:nth-child(3) .chain-card-img img {
        object-position: center 55%;
      }
    }

    /* ── MODAL INSCRIPTION ── */
    dialog#modalInscription {
      border: none;
      padding: 20px;
      background: transparent;
      position: fixed;
      inset: 0;
      width: 100%;
      max-width: 100%;
      height: 100%;
      max-height: 100%;
      overflow-y: auto;
    }
    dialog#modalInscription[open] {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    dialog#modalInscription::backdrop {
      background: rgba(0,0,0,0.78);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    .modal-box {
      background: var(--charcoal3);
      border: 1px solid rgba(33,177,161,0.25);
      border-top: 4px solid var(--teal);
      border-radius: var(--radius);
      width: 100%;
      max-width: 480px;
      padding: 44px 40px 40px;
      position: relative;
      box-shadow: 0 24px 80px rgba(0,0,0,0.6);
      animation: modalIn .25s ease;
      margin: auto;
    }
    @keyframes modalIn {
      from { opacity:0; transform: translateY(24px) scale(0.97); }
      to   { opacity:1; transform: translateY(0)   scale(1);    }
    }
    .modal-close {
      position: absolute;
      top: 14px; right: 18px;
      background: none;
      border: none;
      color: var(--gray-mid);
      font-size: 1.3rem;
      cursor: pointer;
      line-height: 1;
      transition: color 0.2s;
    }
    .modal-close:hover { color: var(--white); }
    .modal-eyebrow {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 10px;
    }
    .modal-title {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1.3;
      margin-bottom: 6px;
    }
    .modal-subtitle {
      font-size: 0.84rem;
      color: var(--gray-mid);
      margin-bottom: 28px;
    }

    /* Styles du formulaire Infusionsoft */
    #inf_form_6d1249ae44f09d067d5f1b4e4e7941ab .infusion-field {
      margin-bottom: 16px;
    }
    #inf_form_6d1249ae44f09d067d5f1b4e4e7941ab label {
      display: block;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: var(--gray-mid);
      margin-bottom: 6px;
    }
    #inf_form_6d1249ae44f09d067d5f1b4e4e7941ab input[type="text"] {
      width: 100%;
      background: var(--charcoal2);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      padding: 13px 16px;
      font-size: 0.97rem;
      font-family: 'Poppins', sans-serif;
      color: var(--white);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    #inf_form_6d1249ae44f09d067d5f1b4e4e7941ab input[type="text"]:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(33,177,161,0.15);
    }
    #inf_form_6d1249ae44f09d067d5f1b4e4e7941ab input[type="text"]::placeholder {
      color: transparent;
    }
    #inf_form_6d1249ae44f09d067d5f1b4e4e7941ab .infusion-submit {
      margin-top: 22px;
    }
    #inf_form_6d1249ae44f09d067d5f1b4e4e7941ab .infusion-submit button {
      width: 100%;
      background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
      color: var(--white);
      border: none;
      border-radius: 50px;
      padding: 16px 32px;
      font-size: 1rem;
      font-weight: 700;
      font-family: 'Poppins', sans-serif;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 6px 24px rgba(33,177,161,0.35);
    }
    #inf_form_6d1249ae44f09d067d5f1b4e4e7941ab .infusion-submit button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(33,177,161,0.45);
    }
    .modal-privacy {
      font-size: 0.72rem;
      color: var(--gray-mid);
      text-align: center;
      margin-top: 14px;
    }
    @media (max-width: 520px) {
      .modal-box { padding: 36px 24px 28px; }
    }

    /* ── RESULTS ── */
    .results-section {
      background:
        radial-gradient(ellipse 80% 60% at 15% 50%, rgba(33,177,161,0.13) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 85% 20%, rgba(33,177,161,0.09) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 60% 90%, rgba(33,177,161,0.07) 0%, transparent 60%),
        var(--charcoal2);
      position: relative;
      overflow: hidden;
    }
    .results-watermark {
      position: absolute;
      right: -40px; top: 50%;
      transform: translateY(-50%);
      font-size: 18rem;
      color: var(--teal);
      opacity: 0.04;
      pointer-events: none;
      line-height: 1;
    }
    .results-header {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 52px;
    }
    .results-header-line {
      flex: 1;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--teal-20));
    }
    .results-header-line.right {
      background: linear-gradient(to left, transparent, var(--teal-20));
    }
    .results-header-text { text-align: center; }
    .results-header-text h2 {
      font-size: clamp(1.1rem, 2.2vw, 1.5rem);
      font-weight: 900;
      color: var(--white);
      white-space: nowrap;
    }
    .results-list { margin-bottom: 56px; }
    .result-row {
      display: flex;
      align-items: center;
      gap: 28px;
      padding: 28px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      transition: padding-left 0.2s;
    }
    .result-row:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
    .result-row:hover { padding-left: 8px; }
    .result-chain-icon {
      width: 52px; height: 52px;
      border-radius: 50%;
      background: var(--teal-10);
      border: 1.5px solid var(--teal-20);
      color: var(--teal);
      font-size: 1.2rem;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      transition: background 0.2s, border-color 0.2s;
    }
    .result-row:hover .result-chain-icon {
      background: var(--teal);
      border-color: var(--teal);
      color: var(--charcoal3);
    }
    .result-row-text {
      font-size: clamp(1rem, 2vw, 1.25rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.35;
    }
    .result-row-text span { color: var(--teal); }

    /* ── TESTIMONIALS ── */
    .testimonials-section { background: var(--charcoal2); }
    .testimonial-placeholder {
      border: 2px dashed rgba(255,255,255,0.1);
      border-radius: var(--radius);
      padding: 70px 30px;
      text-align: center;
      color: var(--gray-mid);
      margin-bottom: 44px;
    }
    .testimonial-placeholder .icon {
      font-size: 2.2rem;
      display: block;
      margin-bottom: 14px;
      opacity: 0.45;
      color: var(--teal);
    }
    .event-pill i, .top-banner i {
      color: inherit;
      width: 16px;
      text-align: center;
    }
    .badge i { margin-right: 5px; }
    .testimonial-placeholder strong { color: var(--gray-lt); display: block; margin-bottom: 6px; }

    /* ── MENTORS ── */
    .mentors-section {
      background: var(--charcoal3);
      overflow: hidden;
    }
    .mentors-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-items: center;
      min-height: 520px;
    }
    .mentor-photo-wrap {
      position: relative;
    }
    .mentor-photo-wrap img {
      width: 100%;
      height: auto;
      display: block;
      mix-blend-mode: lighten;
      margin-top: -40px;
      mask-image: radial-gradient(ellipse 88% 85% at 50% 52%, black 40%, transparent 100%);
      -webkit-mask-image: radial-gradient(ellipse 88% 85% at 50% 52%, black 40%, transparent 100%);
    }
    .mentor-bio {
      padding: 48px 44px 48px 24px;
    }
    .mentor-bio .section-tag {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 14px;
      display: block;
    }
    .mentor-bio h3 {
      font-size: clamp(1.4rem, 2.5vw, 2rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 6px;
    }
    .mentor-bio .names {
      color: var(--teal);
      font-weight: 600;
      margin-bottom: 22px;
      font-size: 0.88rem;
      letter-spacing: 0.5px;
    }
    .mentor-bio p {
      color: var(--gray-lt);
      font-size: 0.92rem;
      font-weight: 300;
      margin-bottom: 12px;
      line-height: 1.75;
    }
    .badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 22px;
    }
    .badge {
      background: rgba(212,204,77,0.08);
      border: 1px solid rgba(212,204,77,0.25);
      color: var(--yellow);
      font-size: 0.72rem;
      font-weight: 600;
      padding: 5px 14px;
      border-radius: 50px;
      letter-spacing: 0.3px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    @media (max-width: 760px) {
      .mentors-layout {
        grid-template-columns: 1fr;
      }
      .mentor-photo-wrap {
        min-height: 320px;
      }
      .mentor-photo-wrap::after {
        background: linear-gradient(to bottom, transparent 60%, var(--charcoal3) 100%);
      }
      .mentor-bio {
        padding: 24px 20px 40px;
      }
    }

    /* ── FOOTER CTA ── */
    .footer-cta {
      background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
      padding: 72px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .footer-cta::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      pointer-events: none;
    }
    .footer-cta h2 {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 900;
      color: var(--charcoal3);
      margin-bottom: 10px;
    }
    .footer-cta p {
      color: rgba(30,34,37,0.75);
      margin-bottom: 36px;
      font-size: 1rem;
      font-weight: 500;
    }
    .footer-cta .timer-label { color: rgba(30,34,37,0.6); }
    .footer-cta .timer-block {
      background: rgba(30,34,37,0.15);
      border-color: rgba(30,34,37,0.2);
    }
    .footer-cta .timer-block .num { color: var(--charcoal3); }
    .footer-cta .timer-block .unit { color: rgba(30,34,37,0.6); }
    .footer-cta .timer-sep { color: var(--charcoal3); opacity: 0.3; }

    /* ── RESPONSIVE ── */
    @media (max-width: 600px) {
      .mentors-card { flex-direction: column; align-items: center; text-align: center; }
      .badges { justify-content: center; }
      .timer-block { min-width: 60px; padding: 10px 12px; }
      .timer-block .num { font-size: 1.7rem; }
      section { padding: 52px 18px; }
    }
