/* =========================================================
   LANCE TON PODCAST · PODLAB — Design System
   ========================================================= */

:root {
  /* Couleurs signature Podlab */
  --rec: #D64A36;
  --rec-soft: #E36A55;
  --rec-deep: #B83820;
  --grey: #20211C;
  --grey-elev: #2A2B25;
  --grey-card: #181915;
  --grey-line: #353630;
  --grey-line-soft: #2D2E28;
  --white: #FFFFFF;
  --white-soft: #F2EFE8;
  --white-mute: #B8B5AC;
  --white-dim: #6F6D67;

  /* Typo */
  --font-display: 'Familjen Grotesk', 'Coolvetica', sans-serif;
  --font-body: 'Hanken Grotesk', 'Konnect', sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, monospace;

  /* Layout */
  --maxw: 1180px;
  --radius-card: 20px;
  --radius-pill: 100px;
  --gutter: clamp(20px, 5vw, 48px);

  --shadow-rec: 0 12px 40px rgba(214, 74, 54, 0.25);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.35);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--grey);
  color: var(--white-soft);
  line-height: 1.5;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- Layout utils ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { padding-block: clamp(72px, 11vw, 140px); position: relative; }

.section-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rec-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 18px;
}

.section-title .accent { color: var(--rec); font-style: italic; }

.section-intro {
  color: var(--white-mute);
  max-width: 620px;
  font-size: clamp(16px, 2.2vw, 19px);
}

/* ---------- Recording dot (icône signature) ---------- */
.rec-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rec-dot::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rec);
}
.rec-dot.sm { width: 11px; height: 11px; }
.rec-dot.sm::after { width: 5px; height: 5px; }

/* ---------- Pill tag (composant identitaire) ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--rec);
  color: var(--white);
  padding: 10px 14px 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-rec);
  letter-spacing: -0.01em;
}
.pill .pill-num { font-family: var(--font-mono); opacity: 0.85; }
.pill .pill-chevron {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  color: var(--rec);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.pill-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid var(--grey-line);
  color: var(--white-mute);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  font-size: 16px;
  padding: 17px 30px;
  border-radius: var(--radius-pill);
  letter-spacing: -0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-align: center;
}
.btn-primary {
  background: var(--rec);
  color: var(--white);
  box-shadow: var(--shadow-rec);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(214, 74, 54, 0.38); background: var(--rec-soft); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--grey-line);
  color: var(--white-soft);
}
.btn-ghost:hover { border-color: var(--white-dim); background: var(--grey-elev); }
.btn-block { width: 100%; }
.btn-lg { padding: 20px 34px; font-size: 17px; }

/* ---------- Card ---------- */
.card {
  background: var(--grey-card);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-card);
  padding: clamp(22px, 3vw, 34px);
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(32, 33, 28, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.scrolled { border-color: var(--grey-line-soft); background: rgba(24, 25, 21, 0.9); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--white);
}
.nav-links { display: none; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 14.5px;
  color: var(--white-mute);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { font-size: 14px; padding: 11px 20px; }

@media (min-width: 940px) {
  .nav-links { display: flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding-top: clamp(120px, 18vw, 180px);
  padding-bottom: clamp(70px, 10vw, 120px);
  background:
    radial-gradient(ellipse 70% 50% at 70% 60%, rgba(214, 74, 54, 0.35) 0%, transparent 60%),
    var(--grey);
  overflow: hidden;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
  opacity: 0.6;
}
.hero-inner { position: relative; z-index: 2; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 11vw, 130px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--white);
  margin: 26px 0 24px;
  max-width: 14ch;
}
.hero h1 .accent { color: var(--rec); font-style: italic; }
.hero-sub {
  font-size: clamp(17px, 2.6vw, 22px);
  color: var(--white-mute);
  max-width: 560px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--white-dim);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--grey-line-soft);
  border: 1px solid var(--grey-line-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.stat {
  background: var(--grey-card);
  padding: 24px 22px;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
}
.stat-num .unit { color: var(--rec); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 8px;
}
@media (min-width: 740px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); margin-top: 70px; }
}

/* =========================================================
   LE CONSTAT (PAS)
   ========================================================= */
