:root {
  --eggplant: #42143b;
  --eggplant-deep: #22071f;
  --eggplant-soft: #64215c;
  --sage: #aaae7f;
  --sage-light: #e7e8d8;
  --pink: #e3bac6;
  --pink-light: #f5e8ec;
  --yellow: #ffc759;
  --paper: #fafaf5;
  --white: #fff;
  --ink: #1f191f;
  --muted: #6f666d;
  --line: rgba(66, 20, 59, 0.14);
  --title: "Plus Jakarta Sans", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --container: 1180px;
  --wide: 1440px;
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow: 0 24px 80px rgba(34, 7, 31, 0.14);
  color-scheme: only light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); margin: 0; padding: 0; min-height: 100%; }
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 12px 18px;
  color: var(--white);
  background: var(--eggplant);
  border-radius: 0 0 12px 12px;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  background: var(--paper);
  pointer-events: none;
  animation: preloaderOut .75s ease 1.1s forwards;
}
.preloader img { width: 150px; animation: preloaderLogo .9s ease both; }
@keyframes preloaderLogo { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes preloaderOut { to { opacity: 0; visibility: hidden; } }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.container-wide { width: min(calc(100% - 48px), var(--wide)); margin-inline: auto; }
.section { padding: 132px 0; }
/* Sections avec mockups : plus compactes sur desktop */
.feature-story.section, .self-section.section, .conversation-section.section { padding: 80px 0; }
.security-section.section { padding: 80px 0; }
/* Séparer column-gap et row-gap pour les grilles à 3 éléments */
.product-intro-grid, .feature-story-grid, .self-grid, .conversation-grid {
  column-gap: clamp(50px, 8vw, 118px);
  row-gap: 28px;
}
.section-tight { padding: 34px 0 96px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--title); }
h1, h3 { line-height: 1.06; }
h1 { font-size: clamp(3.575rem, 6.875vw, 7.275rem); font-weight: 500; letter-spacing: 0.005em; }
h2 {
  font-size: clamp(2.6rem, 5.2vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.12;
}
h3 { font-size: 1.35rem; font-weight: 500; letter-spacing: 0.01em; }

.section-kicker,
.eyebrow {
  margin-bottom: 18px;
  color: var(--eggplant);
  font-family: var(--title);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow-light, .section-kicker-light { color: rgba(255,255,255,.78); }

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: var(--eggplant);
  font-family: var(--title);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-2px); background: var(--eggplant-soft); }
.button:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
.button-compact { min-height: 43px; padding-inline: 20px; font-size: .84rem; }
.button-light { background: var(--paper); color: var(--eggplant); }
.button-light:hover { background: var(--white); }
.button-ghost-light { background: transparent; border-color: rgba(255,255,255,.55); color: var(--white); }
.button-ghost-light:hover { background: rgba(255,255,255,.12); }
.button-full { width: 100%; }
.button:disabled { opacity: .55; cursor: wait; transform: none; }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  padding: 18px 0;
  padding-top: calc(18px + env(safe-area-inset-top, 0px));
  background: transparent;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  padding: 12px 0;
  padding-top: calc(12px + env(safe-area-inset-top, 0px));
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(34,7,31,.08);
}
.header-inner {
  width: min(calc(100% - 48px), 1420px);
  min-height: 58px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand img { width: 104px; display: block; }
.brand .brand-dark { display: none; }
.site-header.scrolled .brand .brand-light { display: none; }
.site-header.scrolled .brand .brand-dark { display: block; }
.primary-navigation { display: flex; justify-content: center; align-items: center; gap: 28px; }
.primary-navigation a { color: rgba(255,255,255,.9); font-family: var(--title); font-size: .84rem; font-weight: 500; letter-spacing: 0.015em; transition: color .3s ease, opacity .3s ease; }
.primary-navigation a:hover { opacity: .65; }
.site-header.scrolled .primary-navigation a { color: var(--eggplant); }
.site-header.scrolled .header-button { /* bouton CTA reste lisible sur fond clair */ }
.menu-button { display: none; }
.menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 990;
  background: rgba(0, 0, 0, .25);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .72);
  font-family: var(--title);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .04em;
}
@media (min-width: 640px) {
  .lang-switch { font-size: .875rem; }
}
.lang-switch button {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}
.lang-switch button.is-active {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.lang-switch .lang-sep { opacity: .45; }
.lang-switch-menu { display: none; }
.mobile-bar-tools { display: none; }
.site-header.scrolled .lang-switch,
body.legal-page .lang-switch,
body.safety-page .lang-switch,
body.community-page .lang-switch,
:is(body.contact-page, body.help-page) .lang-switch {
  color: rgba(66, 20, 59, .55);
}
.site-header.scrolled .lang-switch button.is-active,
body.legal-page .lang-switch button.is-active,
body.safety-page .lang-switch button.is-active,
body.community-page .lang-switch button.is-active,
:is(body.contact-page, body.help-page) .lang-switch button.is-active {
  color: var(--eggplant);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: transparent;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(28,5,25,.9) 0%, rgba(28,5,25,.67) 42%, rgba(28,5,25,.13) 74%, rgba(28,5,25,.1) 100%),
    linear-gradient(0deg, rgba(22,5,20,.58), transparent 58%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 190px;
  padding-bottom: 140px;
  color: var(--white);
}
.hero h1 { max-width: 970px; margin-bottom: 28px; }
.hero-intro { max-width: 690px; margin-bottom: 36px; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.7vw, 1.3rem); }

