/* ============ 997.fr — v2 ============ */
/* Fonts self-hostées (RGPD clean, zéro CDN tiers) */
@font-face { font-family: "Clash Display"; src: url("assets/fonts/clash-display-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Clash Display"; src: url("assets/fonts/clash-display-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Clash Display"; src: url("assets/fonts/clash-display-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Satoshi"; src: url("assets/fonts/satoshi-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Satoshi"; src: url("assets/fonts/satoshi-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Satoshi"; src: url("assets/fonts/satoshi-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Instrument Serif"; src: url("assets/fonts/instrument-serif-400-italic.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "Space Mono"; src: url("assets/fonts/space-mono-400-normal.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Space Mono"; src: url("assets/fonts/space-mono-700-normal.woff2") format("woff2"); font-weight: 700; font-display: swap; }

:root {
  --bg: #0a0a09;
  --panel: #101010;
  --ink: #ede8dc;
  --muted: #8f897d;
  --line: rgba(237, 232, 220, 0.14);
  --acid: #e8ff47;
  --acid-dim: rgba(232, 255, 71, 0.12);
  --display: "Clash Display", "Arial Narrow", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Satoshi", system-ui, sans-serif;
  --mono: "Space Mono", monospace;
  --ease: cubic-bezier(0.65, 0.05, 0, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 998; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
::selection { background: var(--acid); color: #0a0a09; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ---------- intro ---------- */
.intro {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.9s var(--ease);
}
.intro-num {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(120px, 30vw, 420px);
  color: transparent;
  -webkit-text-stroke: 1px var(--acid);
  opacity: 0;
  animation: intro-pop 0.7s var(--ease) 0.1s forwards;
}
@keyframes intro-pop { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }
body.loaded .intro { transform: translateY(-100%); }
body.loaded .intro .intro-num { animation: none; }

/* ---------- cursor ---------- */
.cursor {
  position: fixed; z-index: 1001; top: 0; left: 0;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--acid);
  pointer-events: none;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), opacity 0.2s;
  opacity: 0;
}
body.cursor-on .cursor { opacity: 1; }
.cursor.grow { width: 58px; height: 58px; }
@media (pointer: coarse) { .cursor { display: none; } }

/* ---------- type helpers ---------- */
h1, h2, .veto-big, .statement-text, .footer-giant {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 0.94;
}
h1 em, h2 em, .veto-big em, .inclus-note em, .enemy em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  text-transform: none; letter-spacing: 0;
  color: var(--acid);
}
h2 { font-size: clamp(40px, 5.6vw, 76px); margin: 18px 0 26px; }
.sec-index {
  font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--muted);
}
.sec-intro { color: var(--muted); max-width: 480px; font-size: 18px; }
section { padding: 130px 0; position: relative; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.line-mask { display: block; overflow: hidden; }
.line-mask > span, .line-mask > .h1-line { display: block; transform: translateY(115%); transition: transform 1s var(--ease); }
body.loaded .line-mask > span, body.loaded .line-mask > .h1-line { transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .line-mask > span, .line-mask > .h1-line { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee-track, .ticker-track { animation: none !important; }
  .intro { display: none; }
  .art-draw { stroke-dashoffset: 0; animation: none; }
  .art-pulse, .art-drop, .art-blink { animation: none; }
}

/* ---------- header ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background 0.3s, border-color 0.3s; border-bottom: 1px solid transparent; }
.site-header.scrolled { background: rgba(10, 10, 9, 0.82); backdrop-filter: blur(16px); border-bottom-color: var(--line); }
.header-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; height: 74px; display: flex; align-items: center; gap: 36px; }
.logo { display: flex; align-items: baseline; text-decoration: none; color: var(--ink); }
.logo-997 { font-family: var(--display); font-weight: 700; font-size: 26px; letter-spacing: -0.02em; }
.logo-fr { font-family: var(--mono); font-size: 14px; color: var(--acid); }
.header-tag { font-family: var(--mono); font-size: 9.5px; line-height: 1.5; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.header-nav { display: flex; gap: 28px; margin-left: auto; }
.header-nav a { color: var(--muted); text-decoration: none; font-size: 14.5px; font-weight: 500; transition: color 0.2s; }
.header-nav a:hover { color: var(--acid); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--mono); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em;
  text-decoration: none;
  padding: 16px 30px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s;
  will-change: transform;
}
.btn-acid { background: var(--acid); border-color: var(--acid); color: #0a0a09; }
.btn-acid:hover { background: var(--ink); border-color: var(--ink); }
.btn-line:hover { background: var(--ink); color: #0a0a09; }
.btn-lg { padding: 19px 36px; }
.btn-header { padding: 11px 20px; font-size: 11.5px; }

/* ---------- hero ---------- */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 160px 0 80px; overflow: hidden; }
.hero-997 {
  position: absolute; right: -4vw; top: 46%;
  transform: translateY(-50%);
  font-family: var(--display); font-weight: 700;
  font-size: clamp(300px, 44vw, 780px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(237, 232, 220, 0.13);
  pointer-events: none;
  user-select: none;
  will-change: transform;
}
.hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: end; position: relative; }
.hero-kicker { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-bottom: 30px; }
.hero h1 { font-size: clamp(58px, 9vw, 148px); }
.hero h1 .line-mask { margin-bottom: -0.04em; }
.hero-right { padding-bottom: 10px; }
.hero-price { margin-bottom: 22px; }
.hero-price b { font-family: var(--display); font-weight: 600; font-size: clamp(44px, 4.6vw, 68px); letter-spacing: -0.02em; }
.hero-price i { font-family: var(--mono); font-style: normal; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--acid); display: block; margin-top: 4px; }
.hero-sub { color: var(--muted); font-size: 17.5px; max-width: 400px; margin-bottom: 34px; }
.hero-cta span { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-slots { margin-top: 26px; font-family: var(--mono); font-size: 12.5px; color: var(--muted); }
.hero-slots b { color: var(--acid); font-weight: 400; }

/* ---------- ticker ---------- */
.ticker { background: var(--acid); overflow: hidden; transform: rotate(-1.2deg) scale(1.02); margin: -20px 0 70px; position: relative; z-index: 5; }
.ticker-track { display: flex; width: max-content; animation: ticker 26s linear infinite; }
.ticker-track span {
  font-family: var(--display); font-weight: 600; font-size: 22px;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: #0a0a09;
  padding: 14px 0;
  white-space: nowrap;
}
.ticker-track span i { font-family: var(--serif); font-style: italic; text-transform: none; }
.ticker-track span::after { content: "✦"; margin: 0 26px; font-size: 16px; vertical-align: 3px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--acid); z-index: 1002; }

/* ---------- story beats ---------- */
.story { padding: 0; }
.story-beat {
  position: sticky; top: 0;
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.beat-2 { background: #0e0e0d; }
.beat-3 { background: #121211; }
.beat-final { background: var(--acid); border-top: none; }
.beat-day { font-family: var(--mono); font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--acid); margin: 26px 0 30px; }
.beat-text {
  font-family: var(--display); font-weight: 600;
  text-transform: uppercase; letter-spacing: -0.015em;
  font-size: clamp(38px, 5.8vw, 86px);
  line-height: 1.02;
}
.beat-text em { font-family: var(--serif); font-style: italic; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--muted); }
.beat-final .beat-day { color: rgba(10, 10, 9, 0.55); }
.beat-final .beat-text { color: #0a0a09; }
.beat-final .beat-text em { color: #0a0a09; }
.story .sec-index { margin-bottom: 40px; }
.beat-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 70px; align-items: center; }
.beat-art { justify-self: end; width: 100%; max-width: 440px; color: var(--ink); }
.beat-art svg { width: 100%; height: auto; display: block; }
.svg-mono { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.beat-final .beat-art { color: #0a0a09; }
.art-draw { stroke-dasharray: 700; stroke-dashoffset: 700; animation: art-draw 2.4s var(--ease) 0.3s forwards; }
@keyframes art-draw { to { stroke-dashoffset: 0; } }
.art-pulse { animation: art-pulse 2.2s ease-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes art-pulse { 0% { opacity: 0.9; transform: scale(0.55); } 75% { opacity: 0; transform: scale(1.35); } 100% { opacity: 0; } }
.art-drop { animation: art-drop 2.6s linear infinite; }
@keyframes art-drop { 0% { transform: translateY(-10px); opacity: 0; } 18% { opacity: 1; } 82% { opacity: 1; } 100% { transform: translateY(16px); opacity: 0; } }
.art-blink { animation: art-blink 1.6s steps(2) infinite; }
@keyframes art-blink { 50% { opacity: 0.25; } }
.art-d2 { animation-delay: 0.7s; }
.art-d3 { animation-delay: 1.2s; }
.art-d4 { animation-delay: 1.8s; }

/* ---------- perte (calculette CA) ---------- */
.perte .container:first-child { margin-bottom: 60px; }
.perte-cols { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.perte-out { position: sticky; top: 100px; }
.perte-big { border: 1px solid var(--line); border-top: none; padding: 34px; background: var(--panel); }
.perte-big-label { font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.perte-big-num {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(58px, 6.4vw, 104px);
  line-height: 1; color: var(--acid);
  margin: 14px 0 12px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.perte-big-year { color: var(--muted); font-size: 17px; }
.perte-big-year b { color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; }
.perte-payback { font-family: var(--mono); font-size: 13px; color: var(--acid); margin: 22px 0 26px; }
.perte .calc { position: static; }

/* ---------- years scrub ---------- */
.years { height: 380vh; position: relative; padding: 0; }
.years-pin {
  position: sticky; top: 0; height: 100vh;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; gap: 8vh;
  border-top: 1px solid var(--line);
  background: var(--panel);
}
.years-head h2 { margin-bottom: 0; }
.years-track { display: flex; gap: 7vw; padding: 0 40px; width: max-content; will-change: transform; align-items: flex-start; }
.year-item { width: 400px; flex-shrink: 0; }
.year-num {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(80px, 9vw, 150px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--muted);
  display: block;
  margin-bottom: 18px;
  transition: -webkit-text-stroke-color 0.3s, color 0.3s;
}
.year-item:hover .year-num { color: var(--acid); -webkit-text-stroke-color: var(--acid); }
.year-item p { color: var(--muted); font-size: 16.5px; max-width: 340px; }
.year-item p em { font-family: var(--serif); font-style: italic; color: var(--acid); }
.year-item-last .year-num { color: var(--acid); -webkit-text-stroke-color: var(--acid); }

/* ---------- statement ---------- */
.statement { padding: 170px 0 120px; }
.statement-text {
  font-size: clamp(42px, 6.6vw, 96px);
  max-width: 1150px;
  line-height: 1.0;
}
.statement-text .w { color: rgba(237, 232, 220, 0.16); transition: color 0.35s linear; }
.statement-text .w.on { color: var(--ink); }
.statement-text .w.acid.on { color: var(--acid); }

/* ---------- big idea / calc ---------- */
.bigidea { padding-top: 0; }
.bigidea-cols { display: grid; grid-template-columns: 1.1fr 1fr; gap: 90px; align-items: start; }
.bigidea-text p { margin-bottom: 20px; color: var(--muted); font-size: 18.5px; max-width: 520px; }
.bigidea-text b { color: var(--ink); }
.punchline { color: var(--ink) !important; font-weight: 500; font-size: 21px !important; border-left: 2px solid var(--acid); padding-left: 22px; }
.enemy { margin-top: 60px; border-top: 1px solid var(--line); padding-top: 44px; }
.enemy p:first-child { font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.05; color: var(--ink); }
.enemy-sub { font-size: 16.5px !important; margin-top: 16px; }

.calc { border: 1px solid var(--line); padding: 40px; position: sticky; top: 110px; background: var(--panel); }
.calc-title { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--acid); margin-bottom: 30px; }
.calc-field { margin-bottom: 26px; }
.calc-field label { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); display: block; }
.calc-value { font-family: var(--display); font-weight: 600; font-size: 36px; margin: 4px 0 10px; font-variant-numeric: tabular-nums; }
input[type="range"] { width: 100%; appearance: none; height: 2px; background: var(--line); outline: none; cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { appearance: none; width: 18px; height: 18px; background: var(--acid); cursor: pointer; border: none; border-radius: 0; transition: transform 0.15s; }
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.3) rotate(45deg); }
input[type="range"]::-moz-range-thumb { width: 18px; height: 18px; background: var(--acid); cursor: pointer; border: none; border-radius: 0; }
.calc-results { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 30px; }
.calc-res { background: var(--bg); padding: 20px; display: flex; flex-direction: column; gap: 4px; }
.calc-res-good { background: var(--acid); }
.calc-res-good * { color: #0a0a09 !important; }
.calc-res-label { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.calc-res-num { font-size: 20px; color: var(--muted); }
.calc-res-num b { font-family: var(--display); font-weight: 600; font-size: 40px; color: var(--ink); font-variant-numeric: tabular-nums; }
.calc-res-cpl { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.calc-lost { margin-top: 24px; font-size: 15.5px; color: var(--muted); }
.calc-lost b { font-family: var(--display); font-weight: 600; font-size: 26px; color: var(--acid); }
.calc-note { margin-top: 12px; font-family: var(--mono); font-size: 10.5px; color: var(--muted); opacity: 0.65; }

/* ---------- méthode ---------- */
.methode { padding-bottom: 150px; }
.methode .container { margin-bottom: 70px; }
.methode-rows { border-top: 1px solid var(--line); }
.methode-row {
  display: grid;
  grid-template-columns: 120px 1fr 1.2fr;
  gap: 40px; align-items: center;
  max-width: 1280px; margin: 0 auto;
  padding: 44px 40px;
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), padding 0.35s var(--ease);
  cursor: default;
}
.methode-row:hover { background: var(--acid); padding-left: 60px; }
.methode-row:hover * { color: #0a0a09 !important; }
.mr-num { font-family: var(--mono); font-size: 14px; color: var(--acid); }
.methode-row h3 { font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: clamp(26px, 3vw, 42px); letter-spacing: -0.01em; }
.methode-row p { color: var(--muted); font-size: 16px; max-width: 460px; }

/* ---------- wall ---------- */
.wall { padding-bottom: 150px; overflow: hidden; }
.wall .container { margin-bottom: 64px; }
.marquee { overflow: hidden; margin-bottom: 26px; }
.marquee-track { display: flex; gap: 26px; width: max-content; animation: scroll-left 75s linear infinite; }
.marquee[data-dir="right"] .marquee-track { animation-name: scroll-right; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.lp-card { width: 430px; flex-shrink: 0; display: block; text-decoration: none; transition: transform 0.4s var(--ease); }
.lp-card:nth-child(odd) { transform: rotate(0.8deg); }
.lp-card:nth-child(even) { transform: rotate(-0.8deg); }
.lp-card:hover { transform: rotate(0) translateY(-10px); }
.lp-frame { position: relative; height: 268px; overflow: hidden; border: 1px solid var(--line); }
.lp-frame img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); filter: saturate(0.92); }
.lp-card:hover .lp-frame img { transform: scale(1.05); filter: none; }
.lp-card:hover .lp-frame { border-color: var(--acid); }
.lp-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 2px 0; }
.lp-name { font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); transition: color 0.25s; }
.lp-card:hover .lp-name { color: var(--ink); }
.lp-tag { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--acid); white-space: nowrap; }

/* ---------- inclus ---------- */
.inclus { background: var(--ink); color: #0a0a09; }
.inclus .sec-index { color: rgba(10, 10, 9, 0.5); }
.inclus em { color: #0a0a09; }
.inclus-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 44px; margin-top: 60px; }
.inclus-item {
  border-top: 1.5px solid #0a0a09;
  padding: 20px 0 30px;
  font-size: 16.5px; font-weight: 500;
  display: flex; gap: 16px; align-items: baseline;
  transition: padding-left 0.3s var(--ease);
}
.inclus-item:hover { padding-left: 10px; }
.inclus-item span { font-family: var(--mono); font-size: 11px; color: rgba(10, 10, 9, 0.45); }
.inclus-note { margin-top: 60px; font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: clamp(24px, 3vw, 40px); line-height: 1.1; }
.inclus-note em { font-size: 1.05em; }

/* ---------- process ---------- */
.timeline { list-style: none; margin-top: 70px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; border-top: 1px solid var(--line); }
.timeline li { border-left: 1px solid var(--line); padding: 28px 22px 10px; min-height: 220px; }
.timeline li:first-child { border-left: none; padding-left: 0; }
.tl-day { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--acid); display: block; margin-bottom: 18px; }
.timeline h3 { font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: 19px; margin-bottom: 10px; }
.timeline p { color: var(--muted); font-size: 14px; }
.process-note { margin-top: 50px; color: var(--muted); font-size: 17px; border-left: 2px solid var(--acid); padding-left: 22px; max-width: 520px; }

/* ---------- veto ---------- */
.veto { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--panel); }
.veto-big { font-size: clamp(52px, 8vw, 120px); margin: 18px 0 40px; }
.veto-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; max-width: 1000px; }
.veto-cols p { color: var(--muted); font-size: 18px; }
.veto-cols p:last-child { color: var(--ink); }

/* ---------- après ---------- */
.apres-base {
  display: flex; justify-content: space-between; align-items: center; gap: 50px;
  border: 1px solid var(--line); background: var(--bg);
  padding: 38px 44px; margin: 60px 0 90px;
  transition: border-color 0.3s;
}
.apres-base:hover { border-color: var(--acid); }
.apres-base h3 { font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: 22px; margin-bottom: 10px; }
.apres-base > div > p { color: var(--muted); font-size: 15.5px; max-width: 520px; }
.apres-base .apres-price { margin: 0; flex-shrink: 0; }
.apres-options-head {
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(20px, 2.4vw, 30px); letter-spacing: -0.01em;
  margin-bottom: 34px;
}
.apres-options-head em { font-family: var(--serif); font-style: italic; font-weight: 400; text-transform: none; color: var(--muted); }
.apres-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.apres-card { background: var(--bg); padding: 40px 34px; transition: background 0.3s; }
.apres-card:hover { background: var(--panel); }
.apres-card h3 { font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: 22px; line-height: 1.05; }
.apres-price { font-family: var(--display); font-weight: 600; font-size: 54px; margin: 20px 0 16px; letter-spacing: -0.02em; }
.apres-price span { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-left: 8px; letter-spacing: 0.1em; text-transform: uppercase; }
.apres-card p { font-size: 15px; color: var(--muted); }
.apres-card-star { background: var(--panel); box-shadow: inset 0 0 0 1px var(--acid); }
.apres-tag { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: #0a0a09; background: var(--acid); padding: 5px 10px; display: inline-block; margin-bottom: 20px; }
.apres-card-star .apres-price { color: var(--acid); }
.apres-star-line { margin-top: 14px; color: var(--ink) !important; font-weight: 500; }

/* ---------- faq ---------- */
.faq-cols { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.faq-head { position: sticky; top: 110px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; list-style: none; padding: 24px 44px 24px 0; font-family: var(--display); font-weight: 500; text-transform: uppercase; font-size: 19px; letter-spacing: 0; position: relative; transition: color 0.2s, padding-left 0.3s var(--ease); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-family: var(--mono); font-size: 22px; color: var(--acid); transition: transform 0.3s var(--ease); }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list summary:hover { color: var(--acid); padding-left: 8px; }
.faq-list details p { padding: 0 0 26px; color: var(--muted); max-width: 560px; }

/* ---------- slots ---------- */
.slots { padding-bottom: 160px; }
.slots-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin: 60px 0 30px; }
.slot-week { background: var(--bg); padding: 32px 26px; position: relative; overflow: hidden; }
.slot-week:not(.slot-full):hover { background: var(--panel); }
.slot-week-label { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.slot-week-name { font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: 26px; margin: 8px 0 20px; }
.slot-dots { display: flex; gap: 6px; margin-bottom: 18px; }
.slot-dot { width: 30px; height: 6px; background: var(--acid); }
.slot-dot.taken { background: rgba(237, 232, 220, 0.12); }
.slot-avail { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-bottom: 22px; }
.slot-avail b { color: var(--acid); font-weight: 400; }
.slot-week .btn { width: 100%; text-align: center; padding: 14px 0; }
.slot-full { opacity: 0.6; }
.slot-full::after {
  content: "COMPLET";
  position: absolute; top: 18px; right: -34px;
  transform: rotate(35deg);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  background: rgba(237, 232, 220, 0.12); color: var(--muted);
  padding: 5px 40px;
}
.btn-disabled { border-color: var(--line); color: var(--muted); pointer-events: none; }
.slots-note { font-family: var(--mono); font-size: 12.5px; color: var(--muted); max-width: 640px; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 60px 0 40px; overflow: hidden; position: relative; }
.footer-giant {
  font-size: clamp(120px, 22vw, 380px);
  line-height: 0.8;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(237, 232, 220, 0.1);
  user-select: none;
  margin-bottom: 40px;
  transition: -webkit-text-stroke-color 0.4s;
}
.site-footer:hover .footer-giant { -webkit-text-stroke-color: rgba(232, 255, 71, 0.35); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.site-footer p { color: var(--muted); font-size: 14px; }
.site-footer a { color: var(--ink); }
.footer-links { display: flex; gap: 26px; }
.footer-links a { color: var(--muted); text-decoration: none; font-family: var(--mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-links a:hover { color: var(--acid); }

/* ---------- tunnel de réservation ---------- */
#booking {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(10, 10, 9, 0.9);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
#booking.open { display: flex; }
.bk-panel {
  width: 100%; max-width: 640px;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 44px 48px 48px;
  position: relative;
  animation: bk-in 0.45s var(--ease);
}
@keyframes bk-in { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.bk-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 30px; line-height: 1;
  font-family: var(--sans);
  transition: color 0.2s, transform 0.3s var(--ease);
}
.bk-close:hover { color: var(--acid); transform: rotate(90deg); }
.bk-progress { font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--acid); margin-bottom: 26px; }
.bk-q {
  font-family: var(--display); font-weight: 600; text-transform: uppercase;
  font-size: clamp(24px, 3vw, 34px); line-height: 1.05;
  margin-bottom: 26px;
}
.bk-q em { font-family: var(--serif); font-style: italic; font-weight: 400; text-transform: none; color: var(--acid); }
.bk-sub { color: var(--muted); font-size: 16px; margin-bottom: 18px; }
.bk-guarantee { font-family: var(--mono); font-size: 12.5px; }
.bk-opts { display: flex; flex-direction: column; gap: 10px; }
.bk-opt {
  text-align: left;
  background: var(--bg); border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--sans); font-size: 16.5px; font-weight: 500;
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, padding-left 0.25s var(--ease);
}
.bk-opt:hover { border-color: var(--acid); background: var(--acid-dim); padding-left: 28px; }
.bk-input {
  width: 100%;
  background: var(--bg); border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--sans); font-size: 17px;
  padding: 16px 18px;
  margin-bottom: 16px;
  outline: none;
  transition: border-color 0.2s;
}
.bk-input:focus { border-color: var(--acid); }
.bk-input.bk-err { border-color: #ff5c39; }
.bk-back {
  display: block;
  background: none; border: none; cursor: pointer;
  color: var(--muted);
  font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 22px; padding: 0;
}
.bk-back:hover { color: var(--ink); }
#booking .btn { border-radius: 0; }
#booking .btn-lg { display: block; text-align: center; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .methode-row { grid-template-columns: 60px 1fr; }
  .methode-row p { grid-column: 2; }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .timeline li { min-height: 180px; border-top: 1px solid var(--line); }
  .faq-cols { grid-template-columns: 1fr; gap: 40px; }
  .faq-head { position: static; }
}
@media (max-width: 900px) {
  section { padding: 90px 0; }
  h2 br, .beat-text br, .veto-big br, .inclus-note br, .statement-text br { display: none; }
  h2 { font-size: clamp(32px, 8vw, 76px); text-wrap: balance; }
  .hero h1 { font-size: clamp(40px, 11.5vw, 148px); }
  .statement-text { font-size: clamp(32px, 8.6vw, 96px); }
  .beat-text { font-size: clamp(28px, 8vw, 86px); }
  .veto-big { font-size: clamp(40px, 11vw, 120px); }
  .perte-big-num { font-size: clamp(44px, 13vw, 104px); }
  .hero-price b { font-size: clamp(38px, 10vw, 68px); }
  .apres-price { font-size: 44px; }
  .slot-week-name { font-size: 22px; }
  .methode-row h3 { font-size: clamp(24px, 6.5vw, 42px); }
  .bk-panel { padding: 32px 24px 36px; }
  .story { padding: 0; }
  .beat-grid { grid-template-columns: 1fr; gap: 36px; }
  .beat-art { justify-self: start; max-width: 300px; }
  .perte-cols { grid-template-columns: 1fr; gap: 44px; }
  .perte-out { position: static; }
  .years { height: auto; }
  .years-pin { position: static; height: auto; overflow: visible; padding: 90px 0; gap: 50px; }
  .years-track { flex-direction: column; gap: 44px; width: auto; padding: 0 24px; transform: none !important; }
  .year-item { width: auto; }
  .container, .header-inner { padding: 0 24px; }
  .header-nav, .header-tag { display: none; }
  .hero { min-height: auto; padding: 140px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-997 { font-size: 340px; right: -80px; top: 30%; opacity: 0.6; }
  .bigidea-cols { grid-template-columns: 1fr; gap: 50px; }
  .calc { position: static; padding: 28px; }
  .inclus-list { grid-template-columns: 1fr; }
  .apres-grid { grid-template-columns: 1fr; }
  .apres-base { flex-direction: column; align-items: flex-start; gap: 24px; padding: 28px; margin-bottom: 60px; }
  .veto-cols { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: 1fr 1fr; }
  .lp-card { width: 320px; }
  .lp-frame { height: 200px; }
  .methode-row { padding: 34px 24px; }
  .methode-row:hover { padding-left: 34px; }
}
@media (max-width: 560px) {
  .timeline { grid-template-columns: 1fr; }
  .timeline li { min-height: auto; padding: 22px 0 22px 20px; border-left: 1px solid var(--line) !important; }
  .slots-grid { grid-template-columns: 1fr; }
  .lp-card { width: 270px; }
  .lp-frame { height: 169px; }
  .hero-997 { display: none; }
}
