/* ── TOKENS — single dark theme, pas de mode clair ── */
:root {
  --black:      #080808;
  --surface:    #111111;
  --surface2:   #1A1A1A;
  --border:     #252525;
  --gold:       #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dim:   #8A6E2F;
  --white:      #F5F2ED;
  --text:       #E8E4DE;
  --muted:      #7A7570;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --section-v: 96px;
  --ease-drawer: cubic-bezier(0.4, 0, 0.2, 1);
  color-scheme: dark;
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video, iframe { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
body.no-scroll { overflow: hidden; }

/* ── LAYOUT ── */
.container { max-width: 1100px; margin-inline: auto; padding-inline: 24px; }
.section { padding-block: var(--section-v); scroll-margin-top: 60px; }
.bg-black   { background: var(--black); }
.bg-surface { background: var(--surface); }

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .divider,
.section-header.center .section-desc { margin-inline: auto; }
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.divider { width: 48px; height: 2px; background: var(--gold); margin-bottom: 24px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700; line-height: 1.1;
  color: var(--white); text-wrap: balance;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-desc { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 560px; margin-top: 16px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-body); font-size: 13px; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none; text-align: center;
  padding: 16px 36px; border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary { font-weight: 700; color: var(--black); background: var(--gold); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.3); }
.btn-ghost { font-weight: 600; color: var(--gold); border-color: var(--gold-dim); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); }

.tag {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 14px; background: rgba(201,168,76,0.1);
  color: var(--gold); border: 1px solid var(--gold-dim);
}
.tag-sm { font-size: 9px; }

/* ── NAV ── */
.nav {
  position: fixed; top: env(safe-area-inset-top, 0px); left: 0; right: 0; z-index: 100;
  background: linear-gradient(to bottom, rgba(8,8,8,0.95), transparent);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.nav-inner {
  max-width: 1100px; margin-inline: auto;
  padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  letter-spacing: 0.08em; color: var(--white); text-decoration: none; white-space: nowrap;
}
.nav-logo span, .footer-logo span { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 32px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--black); background: var(--gold); padding: 10px 22px; text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-decoration: none;
  color: var(--muted); border: 1px solid var(--border); padding: 9px 11px; line-height: 1;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.lang-switch:hover { color: var(--gold); border-color: var(--gold); }
.cart-btn {
  position: relative; background: none; border: 1px solid var(--border);
  color: var(--gold); padding: 9px 13px; font-size: 16px; line-height: 1;
  transition: border-color 0.2s ease;
}
.cart-btn:hover { border-color: var(--gold); }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--gold); color: var(--black);
  font-size: 10px; font-weight: 700; line-height: 17px; text-align: center;
  font-variant-numeric: tabular-nums;
  opacity: 0; transform: scale(0.6);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.cart-badge.visible { opacity: 1; transform: scale(1); }
.burger {
  display: none; background: none; border: 1px solid var(--border);
  color: var(--white); width: 40px; height: 38px; font-size: 20px; line-height: 1;
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(8,8,8,0.96);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a:not(.btn) {
  font-family: var(--font-display); font-size: 28px; font-weight: 700;
  color: var(--white); text-decoration: none; transition: color 0.2s ease;
}
.mobile-menu a:not(.btn):hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: calc(env(safe-area-inset-top, 0px) + 20px); right: 24px;
  background: none; border: none; color: var(--muted); font-size: 32px; line-height: 1;
}

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; min-height: 100svh;
  padding-block: 120px 80px;
  text-align: center;
  background: var(--black);
  display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 70%, rgba(201,168,76,0.04) 0%, transparent 60%);
}
.hero .container { position: relative; width: 100%; }
.hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 900; line-height: 0.9; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 20px; text-wrap: balance;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(16px, 2.5vw, 22px); color: var(--muted); margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

.vsl {
  position: relative; max-width: 780px; margin-inline: auto;
  aspect-ratio: 16 / 9; background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.vsl-bg {
  font-family: var(--font-display); font-size: 28px; font-weight: 700;
  color: var(--border); letter-spacing: 0.1em; text-transform: uppercase; user-select: none;
}
.vsl-play {
  position: absolute; width: 72px; height: 72px; border-radius: 50%;
  background: var(--gold); border: none;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vsl-play:hover { transform: scale(1.08); box-shadow: 0 0 40px rgba(201,168,76,0.5); }
.vsl::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  pointer-events: none;
}
.vsl iframe, .vsl video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ── TICKER ── */
.ticker { background: var(--gold); padding-block: 14px; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: ticker 28s linear infinite; will-change: transform; }
.ticker-group { display: inline-flex; align-items: center; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 40px; padding-right: 40px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--black);
}
.ticker-item::after {
  content: ''; width: 4px; height: 4px; border-radius: 50%; background: rgba(0,0,0,0.4);
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── PALIERS ── */
.paliers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2px; }
.palier-card {
  position: relative; overflow: hidden;
  background: var(--surface2); padding: 40px 32px;
  transition: background-color 0.3s ease;
}
.palier-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--border); transition: background-color 0.3s ease;
}
.palier-num {
  font-family: var(--font-display); font-size: 64px; font-weight: 900; line-height: 1;
  color: var(--border); margin-bottom: 20px; font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}
