      :root {
        --red: #C8102E;
        --gold: #D4A853;
        --dark: #0D0D0D;
        --dark2: #141414;
        --dark3: #1C1C1C;
        --light: #F5F0E8;
        --muted: #888;
        --border: rgba(212, 168, 83, 0.25);
      }

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

      html {
        scroll-behavior: smooth;
      }

      body {
        background: var(--dark);
        color: var(--light);
        font-family: 'DM Sans', sans-serif;
        overflow-x: hidden;
      }

      /* ── NAV ── */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: rgba(13, 13, 13, 0.95);
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(12px);
        transition: background 0.3s;
      }

      .nav-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 32px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .nav-logo {
        font-family: 'Playfair Display', serif;
        font-size: 16px;
        font-weight: 700;
        color: var(--light);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .nav-logo span {
        color: var(--red);
      }

      .nav-links {
        display: flex;
        align-items: center;
        gap: 4px;
        list-style: none;
      }

      .nav-links a {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--muted);
        text-decoration: none;
        padding: 8px 14px;
        transition: color 0.2s;
        position: relative;
      }

      .nav-links a:hover {
        color: var(--light);
      }

      .nav-links a.active {
        color: var(--light);
      }

      .nav-links a.active::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 14px;
        right: 14px;
        height: 2px;
        background: var(--red);
      }

      .nav-links .soon-tag {
        position: relative;
      }

      .nav-links .soon-tag::after {
        content: 'Bientôt';
        position: absolute;
        top: -6px;
        right: 4px;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--gold);
        background: rgba(212, 168, 83, 0.08);
        border: 1px solid rgba(212, 168, 83, 0.25);
        padding: 2px 5px;
        white-space: nowrap;
        pointer-events: none;
      }

      .nav-cta {
        background: var(--red) !important;
        color: white !important;
        padding: 10px 20px !important;
        font-weight: 700 !important;
      }

      .nav-cta:hover {
        background: #a50e26 !important;
        color: white !important;
      }

      .nav-burger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 4px;
      }

      .nav-burger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--light);
        transition: transform 0.2s, opacity 0.2s;
      }

      @media (max-width: 768px) {
        .nav-burger {
          display: flex;
        }

        .nav-links {
          display: none;
          position: absolute;
          top: 64px;
          left: 0;
          right: 0;
          background: var(--dark2);
          border-bottom: 1px solid var(--border);
          flex-direction: column;
          padding: 16px 0;
          gap: 0;
        }

        .nav-links.open {
          display: flex;
        }

        .nav-links a {
          padding: 12px 24px;
          width: 100%;
        }

        .nav-links .soon-tag::after {
          top: 10px;
          right: auto;
          left: 120px;
        }

        .nav-cta {
          margin: 8px 24px;
        }
      }

      /* ── HERO ── */
      .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 120px 24px 80px;
        overflow: hidden;
      }

      .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200, 16, 46, 0.18) 0%, transparent 70%),
          radial-gradient(ellipse 60% 40% at 80% 100%, rgba(212, 168, 83, 0.12) 0%, transparent 60%);
      }

      .hero-badge {
        display: inline-block;
        border: 1px solid var(--gold);
        color: var(--gold);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        padding: 8px 20px;
        margin-bottom: 40px;
        animation: fadeUp 0.8s ease both;
      }

      .hero-flag {
        font-size: 64px;
        margin-bottom: 24px;
        animation: fadeUp 0.8s 0.1s ease both;
      }

      .hero-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(48px, 8vw, 100px);
        font-weight: 900;
        line-height: 1;
        letter-spacing: -2px;
        margin-bottom: 16px;
        animation: fadeUp 0.9s 0.15s ease both;
      }

      .hero-title span {
        color: var(--red);
        display: block;
      }

      .hero-sub {
        font-size: clamp(14px, 2vw, 18px);
        font-weight: 300;
        color: var(--muted);
        letter-spacing: 1px;
        margin-bottom: 48px;
        max-width: 560px;
        animation: fadeUp 0.9s 0.25s ease both;
      }

      .hero-cta {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: var(--red);
        color: white;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 18px 40px;
        text-decoration: none;
        transition: background 0.2s, transform 0.2s;
        animation: fadeUp 0.9s 0.35s ease both;
      }

      .hero-cta:hover {
        background: #a50e26;
        transform: translateY(-2px);
      }

      .hero-scroll {
        position: absolute;
        bottom: 32px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        color: var(--muted);
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        animation: fadeUp 1s 0.6s ease both;
      }

      .scroll-line {
        width: 1px;
        height: 40px;
        background: linear-gradient(to bottom, var(--gold), transparent);
        animation: scrollPulse 2s ease-in-out infinite;
      }

      /* ── STATS BAR ── */
      .stats {
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        background: var(--dark2);
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        text-align: center;
      }

      .stat-item {
        padding: 32px 16px;
        border-right: 1px solid var(--border);
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s, transform 0.5s;
      }

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

      .stat-item.visible {
        opacity: 1;
        transform: none;
      }

      .stat-num {
        font-family: 'Playfair Display', serif;
        font-size: clamp(24px, 4vw, 40px);
        font-weight: 700;
        color: var(--gold);
      }

      .stat-label {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--muted);
        margin-top: 6px;
      }

      /* ── LEAD FORM ── */
      .lead-section {
        background: var(--dark2);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 80px 24px;
        position: relative;
        overflow: hidden;
      }

      .lead-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(200, 16, 46, 0.06) 0%, transparent 70%);
      }

      .lead-inner {
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
        position: relative;
      }

      .lead-inner .section-label {
        margin-bottom: 16px;
      }

      .lead-inner h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(24px, 4vw, 38px);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 12px;
      }

      .lead-inner>p {
        font-size: 15px;
        color: var(--muted);
        margin-bottom: 36px;
        line-height: 1.6;
      }

      .lead-form {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .lead-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }

      .lead-input {
        background: var(--dark);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--light);
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        padding: 16px 20px;
        outline: none;
        transition: border-color 0.2s;
        width: 100%;
      }

      .lead-input::placeholder {
        color: rgba(255, 255, 255, 0.3);
      }

      .lead-input:focus {
        border-color: var(--gold);
      }

      .lead-submit {
        background: var(--red);
        color: white;
        border: none;
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 18px;
        cursor: pointer;
        transition: background 0.2s, transform 0.2s;
        width: 100%;
        margin-top: 4px;
      }

      .lead-submit:hover:not(:disabled) {
        background: #a50e26;
        transform: translateY(-2px);
      }

      .lead-submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
      }

      .lead-legal {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.25);
        margin-top: 12px;
        line-height: 1.5;
      }

      .lead-success {
        display: none;
        background: rgba(212, 168, 83, 0.08);
        border: 1px solid rgba(212, 168, 83, 0.3);
        padding: 32px 24px;
        text-align: center;
      }

      .lead-success.show {
        display: block;
      }

      .lead-success-icon {
        font-size: 36px;
        margin-bottom: 12px;
      }

      .lead-success h3 {
        font-family: 'Playfair Display', serif;
        font-size: 22px;
        color: var(--gold);
        margin-bottom: 8px;
      }

      .lead-success p {
        font-size: 14px;
        color: var(--muted);
        margin: 0;
      }

      .lead-error {
        display: none;
        font-size: 13px;
        color: #ff6b6b;
        padding: 12px 16px;
        background: rgba(255, 107, 107, 0.08);
        border: 1px solid rgba(255, 107, 107, 0.2);
        margin-top: 4px;
      }

      .lead-error.show {
        display: block;
      }

      /* ── INTRO ── */
      .intro {
        max-width: 820px;
        margin: 0 auto;
        padding: 100px 24px;
        text-align: center;
      }

      .section-label {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--red);
        margin-bottom: 20px;
      }

      .intro h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(28px, 4vw, 48px);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 24px;
      }

      .intro p {
        font-size: 17px;
        font-weight: 300;
        color: rgba(245, 240, 232, 0.7);
        line-height: 1.8;
        margin-bottom: 16px;
      }

      .intro strong {
        color: var(--light);
        font-weight: 600;
      }

      /* ── EPISODES ── */
      .episodes {
        padding: 0 24px 120px;
        max-width: 1200px;
        margin: 0 auto;
      }

      .episodes-header {
        text-align: center;
        margin-bottom: 72px;
      }

      .episodes-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(32px, 5vw, 56px);
        font-weight: 900;
      }

      .ep-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 2px;
      }

      .ep-card {
        background: var(--dark2);
        padding: 40px;
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s, transform 0.6s, background 0.2s;
        cursor: default;
      }

      .ep-card.visible {
        opacity: 1;
        transform: none;
      }

      .ep-card:hover {
        background: var(--dark3);
      }

      .ep-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 3px;
        height: 100%;
        background: var(--red);
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s ease;
      }

      .ep-card:hover::before {
        transform: scaleY(1);
      }

      .ep-num {
        font-family: 'Playfair Display', serif;
        font-size: 64px;
        font-weight: 900;
        color: rgba(200, 16, 46, 0.12);
        line-height: 1;
        position: absolute;
        top: 24px;
        right: 32px;
        letter-spacing: -2px;
      }

      .ep-tag {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 12px;
      }

      .ep-title {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 20px;
        max-width: 80%;
      }

      .ep-points {
        list-style: none;
        margin-bottom: 28px;
      }

      .ep-points li {
        font-size: 13.5px;
        font-weight: 400;
        color: rgba(245, 240, 232, 0.65);
        padding: 6px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-left: 16px;
        position: relative;
      }

      .ep-points li::before {
        content: '→';
        position: absolute;
        left: 0;
        color: var(--red);
        font-size: 11px;
      }

      .ep-box {
        background: rgba(200, 16, 46, 0.08);
        border: 1px solid rgba(200, 16, 46, 0.2);
        padding: 14px 16px;
        margin-bottom: 24px;
        font-size: 13px;
        color: rgba(245, 240, 232, 0.8);
        line-height: 1.5;
      }

      .ep-box strong {
        color: var(--gold);
      }

      .ep-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--red);
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: border-color 0.2s;
        padding-bottom: 2px;
      }

      .ep-link:hover {
        border-color: var(--red);
      }

      /* ── ACTION PLAN ── */
      .plan {
        background: var(--dark2);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 100px 24px;
      }

      .plan-inner {
        max-width: 900px;
        margin: 0 auto;
      }

      .plan-inner .section-label {
        text-align: center;
      }

      .plan-inner h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(32px, 5vw, 52px);
        font-weight: 900;
        text-align: center;
        margin-bottom: 64px;
      }

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

      .week {
        padding: 32px 24px;
        background: var(--dark);
      }

      .week-num {
        font-family: 'Playfair Display', serif;
        font-size: 48px;
        font-weight: 900;
        color: rgba(212, 168, 83, 0.15);
        line-height: 1;
        margin-bottom: 8px;
      }

      .week-title {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 16px;
      }

      .week-items {
        list-style: none;
      }

      .week-items li {
        font-size: 13px;
        color: rgba(245, 240, 232, 0.6);
        padding: 5px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

      /* ── FINAL CTA ── */
      .final-cta {
        text-align: center;
        padding: 120px 24px;
        position: relative;
        overflow: hidden;
      }

      .final-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(200, 16, 46, 0.1) 0%, transparent 70%);
      }

      .final-cta h2 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(36px, 6vw, 72px);
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 24px;
        position: relative;
      }

      .final-cta h2 em {
        font-style: normal;
        color: var(--gold);
      }

      .final-cta p {
        font-size: 16px;
        color: var(--muted);
        margin-bottom: 48px;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
      }

      .cta-group {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
      }

      .btn-primary {
        background: var(--red);
        color: white;
        padding: 18px 40px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-decoration: none;
        transition: transform 0.2s, background 0.2s;
        display: inline-block;
      }

      .btn-primary:hover {
        background: #a50e26;
        transform: translateY(-2px);
      }

      .btn-secondary {
        border: 1px solid var(--border);
        color: var(--light);
        padding: 18px 40px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-decoration: none;
        transition: border-color 0.2s, transform 0.2s;
        display: inline-block;
      }

      .btn-secondary:hover {
        border-color: var(--gold);
        color: var(--gold);
        transform: translateY(-2px);
      }

      /* ── FOOTER ── */
      footer {
        border-top: 1px solid var(--border);
        padding: 32px 24px;
        text-align: center;
        font-size: 12px;
        color: var(--muted);
        letter-spacing: 1px;
      }

      footer span {
        color: var(--red);
      }

      /* ── POPUP FUNNEL ── */
      .popup-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.85);
        z-index: 1000;
        align-items: center;
        justify-content: center;
        padding: 24px;
        backdrop-filter: blur(4px);
      }

      .popup-overlay.show {
        display: flex;
      }

      .popup-box {
        background: var(--dark2);
        border: 1px solid var(--border);
        max-width: 520px;
        width: 100%;
        position: relative;
        animation: fadeUp 0.3s ease both;
      }

      .popup-top {
        background: var(--red);
        padding: 12px 24px;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .popup-top-label {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.8);
      }

      .popup-lock {
        font-size: 16px;
      }

      .popup-body {
        padding: 40px;
      }

      .popup-ep-tag {
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 12px;
      }

      .popup-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(20px, 3vw, 26px);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 16px;
        color: var(--light);
      }

      .popup-desc {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.7;
        margin-bottom: 28px;
      }

      .popup-desc strong {
        color: var(--light);
      }

      .popup-perks {
        list-style: none;
        margin-bottom: 32px;
        background: rgba(200, 16, 46, 0.06);
        border: 1px solid rgba(200, 16, 46, 0.15);
        padding: 20px 24px;
      }

      .popup-perks li {
        font-size: 13px;
        color: rgba(245, 240, 232, 0.75);
        padding: 5px 0;
        padding-left: 18px;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      }

      .popup-perks li:last-child {
        border-bottom: none;
      }

      .popup-perks li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--gold);
        font-size: 11px;
        font-weight: 700;
      }

      .popup-btn-primary {
        display: block;
        width: 100%;
        background: var(--red);
        color: white;
        text-align: center;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 18px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: background 0.2s, transform 0.2s;
        margin-bottom: 12px;
      }

      .popup-btn-primary:hover {
        background: #a50e26;
        transform: translateY(-1px);
      }

      .popup-already {
        text-align: center;
        font-size: 12px;
        color: var(--muted);
      }

      .popup-already-link {
        color: var(--muted);
        text-decoration: underline;
        cursor: pointer;
        background: none;
        border: none;
        font-size: 12px;
        font-family: 'DM Sans', sans-serif;
      }

      .popup-already-link:hover {
        color: var(--gold);
      }

      .popup-already-form {
        display: none;
        margin-top: 16px;
        gap: 8px;
        flex-direction: column;
      }

      .popup-already-form.show {
        display: flex;
      }

      .popup-already-input {
        background: var(--dark);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--light);
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        padding: 12px 16px;
        outline: none;
        transition: border-color 0.2s;
      }

      .popup-already-input:focus {
        border-color: var(--gold);
      }

      .popup-already-input::placeholder {
        color: rgba(255, 255, 255, 0.25);
      }

      .popup-already-submit {
        background: var(--dark3);
        border: 1px solid var(--border);
        color: var(--light);
        font-family: 'DM Sans', sans-serif;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 12px;
        cursor: pointer;
        transition: border-color 0.2s, color 0.2s;
      }

      .popup-already-submit:hover {
        border-color: var(--gold);
        color: var(--gold);
      }

      .popup-already-msg {
        font-size: 12px;
        color: var(--gold);
        text-align: center;
        display: none;
        line-height: 1.5;
      }

      .popup-already-msg.show {
        display: block;
      }

      .popup-close {
        position: absolute;
        top: 12px;
        right: 16px;
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.5);
        font-size: 20px;
        cursor: pointer;
        line-height: 1;
        transition: color 0.2s;
      }

      .popup-close:hover {
        color: white;
      }

      /* ── ANIMATIONS ── */
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(24px);
        }

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

      @keyframes scrollPulse {

        0%,
        100% {
          opacity: 0.4;
        }

        50% {
          opacity: 1;
        }
      }

      /* ── RESPONSIVE ── */
      @media (max-width: 768px) {
        .stats {
          grid-template-columns: repeat(2, 1fr);
        }

        .stat-item:nth-child(2) {
          border-right: none;
        }

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

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

        .lead-row {
          grid-template-columns: 1fr;
        }
      }

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

        .stats {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      .article {
  max-width: 800px;
  margin: 120px auto 80px;
  padding: 0 20px;
  line-height: 1.7;
  color: var(--light);
}

.article h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.article h2 {
  margin-top: 50px;
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: var(--gold);
}

.article p {
  margin-bottom: 20px;
  color: #ccc;
}

.article ul {
  margin: 20px 0 20px 20px;
}

.article li {
  margin-bottom: 8px;
}