/* Desktop : hero plus compact pour garder les deux CTA au-dessus de la ligne de flottaison */
@media (min-width: 921px) {
  .hero-content {
    padding-top: 120px;
    padding-bottom: 136px;
  }
  .hero .eyebrow { margin-bottom: 14px; }
  .hero h1 {
    max-width: 40rem;
    margin-bottom: 16px;
  }
  .hero-intro {
    max-width: 42rem;
    margin-bottom: 24px;
    font-size: 1.125rem;
    line-height: 1.55;
  }
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.manifesto { background: var(--paper); }
.manifesto-inner { max-width: 1120px; }
.manifesto h2 { margin: 0; color: var(--ink); }
.manifesto h2 em { color: var(--eggplant); font-style: normal; }

.photo-frame { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--pink); }
.photo-frame img { width: 100%; height: min(72vw, 760px); min-height: 520px; object-fit: cover; }
.photo-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  max-width: 620px;
  padding: 28px 30px;
  border-radius: var(--radius-md);
  color: var(--white);
  background: rgba(34,7,31,.72);
  backdrop-filter: blur(16px);
}
.photo-caption p { margin: 0; font-family: var(--title); font-size: clamp(1.35rem, 2.6vw, 2.4rem); line-height: 1.18; }

.product-intro-grid,
.feature-story-grid,
.conversation-grid,
.security-layout,
.gold-layout,
.about-grid,
.faq-grid,
.waitlist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(50px, 8vw, 118px);
  align-items: center;
}
.product-intro-copy p:not(.section-kicker),
.feature-story-copy > p:not(.section-kicker),
.voice-copy > p:not(.section-kicker),
.conversation-copy > p:not(.section-kicker),
.about-copy > p:not(.section-kicker),
.security-heading > p:not(.section-kicker),
.gold-copy > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 1.08rem;
}
/* Placement grille : texte / tags ou faits ; mockup sur 2 rangées */
.product-intro-grid { grid-template-rows: auto auto; align-items: center; }
.product-intro-copy   { grid-column: 1; grid-row: 1; }
.product-stage        { grid-column: 2; grid-row: 1 / 3; align-self: center; }
.product-intro-bottom { grid-column: 1; grid-row: 2; }

.product-stage { min-height: 0; position: relative; display: grid; place-items: center; }
.product-stage-sage { background: transparent; }
.product-stage img { width: min(90%, 670px); transform: translateY(54px) rotate(-2deg) translateZ(0); filter: drop-shadow(0 24px 35px rgba(34,7,31,.18)); backface-visibility: hidden; will-change: filter; }
.stage-label { position: absolute; z-index: 2; top: 28px; left: 30px; color: var(--eggplant); font-family: var(--title); font-size: .75rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.stage-label-light { color: rgba(255,255,255,.72); }
.feature-pills { display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 28px 0 0; list-style: none; }
.feature-pills li { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--eggplant); background: rgba(255,255,255,.7); font-size: .84rem; font-weight: 600; }

.section-pink { background: var(--pink-light); }
.feature-story.section-pink { background: var(--paper); }
.feature-story-grid { grid-template-rows: auto auto; align-items: center; }
.feature-story-reverse .feature-story-media { grid-column: 1; grid-row: 1 / 3; align-self: center; order: unset; }
.feature-story-copy   { grid-column: 2; grid-row: 1; }
.feature-story-bottom { grid-column: 2; grid-row: 2; }

.feature-story-media { min-height: 0; display: grid; place-items: center; position: relative; background: transparent; }
.feature-story-media img { width: min(90%, 670px); transform: translateZ(0); filter: drop-shadow(0 28px 50px rgba(34,7,31,.2)); backface-visibility: hidden; will-change: filter; }
.feature-facts { margin-top: 0; border-top: 0; }
.feature-facts > div { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.feature-facts > div:last-child { border-bottom: 0; }
.feature-facts strong { font-family: var(--title); }
.feature-facts span { color: var(--muted); }

.voice-section { background: var(--paper); }
.voice-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: center; }
.audio-demo { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 18px; margin-top: 38px; padding: 18px 22px; border-radius: 999px; color: var(--white); background: var(--sage); }
.audio-demo button { width: 42px; height: 42px; display: grid; place-items: center; border: 0; border-radius: 50%; color: var(--eggplant); background: var(--paper); }
.audio-demo button svg { width: 18px; fill: currentColor; }
.wave { height: 30px; display: flex; align-items: center; gap: 4px; }
.wave i { flex: 1; min-width: 3px; max-width: 5px; height: 35%; border-radius: 4px; background: rgba(255,255,255,.8); transition: height .25s ease; }
.wave i:nth-child(2n) { height: 72%; }
.wave i:nth-child(3n) { height: 48%; }
.audio-demo.playing .wave i { animation: wavePulse .75s ease-in-out infinite alternate; }
.audio-demo.playing .wave i:nth-child(2n) { animation-delay: -.3s; }
.audio-demo.playing .wave i:nth-child(3n) { animation-delay: -.5s; }
@keyframes wavePulse { to { height: 95%; } }
.voice-quote { min-height: 340px; display: flex; align-items: center; padding: 36px 38px; border-radius: var(--radius-lg); background: var(--pink); }
.voice-quote blockquote { margin: 0; color: var(--eggplant); font-family: var(--title); font-size: clamp(1.6rem, 3vw, 3.2rem); font-weight: 500; line-height: 1.12; letter-spacing: -.03em; text-align: left; }