.palier-level {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.palier-name { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.palier-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.palier-card .tag { margin-top: 20px; }
.palier-card:hover, .palier-card.featured { background: #161410; }
.palier-card:hover::before, .palier-card.featured::before { background: var(--gold); }
.palier-card:hover .palier-num, .palier-card.featured .palier-num { color: rgba(201,168,76,0.15); }
.palier-card.locked .palier-level,
.palier-card.locked .palier-name { color: var(--muted); }
.palier-card.locked .palier-desc { color: var(--border); }
.palier-card.locked .tag { opacity: 0.4; }

/* ── CAPSULES ── */
.capsules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.capsule-card {
  background: var(--surface); border: 1px solid var(--border); overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.capsule-card:hover { border-color: var(--gold-dim); transform: translateY(-4px); }
.capsule-thumb {
  position: relative; aspect-ratio: 16 / 9; background: var(--surface2);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.capsule-bg-num {
  position: absolute; right: 16px; bottom: -8px; line-height: 1;
  font-family: var(--font-display); font-size: 80px; font-weight: 900;
  color: rgba(201,168,76,0.08); user-select: none; pointer-events: none;
}
.capsule-play {
  position: relative; z-index: 1;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--gold); background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.capsule-play path { fill: var(--gold); transition: fill 0.2s ease; }
.capsule-play:hover { background: var(--gold); transform: scale(1.1); }
.capsule-play:hover path { fill: var(--black); }
.capsule-duration {
  position: absolute; bottom: 10px; right: 12px;
  font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}
.capsule-body { padding: 24px; }
.capsule-body .tag { margin-bottom: 8px; }
.capsule-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 10px; }
.capsule-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.capsule-notes { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.capsule-note { display: flex; gap: 10px; font-size: 12px; color: var(--muted); }
.capsule-note::before { content: '—'; color: var(--gold); flex-shrink: 0; }

/* ── WINS ── */
.wins-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.win-card {
  position: relative; background: var(--black); border: 1px solid var(--border); padding: 40px 32px;
}
.win-card::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--gold); opacity: 0; transition: opacity 0.3s ease;
}
.win-card:hover::after { opacity: 1; }
.win-label { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.win-label.gold { color: var(--gold); }
.win-number {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 52px); font-weight: 900;
  color: var(--white); line-height: 1; margin-bottom: 16px; font-variant-numeric: tabular-nums;
}
.win-name { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.win-role { font-size: 12px; color: var(--muted); }
.win-quote {
  margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border);
  font-size: 14px; font-style: italic; color: var(--muted); line-height: 1.6;
}
.testimonial-card { background: var(--surface2); border: 1px solid var(--border); padding: 32px; }
.stars { display: flex; gap: 4px; color: var(--gold); font-size: 14px; margin-bottom: 16px; }
.testimonial-text { font-size: 15px; font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--gold);
}

/* ── SHOP ── */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.shop-card {
  background: var(--surface); border: 1px solid var(--border); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.shop-card:hover { border-color: var(--gold-dim); transform: translateY(-2px); }
.shop-thumb {
  position: relative; aspect-ratio: 4 / 3; background: var(--surface2); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.shop-ghost {
  position: absolute; line-height: 1; user-select: none; pointer-events: none;
  font-family: var(--font-display); font-size: 90px; font-weight: 900; color: rgba(201,168,76,0.04);
}
.shop-icon { position: relative; z-index: 1; font-size: 40px; opacity: 0.5; }
.shop-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.shop-body .tag { margin-bottom: 6px; align-self: flex-start; }
.shop-name { font-size: 16px; font-weight: 600; color: var(--white); line-height: 1.3; margin-bottom: 6px; }
.shop-desc { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 16px; flex: 1; }
.shop-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--gold); font-variant-numeric: tabular-nums; }
.add-btn {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--black); background: var(--gold); padding: 8px 16px; border: none;
  transition: background-color 0.2s ease;
}
.add-btn:hover { background: var(--gold-light); }

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed; inset: 0; z-index: 998; background: rgba(0,0,0,0.7);
  opacity: 0; pointer-events: none; transition: opacity 0.35s var(--ease-drawer);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; z-index: 999;
  width: min(420px, 100vw); height: 100vh; height: 100dvh;
  background: var(--surface); border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  padding-top: env(safe-area-inset-top, 0px); padding-bottom: env(safe-area-inset-bottom, 0px);
  transform: translateX(100%); visibility: hidden;
  transition: transform 0.35s var(--ease-drawer), visibility 0s linear 0.35s;
}
.cart-drawer.open { transform: translateX(0); visibility: visible; transition: transform 0.35s var(--ease-drawer), visibility 0s; }
.cart-head {
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--white); letter-spacing: 0.05em; }
.cart-close { background: none; border: none; color: var(--muted); font-size: 22px; line-height: 1; transition: color 0.2s ease; }
.cart-close:hover { color: var(--gold); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; list-style: none; overscroll-behavior: contain; }
.cart-item { display: flex; align-items: flex-start; gap: 14px; padding-block: 14px; }
.cart-item + .cart-item { border-top: 1px solid var(--border); }
.cart-thumb {
  width: 44px; height: 44px; flex-shrink: 0; background: var(--surface2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.cart-info { flex: 1; min-width: 0; }
.cart-name { font-size: 13px; font-weight: 600; color: var(--white); line-height: 1.3; margin-bottom: 3px; }
.cart-type { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.qty button {
  width: 24px; height: 24px; background: var(--surface2); border: 1px solid var(--border); color: var(--text);
  font-size: 14px; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.qty button:hover { border-color: var(--gold); color: var(--gold); }
.qty span { font-size: 13px; min-width: 16px; text-align: center; font-variant-numeric: tabular-nums; }
.cart-pay {
  display: inline-block; margin-top: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); text-decoration: none; transition: color 0.2s ease;
}
.cart-pay:hover { color: var(--gold-light); }
.cart-price { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--gold); white-space: nowrap; font-variant-numeric: tabular-nums; }
.cart-empty { padding: 48px 0; text-align: center; font-size: 14px; color: var(--muted); }
.cart-foot { padding: 20px 24px; border-top: 1px solid var(--border); }
.cart-subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.cart-subtotal span:first-child { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.cart-subtotal span:last-child { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--white); font-variant-numeric: tabular-nums; }
.checkout-btn {
  display: block; width: 100%; padding: 14px; background: var(--gold); color: var(--black); border: none;
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  transition: background-color 0.2s ease;
}
.checkout-btn:hover { background: var(--gold-light); }
.checkout-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.continue-btn {
  display: block; width: 100%; margin-top: 12px; background: none; border: none;
  font-size: 11px; color: var(--muted); letter-spacing: 0.08em; transition: color 0.2s ease;
}
.continue-btn:hover { color: var(--gold); }

/* ── NEWSLETTER ── */
.newsletter { max-width: 600px; margin-inline: auto; text-align: center; }
.newsletter .divider { margin-inline: auto; }
.newsletter-form { display: flex; flex-wrap: wrap; margin-top: 32px; }
.newsletter-input {
  flex: 1; min-width: 200px; padding: 16px 20px;
  background: var(--black); border: 1px solid var(--border); border-right: none;
  color: var(--white); font-size: 14px; border-radius: 0; outline: none;
  transition: border-color 0.2s ease;
}
.newsletter-input::placeholder { color: var(--muted); }
.newsletter-input:focus { border-color: var(--gold-dim); }
.newsletter-btn {
  padding: 16px 28px; background: var(--gold); border: 1px solid var(--gold); color: var(--black);
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.newsletter-btn:hover { background: var(--gold-light); border-color: var(--gold-light); }
.newsletter-note { font-size: 12px; color: var(--muted); margin-top: 12px; }
.newsletter-msg { font-size: 13px; color: var(--gold); margin-top: 12px; min-height: 1.4em; }

/* ── FOOTER ── */
.footer { background: var(--black); border-top: 1px solid var(--border); padding-block: 48px; padding-bottom: calc(48px + env(safe-area-inset-bottom, 0px)); text-align: center; }
.footer-logo { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: 0.08em; margin-bottom: 12px; }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 13px; color: var(--muted); margin-bottom: 32px; }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; list-style: none; margin-bottom: 32px; }
.footer-links a { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-social { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.footer-social a { text-decoration: none; transition: color 0.2s ease; }
.footer-social a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: var(--border); }

/* ── FORMULAIRE ── */
.lead { max-width: 760px; margin-inline: auto; }
.lead .section-header { margin-bottom: 48px; }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field-full { grid-column: 1 / -1; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted);
}
.field input, .field select, .field textarea {
  width: 100%; padding: 16px 20px;
  background: var(--black); border: 1px solid var(--border); border-radius: 0;
  color: var(--white); font-size: 14px; line-height: 1.5; outline: none;
  transition: border-color 0.2s ease;
}
.bg-black .field input, .bg-black .field select, .bg-black .field textarea { background: var(--surface); }
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-dim); }
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 48px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 20px center;
}
.field select:invalid { color: var(--muted); }
.field option { color: var(--white); background: var(--surface); }
.lead-form.submitted .field :invalid { border-color: var(--gold); }
.lead-submit { width: 100%; margin-top: 8px; }
.lead-submit:disabled { opacity: 0.5; cursor: wait; transform: none; box-shadow: none; }
.lead-msg { font-size: 13px; color: var(--gold); margin-top: 12px; min-height: 1.4em; text-align: center; }
.lead-note { font-size: 12px; color: var(--muted); text-align: center; }

