@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/InstrumentSans.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Sans";
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/InstrumentSans-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/InstrumentSerif.woff2") format("woff2");
}
@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/InstrumentSerif-Italic.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --ink: #161117;
  --ink-2: #1d151f;
  --paper: #f3eee7;
  --cream: #fffaf2;
  --plum: #55233f;
  --coral: #ff725e;
  --coral-deep: #e85643;
  --gold: #ffcc79;
  --teal: #7fd8c8;
  --muted: #aaa0a4;
  --curve: cubic-bezier(.32,.72,0,1);
  --spring: cubic-bezier(.34,1.45,.4,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
::selection { background: var(--coral); color: var(--ink); }
h1, h2, h3 { text-wrap: balance; }
section[id], .prose section { scroll-margin-top: 96px; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 10; padding: 12px 18px; border-radius: 0 0 16px 0; background: var(--coral); color: var(--ink); font-weight: 700; text-decoration: none; }
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: "Instrument Sans", "Avenir Next", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
/* Grain — texture signature posée au-dessus de tout. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
a { color: inherit; }
img { max-width: 100%; height: auto; }
.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 18px;
  z-index: 3;
  width: min(760px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 7px 8px 7px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  background: rgba(23,17,24,.72);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 18px 50px -24px rgba(0,0,0,.6);
}
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; letter-spacing: -.04em; text-decoration: none; font-size: 21px; }
.brand-mark { display: block; width: 28px; height: 28px; border-radius: 9px; box-shadow: 0 4px 12px -4px rgba(255,114,94,.6); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 9px 13px; border-radius: 999px; color: #d7ced1; text-decoration: none; font-size: 13px; transition: transform .55s var(--curve), background .55s var(--curve); }
.nav-links a:hover { transform: translateY(-2px); background: rgba(255,255,255,.07); }
.nav-cta { background: var(--coral) !important; color: var(--ink) !important; font-weight: 700; }
.language { background: var(--cream) !important; color: var(--ink) !important; }

/* ---------- Burger + menu mobile ---------- */
.nav-burger {
  display: none;
  place-items: center;
  width: 40px; height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.burger-box { display: grid; gap: 4.5px; width: 16px; }
.burger-box span {
  height: 2px;
  border-radius: 2px;
  background: var(--cream);
  transition: transform .45s var(--spring), opacity .3s var(--curve);
  transform-origin: center;
}
.menu-open .nav-burger .burger-box span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-open .nav-burger .burger-box span:nth-child(2) { opacity: 0; }
.menu-open .nav-burger .burger-box span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu[hidden] { display: none; }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2;
  background: rgba(18,13,19,.92);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--curve);
}
.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
.mobile-menu-inner {
  display: grid;
  gap: 6px;
  padding: 96px 28px 40px;
}
.mobile-menu-inner > a:not(.menu-cta) {
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--cream);
  text-decoration: none;
  font-size: 27px;
  font-weight: 650;
  letter-spacing: -.03em;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--curve), transform .5s var(--curve);
}
.menu-open .mobile-menu-inner > a:not(.menu-cta) { opacity: 1; transform: none; }
.menu-open .mobile-menu-inner > a:nth-child(2) { transition-delay: .05s; }
.menu-open .mobile-menu-inner > a:nth-child(3) { transition-delay: .1s; }
.menu-open .mobile-menu-inner > a:nth-child(4) { transition-delay: .15s; }
.menu-open .mobile-menu-inner > a:nth-child(5) { transition-delay: .2s; }
.mobile-menu .language-row::after { content: " · English"; color: var(--muted); font-size: 16px; font-weight: 500; }
:root:lang(en) .mobile-menu .language-row::after { content: " · Français"; }
.mobile-menu .menu-cta { justify-content: space-between; margin-top: 22px; opacity: 0; transform: translateY(14px); transition: opacity .5s var(--curve) .25s, transform .5s var(--curve) .25s; }
.menu-open .mobile-menu .menu-cta { opacity: 1; transform: none; }
.menu-open { overflow: hidden; }
.menu-open body { overflow: hidden; }

