/* ============================================================
   LANDING V2 — ÉDITORIAL / MINIMAL / PURE BLACK
   Inspired by jonhowell.com + clean centered hero.
   Hanken Grotesk (≈ KH Teka) + JetBrains Mono (≈ Cartograph CF).
   ============================================================ */

@import url('colors_and_type.css');

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: #000; overflow-x: hidden; }
body {
  background: #000;
  color: #FAFAFA;
  font-family: var(--font-editorial);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, video { display: block; max-width: 100%; }

/* --- WRAPPER --- */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (min-width: 760px) {
  .wrap { padding: 0 48px; }
}

/* ============================================================
   HERO — pure black, centered title, character floating below
   ============================================================ */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 32px 24px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 760px) {
  .hero { padding: 56px 48px 0; }
}

.hero > * { position: relative; z-index: 1; }

.hero-title {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-size: clamp(28px, 8vw, 88px);
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: #fff;
  max-width: 980px;
  text-wrap: balance;
  margin: 0 auto;
  animation: heroIn 0.9s var(--ease-out-smooth) both;
}
.hero-title .y {
  color: var(--accent);
  font-style: italic;
  font-weight: 700;
  white-space: nowrap;
  text-shadow:
    0 0 24px rgba(255, 229, 0, 0.45),
    0 0 48px rgba(255, 229, 0, 0.25);
}

/* Mobile-only line breaks: force the 3-line balance on small screens */
.m-br { display: none; }
@media (max-width: 760px) {
  .m-br { display: initial; }
}

.hero-sub {
  font-family: var(--font-editorial);
  font-size: clamp(14px, 1.4vw, 16px);
  color: rgba(250,250,250,0.42);
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: -0.005em;
  animation: heroIn 0.9s 0.15s var(--ease-out-smooth) both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Character / video — sits right under the title (no big empty gap) */
.hero-character {
  margin-top: 24px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  animation: heroIn 1s 0.3s var(--ease-out-smooth) both;
}
@media (min-width: 760px) {
  .hero-character { margin-top: 32px; }
}

/* Placeholder — replace with <video> */
.hero-character .figure {
  width: clamp(220px, 36vw, 360px);
  aspect-ratio: 3/5;
  position: relative;
  animation: floaty 8s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}
.hero-character .figure::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 38%; aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, #ecd0b0 0%, #b08560 40%, #4a2d1c 80%);
  box-shadow: 0 30px 70px rgba(0,0,0,0.7);
}
.hero-character .figure::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 56%; height: 62%;
  border-radius: 24% 24% 18% 18% / 30% 30% 12% 12%;
  background: linear-gradient(180deg, #2a2230 0%, #1a1820 60%, #0a080d 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}
.hero-character .replace-hint {
  position: absolute;
  bottom: -36px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-editorial-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.18);
  white-space: nowrap;
}

/* Inner wrap — hugs the video so the annotation can sit just outside it */
.hero-video-wrap {
  position: relative;
  display: inline-block;
}

/* Real video — predominant, glued to the bottom of the hero */
.hero-character video {
  width: min(92vw, 460px);
  aspect-ratio: 3/5;
  height: auto;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  background: #000;
  display: block;
  box-shadow:
    0 -8px 60px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.04) inset;
}
@media (min-width: 760px) {
  .hero-character video {
    width: auto;
    height: min(calc(100vh - 320px), 640px);
    min-height: 420px;
  }
}

/* Hand-drawn annotation — overlaid on the video, pointing at the character */
.hero-annotation {
  position: absolute;
  top: 8%;
  left: 6%;
  width: 140px;
  color: var(--accent);
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.05;
  transform: rotate(-7deg);
  transform-origin: top left;
  pointer-events: none;
  z-index: 3;
  text-align: left;
}
.hero-annotation .annotation-text {
  display: block;
  letter-spacing: 0.005em;
  text-shadow: 0 1px 0 rgba(0,0,0,0.5), 0 0 18px rgba(0,0,0,0.45);
}
.hero-annotation .annotation-arrow {
  display: block;
  width: 84px;
  height: 62px;
  margin: 2px 0 0 50px;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.4)) drop-shadow(0 0 6px rgba(0,0,0,0.4));
}
@media (min-width: 760px) {
  .hero-annotation {
    top: 14%;
    left: 4%;
    width: 180px;
    font-size: 30px;
  }
  .hero-annotation .annotation-arrow {
    width: 120px;
    height: 86px;
    margin-left: 64px;
  }
}

/* Scroll cue — invitation to scroll */
.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-editorial-mono);
  font-size: 12px;
  color: rgba(250,250,250,0.35);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: scrollPulse 2.4s ease-in-out infinite;
  pointer-events: none;
}
.scroll-cue .arr {
  display: inline-block;
  animation: arrBob 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.85; }
}
@keyframes arrBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ============================================================
   SECTION MARKERS
   ============================================================ */
.marker {
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: rgba(250,250,250,0.35);
  margin-bottom: 40px;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.marker .num {
  color: rgba(250,250,250,0.35);
  font-family: var(--font-editorial-mono);
  margin-left: 6px;
}

/* ============================================================
   STEPS
   ============================================================ */
.steps {
  padding: 0 0 80px;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 880px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 56px; }
}