/* ── POP-UP FORMULAIRE ── */
.popup {
  width: min(680px, calc(100vw - 32px)); max-height: calc(100dvh - 32px);
  margin: auto; padding: 48px 40px 32px; overflow-y: auto; overscroll-behavior: contain;
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border); border-radius: 0;
}
.popup::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold);
}
.popup::backdrop { background: rgba(0,0,0,0.7); }
.popup[open] { animation: popup-in 0.35s var(--ease-drawer); }
.popup[open]::backdrop { animation: popup-fade 0.35s ease; }
@keyframes popup-in { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes popup-fade { from { opacity: 0; } to { opacity: 1; } }
.popup .eyebrow, .popup-title, .popup-desc { text-align: center; }
.popup .divider { margin-inline: auto; }
.popup-title {
  font-family: var(--font-display); font-size: clamp(26px, 4vw, 36px); font-weight: 700;
  line-height: 1.1; color: var(--white); text-wrap: balance; margin-bottom: 12px;
}
.popup-title em { color: var(--gold); font-style: italic; }
.popup-desc { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 480px; margin: 0 auto 32px; }
.popup-close {
  position: absolute; top: 16px; right: 16px; width: 40px; height: 40px;
  background: none; border: 1px solid var(--border); color: var(--muted);
  font-size: 22px; line-height: 1; transition: color 0.2s ease, border-color 0.2s ease;
}
.popup-close:hover { color: var(--gold); border-color: var(--gold); }

/* ── RESPONSIVE (≤ 768px) ── */
@media (max-width: 768px) {
  .nav-inner { padding-inline: 24px; }
  .nav-links, .nav-right > .nav-cta { display: none; }
  .burger { display: inline-flex; align-items: center; justify-content: center; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .newsletter-input { border-right: 1px solid var(--border); }
  .newsletter-btn { width: 100%; }
  .lead-form { grid-template-columns: 1fr; }
  .popup { padding: 56px 20px 24px; }
}

/* ── PAGE PALIERS ── */
.page-hero { min-height: auto; padding-block: 160px 96px; }
.palier-card-link { text-decoration: none; color: inherit; display: block; }
.palier-detail {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 64px; align-items: start;
}
.palier-detail-head { position: sticky; top: 120px; }
.palier-detail .palier-num { font-size: clamp(96px, 14vw, 160px); margin-bottom: 8px; color: var(--border); }
.palier-detail.featured .palier-num { color: rgba(201,168,76,0.15); }
.palier-detail .section-title { margin-bottom: 20px; }
.palier-detail .tag { margin-bottom: 32px; }
.palier-detail-head .btn { display: block; }
.palier-block { border-top: 1px solid var(--border); padding-block: 32px; }
.palier-block:first-child { border-top: none; padding-top: 0; }
.palier-block-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.palier-block p { font-size: 16px; color: var(--text); line-height: 1.7; }
.module-list { list-style: none; display: grid; gap: 2px; counter-reset: module; }
.module {
  counter-increment: module;
  display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: baseline;
  background: var(--surface2); padding: 20px 24px;
}
.bg-surface .module { background: var(--black); }
.module::before {
  content: counter(module, decimal-leading-zero);
  font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--gold-dim);
  font-variant-numeric: tabular-nums;
}
.module-name { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.module-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.outcome-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.outcome-list li { display: flex; gap: 10px; font-size: 15px; color: var(--text); }
.outcome-list li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.palier-detail.locked .section-title,
.palier-detail.locked .palier-block p,
.palier-detail.locked .outcome-list li { color: var(--muted); }
.cta-final { text-align: center; }
.cta-final .divider, .cta-final .section-desc { margin-inline: auto; }
.cta-final .hero-ctas { margin: 40px 0 0; }

@media (max-width: 768px) {
  .page-hero { padding-block: 128px 64px; }
  .palier-detail { grid-template-columns: 1fr; gap: 40px; }
  .palier-detail-head { position: static; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation: none !important; }
}