.self-section { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, #1f061c 0%, #42143b 56%, #69255f 100%); }
.self-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  grid-template-rows: auto auto;
  column-gap: 80px;
  row-gap: 36px;
  align-items: center;
}
.self-copy   { grid-column: 1; grid-row: 1; }
.self-phone  { grid-column: 2; grid-row: 1 / 3; align-self: center; }
.self-bottom { grid-column: 1; grid-row: 2; }
.self-copy h2 { max-width: 680px; }
.self-copy > p:not(.section-kicker):not(.fine-print) { max-width: 650px; color: rgba(255,255,255,.75); font-size: 1.08rem; }
.self-steps { margin: 0; padding: 0; list-style: none; }
.self-steps li { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.self-steps li > span:first-child {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--eggplant);
  background: #F5E6EB;
  font-family: var(--title);
  font-size: .75rem;
  font-weight: 600;
}
.self-steps li > span:last-child {
  width: auto;
  height: auto;
  display: block;
  border-radius: 0;
  background: none;
  color: #fff;
  font-family: var(--body);
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (min-width: 640px) {
  .self-steps li > span:first-child { width: 32px; height: 32px; font-size: .875rem; }
  .self-steps li > span:last-child { font-size: 1rem; }
}
.fine-print { max-width: 630px; margin-top: 24px; color: rgba(255,255,255,.7); font-size: .75rem; }
.self-phone { min-height: 0; position: relative; display: grid; place-items: center; }
.self-phone img { position: relative; z-index: 2; width: min(90%, 670px); transform: rotate(3deg) translateZ(0); filter: drop-shadow(0 36px 60px rgba(0,0,0,.35)); backface-visibility: hidden; will-change: filter; }
.self-orb { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .65; }
.self-orb-one { width: 560px; height: 560px; right: -130px; top: 70px; background: var(--pink); }
.self-orb-two { width: 340px; height: 340px; right: 24%; bottom: -170px; background: var(--sage); }

.conversation-section { background: var(--paper); }
.conversation-grid { grid-template-rows: auto auto; align-items: center; }
.conversation-media   { grid-column: 1; grid-row: 1 / 3; align-self: center; }
.conversation-copy    { grid-column: 2; grid-row: 1; }
.conversation-bottom  { grid-column: 2; grid-row: 2; }

.conversation-media { min-height: 0; display: grid; place-items: center; background: transparent; }
.conversation-media img { width: min(50%, 340px); transform: translateY(25px) translateZ(0); filter: drop-shadow(0 26px 46px rgba(0,0,0,.34)); backface-visibility: hidden; will-change: filter; }
.metric-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 0; }
.metric-pair div { min-height: 180px; display: flex; flex-direction: column; justify-content: space-between; padding: 26px; border-radius: var(--radius-md); background: var(--sage-light); }
.metric-pair strong { color: var(--eggplant); font-family: var(--title); font-size: 3.4rem; line-height: 1; }
.metric-pair span { color: var(--muted); font-size: .88rem; }