.constat-quotes {
  display: grid;
  gap: 18px;
  margin-top: 48px;
}
@media (min-width: 820px) { .constat-quotes { grid-template-columns: repeat(3, 1fr); } }
.constat-quotes blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(19px, 2.4vw, 23px);
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--white-soft);
  position: relative;
  padding-top: 44px;
}
.constat-quotes blockquote::before {
  content: "“";
  position: absolute;
  top: 6px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--rec);
  opacity: 0.55;
}
.constat-pivot {
  margin: 40px auto 0;
  max-width: 760px;
  font-size: clamp(19px, 2.6vw, 26px);
  line-height: 1.4;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.015em;
}
.constat-pivot .accent { color: var(--rec); font-style: italic; }

/* =========================================================
   POUR QUI
   ========================================================= */
.foryou-grid {
  display: grid;
  gap: 18px;
  margin-top: 48px;
}
@media (min-width: 760px) { .foryou-grid { grid-template-columns: 1fr 1fr; gap: 22px; } }

.foryou-col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.foryou-col.yes h3 { color: var(--white); }
.foryou-col.no h3 { color: var(--white-mute); }
.foryou-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid var(--grey-line-soft);
  font-size: 16px;
}
.foryou-item:last-child { border-bottom: none; }
.foryou-mark {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}
.yes .foryou-mark { background: rgba(214,74,54,0.16); color: var(--rec-soft); }
.no .foryou-mark { background: var(--grey-elev); color: var(--white-dim); }
.no .foryou-item { color: var(--white-mute); }

/* =========================================================
   PROGRAMME
   ========================================================= */
.days { display: grid; gap: 20px; margin-top: 50px; }
@media (min-width: 900px) { .days { grid-template-columns: repeat(3, 1fr); } }

.day { display: flex; flex-direction: column; }
.day-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--grey-line);
}
.day-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--rec-soft);
  text-transform: uppercase;
}
.day-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.025em;
  color: var(--white);
}
.day-theme {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.slot { display: flex; gap: 14px; padding: 13px 0; }
.slot-time {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--rec-soft);
  flex-shrink: 0;
  width: 52px;
  padding-top: 2px;
}
.slot-body strong { display: block; color: var(--white); font-weight: 600; font-size: 15.5px; }
.slot-body span { font-size: 13.5px; color: var(--white-dim); }

/* =========================================================
   ANIMATEURS
   ========================================================= */
.hosts { display: grid; gap: 22px; margin-top: 50px; }
@media (min-width: 820px) { .hosts { grid-template-columns: 1fr 1fr; } }

.host { display: flex; flex-direction: column; }
.host-photo {
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--grey-elev), var(--grey-card));
  border: 1px solid var(--grey-line);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  overflow: hidden;
}
.host-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.host-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.025em;
  color: var(--white);
}
.host-role {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--rec-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 6px 0 16px;
}
.host-bio { color: var(--white-mute); font-size: 15.5px; margin-bottom: 20px; }
.host-bio em { color: var(--rec-soft); font-style: italic; }
.host-stats { display: flex; flex-wrap: wrap; gap: 10px; }
.host-stat {
  background: var(--grey-elev);
  border: 1px solid var(--grey-line-soft);
  border-radius: var(--radius-pill);
  padding: 7px 15px;
  font-size: 13px;
  color: var(--white-soft);
}
.host-stat b { color: var(--rec-soft); }

/* =========================================================
   LIVRABLES
   ========================================================= */
.deliver-grid { display: grid; gap: 16px; margin-top: 50px; }
@media (min-width: 640px) { .deliver-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .deliver-grid { grid-template-columns: repeat(3, 1fr); } }

.deliver {
  padding: 26px 24px;
  border-radius: 16px;
  background: var(--grey-card);
  border: 1px solid var(--grey-line);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.deliver:hover { border-color: var(--rec-deep); transform: translateY(-3px); }
.deliver.featured { background: linear-gradient(160deg, rgba(214,74,54,0.14), var(--grey-card)); border-color: var(--rec-deep); }
.deliver-ico {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--grey-elev);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.deliver h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 7px;
}
.deliver p { font-size: 14px; color: var(--white-mute); }

/* =========================================================
   LE CADRE
   ========================================================= */
.frame-grid { display: grid; gap: 22px; margin-top: 50px; }
@media (min-width: 820px) { .frame-grid { grid-template-columns: 1fr 1fr; } }
.frame-card { overflow: hidden; padding: 0; }
.frame-photo {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--grey-elev), var(--grey-card));
  display: flex; align-items: center; justify-content: center;
  color: var(--white-dim);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.frame-photo img { width: 100%; height: 100%; object-fit: cover; }