/* ---------- Hero ---------- */
.hero { min-height: min(980px, 100dvh); display: grid; align-items: center; padding: 108px 0 40px; position: relative; }
.hero::before {
  content: "";
  position: absolute;
  width: 860px; height: 860px;
  right: -360px; top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,114,94,.30), rgba(85,35,63,.14) 46%, transparent 70%);
  pointer-events: none;
  animation: aurora 14s ease-in-out infinite alternate;
}
@keyframes aurora {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(-70px,50px,0) scale(1.12); }
}
.hero::after {
  content: "";
  position: absolute;
  width: 640px; height: 640px;
  left: -300px; bottom: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(85,35,63,.5), transparent 65%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.eyebrow { display: inline-flex; padding: 7px 11px; margin: 0 0 24px; border-radius: 999px; background: rgba(255,204,121,.11); color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 790px; margin-bottom: 26px; font-size: clamp(56px, 7.6vw, 108px); line-height: .9; letter-spacing: -.075em; font-weight: 650; }
h1 em, .serif { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; font-style: italic; letter-spacing: -.02em; color: var(--coral); }
.hero-copy { max-width: 560px; color: #bdb3b6; font-size: clamp(18px, 2vw, 22px); line-height: 1.5; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; gap: 16px; padding: 7px 8px 7px 22px; min-height: 54px; border-radius: 999px; text-decoration: none; font-weight: 650; transition: transform .6s var(--spring), background .6s var(--curve), box-shadow .6s var(--curve); }
.button:hover { transform: translateY(-3px); }
.button:active { transform: scale(.98); }
.button i { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; font-style: normal; transition: transform .6s var(--spring); }
.button:hover i { transform: translate(3px,-1px) scale(1.06); }
.primary { color: var(--ink); background: linear-gradient(135deg, var(--gold) -40%, var(--coral) 45%, var(--coral-deep)); box-shadow: 0 14px 40px -14px rgba(255,114,94,.65); }
.primary:hover { box-shadow: 0 20px 48px -14px rgba(255,114,94,.8); }
.primary i { background: rgba(22,17,23,.12); }
.secondary { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); }
.secondary i { background: rgba(255,255,255,.08); }
.beta-note { display: inline-flex; align-items: center; gap: 9px; margin: 26px 0 0; color: #b7adb1; font-size: 14px; }
.beta-note::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }

/* Statistiques du hero */
.hero-stats { display: flex; gap: 34px; margin: 38px 0 0; padding: 0; list-style: none; }
.stat b { display: block; font-size: 26px; letter-spacing: -.04em; }
.stat span { font-size: 12px; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }

/* ---------- iPhone (cadre CSS + vraie capture) ---------- */
.phone-stage { position: relative; display: grid; place-items: center; padding: 26px 8px; perspective: 1400px; }
.phone-stage::before {
  content: "";
  position: absolute;
  width: 78%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,114,94,.32), rgba(255,204,121,.10) 55%, transparent 72%);
  filter: blur(6px);
}
.iphone {
  position: relative;
  width: min(320px, 78vw);
  border-radius: 54px;
  padding: 10px;
  background: linear-gradient(160deg, #3a3140, #14101a 70%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 40px 90px -30px rgba(0,0,0,.75),
    0 24px 60px -20px rgba(85,35,63,.55),
    inset 0 1px 1px rgba(255,255,255,.18);
  transform: rotate(2.5deg);
  transition: transform .9s var(--spring);
}
.iphone:hover { transform: rotate(0deg) translateY(-6px); }
.iphone::before {
  content: "";
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 88px; height: 26px;
  border-radius: 999px;
  background: #060409;
  z-index: 2;
}
/* Boutons latéraux du cadre */
.iphone::after {
  content: "";
  position: absolute;
  top: 150px; right: -2.5px;
  width: 2.5px; height: 74px;
  border-radius: 2px;
  background: rgba(255,255,255,.22);
  box-shadow: 0 -52px 0 -18px rgba(255,255,255,.22);
}
.iphone img { display: block; width: 100%; border-radius: 44px; }
.iphone.plain { transform: none; }
.iphone.tilt-l { transform: rotate(-2.5deg); }
.iphone.tilt-l:hover { transform: rotate(0deg) translateY(-6px); }

/* Rotation 3D continue de l'iPhone du héro */
.hero .iphone {
  transform-style: preserve-3d;
  animation: phone3d 11s ease-in-out infinite;
}
.hero .iphone:hover { animation-play-state: paused; }
@keyframes phone3d {
  0%, 100% { transform: rotateY(-16deg) rotateX(3deg) rotateZ(2deg); }
  50% { transform: rotateY(16deg) rotateX(-3deg) rotateZ(-1deg); }
}
/* Reflet qui balaye l'écran pendant la rotation */
.hero .iphone .glare {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 44px;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.14) 48%, rgba(255,255,255,.03) 55%, transparent 68%);
  background-size: 300% 100%;
  animation: glare 11s ease-in-out infinite;
}
@keyframes glare {
  0%, 100% { background-position: 100% 0; }
  50% { background-position: 0% 0; }
}