.security-section { background: var(--paper); }
.security-heading { margin-bottom: 48px; }
.security-heading h2 { margin-bottom: 22px; }
.security-heading > p:not(.section-kicker) { max-width: 730px; }
/* Placement grille : media min 921 / max 920 (sinon order mobile est inopérant). */
.security-visual { min-height: 0; display: grid; place-items: center; background: transparent; }
.security-visual img { width: min(90%, 670px); transform: translateZ(0); filter: drop-shadow(0 26px 52px rgba(34,7,31,.16)); backface-visibility: hidden; will-change: filter; }
.security-features { align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.security-item { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 28px 0; border-top: 1px solid var(--line); }
.security-item:first-child { border-top: 0; }
.security-item:last-child { border-bottom: 0; }
.security-item > span { color: var(--eggplant); font-family: var(--title); font-size: .76rem; font-weight: 500; }
.security-item h3 { margin-bottom: 10px; }
.security-item p { margin: 0; color: var(--muted); font-size: .94rem; }

.gold-section { color: var(--white); background: linear-gradient(135deg, #1f061c 0%, #42143b 56%, #69255f 100%); }
.gold-layout { grid-template-columns: .9fr 1.1fr; }
.gold-copy > p:not(.section-kicker) { color: rgba(255,255,255,.7); }
.gold-price { display: flex; align-items: center; gap: 18px; margin-top: 34px; }
.gold-price strong { font-family: var(--title); font-size: 3.8rem; line-height: 1; }
.gold-price span { color: rgba(255,255,255,.62); font-size: .82rem; line-height: 1.35; }
.gold-card { position: relative; overflow: hidden; padding: 40px; border: 1px solid rgba(255,255,255,.25); border-radius: 34px; color: var(--eggplant-deep); background: linear-gradient(145deg, #fff7db, #ffc759 52%, #e3bac6 120%); box-shadow: 0 36px 90px rgba(0,0,0,.28); transform: rotate(1.5deg); }
.gold-card::after { content: ""; position: absolute; width: 270px; height: 270px; right: -100px; top: -130px; border-radius: 50%; background: rgba(255,255,255,.35); }
.gold-card-top { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; }
.gold-card-top img { width: 105px; }
.gold-card-top span { font-family: var(--title); font-weight: 500; letter-spacing: .18em; }
.gold-card ul { position: relative; z-index: 2; margin: 0; padding: 0; list-style: none; }
.gold-card li { display: flex; justify-content: space-between; gap: 24px; padding: 19px 0; border-bottom: 1px solid rgba(34,7,31,.2); }
.gold-card li span { font-weight: 500; }
.gold-card li strong { font-family: var(--title); }
.gold-card > p { position: relative; z-index: 2; margin: 24px 0 0; font-size: .72rem; opacity: .68; }

.about-section { background: var(--paper); }
/* Réduit le vide avant la FAQ (pb-10 à partir de md) — spécificité > .section */
.about-section.section { padding-bottom: 40px; }
.about-grid { grid-template-columns: 1fr; }
.about-copy > p:not(.section-kicker) { max-width: none; }

.faq-section { background: var(--paper); }
/* Réduit le vide après le manifeste (pt-10 à partir de md) */
.faq-section.section { padding-top: 40px; }
.faq-grid { align-items: start; }
.faq-heading { position: sticky; top: 132px; }
.faq-heading h2 { margin-bottom: 20px; }
.faq-heading > p:not(.section-kicker) { color: var(--muted); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:first-child { border-top: 0; }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary { padding: 25px 0; display: flex; justify-content: space-between; gap: 20px; list-style: none; cursor: pointer; font-family: var(--title); font-size: 1.08rem; font-weight: 500; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--eggplant); font-size: 1.4rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 650px; padding: 0 44px 24px 0; color: var(--muted); }

.waitlist-section { position: relative; min-height: 920px; display: grid; align-items: center; overflow: hidden; padding: 120px 0; color: var(--white); background: var(--eggplant-deep); }
.waitlist-photo, .waitlist-photo img, .waitlist-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.waitlist-photo img { object-fit: cover; }
.waitlist-overlay { background: linear-gradient(90deg, rgba(27,4,24,.94), rgba(27,4,24,.64) 52%, rgba(27,4,24,.3)); }
.waitlist-grid { position: relative; z-index: 2; align-items: center; }
.waitlist-copy h2 { margin-bottom: 20px; }
.waitlist-copy > p:not(.eyebrow) { max-width: 610px; color: rgba(255,255,255,.75); font-size: 1.1rem; }
.waitlist-form { padding: 36px; border-radius: var(--radius-lg); color: var(--ink); background: rgba(250,250,245,.97); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.form-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.form-heading span { color: var(--eggplant); font-family: var(--title); font-size: 1.5rem; font-weight: 500; }
.form-heading strong { padding: 7px 10px; border-radius: 999px; color: var(--eggplant); background: var(--pink); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.waitlist-form > label, .form-row label { display: flex; flex-direction: column; gap: 8px; margin-bottom: 15px; }
.waitlist-form label > span:first-child:not(.check-control span) { color: var(--eggplant); font-family: var(--title); font-size: .78rem; font-weight: 500; }
.waitlist-form input, .waitlist-form select { width: 100%; min-height: 52px; padding: 0 14px; border: 1px solid rgba(66,20,59,.2); border-radius: 13px; color: var(--ink); background: var(--white); outline: none; }
.waitlist-form input:focus, .waitlist-form select:focus { border-color: var(--eggplant); box-shadow: 0 0 0 3px rgba(66,20,59,.1); }
.check-control { display: grid !important; grid-template-columns: 20px 1fr; align-items: start; gap: 10px !important; margin: 5px 0 18px !important; }
.check-control input { width: 18px; height: 18px; min-height: 0; margin-top: 3px; accent-color: var(--eggplant); }
.check-control span { color: var(--muted); font-size: .75rem; }
.form-status { min-height: 24px; margin: 12px 0 0; text-align: center; font-weight: 600; font-size: .88rem; }
.form-status.success { color: #217249; }
.form-status.error { color: #a52535; }
.form-legal { margin: 8px 0 0; color: var(--muted); text-align: center; font-size: .68rem; }
.form-legal a { text-decoration: underline; }
.honeypot { position: absolute !important; left: -10000px !important; }

.site-footer { padding: 82px 0 26px; color: var(--white); background: var(--eggplant-deep); }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 52px; }
.footer-brand img { width: 124px; }
.footer-brand p { max-width: 280px; margin-top: 18px; color: rgba(255,255,255,.58); }
.footer-top h3 { margin-bottom: 18px; color: var(--pink); font-size: .82rem; letter-spacing: .04em; }
.footer-top a { display: block; margin: 8px 0; color: rgba(255,255,255,.66); font-size: .84rem; }
.footer-top a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 60px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.45); font-size: .75rem; }

.reveal, .reveal-image { opacity: 0; transform: translateY(32px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,.61,.36,1); }
.reveal-image { transform: translateY(24px) scale(.985); }
.reveal.visible, .reveal-image.visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .primary-navigation { gap: 17px; }
  .primary-navigation a { font-size: .78rem; }
  .header-inner { grid-template-columns: 120px 1fr auto; }
  .product-intro-grid, .feature-story-grid, .conversation-grid, .security-layout, .gold-layout, .about-grid, .faq-grid, .waitlist-grid { gap: 58px; }
}

/* Desktop : mockups standardisés, textes collés aux tags/listes, section sécurité compacte */
@media (min-width: 921px) {
  .product-intro.section {
    padding-top: 56px;
    padding-bottom: 64px;
  }
  .feature-story.section,
  .self-section.section,
  .conversation-section.section { padding: 80px 0; }
  .security-section.section { padding: 48px 0; }

  .product-intro-grid,
  .feature-story-grid,
  .conversation-grid {
    column-gap: clamp(50px, 8vw, 118px);
    row-gap: 36px;
  }
  .product-intro-grid {
    row-gap: 28px;
    align-items: center;
  }
  .self-grid {
    column-gap: 80px;
    row-gap: 36px;
  }

  .product-intro-copy,
  .feature-story-copy,
  .self-copy,
  .conversation-copy { align-self: end; }
  .product-intro-bottom,
  .feature-story-bottom,
  .self-bottom,
  .conversation-bottom { align-self: start; }

  .product-intro-copy > p:not(.section-kicker),
  .feature-story-copy > p:not(.section-kicker),
  .self-copy > p:not(.section-kicker):not(.fine-print),
  .conversation-copy > p:not(.section-kicker) { margin-bottom: 0; }

  .feature-pills { margin: 0; gap: 12px; }

  .product-stage img,
  .feature-story-media img {
    width: auto;
    max-width: min(100%, 460px);
    max-height: 560px;
    height: auto;
    object-fit: contain;
    transform: translateZ(0);
  }
  .product-stage img { transform: rotate(-2deg) translateZ(0); }

  .self-phone img {
    width: auto;
    max-width: min(100%, 460px);
    max-height: 560px;
    height: auto;
    object-fit: contain;
    transform: rotate(3deg) translateZ(0);
  }

  .conversation-media img {
    width: auto;
    max-width: min(100%, 380px);
    max-height: 520px;
    height: auto;
    object-fit: contain;
    margin-inline: auto;
    transform: translateZ(0);
  }

  .security-heading { margin-bottom: 36px; }
  .security-heading > p:not(.section-kicker) { margin-bottom: 0; }
  .security-layout { align-items: center; }
  /* Desktop : liste à gauche, mockup à droite, même ligne */
  .security-features { grid-column: 1; grid-row: 1; }
  .security-visual { grid-column: 2; grid-row: 1; min-height: 0; }
  .security-visual img {
    width: auto;
    max-width: min(100%, 400px);
    max-height: 480px;
    height: auto;
    object-fit: contain;
  }
  .security-item { padding: 15px 0; }
  .security-item h3 {
    margin-bottom: 6px;
    font-size: 1.125rem;
    font-weight: 500;
  }
  .security-item p {
    font-size: .875rem;
    line-height: 1.55;
  }

  /* Titres desktop : +4px vs ancien palier 44/48 — hero inclus */
  .hero h1,
  h2 {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.02em;
  }

  /* Afelia Gold : carte à gauche, texte à droite */
  .gold-card { grid-column: 1; grid-row: 1; }
  .gold-copy { grid-column: 2; grid-row: 1; }
}

@media (min-width: 1280px) {
  .hero h1,
  h2 { font-size: 3.25rem; }
}

@media (max-width: 920px) {
  body.menu-open { overflow: hidden; }
  .section { padding: 96px 0; }
  .site-header {
    padding: 12px 0;
    padding-top: calc(12px + env(safe-area-inset-top, 0px));
    background: transparent;
  }
  .site-header.scrolled {
    background: var(--paper);
  }
  .header-inner { grid-template-columns: 1fr auto; min-height: 54px; }
  .header-tools { display: none; }
  .header-button { display: none; }
  .mobile-bar-tools { display: flex; align-items: center; gap: 10px; }
  .lang-switch-mobile {
    gap: 6px;
    color: rgba(255, 255, 255, .9);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .05em;
  }
  .lang-switch-mobile button {
    opacity: .6;
    font-weight: 600;
    text-decoration: none;
  }
  .lang-switch-mobile button.is-active {
    opacity: 1;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .site-header.scrolled .lang-switch-mobile,
  body.legal-page .lang-switch-mobile,
  body.safety-page .lang-switch-mobile,
  body.community-page .lang-switch-mobile,
  :is(body.contact-page, body.help-page) .lang-switch-mobile {
    color: #1C0E1F;
  }
  .site-header.scrolled .lang-switch-mobile button.is-active,
  body.legal-page .lang-switch-mobile button.is-active,
  body.safety-page .lang-switch-mobile button.is-active,
  body.community-page .lang-switch-mobile button.is-active,
  :is(body.contact-page, body.help-page) .lang-switch-mobile button.is-active {
    color: #1C0E1F;
  }
  .site-header { padding-top: env(safe-area-inset-top, 12px); }
  body.menu-open .menu-backdrop { display: block; }
  body.menu-open .site-header { pointer-events: none; }
  body.menu-open .mobile-bar-tools,
  body.menu-open .menu-button,
  body.menu-open .primary-navigation { pointer-events: auto; }
  .menu-button { display: flex; position: relative; z-index: 1001; width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 7px; border: 0; border-radius: 50%; background: var(--paper); }
  .menu-button span { width: 20px; height: 2px; background: var(--eggplant); transition: transform .25s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .primary-navigation {
    position: fixed;
    z-index: 1001;
    top: calc(78px + env(safe-area-inset-top, 0px));
    right: 18px;
    left: 18px;
    bottom: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 22px 22px 20px;
    border-radius: var(--radius-md);
    background: var(--paper);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: .25s ease;
  }
  .primary-navigation.open { opacity: 1; visibility: visible; transform: none; }
  .primary-navigation a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    color: var(--eggplant);
    font-size: 1rem;
    font-weight: 500;
  }
  .primary-navigation a:last-child { border-bottom: 0; }
  .hero-content { padding-top: 170px; padding-bottom: 110px; }
  .hero h1 { font-size: clamp(3.375rem, 9.875vw, 5.875rem); }
  .hero-shade { background: linear-gradient(0deg, rgba(24,4,22,.92), rgba(24,4,22,.35) 86%); }
  .product-intro-grid, .feature-story-grid, .voice-grid, .self-grid, .conversation-grid, .security-layout, .gold-layout, .about-grid, .faq-grid, .waitlist-grid { grid-template-columns: 1fr; }
  /* Reset placements explicites et réordonner : texte → mockup → éléments secondaires */
  .product-intro-grid, .feature-story-grid, .self-grid, .conversation-grid { grid-template-rows: auto; }
  /* Reset placements explicites — spécificité identique aux règles desktop */
  .product-intro-copy, .product-stage, .product-intro-bottom,
  .feature-story-copy, .feature-story-bottom,
  .self-copy, .self-phone, .self-bottom,
  .conversation-media, .conversation-copy, .conversation-bottom { grid-column: auto; grid-row: auto; align-self: auto; }
  .feature-story-reverse .feature-story-media { grid-column: auto; grid-row: auto; align-self: auto; }
  .gold-copy, .gold-card { grid-column: auto; grid-row: auto; }
  /* Sécurité mobile : mockup rangée 1, liste rangée 2 */
  .security-visual {
    grid-column: 1;
    grid-row: 1;
  }
  .security-features {
    grid-column: 1;
    grid-row: 2;
  }
  /* Ordre visuel : texte → mockup → éléments secondaires */
  .product-intro-copy   { order: 1; } .product-stage        { order: 2; } .product-intro-bottom { order: 3; }
  .feature-story-copy   { order: 1; } .feature-story-reverse .feature-story-media { order: 2; } .feature-story-bottom { order: 3; }
  .self-copy            { order: 1; } .self-phone           { order: 2; } .self-bottom          { order: 3; }
  .conversation-copy    { order: 1; } .conversation-media   { order: 2; } .conversation-bottom  { order: 3; }
  .gold-copy { order: 1; } .gold-card { order: 2; }
  .product-stage, .feature-story-media, .conversation-media, .security-visual { min-height: 620px; }
  .voice-quote { min-height: 280px; }
  .self-phone { min-height: 620px; }
  .about-grid { gap: 38px; }
  .faq-heading { position: static; }
  .waitlist-section { min-height: auto; }
  .waitlist-overlay { background: rgba(24,4,22,.78); }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-top > div:last-child { grid-column: 2; }
}

@media (min-width: 640px) and (max-width: 920px) {
  .mobile-bar-tools { gap: 16px; }
}

@media (max-width: 640px) {
  .container, .container-wide { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  .section-tight { padding: 12px 0 64px; }
  h1 { font-size: 3.425rem; }
  h2 { font-size: 2.75rem; }
  .hero { min-height: 860px; align-items: flex-end; }
  .hero-video { object-position: 56% center; }
  .hero-content { padding-top: 150px; padding-bottom: 80px; }
  .hero-intro { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .photo-frame { border-radius: var(--radius-md); }
  .photo-frame img { min-height: 590px; height: 78vh; object-position: 43% center; }
  .photo-caption { left: 14px; right: 14px; bottom: 14px; padding: 22px; }
  .product-stage, .feature-story-media, .conversation-media, .security-visual { min-height: 500px; }
  .product-stage img { width: 90%; transform: translateY(58px) rotate(-2deg) translateZ(0); }
  .feature-story-media img { width: 90%; }
  .voice-grid { gap: 42px; }
  .audio-demo { grid-template-columns: 42px 1fr; padding: 14px; }
  .audio-demo > span { display: none; }
  .voice-quote { min-height: 220px; padding: 26px 28px; }
  .self-grid { gap: 18px; }
  .self-phone { min-height: 500px; }
  .self-phone img { width: 90%; }
  .conversation-media img { width: 55%; }
  .metric-pair { grid-template-columns: 1fr; }
  .metric-pair div { min-height: 145px; }
  .security-heading { margin-bottom: 50px; }
  .security-item { grid-template-columns: 42px 1fr; }
  .gold-card { padding: 27px 22px; transform: none; }
  .gold-card li { flex-direction: column; gap: 4px; }
  .gold-price strong { font-size: 3rem; }
  .faq-list summary { font-size: 1rem; }
  .waitlist-section { padding: 78px 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .waitlist-form { padding: 24px 18px; border-radius: var(--radius-md); }
  .form-heading { align-items: flex-start; flex-direction: column; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-top > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

/* Mobile compact : après 920/640 pour gagner en cascade */
@media (max-width: 767px) {
  .section { padding: 40px 0; }
  .feature-story.section,
  .self-section.section,
  .conversation-section.section,
  .security-section.section { padding: 40px 0; }

  h2 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }

  .section-kicker,
  .eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: .12em;
    margin-bottom: 6px;
  }

  /* Harmonisé sur le corps Afelia Gold mobile (0.875rem / 1.6) ; couleur inchangée par section */
  .product-intro-copy > p:not(.section-kicker),
  .feature-story-copy > p:not(.section-kicker),
  .voice-copy > p:not(.section-kicker),
  .self-copy > p:not(.section-kicker):not(.fine-print),
  .conversation-copy > p:not(.section-kicker),
  .security-heading > p:not(.section-kicker),
  .gold-copy > p:not(.section-kicker),
  .about-copy > p:not(.section-kicker),
  .faq-heading > p:not(.section-kicker),
  .waitlist-copy > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.625;
    margin-bottom: 24px;
  }

  .hero {
    position: relative;
    top: 0;
    width: 100%;
    min-height: 100dvh;
    height: 100dvh;
    margin: 0;
    padding: 0;
    align-items: flex-end;
    overflow: hidden;
    background: transparent;
  }
  /* Plein cadre jusqu'au bord physique, y compris sous l'encoche */
  .hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    margin: 0;
    object-fit: cover;
    object-position: center center;
    transform: none;
  }
  .hero-content {
    padding-top: 96px;
    padding-bottom: 24px;
  }

  .about-section.section { padding-bottom: 24px; }
  .faq-section.section { padding-top: 24px; }
  .hero .eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    margin-bottom: 8px;
  }
  .hero h1 {
    max-width: 100%;
    margin-bottom: 12px;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.18;
  }
  .hero-intro {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.625;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-actions .button {
    width: 100%;
    min-height: auto;
    padding: 12px 18px;
    font-size: 0.875rem;
  }

  .product-stage,
  .feature-story-media,
  .conversation-media,
  .security-visual,
  .self-phone {
    min-height: 0;
    place-items: center;
  }
  .product-stage img,
  .feature-story-media img,
  .self-phone img,
  .conversation-media img,
  .security-visual img {
    width: auto;
    max-width: min(100%, 260px);
    max-height: 380px;
    height: auto;
    margin-inline: auto;
    object-fit: contain;
    transform: translateZ(0);
  }

  /* Mockup → tags : ensemble compact sur téléphone */
  .product-intro-grid {
    row-gap: 20px;
  }
  .feature-pills {
    margin-top: 0;
  }

  /* FAQ : moins de vide sous la description avant la 1re question */
  .faq-grid {
    gap: 24px;
  }
  .faq-heading > p:not(.section-kicker) {
    margin-bottom: 0;
  }
  .faq-list summary {
    padding-top: 18px;
  }

}

/* Saut de ligne conversation : visible uniquement sous 768px */
@media (min-width: 768px) {
  .mobile-break { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .preloader { display: none; }
  .reveal, .reveal-image { opacity: 1; transform: none; }
}

/* ── Pages légales ─────────────────────────────────────────────────────────── */

body.legal-page .site-header,
body.safety-page .site-header,
body.community-page .site-header,
:is(body.contact-page, body.help-page) .site-header {
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(34, 7, 31, .08);
}

body.legal-page .brand .brand-light,
body.safety-page .brand .brand-light,
body.community-page .brand .brand-light,
:is(body.contact-page, body.help-page) .brand .brand-light { display: none; }
body.legal-page .brand .brand-dark,
body.safety-page .brand .brand-dark,
body.community-page .brand .brand-dark,
:is(body.contact-page, body.help-page) .brand .brand-dark { display: block; }
body.legal-page .primary-navigation a,
body.safety-page .primary-navigation a,
body.community-page .primary-navigation a,
:is(body.contact-page, body.help-page) .primary-navigation a { color: var(--eggplant); }

.legal-main {
  padding-top: calc(88px + env(safe-area-inset-top, 0px));
}

.legal-content {
  width: min(calc(100% - 48px), 48rem);
  margin-inline: auto;
  padding: 64px 0 80px;
}

@media (min-width: 1024px) {
  .legal-content {
    max-width: 56rem;
    width: min(calc(100% - 48px), 56rem);
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

.legal-content h1 {
  margin: 0 0 12px;
  color: var(--eggplant);
  font-family: var(--title);
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .legal-content h1 { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .legal-content h1 { font-size: 3rem; }
}

.legal-content h1 em,
.legal-content h1 .font-serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

[data-legal="en"] { display: none; }
html[lang="en"] [data-legal="fr"] { display: none; }
html[lang="en"] [data-legal="en"] { display: block; }

.legal-updated {
  margin: 0 0 48px;
  color: var(--muted);
  font-size: .8125rem;
  line-height: 1.5;
}

.legal-content > p,
.legal-content li {
  color: #4a4449;
  font-size: 15px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .legal-content > p,
  .legal-content li { font-size: 16px; }
}

.legal-content > p {
  margin: 0 0 24px;
}

.legal-content h2 {
  margin: 48px 0 16px;
  color: var(--eggplant);
  font-family: var(--title);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content h3 {
  margin: 24px 0 12px;
  color: var(--ink);
  font-family: var(--title);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.3;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 24px;
  padding-left: 1.4rem;
}

.legal-content li {
  margin-bottom: 10px;
}

.legal-content li:last-child { margin-bottom: 0; }

.legal-content a {
  color: var(--eggplant);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover { color: var(--eggplant-soft); }

/* —— Conseils de sécurité —— */
.safety-page {
  background: var(--paper);
}

.safety-main {
  /* Header fixe (~78–94px) + air visible sous la nav */
  padding-top: calc(128px + env(safe-area-inset-top, 0px));
  padding-bottom: 48px;
}

@media (min-width: 1024px) {
  .safety-main {
    padding-top: calc(140px + env(safe-area-inset-top, 0px));
    padding-bottom: 64px;
  }
}

.safety-container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 24px;
}

.safety-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(34, 7, 31, .12);
}

@media (min-width: 768px) {
  .safety-hero {
    height: 400px;
  }
}

.safety-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Cadre le couple dans le bandeau (un peu d’air au-dessus des têtes) */
  object-position: center 32%;
}

.safety-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(34, 7, 31, .28) 0%,
    rgba(34, 7, 31, .42) 100%
  );
}

.safety-hero-title {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin: 0;
  padding: 0 24px;
  color: #fff;
  font-family: var(--title);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.15;
  text-align: center;
}

@media (min-width: 768px) {
  .safety-hero-title {
    font-size: 2.25rem;
    font-weight: 600;
  }
}

@media (min-width: 1024px) {
  .safety-hero-title {
    font-size: 3rem;
  }
}

.safety-block {
  margin-top: 48px;
}

.safety-block:first-of-type {
  margin-top: 40px;
}

.safety-block-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--eggplant-deep);
  font-family: var(--title);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.3;
}

.safety-block-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #F4F2F8;
  color: #2A2140;
}

.safety-block-icon svg {
  display: block;
}

.safety-block:not(:first-of-type) .safety-block-title {
  margin-top: 8px;
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .safety-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.safety-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  margin: 0;
  padding: 28px 24px;
  border: 1px solid rgba(66, 21, 59, .2);
  border-radius: 16px;
  background: #fff;
  color: #1c0e1f;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

@media (min-width: 768px) {
  .safety-card {
    min-height: 160px;
    font-size: 16px;
  }
}

/* —— Règles de la communauté —— */
.community-page {
  background: var(--paper);
}

.community-main {
  padding-top: calc(88px + env(safe-area-inset-top, 0px));
}

.community-container {
  width: min(calc(100% - 48px), 56rem);
  margin-inline: auto;
  padding: 64px 0 80px;
}

@media (min-width: 1024px) {
  .community-container {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

.community-kicker {
  margin: 0 0 16px;
  color: var(--eggplant);
  font-family: var(--title);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.community-container h1 {
  margin: 0 0 16px;
  color: #1C0E1F;
  font-family: var(--title);
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .community-container h1 { font-size: 2.25rem; font-weight: 600; }
}

@media (min-width: 1024px) {
  .community-container h1 { font-size: 3rem; }
}

.community-container h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.community-lead {
  margin: 0 0 40px;
  max-width: 42rem;
  color: #4a4449;
  font-size: 15px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .community-lead {
    margin-bottom: 48px;
    font-size: 16px;
  }
}

.community-oath {
  margin: 0 0 48px;
  padding: 36px 28px;
  border: 1px solid rgba(66, 21, 59, .18);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 12px 40px rgba(34, 7, 31, .08);
}

@media (min-width: 768px) {
  .community-oath { padding: 44px 40px; }
}

.community-oath h2 {
  margin: 0 0 24px;
  color: var(--eggplant-deep);
  font-family: var(--title);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.3;
  text-align: center;
}

.community-oath ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.community-oath li {
  position: relative;
  margin: 0 0 14px;
  padding-left: 1.35em;
  color: #1c0e1f;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.community-oath li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--eggplant);
}

.community-oath li:last-child { margin-bottom: 0; }

@media (min-width: 768px) {
  .community-oath li { font-size: 16px; }
}

.community-oath-warning {
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(66, 21, 59, .14);
  color: var(--muted);
  font-size: .8125rem;
  font-style: italic;
  line-height: 1.55;
  text-align: center;
}

.community-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: 0 0 48px;
}

@media (min-width: 768px) {
  .community-pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.community-pillar h3 {
  margin: 16px 0 10px;
  color: var(--eggplant-deep);
  font-family: var(--title);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.3;
}

.community-pillar p {
  margin: 0;
  color: #4a4449;
  font-size: 15px;
  line-height: 1.65;
}

.community-moderation {
  padding: 32px 28px;
  border: 1px solid rgba(66, 21, 59, .14);
  border-radius: var(--radius-md);
  background: rgba(66, 20, 59, .06);
  text-align: center;
}

@media (min-width: 768px) {
  .community-moderation { padding: 40px 48px; }
}

.community-moderation h2 {
  margin: 0 0 12px;
  color: var(--eggplant-deep);
  font-family: var(--title);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.3;
}

.community-moderation p {
  margin: 0 auto 18px;
  max-width: 36rem;
  color: #4a4449;
  font-size: 15px;
  line-height: 1.65;
}

.community-cgu-link {
  color: var(--eggplant);
  font-size: .875rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.community-cgu-link:hover { color: var(--eggplant-soft); }

/* Contact page */
.contact-page {
  background: var(--paper);
}

.contact-main {
  padding-top: calc(120px + env(safe-area-inset-top, 0px));
  padding-bottom: 48px;
}

@media (min-width: 1024px) {
  .contact-main {
    padding-top: calc(140px + env(safe-area-inset-top, 0px));
    padding-bottom: 64px;
  }
}

.contact-wrap {
  box-sizing: border-box;
  width: min(100% - 48px, 42rem);
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 0 48px;
}

.contact-kicker {
  margin: 0 0 8px;
  color: rgba(66, 20, 59, .8);
  font-family: var(--body);
  font-size: .875rem;
  font-weight: 500;
  text-align: center;
}

html[lang="fr"] .title-gap {
  display: none;
}

.contact-wrap > h1 {
  margin: 0 0 12px;
  color: #1c0e1f;
  font-family: var(--title);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-align: center;
}

.contact-wrap > h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.contact-lead {
  margin: 0 auto 40px;
  max-width: 34rem;
  color: #4a4449;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 16px;
  width: 100%;
}

.contact-label {
  display: block;
  margin: 0 0 6px;
  color: #404040;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .contact-label {
    font-size: .875rem;
  }
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  box-sizing: border-box;
  display: block;
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 12px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  color: #171717;
  font-family: var(--body);
  font-size: .875rem;
  line-height: 1.4;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, #42143b 50%),
    linear-gradient(135deg, #42143b 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.contact-form select:invalid,
.contact-form select option[value=""] {
  color: #737373;
}

.contact-form select option {
  color: #171717;
}

@media (min-width: 640px) {
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 1rem;
  }
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--eggplant);
  box-shadow: 0 0 0 2px rgba(66, 20, 59, .2);
}

.contact-form .contact-submit,
button.contact-submit {
  display: flex;
  width: fit-content;
  min-height: 48px;
  margin: 32px auto 0;
  padding: 14px 32px;
  border: 0;
  border-radius: 999px;
  background: var(--eggplant);
  color: #fff;
  font-family: var(--title);
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s ease, transform .25s ease;
}

@media (min-width: 640px) {
  .contact-form .contact-submit,
  button.contact-submit {
    font-size: 1rem;
  }
}

.contact-form .contact-submit:hover,
button.contact-submit:hover {
  background: #320f2c;
  transform: none;
}

.contact-form .contact-submit:disabled,
button.contact-submit:disabled {
  opacity: .7;
  cursor: wait;
}

.contact-form .form-status {
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.help-center-link {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  color: var(--eggplant);
  font-family: var(--title);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.help-center-link:hover { opacity: .7; }

.help-main {
  background: var(--paper);
  padding: calc(112px + env(safe-area-inset-top, 0px)) 24px 64px;
}
@media (min-width: 1024px) {
  .help-main { padding-top: calc(136px + env(safe-area-inset-top, 0px)); padding-bottom: 96px; }
}
.help-wrap { width: min(100%, 56rem); margin: 0 auto; }
.help-kicker {
  margin: 0 0 10px;
  color: rgba(66, 20, 59, .8);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
}
.help-wrap > h1 {
  margin: 0;
  color: #1c0e1f;
  font-family: var(--title);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-align: center;
}
.help-wrap > h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.help-search {
  display: block;
  width: 100%;
  margin: 28px 0 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}
.help-search:focus { outline: 2px solid rgba(66, 20, 59, .35); outline-offset: 2px; }
.help-filters-bar {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 0 36px;
}
.help-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin: 0;
  overflow-x: auto;
  padding: 8px 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.help-filters::-webkit-scrollbar { display: none; }
.help-filters-fade,
.help-filters-arrow { display: none; }
@media (min-width: 768px) {
  .help-filters-fade {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 9;
    width: 64px;
    pointer-events: none;
  }
  .help-filters-fade-left { left: 0; background: linear-gradient(to right, var(--paper), transparent); }
  .help-filters-fade-right { right: 0; background: linear-gradient(to left, var(--paper), transparent); }
  .help-filters-arrow {
    display: flex;
    position: absolute;
    z-index: 10;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 4px 10px rgba(28, 14, 31, .12);
    color: #262626;
    cursor: pointer;
    transition: background-color .2s ease;
  }
  .help-filters-arrow:hover { background: #fafafa; }
  .help-filters-arrow-left { left: 0; }
  .help-filters-arrow-right { right: 0; }
}
.help-filters-fade[hidden],
.help-filters-arrow[hidden] { display: none !important; }
.help-filters button {
  flex: 0 0 auto;
  margin: 0;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--eggplant);
  font-family: var(--title);
  font-size: .8125rem;
  font-weight: 600;
  line-height: 1.2;
}
.help-filters button.is-active {
  border-color: var(--eggplant);
  background: var(--eggplant);
  color: #fff;
}
.help-group { margin: 0 0 28px; }
.help-group h2 {
  margin: 0 0 4px;
  color: var(--eggplant);
  font-size: 1.35rem;
  font-weight: 600;
}
.help-item { border-top: 1px solid var(--line); }
.help-item > button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 20px 0;
  border: 0;
  background: none;
  color: inherit;
  font-family: var(--title);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
}
.help-item > button::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--eggplant);
  font-size: 1.4rem;
  font-weight: 400;
}
.help-item.is-open > button::after { content: "−"; }
.help-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.help-item.is-open .help-panel { grid-template-rows: 1fr; }
.help-panel-inner { overflow: hidden; }
.help-panel-inner > :first-child { margin-top: 0; }
.help-panel-inner > :last-child { margin-bottom: 18px; }
.help-panel p,
.help-panel li {
  color: var(--muted);
  font-size: .975rem;
  line-height: 1.6;
}
.help-panel ul,
.help-panel ol { margin: 0 0 18px; padding-left: 1.2rem; }
.help-panel a { color: var(--eggplant); text-decoration: underline; text-underline-offset: 3px; }
.help-empty {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
}
.help-empty[hidden] { display: none; }