.frame-body { padding: 26px 28px 30px; }
.frame-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 10px;
}
.frame-body p { color: var(--white-mute); font-size: 15.5px; }
.frame-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

/* =========================================================
   LIEU MYSTÈRE
   ========================================================= */
.mystere {
  position: relative;
  margin-top: 50px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--grey-line);
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.mystere-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 28% 18%, rgba(214, 74, 54, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 82% 92%, rgba(184, 56, 32, 0.4) 0%, transparent 55%),
    linear-gradient(155deg, #2A2B25, #161710);
}
.mystere-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.8;
}
.mystere-inner {
  position: relative;
  z-index: 2;
  padding: clamp(44px, 7vw, 76px) clamp(22px, 5vw, 48px);
  max-width: 640px;
}
.mystere-lock {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 22px;
}
.mystere-kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.mystere-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
}
.mystere-title .accent { color: var(--rec-soft); font-style: italic; }
.mystere-text {
  color: var(--white-soft);
  font-size: clamp(15px, 2.2vw, 17px);
  max-width: 490px;
  margin: 0 auto 24px;
  line-height: 1.55;
}

/* ---- Options de paiement ---- */
.pay-label {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 14px;
}
.pay-options {
  display: grid;
  gap: 14px;
  margin-bottom: 12px;
}
@media (min-width: 560px) { .pay-options { grid-template-columns: 1fr 1fr; } }
.pay-btn {
  flex-direction: column;
  gap: 5px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.pay-btn .pay-title { font-weight: 700; font-size: 16px; }
.pay-btn .pay-amount {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.01em;
}

/* =========================================================
   TARIF
   ========================================================= */
.pricing {
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(214,74,54,0.18) 0%, transparent 60%),
    var(--grey);
}
.price-card {
  max-width: 720px;
  margin: 50px auto 0;
  background: var(--grey-card);
  border: 1px solid var(--grey-line);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 48px);
  text-align: center;
}
.price-top { font-family: var(--font-mono); font-size: 13px; color: var(--white-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.price-amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 12vw, 96px);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.04em;
  margin: 12px 0 6px;
}
.price-amount .cur { color: var(--rec); }
.price-allin { color: var(--white-mute); font-size: 16px; margin-bottom: 28px; }
.price-plan {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--grey-elev);
  border: 1px solid var(--grey-line-soft);
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  margin-bottom: 32px;
  font-size: 14.5px;
}
.price-plan b { color: var(--white); }
.price-includes {
  display: grid;
  gap: 12px;
  text-align: left;
  max-width: 520px;
  margin: 0 auto 34px;
}
.price-inc-item { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--white-soft); }
.price-fine { font-family: var(--font-mono); font-size: 12px; color: var(--white-dim); margin-top: 18px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: 760px; margin: 46px auto 0; }
.faq-item { border-bottom: 1px solid var(--grey-line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(17px, 2.4vw, 21px);
  letter-spacing: -0.015em;
  color: var(--white);
}
.faq-toggle {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--grey-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--rec-soft);
  font-size: 18px;
  transition: transform 0.25s ease, background 0.2s ease;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--rec); color: var(--white); border-color: var(--rec); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner { padding: 0 4px 24px; color: var(--white-mute); font-size: 16px; max-width: 90%; }

/* =========================================================
   FOOTER CTA
   ========================================================= */
.final {
  text-align: center;
  background:
    radial-gradient(ellipse 80% 70% at 50% 100%, rgba(214,74,54,0.3) 0%, transparent 60%),
    var(--grey);
}
.final h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 8vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--white);
  max-width: 16ch;
  margin: 0 auto 26px;
}
.final h2 .accent { color: var(--rec); font-style: italic; }
.final-sub { color: var(--white-mute); font-size: 19px; margin-bottom: 38px; }

.footer {
  border-top: 1px solid var(--grey-line-soft);
  padding: 40px 0 50px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; color: var(--white); }
.footer-meta { font-family: var(--font-mono); font-size: 12px; color: var(--white-dim); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 13px; color: var(--white-mute); }
.footer-links a:hover { color: var(--white); }