/* Pastilles flottantes autour du téléphone */
.float-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(29,21,31,.82);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 650;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.7);
  animation: floaty 5.2s ease-in-out infinite;
}
.float-chip small { display: block; font-size: 10px; font-weight: 500; color: var(--muted); line-height: 1.2; }
.float-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 10px var(--coral); }
.float-chip.gold .dot { background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.float-chip.teal .dot { background: var(--teal); box-shadow: 0 0 10px var(--teal); }
.chip-1 { top: 12%; left: -6%; animation-delay: 0s; }
.chip-2 { top: 40%; right: -9%; animation-delay: 1.3s; }
.chip-3 { bottom: 10%; left: -3%; animation-delay: 2.4s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- Marquee instruments / styles ---------- */
.marquee {
  position: relative;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; gap: 14px; width: max-content; animation: slide 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: #cfc5c9;
  font-size: 13px;
  white-space: nowrap;
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 130px 0; position: relative; }
.section.light { color: var(--ink); background: var(--paper); }
.section-heading { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; margin-bottom: 64px; }
.section-heading .eyebrow { justify-self: start; align-self: start; }
.section h2 { max-width: 800px; font-size: clamp(40px, 5.6vw, 76px); line-height: .98; letter-spacing: -.06em; }
.section-intro { max-width: 590px; color: #6e6267; font-size: 19px; }
.section:not(.light) .section-intro { color: #b7adb1; }

/* ---------- Étapes (screenshots réels) ---------- */
.steps { display: grid; gap: 26px; }
.step {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
  padding: 46px 52px;
  border-radius: 40px;
  background: #fffaf3;
  border: 1px solid rgba(22,17,23,.06);
  box-shadow: inset 0 1px rgba(255,255,255,.9), 0 30px 60px -40px rgba(85,35,63,.25);
  overflow: hidden;
  position: relative;
}
.step:nth-child(even) .step-copy { order: 2; }
.step:nth-child(even) .step-visual { order: 1; }
.step-number {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: clamp(64px, 7vw, 110px);
  line-height: 1;
  color: rgba(255,114,94,.24);
  position: absolute;
  top: 18px;
  right: 34px;
  pointer-events: none;
}
.step-kicker { color: var(--coral-deep); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.step h3 { max-width: 430px; margin: 12px 0 12px; font-size: clamp(28px, 3vw, 40px); line-height: 1.06; letter-spacing: -.045em; }
.step p { max-width: 460px; color: #756970; font-size: 17px; }
.step-visual { display: grid; place-items: center; }
.step-visual .iphone { width: min(270px, 66vw); border-radius: 46px; padding: 8px; }
.step-visual .iphone img { border-radius: 38px; }
.step-tag { display: inline-flex; margin-top: 16px; padding: 8px 13px; border-radius: 999px; background: rgba(255,114,94,.1); color: var(--coral-deep); font-size: 12.5px; font-weight: 650; gap: 7px; align-items: center; }

/* ---------- Bento fonctionnalités ---------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.tile {
  border-radius: 32px;
  padding: 30px;
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .7s var(--spring), border-color .7s var(--curve), box-shadow .7s var(--curve);
}
.tile:hover {
  transform: translateY(-5px);
  border-color: rgba(255,114,94,.35);
  box-shadow: inset 0 1px rgba(255,255,255,.06), 0 24px 50px -30px rgba(0,0,0,.8);
}
.tile h3 { font-size: 22px; letter-spacing: -.03em; margin: 0; }
.tile p { color: #b0a6aa; font-size: 15px; margin: 0; max-width: 420px; }
.tile-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: rgba(255,114,94,.14); color: var(--coral); font-size: 19px; margin-bottom: 8px; }
.tile.gold .tile-icon { background: rgba(255,204,121,.14); color: var(--gold); }
.tile.teal .tile-icon { background: rgba(127,216,200,.13); color: var(--teal); }
.tile-shot { grid-row: span 2; padding: 0; background: linear-gradient(170deg, #241a26, #14101a); }
.tile-shot figure { margin: 0; height: 100%; display: grid; grid-template-rows: auto 1fr; }
.tile-shot figcaption { padding: 26px 28px 6px; }
.tile-shot figcaption h3 { margin-bottom: 6px; }
.tile-shot figcaption p { color: #b0a6aa; font-size: 14.5px; }
.tile-shot .shot-crop { align-self: end; padding: 22px 28px 0; display: grid; place-items: center; overflow: hidden; }
/* Mockup iPhone tronqué par le bas de la tuile : cadre + encoche, fenêtre
   recadrée à ratio constant (portion choisie par tuile via --shot-pos). */
.tile-shot .iphone.crop {
  width: min(260px, 84%);
  padding: 8px 8px 0;
  border-radius: 42px 42px 0 0;
  border-bottom: 0;
  transform: none;
  box-shadow: 0 -18px 50px -20px rgba(0,0,0,.65), inset 0 1px 1px rgba(255,255,255,.18);
}
.tile-shot .iphone.crop::before { display: none; }
.tile-shot .iphone.crop::after { display: none; }
.tile-shot .iphone.crop:hover { transform: none; }
.tile-shot .iphone.crop img {
  aspect-ratio: 250 / 400;
  height: auto;
  object-fit: cover;
  object-position: var(--shot-pos, 50% 40%);
  border-radius: 34px 34px 0 0;
}
.shot-mid { --shot-pos: 50% 100%; }
.shot-top { --shot-pos: 50% 30%; }
.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: span 12; }

/* ---------- Bande Premium ---------- */
.premium-band {
  border-radius: 40px;
  padding: 44px 48px;
  background:
    radial-gradient(120% 160% at 90% -20%, rgba(255,255,255,.28), transparent 45%),
    linear-gradient(120deg, var(--gold), var(--coral));
  color: var(--ink);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 40px 90px -40px rgba(255,150,90,.45);
}
.premium-band h3 { font-size: clamp(26px, 3vw, 38px); letter-spacing: -.04em; margin-bottom: 10px; }
.premium-band p { color: rgba(22,17,23,.78); max-width: 480px; margin: 0; }
.premium-perks { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; font-weight: 650; font-size: 15px; }
.premium-perks li { display: flex; gap: 10px; align-items: baseline; }
.premium-perks li::before { content: "♪"; color: var(--plum); }

/* ---------- Citation ---------- */
.quote-block { max-width: 900px; margin: 0 auto; text-align: center; }
.quote-block blockquote {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.14;
  letter-spacing: -.02em;
}
.quote-block blockquote em { color: var(--coral); }
.quote-block figcaption { margin-top: 22px; color: var(--muted); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }

/* ---------- CTA final ---------- */
.cta-final {
  position: relative;
  border-radius: 48px;
  padding: 76px 60px;
  overflow: hidden;
  background:
    radial-gradient(90% 140% at 85% 10%, rgba(255,114,94,.5), transparent 55%),
    radial-gradient(70% 120% at 10% 90%, rgba(85,35,63,.9), transparent 60%),
    var(--ink-2);
  border: 1px solid rgba(255,255,255,.1);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: center;
}
.cta-final h2 { font-size: clamp(38px, 5vw, 68px); }
.cta-final .hero-copy { font-size: 18px; }
.cta-final .phone-stage { padding: 0; margin-bottom: -140px; }
.cta-final .iphone { width: min(280px, 70vw); }

/* ---------- Pages de contenu (assistance / confidentialité) ---------- */
.content-page { padding: 150px 0 100px; }
.content-header { max-width: 850px; margin-bottom: 80px; }
.content-header h1 { font-size: clamp(52px, 7vw, 90px); }
.content-header > p { max-width: 680px; color: #b7adb1; font-size: 20px; }
.content-grid { display: grid; grid-template-columns: 240px 1fr; gap: 80px; align-items: start; }
.toc { position: sticky; top: 110px; display: grid; gap: 10px; }
.toc a { color: #9f9499; text-decoration: none; font-size: 13px; }
.toc a:hover { color: var(--coral); }
.prose { max-width: 760px; }
.prose section { scroll-margin-top: 110px; margin-bottom: 72px; }
.prose h2 { font-size: 34px; letter-spacing: -.04em; }
.prose h3 { margin-top: 34px; font-size: 19px; }
.prose p, .prose li { color: #c0b6ba; }
.prose li { margin-bottom: 8px; }
.contact-box { padding: 6px; margin: 38px 0; border-radius: 30px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); }
.contact-inner { padding: 28px; border-radius: 24px; background: #251a22; }
.contact-inner a { color: var(--coral); font-size: 22px; font-weight: 650; text-decoration: none; }

/* ---------- Pied de page ---------- */
footer { padding: 60px 0 70px; color: #897e83; border-top: 1px solid rgba(255,255,255,.07); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: #a99fa3; text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: var(--cream); }

/* ---------- Révélations au scroll ---------- */
.reveal { opacity: 1; transform: translateY(0); }
.js .reveal { opacity: 0; transform: translateY(38px); transition: opacity .9s var(--curve), transform .9s var(--curve); transition-delay: var(--reveal-delay, 0s); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }
.stagger > *:nth-child(2) { --reveal-delay: .12s; }
.stagger > *:nth-child(3) { --reveal-delay: .24s; }
.stagger > *:nth-child(4) { --reveal-delay: .36s; }

/* ---------- Porte de langue / 404 ---------- */
.gate { min-height: 100dvh; display: grid; place-items: center; background: radial-gradient(circle at 80% 10%, #51243c, transparent 45%), var(--ink); }
.language-gate { width: min(900px, calc(100% - 40px)); padding: 70px; border-radius: 46px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); }
.language-gate h1 { margin-top: 50px; font-size: clamp(48px, 8vw, 94px); }
.language-gate h1 em { display: block; color: #b8aeb2; font-size: .5em; line-height: 1.5; }
.language-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-chip { animation: none; }
  .marquee-track { animation: none; }
  .hero::before { animation: none; }
  .hero .iphone { animation: none; transform: rotate(2.5deg); }
  .hero .iphone .glare { animation: none; }
  * { transition-duration: .01ms !important; }
}

/* ---------- Tablette ---------- */
@media (max-width: 1024px) {
  .hero-grid { gap: 36px; grid-template-columns: 1.05fr .95fr; }
  .section { padding: 104px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 52px; }
  .step { grid-template-columns: 1fr 1fr; gap: 40px; padding: 40px 40px; }
  .chip-1 { left: -2%; }
  .chip-2 { right: -3%; }
}
@media (max-width: 900px) {
  .nav-links { gap: 8px; }
  .nav-links a:not(.language):not(.nav-cta) { display: none; }
  .nav-links .language { display: none; }
  .nav-burger { display: grid; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .span-4, .span-8, .span-12 { grid-column: span 1; }
  .span-6 { grid-column: span 2; }
  .tile-shot { grid-row: auto; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .span-6 { grid-column: span 1; }
}
@media (max-width: 767px) {
  .shell { width: min(100% - 32px, 560px); }
  .nav { top: 10px; margin-top: 10px; }
  .hero { min-height: auto; padding: 96px 0 40px; }
  .hero-grid, .section-heading, .content-grid { grid-template-columns: 1fr; gap: 42px; }
  h1 { font-size: clamp(50px, 15vw, 72px); }
  .hero-stats { gap: 22px; flex-wrap: wrap; }
  .phone-stage { padding: 34px 0 10px; }
  .float-chip { font-size: 12px; padding: 8px 12px; }
  .float-chip small { font-size: 9px; }
  .chip-1 { left: 0; }
  .chip-2 { right: 0; }
  .chip-3 { left: 4%; }
  .section { padding: 88px 0; }
  .section-heading { margin-bottom: 44px; }
  .step { grid-template-columns: 1fr; gap: 30px; padding: 30px 24px 38px; }
  .step:nth-child(even) .step-copy { order: 1; }
  .step:nth-child(even) .step-visual { order: 2; }
  .step-number { font-size: 64px; top: 10px; right: 20px; }
  .premium-band { grid-template-columns: 1fr; padding: 34px 26px; }
  .cta-final { grid-template-columns: 1fr; padding: 46px 26px 0; }
  .cta-final .phone-stage { margin-bottom: -90px; }
  .toc { display: none; }
  .content-page { padding: 110px 0 70px; }
  .content-header { margin-bottom: 54px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .language-gate { padding: 34px 24px; }
  .language-gate h1 { margin-top: 40px; }
}