.step { display: flex; flex-direction: column; gap: 18px; }
.step-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-top: 32px;
}
.step-num {
  font-family: var(--font-editorial-mono);
  font-size: 18px;
  color: var(--accent);
  letter-spacing: 0.04em;
  font-weight: 600;
}
.step-tag {
  font-family: var(--font-editorial-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.55);
  font-weight: 500;
}
.step-title {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: clamp(30px, 3.6vw, 42px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #FAFAFA;
  text-wrap: balance;
}
.step-desc {
  font-family: var(--font-editorial);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(250,250,250,0.5);
  max-width: 360px;
  text-wrap: pretty;
}

.step-visual {
  margin-top: auto;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.sv-1 {
  background:
    radial-gradient(circle at 35% 30%, rgba(255,229,0,0.06), transparent 55%),
    linear-gradient(155deg, #1a1a1c 0%, #050505 80%);
}

/* ============================================================
   AVATAR BUILDER — carousel swipe (step 01)
   Lives INSIDE a 3:4 .step-visual box, same size as sv-2 / sv-3.
   ============================================================ */

/* --- Toggle row (sits ABOVE the visual, centered) --- */
.ab-toggle-row {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}
.ab-toggle {
  position: relative;
  display: inline-flex;
  padding: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-family: var(--font-editorial-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ab-tog-btn {
  position: relative;
  z-index: 1;
  padding: 8px 20px;
  color: rgba(250,250,250,0.55);
  transition: color 220ms var(--ease-out-smooth);
  border-radius: 999px;
  font-weight: 500;
  font-family: inherit;
}
.ab-tog-btn:hover { color: rgba(250,250,250,0.85); }
.ab-tog-btn.active { color: #0a0a0b; }
.ab-tog-pill {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  width: calc(50% - 4px);
  background: var(--accent);
  border-radius: 999px;
  transition: transform 320ms var(--ease-out-smooth);
  box-shadow: 0 6px 20px rgba(255,229,0,0.28);
}
.ab-toggle[data-active="woman"] .ab-tog-pill {
  transform: translateX(100%);
}

/* --- Carousel fills the 3:4 .step-visual box --- */
.step-visual.sv-1.avatar-builder {
  /* keep base aspect-ratio: 3/4 + dark gradient bg from .sv-1 */
}

.ab-track {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0;
  list-style: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.ab-track::-webkit-scrollbar { display: none; }

.ab-card {
  flex: 0 0 88%;
  scroll-snap-align: start;
  height: 100%;
  position: relative;
}
@media (min-width: 880px) {
  .ab-card { flex-basis: 90%; }
}

.ab-photo {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 28%, rgba(255,229,0,0.04), transparent 55%),
    linear-gradient(180deg, #1a1a1c 0%, #0a0a0b 100%);
  background-size: cover;
  background-position: center;
  transition: filter 260ms;
}
/* Subtle silhouette placeholder — disappears under a real bg image */
.ab-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 24% 12% at 50% 28%, rgba(255,255,255,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 32% 30% at 50% 62%, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}
/* Femme tint (placeholder hint until real photos are plugged) */
.avatar-builder[data-gender="woman"] .ab-photo {
  background:
    radial-gradient(circle at 50% 28%, rgba(255,170,200,0.05), transparent 55%),
    linear-gradient(180deg, #1c171b 0%, #0a0708 100%);
}

.ab-photo-num {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-editorial-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 600;
  z-index: 2;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.ab-photo-tag {
  position: absolute;
  bottom: 56px;
  left: 14px;
  font-family: var(--font-editorial-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.85);
  padding: 5px 9px;
  background: rgba(0,0,0,0.55);
  border-radius: 4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}

/* Dark gradient at bottom so the dots/swipe overlay stays readable on any photo */
.step-visual.sv-1::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 64px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  pointer-events: none;
  z-index: 1;
}

/* --- Foot: dots + swipe hint, overlaid bottom --- */
.ab-foot {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  pointer-events: auto;
}
.ab-dots {
  display: flex;
  gap: 6px;
}
.ab-dots span {
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
  transition: background 220ms, width 220ms;
  cursor: pointer;
}
.ab-dots span.active {
  background: var(--accent);
  width: 26px;
}
.ab-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-editorial-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.75);
}
.ab-hint svg {
  animation: abHintArrow 1.8s ease-in-out infinite;
}
@keyframes abHintArrow {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50%      { transform: translateX(4px); opacity: 1; }
}
.sv-2 {
  background:
    radial-gradient(circle at 65% 30%, rgba(255,229,0,0.05), transparent 60%),
    linear-gradient(165deg, #15171a 0%, #050505 80%);
}
.sv-video {
  overflow: hidden;
}
.sv-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}
.sv-video-overlay {
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.35) 100%);
}
.sv-auto {
  background:
    radial-gradient(circle at 40% 40%, rgba(255,229,0,0.06), transparent 55%),
    linear-gradient(165deg, #111214 0%, #050505 80%);
}

/* View counter overlay */
.view-counter {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 5px 12px 5px 8px;
  pointer-events: none;
}
.view-eye {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.9;
}
.view-count {
  font-family: var(--font-editorial-mono);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  min-width: 44px;
}

/* ── iPhone 17 Pro Max mockup ────────────────────────── */
.sv-phone {
  background: radial-gradient(circle at 50% 60%, rgba(120,80,255,0.12), transparent 60%),
              linear-gradient(160deg, #0d0d0f 0%, #050505 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  overflow: visible;
}
@keyframes iphone-float {
  0%   { transform: rotateY(-14deg) rotateX(5deg) translateY(0px); }
  50%  { transform: rotateY(-14deg) rotateX(5deg) translateY(-12px); }
  100% { transform: rotateY(-14deg) rotateX(5deg) translateY(0px); }
}
.iphone-float {
  animation: iphone-float 4.5s ease-in-out infinite;
  filter:
    drop-shadow(0 40px 60px rgba(0,0,0,0.8))
    drop-shadow(0 8px 20px rgba(110,60,255,0.18))
    drop-shadow(-6px 0 18px rgba(0,0,0,0.5));
}
.iphone-body {
  position: relative;
  width: 200px;
  height: 408px;
  /* Titane brossé */
  background: linear-gradient(158deg,
    #3a3a3e 0%,
    #2c2c30 20%,
    #232326 50%,
    #1e1e21 75%,
    #2a2a2d 100%);
  border-radius: 28px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -1px 0 rgba(0,0,0,0.5),
    inset 1px 0 0 rgba(255,255,255,0.08),
    inset -1px 0 0 rgba(0,0,0,0.3),
    0 2px 0 rgba(255,255,255,0.06);
  outline: 1.5px solid rgba(255,255,255,0.07);
}
/* Bouton Action (gauche haut) */
.iphone-action-btn {
  position: absolute;
  left: -4px;
  top: 58px;
  width: 4px;
  height: 18px;
  background: linear-gradient(180deg, #3a3a3e, #222224);
  border-radius: 3px 0 0 3px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}
/* Boutons volume (gauche) */
.iphone-vol-btn {
  position: absolute;
  left: -4px;
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, #3a3a3e, #222224);
  border-radius: 3px 0 0 3px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.iphone-vol-up   { top: 96px; }
.iphone-vol-down { top: 134px; }
/* Bouton power (droite) */
.iphone-power-btn {
  position: absolute;
  right: -4px;
  top: 108px;
  width: 4px;
  height: 42px;
  background: linear-gradient(180deg, #3a3a3e, #222224);
  border-radius: 0 3px 3px 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
/* Écran */
.iphone-screen {
  position: absolute;
  inset: 7px;
  border-radius: 22px;
  background: #000;
  overflow: hidden;
}
/* Dynamic Island */
.iphone-dynamic-island {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 22px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
}
.iphone-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* App screen */
.iphone-app-screen {
  position: absolute;
  inset: 0;
  background: #000;
  overflow: hidden;
}
.iphone-reel-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, #1a0a2e 0%, #0d0d0d 40%, #0a0a0a 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.iphone-reel-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 50%);
}
.iphone-reel-info {
  position: relative;
  z-index: 2;
  padding: 0 8px 10px;
}
.iphone-reel-account {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}
.iphone-reel-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  border: 1.5px solid #fff;
  flex-shrink: 0;
}
.iphone-reel-name {
  font-size: 8px;
  color: #fff;
  font-weight: 600;
  font-family: -apple-system, sans-serif;
}
.iphone-reel-views-row {
  display: flex;
  align-items: center;
  gap: 3px;
}
.iphone-reel-eye { font-size: 9px; }
.iphone-reel-counter {
  font-size: 10px;
  color: #fff;
  font-weight: 700;
  font-family: -apple-system, sans-serif;
  letter-spacing: 0.02em;
}
.iphone-reel-actions {
  position: absolute;
  right: 6px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  z-index: 2;
}
.iphone-reel-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  font-size: 14px;
}
.iphone-reel-btn span {
  font-size: 7px;
  color: #fff;
  font-family: -apple-system, sans-serif;
}
/* Notifications */
.iphone-notifs {
  position: absolute;
  top: 36px;
  left: 6px;
  right: 6px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.iphone-notif {
  background: rgba(30,30,32,0.92);
  backdrop-filter: blur(12px);
  border-radius: 10px;
  padding: 5px 7px;
  display: flex;
  align-items: center;
  gap: 5px;
  animation: notif-in 0.35s cubic-bezier(0.34,1.56,0.64,1) both,
             notif-out 0.3s ease-in 2.8s both;
  border: 1px solid rgba(255,255,255,0.08);
}
.iphone-notif-icon {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.iphone-notif-text {
  flex: 1;
}
.iphone-notif-app {
  font-size: 7px;
  color: rgba(255,255,255,0.5);
  font-family: -apple-system, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.iphone-notif-msg {
  font-size: 8px;
  color: #fff;
  font-family: -apple-system, sans-serif;
  font-weight: 500;
  line-height: 1.3;
}
@keyframes notif-in {
  from { opacity: 0; transform: translateY(-10px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes notif-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-6px); }
}

/* Reflet écran */
.iphone-screen-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0.01) 40%,
    transparent 60%);
  pointer-events: none;
  border-radius: 22px;
}
/* Camera island (coin haut gauche - dos) */
.iphone-camera-island {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #1a1a1c, #111113);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.05);
  display: none; /* caché côté face */
}
.iphone-lens {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2a2a30, #0a0a0c);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), inset 0 1px 2px rgba(255,255,255,0.08);
}
.iphone-lens-1 { width: 18px; height: 18px; top: 4px; left: 4px; }
.iphone-lens-2 { width: 18px; height: 18px; top: 4px; right: 4px; }
.iphone-lens-3 { width: 18px; height: 18px; bottom: 4px; left: 4px; }
.iphone-lidar  {
  position: absolute;
  width: 8px; height: 8px;
  bottom: 6px; right: 6px;
  border-radius: 50%;
  background: #1a1a20;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
@media (min-width: 600px) {
  .iphone-body { width: 230px; height: 470px; }
}
.sv-3 {
  background:
    radial-gradient(circle at 50% 30%, rgba(99,91,255,0.10), transparent 55%),
    linear-gradient(180deg, #0a0a0d 0%, #050505 80%);
  overflow: hidden;
}
.sv-3-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    /* subtle corner vignette */
    radial-gradient(ellipse 120% 90% at 50% 50%, transparent 55%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.sv-3 .sv-content { z-index: 2; }
.sv-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 18px;
}
.sv-3 .sv-content {
  display: block;
  padding: 0;
}
.sv-3 .sv-content > .sv-label-live {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 14px 18px 12px;
  background: rgba(0,0,0,0.18);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
          backdrop-filter: blur(22px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sv-3 .sv-live-feed {
  position: absolute;
  inset: 0;
  flex: unset;
  margin: 0;
  padding: 50px 18px 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  z-index: 2;
  overflow: hidden;
  -webkit-mask-image: none;
          mask-image: none;
  pointer-events: none;
}
.sv-3 .sv-total-block {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  margin: 0;
  z-index: 3;
}
.sv-label {
  font-family: var(--font-editorial-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.4);
}
.sv-label .dot {
  display: inline-block;
  width: 5px; height: 5px; border-radius: 999px;
  background: var(--accent);
  margin-right: 6px;
  vertical-align: middle;
}
.sv-center { flex: 1; display: flex; align-items: center; justify-content: center; }
.sv-portrait-circle {
  width: 55%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e8c5a8 0%, #b07d5a 35%, #4a2a18 80%);
  filter: blur(0.5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.sv-play {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: #0a0a0b;
}
.sv-play svg { width: 22px; height: 22px; }

/* ============================================================
   LIVE SALES FEED — step 03 (Monétisation)
   Real-time-feel ticker: AGM+ sales pop in green, total counter
   ticks up by 47 each time, resets at random max.
   ============================================================ */
/* Step 03 over-video readability: pure-white labels w/ shadow */
.sv-3 .sv-label,
.sv-3 .sv-label-live {
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.85);
}

.sv-label-live .live-dot {
  background: #4af800 !important;
  box-shadow: 0 0 10px rgba(74,248,0,0.75);
  animation: liveDotPulse 1.6s ease-in-out infinite;
}
@keyframes liveDotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px rgba(74,248,0,0.75); }
  50%      { opacity: 0.55; box-shadow: 0 0 18px rgba(74,248,0,1); }
}

.sv-live-feed {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 14px;
  margin-bottom: 14px;
  min-height: 0;
  overflow: hidden;
  /* Soft fade at the top so older notifs flow out cleanly */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 100%);
}

.live-sale {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 14px 6px 22px;
  font-family: var(--font-editorial-mono);
  font-size: 11px;
  letter-spacing: 0;
  animation: liveSaleEnter 640ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
}
.live-sale::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4af800;
  box-shadow: 0 0 6px #4af800, 0 0 14px rgba(74,248,0,0.45);
  transform: translateY(-50%);
  animation: saleDotPop 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
.live-sale .product {
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 6px rgba(0,0,0,0.85);
}
.live-sale .amount {
  color: #4af800;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.01em;
  text-shadow:
    0 0 6px rgba(74,248,0,0.55),
    0 0 14px rgba(74,248,0,0.25);
  white-space: nowrap;
  flex-shrink: 0;
  animation: amountFlash 760ms cubic-bezier(0.16, 1, 0.3, 1);
}
.live-sale.fade-out {
  animation: liveSaleExit 700ms cubic-bezier(0.5, 0, 0.75, 0) forwards;
}

/* ============================================================
   Stripe-style iOS notification — Apple Liquid Glass
   ============================================================ */
.live-sale.ios-notif {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 9px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
          backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', system-ui, sans-serif;
  letter-spacing: -0.005em;
}
.live-sale.ios-notif::before { display: none !important; }

.ios-notif-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #635bff;
  box-shadow:
    0 0 0 0.5px rgba(0,0,0,0.25) inset,
    0 3px 8px rgba(99,91,255,0.40);
  color: #fff;
}
.ios-notif-icon svg { display: block; transform: translate(0, 0); }

.ios-notif-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ios-notif-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  line-height: 1.1;
}
.ios-notif-app {
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ios-notif-time {
  font-size: 10.5px;
  color: rgba(255,255,255,0.65);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
}
.ios-notif-msg {
  font-size: 11.5px;
  color: rgba(255,255,255,0.92);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ios-notif-msg .amount {
  color: #4af800;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(74,248,0,0.45);
}
.live-sale.no-anim,
.live-sale.no-anim::before,
.live-sale.no-anim .amount {
  animation: none !important;
}

@keyframes liveSaleEnter {
  0%   { transform: translateY(14px); opacity: 0; filter: blur(3px); }
  55%  { transform: translateY(0);    opacity: 1; filter: blur(0); }
  100% { transform: translateY(0);    opacity: 1; }
}
@keyframes liveSaleExit {
  to { transform: translateY(-200px); opacity: 0; }
}
@keyframes saleDotPop {
  0%   { transform: translateY(-50%) scale(0); opacity: 0; }
  60%  { transform: translateY(-50%) scale(1.6); opacity: 1; }
  100% { transform: translateY(-50%) scale(1);   opacity: 1; }
}
@keyframes amountFlash {
  0%   {
    color: #fff;
    transform: scale(1.12);
    text-shadow: 0 0 18px #4af800, 0 0 36px rgba(74,248,0,0.65);
  }
  100% {
    color: #4af800;
    transform: scale(1);
    text-shadow: 0 0 6px rgba(74,248,0,0.55), 0 0 14px rgba(74,248,0,0.25);
  }
}

.sv-total-block {
  margin-top: auto;
  padding: 14px 16px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 10px 28px rgba(0,0,0,0.40);
}
.sv-total-block .lbl {
  font-family: var(--font-editorial-mono);
  font-size: 10px;
  color: #ffffff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sv-total-block .val {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-size: 22px;
  color: #4af800;
  letter-spacing: -0.02em;
  text-shadow: 0 0 18px rgba(74,248,0,0.55);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 200ms;
}
.sv-total-block .val.tick {
  animation: totalTick 480ms cubic-bezier(0.16, 1, 0.3, 1);
}
.sv-total-block .val.reset {
  animation: totalReset 720ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes totalTick {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.07); text-shadow: 0 0 28px rgba(74,248,0,1); }
  100% { transform: scale(1); }
}
@keyframes totalReset {
  0%   { transform: translateY(0); opacity: 1; filter: blur(0); }
  35%  { transform: translateY(12px); opacity: 0; filter: blur(5px); }
  55%  { transform: translateY(-12px); opacity: 0; filter: blur(5px); }
  100% { transform: translateY(0); opacity: 1; filter: blur(0); }
}

/* ============================================================
   PRIX
   ============================================================ */
.prix { padding: 56px 0 96px; border-top: 1px solid rgba(255,255,255,0.06); }
.prix-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 880px) {
  .prix-inner { grid-template-columns: 1.1fr 1fr; gap: 64px; }
}
.prix-text { display: flex; flex-direction: column; gap: 18px; }
.prix-title {
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: #FAFAFA;
  text-wrap: balance;
}
.prix-title .accent {
  color: var(--accent);
  font-family: var(--font-editorial-mono);
  font-weight: 400;
  font-style: italic;
}
.prix-desc {
  font-family: var(--font-editorial);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(250,250,250,0.5);
  max-width: 420px;
  text-wrap: pretty;
}
.prix-card {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(circle at 90% 0%, rgba(255,229,0,0.05), transparent 60%),
    #0a0a0a;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.prix-amount { display: flex; align-items: baseline; gap: 12px; }
.prix-amount .num {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 88px;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--accent);
}
.prix-amount .cur {
  font-size: 32px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.prix-amount .strike {
  font-family: var(--font-editorial-mono);
  font-size: 14px;
  color: rgba(250,250,250,0.35);
  text-decoration: line-through;
  margin-left: 6px;
}
.prix-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.prix-list li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-family: var(--font-editorial);
  font-size: 15px;
  color: #FAFAFA;
  line-height: 1.45;
}
.prix-list li .bul {
  color: var(--accent);
  font-family: var(--font-editorial-mono);
  flex-shrink: 0;
}
.prix-cta {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--accent);
  color: #000;
  padding: 18px 24px;
  border-radius: 999px;
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  transition: all 180ms var(--ease-out-snap);
}
.prix-cta:hover { background: #FFEC33; transform: translateY(-1px); }
.prix-cta:active { transform: translateY(0); transition-duration: 80ms; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 56px 0 96px; border-top: 1px solid rgba(255,255,255,0.06); }
.faq-inner { max-width: 760px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  padding: 24px 0;
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: -0.015em;
  text-align: left;
  cursor: pointer;
  transition: color 150ms;
  gap: 24px;
}
.faq-q:hover { color: var(--accent); }
.faq-q .toggle {
  font-family: var(--font-editorial-mono);
  font-size: 16px;
  color: rgba(250,250,250,0.4);
  flex-shrink: 0;
  transition: transform 300ms var(--ease-out-smooth), color 150ms;
}
.faq-item.open .faq-q .toggle { color: var(--accent); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 400ms var(--ease-out-smooth); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding-bottom: 24px;
  font-size: 15px;
  color: rgba(250,250,250,0.55);
  line-height: 1.6;
  max-width: 600px;
}

/* ============================================================
   FAQ v2
   ============================================================ */
.faq2 {
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.faq2-head { margin-bottom: 32px; }
@media (min-width: 760px) {
  .faq2-head { text-align: center; max-width: 800px; margin: 0 auto 32px; }
}
.faq2-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fafafa;
}
.faq2-accent { color: var(--accent); }

.faq2-list { max-width: 800px; margin: 0 auto; }
.faq2-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq2-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.faq2-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  gap: 24px;
  font-family: var(--font-editorial);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fafafa;
  text-align: left;
  cursor: pointer;
  transition: color 150ms;
}
.faq2-q:hover { color: var(--accent); }

.faq2-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,250,250,0.5);
  transition: border-color 200ms, color 200ms, transform 300ms var(--ease-out-smooth);
}
.faq2-q:hover .faq2-icon {
  border-color: var(--accent);
  color: var(--accent);
}
.faq2-item.open .faq2-icon {
  transform: rotate(180deg);
  border-color: var(--accent);
  color: var(--accent);
}

.faq2-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 420ms var(--ease-out-smooth);
}
.faq2-item.open .faq2-a { max-height: 200px; }
.faq2-a p {
  padding-bottom: 24px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(250,250,250,0.5);
  max-width: 620px;
}
.faq2-a strong { color: var(--accent); font-weight: 600; }

@media (max-width: 640px) {
  .faq2 { padding: 40px 0 24px; }
  .faq2-q { font-size: 15px; padding: 20px 0; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 40px 0 32px; }
.footer-disclaimer {
  max-width: 720px;
  margin: 0 auto 32px;
  padding: 0 24px;
  text-align: center;
}
.footer-disclaimer-text {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
  padding-top: 8px;
}
.footer-simple {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
@media (min-width: 600px) {
  .footer-simple { flex-direction: row; justify-content: space-between; align-items: center; text-align: left; }
}
.footer-mark {
  font-family: var(--font-editorial);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: rgba(250,250,250,0.5);
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-mark .em { color: var(--accent); font-family: var(--font-editorial-mono); font-weight: 400; font-style: italic; }
.footer-em { color: var(--accent); }
.footer-sep { color: rgba(250,250,250,0.2); }
.footer-copy {
  font-family: var(--font-editorial-mono);
  font-size: 11px;
  color: rgba(250,250,250,0.25);
  letter-spacing: 0.06em;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}
.footer-legal a {
  font-family: var(--font-editorial-mono);
  font-size: 11px;
  color: rgba(250,250,250,0.3);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 150ms;
}
.footer-legal a:hover { color: rgba(250,250,250,0.7); }
/* legacy — kept for safety but unused */
.footer-col .h {
  font-family: var(--font-editorial-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.35);
  margin-bottom: 4px;
}
.footer-col a {
  font-family: var(--font-editorial);
  font-size: 14px;
  color: rgba(250,250,250,0.5);
  transition: color 150ms;
}
.footer-col a:hover { color: var(--accent); }

/* STICKY BAR — offer band fixed at bottom */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  background: rgba(10,10,11,0.92);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
          backdrop-filter: blur(20px) saturate(160%);
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateY(110%);
  transition: transform 400ms var(--ease-out-smooth);
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.sticky-bar-eyebrow {
  font-family: var(--font-editorial-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.4);
}
.sticky-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.sticky-bar-title {
  font-family: var(--font-editorial);
  font-size: clamp(13px, 2.5vw, 15px);
  font-weight: 700;
  color: #fafafa;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-bar-prices {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-shrink: 0;
}
.sticky-bar-now {
  font-family: var(--font-editorial);
  font-size: clamp(15px, 2.8vw, 18px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.sticky-bar-was {
  font-family: var(--font-editorial);
  font-size: 13px;
  font-weight: 500;
  color: rgba(250,250,250,0.3);
  text-decoration: line-through;
}
.sticky-bar-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(180deg, #2A86FF 0%, #0A6CFF 100%);
  color: #fff;
  font-family: var(--font-editorial);
  font-weight: 700;
  font-size: clamp(13px, 2vw, 15px);
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 0 16px rgba(42,134,255,0.4), 0 4px 16px rgba(0,40,120,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.sticky-bar-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(42,134,255,0.55), 0 6px 20px rgba(0,40,120,0.5);
}
@media (max-width: 480px) {
  .sticky-bar { padding: 12px 16px; gap: 12px; }
  .sticky-bar-title { font-size: 13px; }
  .sticky-bar-btn { padding: 11px 16px; font-size: 13px; }
}

/* ============================================================
   AUTOMATION — Claude Code terminal bonus
   ============================================================ */
.automation {
  padding: 88px 0 96px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.auto-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 20px;
}
.auto-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-editorial-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 0 auto;
}
.auto-tag .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(255,229,0,0.8);
}
.auto-tag .num {
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em;
}
.auto-title {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  text-wrap: balance;
}
.auto-title .y {
  color: var(--accent);
  font-style: italic;
}
.auto-desc {
  font-family: var(--font-editorial);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
}
.auto-desc strong {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.auto-desc .y-soft {
  color: var(--accent);
  font-weight: 600;
}

/* Terminal */
.terminal {
  max-width: 880px;
  margin: 0 auto;
  background: #0E0E11;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 30px 80px -20px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,229,0,0.05),
    0 0 80px -30px rgba(255,229,0,0.15);
}
.terminal::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(255,229,0,0.04) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(255,255,255,0.012) 2px 3px);
  pointer-events: none;
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
}
.terminal-bar .lights {
  display: flex;
  gap: 7px;
}
.terminal-bar .lights .dot {
  width: 11px; height: 11px; border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.3);
}
.terminal-bar .lights .r { background: #FF5F57; }
.terminal-bar .lights .y { background: #FEBC2E; }
.terminal-bar .lights .g { background: #28C840; }
.terminal-bar .title {
  font-family: var(--font-editorial-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  flex: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.terminal-bar .status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-editorial-mono);
  font-size: 11px;
  color: var(--success, #34D399);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.terminal-bar .status-dot {
  width: 6px; height: 6px;
  background: var(--success, #34D399);
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(52,211,153,0.8);
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.terminal-body {
  font-family: var(--font-editorial-mono);
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  padding: 22px 22px;
  min-height: 360px;
  max-height: 420px;
  overflow-y: auto;
  scrollbar-width: none;
  position: relative;
  z-index: 1;
}
.terminal-body::-webkit-scrollbar { display: none; }
@media (min-width: 760px) {
  .terminal-body {
    font-size: 14px;
    padding: 26px 28px;
    min-height: 400px;
    max-height: 460px;
  }
}
/* Soft fade at top so older lines feel "scrolled away" */
.terminal-body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 36px;
  background: linear-gradient(180deg, #0E0E11 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* Lines */
.tline {
  opacity: 0;
  transform: translateY(4px);
  animation: tlineIn 220ms var(--ease-out-smooth) forwards;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@keyframes tlineIn {
  to { opacity: 1; transform: translateY(0); }
}
.tline.cmd { color: #fff; font-weight: 500; }
.tline.sum { color: #fff; padding-top: 6px; }
.tline.bar { padding-left: 18px; color: rgba(255,255,255,0.7); }

.tline .prompt { color: var(--accent); font-weight: 600; margin-right: 6px; }
.tline .arg { color: rgba(255,255,255,0.85); }
.tline .ar { color: rgba(255,255,255,0.45); margin-right: 6px; }
.tline .ok { color: var(--success, #34D399); margin-right: 6px; font-weight: 600; }
.tline .cy { color: var(--accent); margin-right: 6px; font-weight: 600; }
.tline .muted { color: rgba(255,255,255,0.35); }
.tline .path { color: #7FB6FF; }
.tline .hl {
  color: var(--accent);
  font-weight: 600;
  text-shadow: 0 0 14px rgba(255,229,0,0.4);
}

/* Progress bar */
.tline .bar {
  display: inline-block;
  width: 140px;
  height: 7px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  vertical-align: middle;
  margin: 0 6px;
  overflow: hidden;
  position: relative;
}
.tline .bar i {
  display: block;
  height: 100%;
  width: var(--p, 0%);
  background: linear-gradient(90deg, var(--accent), #FFD54F);
  box-shadow: 0 0 10px rgba(255,229,0,0.4);
  border-radius: 2px;
  animation: barGrow 1.4s var(--ease-out-smooth);
  transform-origin: left;
}
@keyframes barGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@media (min-width: 760px) {
  .tline .bar { width: 180px; }
}

/* Blinking cursor */
.tline .cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--accent);
  vertical-align: -2px;
  animation: cursorBlink 1s steps(2) infinite;
  box-shadow: 0 0 8px rgba(255,229,0,0.5);
}
@keyframes cursorBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* ============================================================
   YELLOW GLOW UTILITIES
   ============================================================ */
.glow-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(255,229,0,0.8), 0 0 4px rgba(255,229,0,1);
  vertical-align: middle;
}
.glow-pulse { animation: glowPulse 2s ease-in-out infinite; }
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(255,229,0,0.8), 0 0 4px rgba(255,229,0,1); }
  50% { box-shadow: 0 0 24px rgba(255,229,0,1), 0 0 8px rgba(255,229,0,1); }
}

/* ============================================================
   SKILLS — "Ce que tu vas savoir faire"
   ============================================================ */
.skills {
  padding: 56px 0 96px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ============================================================
   GUIDE SECTION — Floating 3D book + stats + specs
   ============================================================ */
.guide {
  padding: 64px 0 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.guide .section-head {
  text-align: center;
  margin: 0 auto;
  max-width: 720px;
  padding-bottom: 24px;
}
.guide .section-head-meta { justify-content: center; }
.guide .section-head-title { margin-top: 4px; font-size: clamp(20px, 7.2vw, 60px); }
.guide .section-head-sub { margin: 8px auto 0; }

/* Stage — book hovers in the center, chips orbit */
.guide-stage {
  position: relative;
  width: 100%;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0 64px;
  perspective: 1800px;
  perspective-origin: 50% 40%;
  transform-style: preserve-3d;
}

/* The .reveal animation injects a transform on the stage which flattens
   the 3D context. Force preserve-3d to win even during the reveal. */
.guide-stage.reveal,
.guide-stage.reveal.in { transform-style: preserve-3d; }
@media (max-width: 760px) {
  .guide-stage { min-height: 380px; margin: 24px 0 48px; }
}

/* ----- Book ----- */
.book-scene {
  position: relative;
  width: 300px;
  height: 380px;
  transform-style: preserve-3d;
  animation: bookFloat 6s ease-in-out infinite;
  --book-scene-w: 300px;
  --book-depth: 48px;
  --book-half: 24px;
}
@media (max-width: 760px) {
  .book-scene {
    width: 240px;
    height: 304px;
    --book-scene-w: 240px;
    --book-depth: 38px;
    --book-half: 19px;
  }
}

.book {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateY(var(--ry, -22deg)) rotateX(var(--rx, 6deg));
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.guide-stage.dragging .book {
  transition: none;
}
.guide-stage {
  cursor: grab;
  -webkit-user-select: none;
          user-select: none;
}
.guide-stage.dragging { cursor: grabbing; }
.book-scene {
  touch-action: pan-y;
}

/* ==========================================================
   ABLOH / TASCHEN inspired — flat yellow, bold black type
   ========================================================== */

/* Front cover (yellow, flat) */
.book--abloh .book-cover {
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background: var(--accent);
  color: #000;
  transform: translateZ(var(--book-half));
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  font-family: 'Helvetica Neue', Helvetica, 'Arial Black', Arial, sans-serif;
}

/* Top-left "quote" tag */
.ab-tag {
  position: absolute;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #000;
  text-transform: uppercase;
}
.ab-tag-tl {
  top: 18px;
  left: 22px;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  font-style: italic;
}
.ab-tag-tr { top: 22px; right: 22px; }

/* Title block */
.ab-title {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ab-line {
  font-family: 'Helvetica Neue', Helvetica, 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #000;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ab-arrow-inline {
  width: 22px;
  height: 22px;
  color: #000;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 760px) {
  .ab-line { font-size: 20px; }
  .ab-arrow-inline { width: 16px; height: 16px; }
}

/* Footer row on cover */
.ab-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #000;
  text-transform: uppercase;
  padding-top: 18px;
  border-top: 2px solid #000;
}
.ab-author { font-weight: 800; }
.ab-imprint span { font-style: italic; }

/* Character sticker on cover */
.ab-sticker {
  position: absolute;
  left: 50%;
  bottom: 78px;
  width: 38%;
  max-width: 110px;
  height: auto;
  transform: translateX(-50%) rotate(-4deg);
  filter:
    drop-shadow(2px 3px 0 rgba(0,0,0,0.18))
    drop-shadow(0 8px 16px rgba(0,0,0,0.25));
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 760px) {
  .ab-sticker {
    width: 36%;
    max-width: 86px;
    bottom: 68px;
  }
}

/* Back cover */
.book--abloh .book-back {
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background: var(--accent);
  color: #000;
  transform: rotateY(180deg) translateZ(var(--book-half));
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.ab-back-title {
  margin: 36px 0 14px;
  font-family: 'Helvetica Neue', Helvetica, 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2.1vw, 24px);
  letter-spacing: -0.03em;
  line-height: 0.98;
  color: #000;
  text-transform: uppercase;
}

.ab-list {
  list-style: none;
  margin: 0 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ab-list li {
  display: flex;
  align-items: baseline;
  gap: 9px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: #000;
}
.ab-list .x {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
  border-radius: 2px;
  line-height: 1;
}
.ab-list .muted {
  font-weight: 400;
  font-style: italic;
}

.ab-foot--back {
  padding-top: 14px;
}
.ab-code { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-weight: 700; }

/* Spine — Abloh vertical reading */
.book--abloh .book-spine {
  position: absolute;
  top: 0;
  left: calc((100% - var(--book-depth)) / 2);
  width: var(--book-depth);
  height: 100%;
  background: var(--accent);
  transform: rotateY(-90deg) translateZ(calc(var(--book-scene-w) / 2));
  transform-origin: center center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  box-shadow:
    inset 0 1px 0 rgba(0,0,0,0.10),
    inset 0 -1px 0 rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 14px;
}
.ab-spine-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Helvetica Neue', Helvetica, 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #000;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(180deg);
}
.ab-spine-mark {
  display: inline-block;
  margin: 0 4px;
  font-weight: 800;
}
.ab-spine-imprint {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.06em;
  color: #000;
  text-transform: uppercase;
  writing-mode: horizontal-tb;
}

/* Right-edge filler — same as spine but mirrored on the right side */
.book-back-edge {
  position: absolute;
  top: 0;
  left: calc((100% - var(--book-depth)) / 2);
  width: var(--book-depth);
  height: 100%;
  background: var(--accent);
  transform: rotateY(90deg) translateZ(calc(var(--book-scene-w) / 2));
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  pointer-events: none;
  box-shadow:
    inset 0 1px 0 rgba(0,0,0,0.10),
    inset 0 -1px 0 rgba(0,0,0,0.10);
}

/* Pages — sit on the right face (slightly inset for the realistic book edge) */
.book--abloh .book-pages {
  position: absolute;
  background:
    repeating-linear-gradient(to bottom,
      #f4f4f0 0,
      #f4f4f0 1px,
      #d8d6cf 1px,
      #d8d6cf 2px);
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow:
    inset 0 2px 0 rgba(0,0,0,0.12),
    inset 0 -2px 0 rgba(0,0,0,0.12);
  border-radius: 0;
}
.book--abloh .book-pages--right {
  top: 0;
  left: calc((100% - var(--book-depth)) / 2);
  width: var(--book-depth);
  height: 100%;
  transform: rotateY(90deg) translateZ(calc(var(--book-scene-w) / 2 + 0.5px));
}
.book--abloh .book-pages--top {
  top: 0;
  left: 0;
  width: 100%;
  height: var(--book-depth);
  background:
    repeating-linear-gradient(to right,
      #f4f4f0 0,
      #f4f4f0 1px,
      #d8d6cf 1px,
      #d8d6cf 2px);
  transform: rotateX(90deg) translateZ(var(--book-half));
  box-shadow:
    inset 2px 0 0 rgba(0,0,0,0.12),
    inset -2px 0 0 rgba(0,0,0,0.12);
}
.book--abloh .book-pages--bottom {
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--book-depth);
  background:
    repeating-linear-gradient(to right,
      #f4f4f0 0,
      #f4f4f0 1px,
      #d8d6cf 1px,
      #d8d6cf 2px);
  transform: rotateX(-90deg) translateZ(var(--book-half));
  box-shadow:
    inset 2px 0 0 rgba(0,0,0,0.12),
    inset -2px 0 0 rgba(0,0,0,0.12);
}

/* Soft shadow on the ground */
.book-shadow {
  position: absolute;
  left: 50%;
  bottom: -32px;
  width: 320px;
  height: 32px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 65%);
  filter: blur(8px);
  animation: shadowBreathe 6s ease-in-out infinite;
}

@keyframes bookFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes shadowBreathe {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(1); }
  50%      { opacity: 0.30; transform: translateX(-50%) scale(0.82); }
}

/* ----- Drag hint removed ----- */

/* ----- Rotation toggle ----- */
.book-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 44px;
  padding: 9px 16px 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  font-family: var(--font-editorial-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  cursor: pointer;
  transition: color 200ms, border-color 200ms, background 200ms;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.book-toggle:hover {
  color: #fff;
  border-color: rgba(255,229,0,0.40);
  background: rgba(255,229,0,0.06);
}
.book-toggle-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: inset 0 0 0 0 var(--accent);
  transition: background 200ms, box-shadow 200ms, border-color 200ms;
  flex-shrink: 0;
}
.book-toggle[aria-pressed="true"] {
  color: #fff;
  border-color: rgba(255,229,0,0.45);
  background: rgba(255,229,0,0.10);
}
.book-toggle[aria-pressed="true"] .book-toggle-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(255,229,0,0.6);
}

/* ----- Floating chips around the book ----- */
.guide-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  font-family: var(--font-editorial-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
  white-space: nowrap;
  animation: chipFloat 7s ease-in-out infinite;
  z-index: 4;
  pointer-events: none;
}
.guide-chip .dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(255,229,0,0.6);
}
.guide-chip.chip-1 { top: 8%;  left: 2%;  animation-delay: 0s;   transform: rotate(-3deg); }
.guide-chip.chip-2 { top: 6%;  right: 2%; animation-delay: 1.5s; transform: rotate(3deg); }
.guide-chip.chip-3 { bottom: 8%; left: 2%; animation-delay: 3s;  transform: rotate(2deg); }
.guide-chip.chip-4 { bottom: 6%; right: 2%; animation-delay: 4.5s; transform: rotate(-2deg); }

@media (max-width: 900px) {
  .guide-chip.chip-1 { top: 4%;  left: 0; }
  .guide-chip.chip-2 { top: 2%;  right: 0; }
  .guide-chip.chip-3 { bottom: 4%; left: 0; }
  .guide-chip.chip-4 { bottom: 2%; right: 0; }
}

/* On narrow screens the stage is too tight for orbiting chips — hide them. */
@media (max-width: 640px) {
  .guide-chip { display: none; }
}

@keyframes chipFloat {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); opacity: 0.92; }
  50%      { transform: translateY(-6px) rotate(var(--r, 0deg)); opacity: 1; }
}
.guide-chip.chip-1 { --r: -3deg; }
.guide-chip.chip-2 { --r: 3deg; }
.guide-chip.chip-3 { --r: 2deg; }
.guide-chip.chip-4 { --r: -2deg; }

/* ----- Teaser scroll ----- */
.guide-teaser {
  text-align: center;
  margin: 0 auto;
  max-width: 520px;
}
.guide-teaser-text {
  font-family: var(--font-editorial);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #FAFAFA;
}
.teaser-accent {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(255,229,0,0.4), 0 0 40px rgba(255,229,0,0.15);
}
.guide-scroll-arrow {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  animation: arrowBounce 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255,229,0,0.6)) drop-shadow(0 0 20px rgba(255,229,0,0.3));
}
@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.6; }
}

/* ============================================================
   SECTION HEAD — big number + tag + title + sub
   (matches the .step pattern, sized as a section opener)
   ============================================================ */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 8px 0 36px;
  max-width: 880px;
}
.section-head-meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.section-head-num {
  font-family: var(--font-editorial-mono);
  font-size: 18px;
  color: var(--accent);
  letter-spacing: 0.04em;
  font-weight: 600;
}
.section-head-tag {
  font-family: var(--font-editorial-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.55);
  font-weight: 500;
}
.section-head-title {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: -0.028em;
  line-height: 1.02;
  color: #FAFAFA;
  text-wrap: balance;
  margin: 4px 0 0;
}
.section-head-sub {
  font-family: var(--font-editorial);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.5;
  color: rgba(250,250,250,0.5);
  max-width: 540px;
  text-wrap: pretty;
  margin: 0;
}
@media (max-width: 640px) {
  .section-head { padding: 4px 0 24px; gap: 10px; }
}
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (min-width: 760px) {
  .skills-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.skill {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, #16161a 0%, #050505 80%);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 250ms var(--ease-out-smooth);
}
.skill:hover {
  border-color: rgba(255,229,0,0.4);
  box-shadow: 0 0 40px rgba(255,229,0,0.15), 0 12px 30px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}
.skill-video {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.skill-video::after {
  content: '';
  width: 60%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255,229,0,0.5) 0%, rgba(255,229,0,0.08) 30%, transparent 60%);
  filter: blur(20px);
  animation: skillPulse 4s ease-in-out infinite;
}
.skill-1 .skill-video::after { animation-delay: 0s; background: radial-gradient(circle at 35% 30%, rgba(255,229,0,0.5) 0%, rgba(255,229,0,0.08) 30%, transparent 60%); }
.skill-2 .skill-video::after { animation-delay: -1s; background: radial-gradient(circle at 60% 40%, rgba(255,180,80,0.4) 0%, rgba(255,180,80,0.08) 30%, transparent 60%); }
.skill-3 .skill-video::after { animation-delay: -2s; background: radial-gradient(circle at 50% 50%, rgba(180,140,255,0.35) 0%, rgba(180,140,255,0.05) 30%, transparent 60%); }
.skill-4 .skill-video::after { animation-delay: -3s; background: radial-gradient(circle at 40% 60%, rgba(120,200,255,0.4) 0%, rgba(120,200,255,0.06) 30%, transparent 60%); }
@keyframes skillPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}
.skill-label {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-editorial-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  z-index: 2;
}
.skill-label .glow-dot { margin-right: 6px; }
.skill-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 16px;
  z-index: 2;
}
.skill-title {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 4px;
}
.skill-desc {
  font-family: var(--font-editorial);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.45;
}

/* ============================================================
   RECEIVE — "Ce que tu reçois" (ebooks — clean, no tilt)
   ============================================================ */
.receive {
  padding: 56px 0 96px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ebooks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 700px) {
  .ebooks-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.ebook {
  position: relative;
  padding: 12px 12px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Book cover — straight, clean, subtle */
.ebook-cover {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  border-radius: 4px 14px 14px 4px;
  background: linear-gradient(135deg, #161618 0%, #050505 80%);
  box-shadow: 0 30px 60px rgba(0,0,0,0.55);
  transition: transform 350ms var(--ease-out-smooth), box-shadow 350ms var(--ease-out-smooth);
  overflow: hidden;
}
.ebook:hover .ebook-cover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 60px rgba(255,229,0,0.08);
}

/* Yellow spine line */
.ebook-cover::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(255,229,0,0.6);
}

/* Cover content */
.ebook-content {
  padding: 26px 22px 22px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ebook-num {
  font-family: var(--font-editorial-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.ebook-title {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: clamp(19px, 1.8vw, 24px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: auto;
  text-wrap: balance;
}
.ebook-meta {
  font-family: var(--font-editorial-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 10px;
  margin-top: 14px;
}

.ebook-tag {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-editorial-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}
.ebook-tag .em { color: var(--accent); }

/* Bonus row */
.bonus-row {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 700px) {
  .bonus-row { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.bonus-card {
  position: relative;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.bonus-card::before {
  content: 'OFFERT';
  position: absolute;
  top: 14px; right: 14px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-editorial-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}
.bonus-mini-cover {
  width: 52px;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #161618 0%, #050505 80%);
  border-radius: 3px;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 10px 22px rgba(0,0,0,0.5);
}
.bonus-mini-cover::before {
  content: '';
  position: absolute;
  left: 3px; top: 0; bottom: 0;
  width: 1.5px;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(255,229,0,0.5);
}
.bonus-info { flex: 1; }
.bonus-info .num {
  font-family: var(--font-editorial-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.bonus-info .ttl {
  font-family: var(--font-editorial);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 6px;
  padding-right: 60px;
}
.bonus-info .dsc {
  font-family: var(--font-editorial);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ============================================================
   WAKE-UP — prise de conscience
   ============================================================ */
.wakeup {
  padding: 40px 24px 80px;
  background: #000;
  text-align: center;
}
.wakeup-inner {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.wakeup-eyebrow {
  font-family: var(--font-editorial-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.wakeup-title {
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 32px;
}
.wakeup-accent {
  color: var(--accent);
  text-shadow: 0 0 32px rgba(255,229,0,0.4);
}
.wakeup-video {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 40px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #111;
}
.wakeup-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wakeup-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 70%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}
@media (min-width: 760px) {
  .wakeup-video {
    max-width: 400px;
    aspect-ratio: 3/4;
  }
}
.wakeup-intro {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  text-align: center !important;
  width: 100%;
  display: block;
}

/* Proof video 30k */
.proof-video-card {
  margin-bottom: 24px;
}
.proof-video-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 3/4;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  clip-path: inset(0 round 16px);
}
.proof-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.proof-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.proof-video-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 32px 16px 16px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
  border-radius: 0 0 16px 16px;
}
.proof-views {
  font-family: var(--font-editorial-mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}
.proof-earned {
  font-size: 22px;
  font-weight: 800;
  color: #4af800;
  text-shadow: 0 0 18px rgba(74,248,0,0.55);
  letter-spacing: -0.01em;
}

/* Proof month */
.proof-bridge-text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  text-align: center;
  margin: 0 0 24px;
}
.proof-month-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px 24px 24px;
  margin-bottom: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.proof-month-eyebrow {
  font-family: var(--font-editorial-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
}
.proof-month-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
.proof-month-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.proof-month-num {
  font-size: clamp(40px, 10vw, 56px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  text-shadow: 0 0 28px rgba(255,229,0,0.4);
  line-height: 1;
}
.proof-month-revenue {
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 800;
  color: #4af800;
  text-shadow: 0 0 24px rgba(74,248,0,0.55);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.proof-month-col-label {
  font-family: var(--font-editorial-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.proof-month-sep {
  font-size: 24px;
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.proof-month-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.proof-month-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.proof-month-proofs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
  margin-top: 8px;
}
.proof-month-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}
.proof-month-proof-label {
  font-family: var(--font-editorial-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.proof-month-proof-item img {
  width: 100%;
  border-radius: 12px;
  opacity: 0.9;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  filter: brightness(0.92) saturate(0.9);
}

.sim-intro-text {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 20px;
  margin-top: -8px;
}

.sim-card {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px 24px;
  margin-bottom: 40px;
}
.sim-eyebrow {
  font-family: var(--font-editorial-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-bottom: 24px;
}
.sim-sliders { display: flex; flex-direction: column; gap: 24px; }
.sim-row { display: flex; flex-direction: column; gap: 8px; }
.sim-row-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sim-label {
  font-family: var(--font-editorial-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}
.sim-val {
  font-family: var(--font-editorial-mono);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.sim-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
  outline: none;
  cursor: pointer;
}
.sim-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(255,229,0,0.5);
  cursor: pointer;
  transition: transform 0.15s;
}
.sim-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.sim-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(255,229,0,0.5);
  border: none;
  cursor: pointer;
}
.sim-ticks {
  position: relative;
  height: 14px;
  font-family: var(--font-editorial-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.2);
}
.sim-tick-left  { position: absolute; left: 0; }
.sim-tick-right { position: absolute; right: 0; }
.sim-tick-mid   { position: absolute; transform: translateX(-50%); }
.sim-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 24px 0;
}
.sim-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.sim-result-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.sim-result-sep {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.sim-result-num {
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 800;
  color: rgba(255,255,255,0.7);
  line-height: 1;
  letter-spacing: -0.02em;
}
.sim-result-revenue {
  font-size: clamp(36px, 9vw, 52px);
  color: #4af800;
  text-shadow: 0 0 24px rgba(74,248,0,0.55);
}
.sim-result-tick { animation: sim-pop 0.2s ease; }
@keyframes sim-pop {
  0% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.sim-result-label {
  font-family: var(--font-editorial-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.sim-footnote {
  font-family: var(--font-editorial-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.18);
  text-align: center;
  margin-top: 16px;
}
.wakeup-counter-card {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px 24px 24px;
  margin-bottom: 40px;
  text-align: center;
}
.wakeup-live-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 20px;
}
.wakeup-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 8px rgba(255,59,59,0.8);
  animation: pulse-red 1.2s ease-in-out infinite;
}
@keyframes pulse-red {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.wakeup-live-label {
  font-family: var(--font-editorial-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.wakeup-timer {
  font-family: var(--font-editorial-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
  margin-left: 4px;
}
.wakeup-counter-num {
  font-size: clamp(64px, 16vw, 100px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 0 40px rgba(255,229,0,0.35);
  transition: transform 0.15s ease;
}
.wakeup-counter-tick {
  animation: counter-pop 0.25s ease;
}
@keyframes counter-pop {
  0% { transform: scale(1.18); }
  100% { transform: scale(1); }
}
.wakeup-counter-desc {
  font-family: var(--font-editorial-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-top: 12px;
}
.wakeup-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 16px;
}
.wakeup-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.wakeup-stat-num {
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 24px rgba(255,229,0,0.35);
}
.wakeup-stat-label {
  font-family: var(--font-editorial-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}
.wakeup-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.wakeup-body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}
.wakeup-cta-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.wakeup-arrow {
  font-size: 18px;
  color: var(--accent);
  animation: wakeup-bounce 1.2s ease-in-out infinite;
}
.wakeup-cta-text {
  font-family: var(--font-editorial-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}
@keyframes wakeup-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ============================================================
   OFFER — épuré : big typography countdown + clean price + halo CTA
   ============================================================ */
.offer {
  padding: 72px 0 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.offer::before {
  content: '';
  position: absolute;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(255,229,0,0.05) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.offer > * { position: relative; z-index: 1; }

/* Price block — big, clean, on its own line */
.offer-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  margin: 6px auto 32px;
}
.offer-price .strike {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  color: rgba(255,255,255,0.32);
  text-decoration: line-through;
  font-weight: 600;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.offer-price .now {
  font-family: 'Helvetica Neue', Helvetica, 'Arial Black', Arial, sans-serif;
  font-size: clamp(96px, 16vw, 180px);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-shadow: 0 0 80px rgba(255,229,0,0.35);
}

/* CTA should sit on its own row, centered */
.offer .big-cta {
  display: inline-flex;
  margin: 0 auto 14px;
}

/* ============================================================
   OFFER HEAD — Arc-inspired huge headline
   ============================================================ */
.offer-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
}
.offer-eyebrow {
  font-family: var(--font-editorial-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.offer-title {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 9vw, 120px);
  letter-spacing: -0.05em;
  line-height: 0.88;
  color: #FAFAFA;
  text-transform: uppercase;
  text-wrap: balance;
}

/* ============================================================
   ODOMETER COUNTER — H H · M M · S S in pill cells
   ============================================================ */
.odometer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px;
  background: linear-gradient(180deg, #0c0c0e 0%, #050506 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 24px 56px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,229,0,0.06);
  margin: 8px 0 18px;
}
.odo-cell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(46px, 7.5vw, 92px);
  height: clamp(64px, 10vw, 124px);
  padding: 0 6px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,229,0,0.08), transparent 60%),
    #111114;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.odo-cell::after {
  /* Horizontal seam, like a real split-flap clock */
  content: '';
  position: absolute;
  left: 4px; right: 4px;
  top: 50%;
  height: 1px;
  background: rgba(0,0,0,0.6);
  box-shadow: 0 -1px 0 rgba(255,255,255,0.04);
  pointer-events: none;
}
.odo-cell span {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-size: clamp(44px, 7.2vw, 88px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 32px rgba(255,229,0,0.35);
  display: inline-block;
}
.odo-cell.flip span {
  animation: odoFlip 360ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center bottom;
}
@keyframes odoFlip {
  0%   { transform: translateY(-12%); opacity: 0; filter: blur(2px); }
  60%  { opacity: 1; filter: blur(0); }
  100% { transform: translateY(0); opacity: 1; }
}
.odo-sep {
  font-family: var(--font-editorial);
  font-weight: 400;
  font-size: clamp(28px, 5vw, 56px);
  color: rgba(255,255,255,0.25);
  line-height: 1;
  padding: 0 2px;
}

.odo-caption {
  font-family: var(--font-editorial-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  margin: 4px 0 24px;
}
.odo-cap-strong {
  color: var(--accent);
  font-weight: 600;
}
.odo-cap-strike {
  text-decoration: line-through;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   OUTLINED price tag — Arc *KIND OF style
   ============================================================ */
.offer-outlined {
  margin: 18px 0 6px;
  display: flex;
  justify-content: center;
  line-height: 0.85;
}
.ol-line {
  font-family: 'Helvetica Neue', Helvetica, 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(72px, 16vw, 220px);
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
          text-stroke: 2px var(--accent);
  text-transform: uppercase;
  text-shadow: 0 0 36px rgba(255,229,0,0.18);
  position: relative;
}
.ol-aster {
  font-size: 0.55em;
  vertical-align: top;
  margin-left: 6px;
}
.offer-outlined-foot {
  font-family: var(--font-editorial-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0 0 56px;
}

@media (max-width: 760px) {
  .offer-title { font-size: clamp(40px, 11vw, 64px); }
  .odometer { padding: 8px; gap: 4px; border-radius: 14px; }
  .odo-cell { border-radius: 8px; }
}

/* ============================================================
   OFFER — layout fixes: stack price + CTA, center properly
   ============================================================ */

/* Inclus list — épuré */
.offer-inclus {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto 48px;
  max-width: 460px;
  text-align: left;
}
.offer-inclus li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-family: var(--font-editorial);
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.45;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.offer-inclus li:last-child { border-bottom: none; }
.offer-inclus li .num {
  font-family: var(--font-editorial-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.04em;
  font-weight: 500;
  min-width: 26px;
}

/* Countdown — TYPOGRAPHY ONLY, no boxes */
.countdown-block {
  margin: 24px 0 40px;
}
.countdown-label {
  font-family: var(--font-editorial-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.countdown {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  font-variant-numeric: tabular-nums;
}
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cd-num {
  font-family: var(--font-editorial);
  font-size: clamp(56px, 9vw, 96px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.9;
  color: #fff;
}
.cd-lbl {
  font-family: var(--font-editorial-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.cd-sep {
  font-family: var(--font-editorial);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 400;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  align-self: center;
  transform: translateY(-12px);
}

/* BIG CTA — yellow with clean halo */
.big-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--accent);
  color: #000;
  padding: 22px 44px;
  border-radius: 999px;
  font-family: var(--font-editorial);
  font-weight: 700;
  font-size: clamp(16px, 1.7vw, 19px);
  letter-spacing: -0.01em;
  /* Static halo — no aggressive pulse */
  box-shadow:
    0 0 0 1px rgba(255,229,0,0.4),
    0 0 80px rgba(255,229,0,0.35),
    0 20px 50px rgba(0,0,0,0.5);
  transition: all 220ms var(--ease-out-snap);
  white-space: nowrap;
  position: relative;
}
.big-cta::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(255,229,0,0.25) 0%, transparent 70%);
  z-index: -1;
  filter: blur(20px);
  opacity: 0.7;
  transition: opacity 220ms;
}
.big-cta:hover {
  background: #FFEC33;
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,229,0,0.6),
    0 0 120px rgba(255,229,0,0.5),
    0 24px 60px rgba(0,0,0,0.5);
}
.big-cta:hover::before { opacity: 1; }
.big-cta:active { transform: translateY(0); transition-duration: 80ms; }
.big-cta .arr {
  font-family: var(--font-editorial-mono);
  font-size: 22px;
  font-weight: 400;
}

.offer-microbar {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-family: var(--font-editorial-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}
.offer-microbar .item .y { color: var(--accent); }
.offer-microbar .sep { color: rgba(255,255,255,0.15); }

/* ============================================================
   PRICING CARD
   ============================================================ */
.pricing-card {
  max-width: 520px;
  margin: 48px auto 0;
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px;
  overflow: hidden;
}
.pc-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(255,229,0,0.55);
}
.pc-header { margin-bottom: 22px; }
.pc-badge {
  display: inline-block;
  font-family: var(--font-editorial-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,229,0,0.08);
  border: 1px solid rgba(255,229,0,0.22);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 12px;
}
.pc-name {
  font-size: clamp(17px, 2.8vw, 21px);
  font-weight: 600;
  color: #fafafa;
  line-height: 1.3;
}
.pc-price-block {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}
.pc-strike {
  font-size: 32px;
  color: rgba(250,250,250,0.28);
  text-decoration: line-through;
  font-weight: 500;
  align-self: center;
}
.pc-now {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.pc-amount {
  font-size: clamp(64px, 10vw, 88px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 0 40px rgba(255,229,0,0.3);
}
.pc-sym {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  color: var(--accent);
}
.pc-save {
  font-family: var(--font-editorial-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.45);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 5px 14px;
}
.pc-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.pc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.pc-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(250,250,250,0.88);
  line-height: 1.4;
}
.pc-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(255,229,0,0.1);
  border: 1px solid rgba(255,229,0,0.28);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}
.pc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(180deg, #2A86FF 0%, #0A6CFF 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(14px, 2.5vw, 16px);
  border-radius: 14px;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 0 18px rgba(42,134,255,0.35), 0 0 40px rgba(10,108,255,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 16px;
}
.pc-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(10,108,255,0.4);
}
.pc-arr { font-family: var(--font-editorial-mono); }
.pc-embed {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 8px;
}
.pc-embed iframe {
  display: block;
  width: 100%;
  border: none;
  border-radius: 12px;
}
.pc-features-label {
  font-family: var(--font-editorial-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pc-features-label::before,
.pc-features-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,229,0,0.2);
}
.pc-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--font-editorial-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(250,250,250,0.75);
  margin-top: 20px;
}
.pc-dot { color: rgba(255,255,255,0.15); }

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-out-smooth), transform 700ms var(--ease-out-smooth);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE — iPhone SE & petits écrans (≤ 390px)
   ============================================================ */
@media (max-width: 390px) {
  /* Conteneur global — évite tout débordement horizontal */
  body { overflow-x: hidden; }

  /* Hero */
  .hero { padding: 24px 16px 0; text-align: center; }
  .hero-title {
    font-size: clamp(24px, 7.5vw, 36px);
    text-align: center;
    margin: 0 auto;
  }
  .hero-ctas { flex-direction: column; align-items: center; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Steps */
  .steps-grid { gap: 32px; }
  .step-head { padding-top: 16px; }

  /* Guide section */
  .guide { padding: 48px 16px 80px; }
  .guide .section-head-title { font-size: clamp(20px, 6.5vw, 34px); }

  /* Skills grid */
  .skills-grid { gap: 10px; }
  .skill-title { font-size: 15px; }

  /* Offer / prix */
  .offer-box { padding: 20px 16px; }
  .big-cta { font-size: 15px; padding: 16px 20px; }

  /* Sticky CTA */
  .sticky-cta { left: 12px; right: 12px; font-size: 15px; padding: 14px 16px; }

  /* Stats guide */
  .guide-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .guide-stat-num { font-size: clamp(32px, 9vw, 48px); }

  /* FAQ */
  .faq-q { font-size: 15px; }

  /* Section heads généraux */
  .section-head-title { font-size: clamp(24px, 7vw, 40px); }
  .section-head-sub { font-size: 14px; }
}