/* =========================================================
   MODAL FORMULAIRE
   ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 11, 8, 0.78);
  backdrop-filter: blur(6px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(16px, 5vh, 60px) 16px;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal {
  width: 100%;
  max-width: 540px;
  background: var(--grey-card);
  border: 1px solid var(--grey-line);
  border-radius: 22px;
  padding: clamp(24px, 4vw, 38px);
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--grey-elev);
  color: var(--white-mute);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.modal-close:hover { color: var(--white); }
.modal h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 27px;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 6px;
}
.modal-sub { color: var(--white-mute); font-size: 14.5px; margin-bottom: 24px; }

.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white-soft);
  margin-bottom: 7px;
}
.field label .req { color: var(--rec); }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--grey);
  border: 1px solid var(--grey-line);
  border-radius: 11px;
  padding: 13px 14px;
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--rec); }
.field input::placeholder,
.field textarea::placeholder { color: var(--white-dim); }
.field textarea { resize: vertical; min-height: 78px; }
.field select { appearance: none; cursor: pointer; }
.field-error { color: var(--rec-soft); font-size: 12.5px; margin-top: 5px; display: none; }
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: var(--rec); }
.field.invalid .field-error { display: block; }

.checkbox {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 4px 0 22px;
  font-size: 13.5px;
  color: var(--white-mute);
}
.checkbox input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--rec); flex-shrink: 0; }
.checkbox a { color: var(--rec-soft); text-decoration: underline; }

.modal-err {
  background: rgba(214,74,54,0.12);
  border: 1px solid var(--rec-deep);
  color: var(--rec-soft);
  border-radius: 11px;
  padding: 12px 14px;
  font-size: 13.5px;
  margin-bottom: 16px;
  display: none;
}

.btn-loading { position: relative; pointer-events: none; opacity: 0.75; }
.btn-loading .btn-label { visibility: hidden; }
.spinner {
  position: absolute;
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Waitlist badge state */
.soldout-banner {
  background: var(--grey-elev);
  border: 1px solid var(--grey-line);
  border-radius: 11px;
  padding: 13px 16px;
  font-size: 13.5px;
  color: var(--white-mute);
  margin-bottom: 18px;
  display: none;
  align-items: center;
  gap: 10px;
}

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   SUCCESS / CANCEL pages
   ========================================================= */
.status-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(214,74,54,0.3) 0%, transparent 60%),
    var(--grey);
  padding: 40px 20px;
}
.status-card { max-width: 560px; }
.status-ico {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--rec);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  box-shadow: var(--shadow-rec);
  font-size: 38px;
  color: var(--white);
}
.status-ico.muted { background: var(--grey-elev); box-shadow: none; color: var(--white-mute); }
.status-page h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 7vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 18px;
}
.status-page h1 .accent { color: var(--rec); font-style: italic; }
.status-page p { color: var(--white-mute); font-size: 18px; margin-bottom: 32px; }
.status-steps {
  text-align: left;
  max-width: 420px;
  margin: 0 auto 34px;
  display: grid;
  gap: 14px;
}
.status-step { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; color: var(--white-soft); }

/* =========================================================
   2026 — interactions, preuve sociale, value stacking
   ========================================================= */

/* ---- Easing premium global des boutons ---- */
.btn { transition-timing-function: cubic-bezier(.4, 0, .2, 1); }

/* ---- Hero : lien secondaire, preuve sociale, barre de places ---- */
.hero-link {
  font-size: 15px;
  color: var(--white-mute);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--white-dim);
  transition: color .18s ease;
}
.hero-link:hover { color: var(--white); }
.hero-proof {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--white-mute);
  margin-top: 16px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  line-height: 1.5;
}
.hero-proof .accent { color: var(--rec-soft); font-weight: 600; font-style: normal; }
.places-bar {
  height: 6px; border-radius: 100px;
  background: var(--grey-line);
  overflow: hidden; max-width: 340px; margin: 14px 0 0;
}
.places-bar i {
  display: block; height: 100%; border-radius: inherit;
  background: linear-gradient(90deg, var(--rec-deep), var(--rec));
  transform: scaleX(0); transform-origin: left;
  transition: transform .9s cubic-bezier(.4, 0, .2, 1);
}
.places-bar.in i { transform: scaleX(var(--fill, .5)); }
.stat-num { font-variant-numeric: tabular-nums; }

/* ---- Constat : ligne d'agitation ---- */
.constat-agit {
  max-width: 760px; margin: 34px auto 0;
  font-size: clamp(17px, 2.4vw, 22px); line-height: 1.45;
  color: var(--white-mute); font-style: italic;
}

/* ---- Témoignages ---- */
.testi-grid { display: grid; gap: 16px; margin-top: 48px; }
@media (min-width: 640px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi { display: flex; flex-direction: column; gap: 16px; }
.testi-head { display: flex; align-items: center; gap: 13px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--rec-soft), var(--rec-deep));
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center; letter-spacing: .02em;
}
.testi figcaption b { display: block; color: var(--white); font-size: 15px; font-weight: 700; }
.testi figcaption span { font-family: var(--font-mono); font-size: 11.5px; color: var(--white-dim); letter-spacing: .03em; }
.testi blockquote { color: var(--white-mute); font-size: 15px; line-height: 1.55; }
.testi .hl, .pull-quote .hl { color: var(--rec-soft); font-weight: 600; }
/* ---- Carrousel témoignages (défilement horizontal) ---- */
.testi-rail-wrap { margin-top: 44px; }
.testi-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: calc(max((100vw - var(--maxw)) / 2, 0px) + var(--gutter));
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 6px 0 14px;
  padding-inline: calc(max((100vw - var(--maxw)) / 2, 0px) + var(--gutter));
  scrollbar-width: none;
}
.testi-rail::-webkit-scrollbar { display: none; }
.testi-card {
  flex: 0 0 clamp(280px, 78vw, 384px);
  scroll-snap-align: start;
  background: var(--grey-card);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-card);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .2s ease, transform .2s ease;
}
.testi-card:hover { border-color: var(--rec-deep); transform: translateY(-4px); }
.testi-stars { color: var(--rec); font-size: 15px; letter-spacing: 4px; }
.testi-card blockquote {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(17px, 2.1vw, 20px);
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: var(--white-soft);
}
.testi-by { font-size: 15px; font-weight: 600; color: var(--white); display: flex; flex-direction: column; gap: 3px; }
.testi-by span { font-family: var(--font-mono); font-size: 12px; font-weight: 400; color: var(--white-dim); letter-spacing: .03em; }
.testi-nav { display: flex; gap: 12px; justify-content: flex-end; margin-top: 20px; }
.testi-arrow {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--grey-line); background: var(--grey-card);
  color: var(--white); font-size: 19px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.testi-arrow:hover { background: var(--rec); border-color: var(--rec); transform: translateY(-2px); }
.testi-arrow:active { transform: translateY(0); }

/* ---- Citation isolée (pull quote) ---- */
.pull-quote {
  max-width: 700px; margin: 30px auto 0; text-align: center;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(20px, 3vw, 28px); line-height: 1.3; letter-spacing: -0.02em;
  color: var(--white);
}
.pull-quote .hl { font-style: italic; }
.pull-quote cite {
  display: block; margin-top: 14px;
  font-family: var(--font-mono); font-size: 12.5px; font-style: normal;
  color: var(--white-dim); letter-spacing: .04em;
}

/* ---- Pont Before / After ---- */
.ba-grid { display: grid; gap: 18px; margin-top: 48px; align-items: center; }
@media (min-width: 820px) { .ba-grid { grid-template-columns: 1fr auto 1fr; } }
.ba-col {
  background: var(--grey-card); border: 1px solid var(--grey-line);
  border-radius: var(--radius-card); padding: 28px 26px;
}
.ba-col.after {
  border-color: var(--rec-deep);
  background: linear-gradient(160deg, rgba(214, 74, 54, 0.12), var(--grey-card));
}
.ba-tag { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.ba-col.before .ba-tag { color: var(--white-dim); }
.ba-col.after .ba-tag { color: var(--rec-soft); }
.ba-list { display: grid; gap: 12px; }
.ba-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: var(--white-soft); }
.ba-list li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; margin-top: 8px; flex-shrink: 0; background: var(--white-dim); }
.ba-col.after .ba-list li::before { background: var(--rec); }
.ba-arrow { font-family: var(--font-display); font-size: 34px; color: var(--rec); text-align: center; }
@media (max-width: 819px) { .ba-arrow { transform: rotate(90deg); } }

/* ---- Tarif : value stacking + réassurance ---- */
.value-stack { text-align: left; max-width: 480px; margin: 0 auto 24px; display: grid; gap: 9px; }
.vs-row { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; font-size: 14.5px; color: var(--white-mute); }
.vs-row > span:first-child { flex: 1; }
.vs-val { font-family: var(--font-mono); font-size: 13px; color: var(--white-dim); white-space: nowrap; }
.vs-total { display: flex; justify-content: space-between; gap: 14px; border-top: 1px solid var(--grey-line); margin-top: 6px; padding-top: 12px; font-size: 15px; color: var(--white-soft); font-weight: 600; }
.vs-strike { font-family: var(--font-mono); color: var(--white-dim); text-decoration: line-through; }
.price-reveal { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--rec-soft); margin-bottom: 4px; }
.price-amount .unit { color: var(--rec); }
.price-amount [data-count] { font-variant-numeric: tabular-nums; }
.price-inaction { color: var(--white-mute); font-size: 14.5px; font-style: italic; max-width: 430px; margin: 10px auto 26px; line-height: 1.5; }
.price-secure { font-family: var(--font-mono); font-size: 12.5px; color: var(--white-soft); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.price-guarantee { color: var(--white-mute); font-size: 13px; max-width: 470px; margin: 10px auto 0; line-height: 1.55; }

/* ---- Options de paiement : badge "le plus choisi" ---- */
.pay-options { margin-top: 20px; }
.pay-btn { position: relative; }
.pay-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--white); color: var(--grey);
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 11px; border-radius: 100px; white-space: nowrap;
}

/* ---- CTA final : rareté ---- */
.final-scarcity { font-family: var(--font-mono); font-size: 13px; color: var(--white-mute); margin-top: 22px; display: flex; align-items: center; justify-content: center; gap: 8px; }

/* ---- Sticky CTA mobile ---- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(24, 25, 21, 0.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--grey-line);
  transform: translateY(115%);
  transition: transform .28s cubic-bezier(.4, 0, .2, 1);
  text-decoration: none;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta-info { display: flex; flex-direction: column; line-height: 1.1; }
.sticky-cta-info b { color: var(--white); font-family: var(--font-display); font-weight: 800; font-size: 19px; }
.sticky-cta-info small { color: var(--white-dim); font-size: 11px; font-family: var(--font-mono); margin-top: 3px; }
.sticky-cta-btn { background: var(--rec); color: #fff; font-weight: 700; font-size: 15px; padding: 13px 20px; border-radius: 100px; box-shadow: var(--shadow-rec); white-space: nowrap; }
@media (max-width: 939px) { .sticky-cta { display: flex; } }

/* ---- Scroll-reveal séquencé (stagger) ---- */
.reveal { transition-delay: calc(var(--i, 0) * 80ms); }
.constat-quotes .reveal:nth-child(2) { --i: 1; }
.constat-quotes .reveal:nth-child(3) { --i: 2; }
.days .reveal:nth-child(2) { --i: 1; }
.days .reveal:nth-child(3) { --i: 2; }

/* ---- Parallaxe léger du grain hero (scroll-driven, hors-thread) ---- */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: scroll()) {
    .hero-grain { animation: grainDrift linear both; animation-timeline: scroll(root); animation-range: 0 620px; }
    @keyframes grainDrift { to { transform: translateY(-44px); } }
  }
}

/* ---- Accessibilité : mouvement réduit ---- */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition-delay: 0 !important; }
  .places-bar i { transition: none !important; }
  .sticky-cta { transition: none !important; }
  .hero-grain { animation: none !important; }
}

/* ---- Tarif : deux cartes claires (1 fois / 3 fois) ---- */
.pricing-duo { display: grid; gap: 20px; margin: 46px auto 0; max-width: 840px; }
@media (min-width: 760px) { .pricing-duo { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.price-card-2 {
  position: relative;
  background: var(--grey-card);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-card);
  padding: 34px 30px;
  display: flex; flex-direction: column; text-align: left;
}
.price-card-2.featured {
  border-color: var(--rec-deep);
  background: linear-gradient(170deg, rgba(214, 74, 54, 0.14), var(--grey-card));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.pc-badge {
  position: absolute; top: -12px; left: 30px;
  background: var(--rec); color: #fff;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; box-shadow: var(--shadow-rec);
}
.pc-tag { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--white-dim); margin-bottom: 12px; }
.pc-amount { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 6vw, 56px); line-height: 1; letter-spacing: -0.04em; color: var(--white); }
.pc-amount .unit { color: var(--rec); margin-left: 2px; }
.pc-sub { color: var(--white-mute); font-size: 14px; margin: 9px 0 24px; }
.pc-list { display: grid; gap: 12px; margin: 0 0 28px; flex: 1; }
.pc-list li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--white-soft); line-height: 1.4; }
.pc-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--rec-soft); font-weight: 700; font-size: 14px; }
.price-secure { font-family: var(--font-mono); font-size: 12.5px; color: var(--white-mute); margin: 22px auto 0; display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; text-align: center; }
