/* Barake — page de lancement.
 *
 * Elle ne partage rien avec /style.css : les documents juridiques sont du
 * texte noir sur blanc, cette page est la marque. Les valeurs viennent de
 * `baara/mobile/src/theme/tokens.ts` et des maquettes `baara/design/screens/`.
 * Aucune teinte inventee ici.
 */

:root {
  --indigo: #3b3fd8;
  --indigo-dark: #2a2eb0;
  --indigo-soft: #ececfd;
  --amber: #ffc73a;
  --amber-soft: #fff3d1;
  --amber-ink: #8a5a00;
  --green: #1f9d6b;
  --green-soft: #e6f6ee;
  --green-ink: #166b4a;
  --cream: #faf7f2;
  --cream-dark: #efece5;
  --white: #fff;
  --ink: #14142b;
  --muted: #6f7196;
  --faint: #8a8ca8;

  --veil-06: rgba(20, 20, 43, .06);
  --veil-07: rgba(20, 20, 43, .07);
  --veil-08: rgba(20, 20, 43, .08);
  --veil-10: rgba(20, 20, 43, .1);
  --veil-12: rgba(20, 20, 43, .12);
  --veil-15: rgba(20, 20, 43, .15);
  --veil-18: rgba(20, 20, 43, .18);

  --display: "Bricolage Grotesque", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --body: Outfit, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --page: 1120px;

  /* La maquette fait 375 x 812. Tout telephone de la page est cette taille,
     ramenee a l'echelle par `--s` — jamais redessine a une autre mesure. */
  --s: 1;

  color-scheme: light;
}

/* Sous-ensembles latins des .ttf de Google Fonts (SIL OFL, voir fonts/OFL.txt).
   Servis d'ici : une page qui parle de la vie privee des mineurs n'envoie pas
   l'IP de ses visiteurs a un tiers pour aller chercher ses polices. */
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/barake/fonts/bricolage-600.woff2") format("woff2");
}
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/barake/fonts/bricolage-700.woff2") format("woff2");
}
@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/barake/fonts/outfit-400.woff2") format("woff2");
}
@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/barake/fonts/outfit-500.woff2") format("woff2");
}
@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/barake/fonts/outfit-600.woff2") format("woff2");
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.5rem); }
h3 { font-size: 1.15rem; letter-spacing: -.02em; }

p { margin: 0; text-wrap: pretty; }

a { color: var(--indigo); }

:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── En-tete ───────────────────────────────────────────── */

.top {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 247, 242, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.top.is-stuck { border-bottom-color: var(--veil-08); }

.top-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -.02em;
}

.brand img { width: 32px; height: 32px; border-radius: 10px; display: block; }

.top-right { display: flex; align-items: center; gap: 18px; }

.lang {
  color: var(--muted);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
}

.lang:hover { color: var(--ink); }

/* ── Boutons ───────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 15px 26px;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, transform .15s ease;
}

.btn--primary { background: var(--indigo); color: #fff; }
.btn--primary:hover { background: var(--indigo-dark); }
.btn--primary:active { transform: translateY(1px); }
.btn--small { padding: 10px 18px; font-size: .95rem; }

/* ── Hero ──────────────────────────────────────────────── */

.hero { padding: clamp(32px, 6vw, 72px) 0 clamp(48px, 7vw, 88px); }

.hero-in {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--veil-10);
  border-radius: 999px;
  padding: 8px 16px 8px 12px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 22px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(255, 199, 58, .28);
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--muted);
  margin-top: 20px;
  max-width: 34ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--indigo);
}

.hero-phone { --s: .78; }

/* ── Boutons de telechargement ─────────────────────────── */

/* Le couple App Store / Google Play, pose deux fois : sous le hero et en fin
   de page. Un <a> quand le store est ouvert, un <span> quand il ne l'est pas
   encore — le modificateur `--soon` porte toute la difference, de sorte que
   l'ouverture d'un store se joue en HTML, sans toucher a cette feuille. */

.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
  border-radius: 16px;
  padding: 11px 22px 12px;
  text-decoration: none;
  transition: background-color .15s ease, transform .15s ease;
}

.store:hover { background: #22224a; }
.store:active { transform: translateY(1px); }

.store svg { width: 27px; height: 27px; flex: none; }

.store small {
  display: block;
  font-size: .74rem;
  line-height: 1.25;
  opacity: .72;
}

.store b {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: -.02em;
  line-height: 1.2;
}

/* Le store pas encore ouvert. Ce n'est pas un lien : il s'affiche comme une
   promesse, pas comme un bouton mort qu'on essaierait de cliquer. */
.store--soon {
  background: transparent;
  color: var(--ink);
  border-color: var(--veil-15);
  cursor: default;
}

.store--soon:hover { background: transparent; }
.store--soon:active { transform: none; }
.store--soon svg { opacity: .45; }
.store--soon small { opacity: .6; }
.store--soon b { opacity: .8; }

.stores-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: .92rem;
  max-width: 42ch;
}

/* ── Bandeau de reassurance ────────────────────────────── */

.strip {
  border-top: 1px solid var(--veil-08);
  border-bottom: 1px solid var(--veil-08);
  background: rgba(255, 255, 255, .5);
}

.strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 18px 24px;
  color: var(--muted);
  font-size: .93rem;
}

.strip li { display: flex; align-items: center; gap: 9px; }

.strip svg { color: var(--green); flex: none; }

/* ── Sections ──────────────────────────────────────────── */

.section { padding: clamp(56px, 8vw, 104px) 0; }

.section-head { max-width: 46ch; margin-bottom: clamp(32px, 4vw, 52px); }

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-top: 14px;
}

.kicker {
  display: block;
  font-family: var(--body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step {
  background: var(--white);
  border: 1px solid var(--veil-08);
  border-radius: 24px;
  padding: 26px;
}

.step-n {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: var(--indigo-soft);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 18px;
}

.step p { color: var(--muted); margin-top: 8px; font-size: .98rem; }

/* ── Galerie d'ecrans ──────────────────────────────────── */

.gallery {
  background: var(--ink);
  color: var(--white);
  padding: clamp(56px, 8vw, 104px) 0;
  overflow: hidden;
}

.gallery h2, .gallery .kicker { color: var(--white); }
.gallery .kicker { color: var(--amber); }
.gallery .section-head p { color: rgba(255, 255, 255, .66); }

.shots {
  display: flex;
  gap: clamp(20px, 4vw, 46px);
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.shot { --s: .62; display: grid; gap: 16px; justify-items: center; }

.shot figcaption {
  color: rgba(255, 255, 255, .7);
  font-size: .93rem;
  text-align: center;
  max-width: 24ch;
}

.shot figcaption b {
  display: block;
  color: var(--white);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 2px;
}

/* ── Confiance ─────────────────────────────────────────── */

.trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.trust div {
  background: var(--white);
  border: 1px solid var(--veil-08);
  border-radius: 22px;
  padding: 24px;
}

.trust p { color: var(--muted); margin-top: 7px; font-size: .98rem; }

.trust-more { margin-top: 22px; }

/* ── FAQ ───────────────────────────────────────────────── */

.faq { max-width: 760px; }

.faq details {
  border-bottom: 1px solid var(--veil-10);
  padding: 4px 0;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 40px 20px 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -.02em;
  position: relative;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--faint);
  border-bottom: 2px solid var(--faint);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .18s ease;
}

.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }

.faq p { color: var(--muted); padding-bottom: 20px; max-width: 62ch; }

/* ── Fin de page ───────────────────────────────────────── */

.close { text-align: center; }

.close .section-head { margin-inline: auto; text-align: center; }
.close .stores { justify-content: center; }
.close .stores-note { margin-inline: auto; text-align: center; }

.foot {
  border-top: 1px solid var(--veil-08);
  padding: 34px 0 46px;
  color: var(--muted);
  font-size: .9rem;
}

.foot-in {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: space-between;
}

.foot nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }

.foot a { color: var(--muted); text-decoration: none; }
.foot a:hover { color: var(--ink); text-decoration: underline; }

.foot-legal { margin-top: 18px; color: var(--faint); font-size: .82rem; }

/* ══ Les telephones, repris des maquettes ═══════════════ */

.frame {
  /* La coque : 10 px de bord tout autour de l'ecran de 375 x 812, mis a
     l'echelle comme lui. C'est ce bord qui manquait — l'ecran s'arretait net
     sur son arrondi, et la barre d'onglets avait l'air rognee dans les coins. */
  --bezel: 10px;
  width: calc((375px + 2 * var(--bezel)) * var(--s));
  height: calc((812px + 2 * var(--bezel)) * var(--s));
  padding: calc(var(--bezel) * var(--s));
  background: #1b1b33;
  border-radius: calc(52px * var(--s));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .1),
              0 26px 50px -22px rgba(20, 20, 43, .55);
  flex: none;
  /* `transform` ne change pas la taille de mise en page : sans ce recadrage,
     le telephone continue de compter pour 375 px de large et pousse une barre
     de defilement horizontale sur mobile. Rien n'est coupe — la boite mise a
     l'echelle fait exactement la taille du cadre. */
  overflow: hidden;
}

/* Sur le fond encre de la galerie, la coque se confondrait avec la section :
   c'est le liseré clair qui l'en detache. */
.gallery .frame {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .16),
              0 30px 60px -24px rgba(0, 0, 0, .6);
}

.phone {
  width: 375px;
  height: 812px;
  transform: scale(var(--s));
  transform-origin: top left;
  background: var(--cream);
  color: var(--ink);
  border-radius: 42px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.4;
  position: relative;
}

.ph-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px 0;
  font-size: 14px;
  font-weight: 600;
}

.ph-status i { font-style: normal; opacity: .45; letter-spacing: 2px; font-size: 11px; }

.ph-head {
  padding: 20px 24px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ph-h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -.02em;
}

.ph-family + .ph-h1 { margin-top: 6px; }

.ph-family {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--veil-10);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 500;
}

.ph-family i {
  font-style: normal;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--indigo-soft);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.ph-family u { text-decoration: none; color: var(--faint); font-size: 13px; }

.ph-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--indigo-soft);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex: none;
}

.ph-body {
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.ph-banner {
  background: var(--ink);
  border-radius: 24px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  gap: 12px;
}

.ph-banner small { font-size: 12.5px; color: rgba(255, 255, 255, .6); }

.ph-banner b {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  margin-top: 2px;
}

.ph-banner i {
  font-style: normal;
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
}

.ph-stats { display: flex; gap: 10px; }

.ph-stats div {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--veil-08);
  border-radius: 20px;
  padding: 14px 16px;
}

.ph-stats small { font-size: 12px; color: var(--muted); }

.ph-stats b {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
}

.ph-section {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 2px;
}

.ph-eyebrow {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ph-more { font-size: 13px; font-weight: 500; color: var(--indigo); }

.ph-task {
  background: var(--white);
  border: 1px solid var(--veil-08);
  border-radius: 20px;
  padding: 15px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.ph-task.is-done { opacity: .65; }
.ph-task.is-wait { opacity: .7; }

.ph-task > div { flex: 1; }

.ph-task b { font-size: 15.5px; font-weight: 500; display: block; }
.ph-task small { font-size: 12.5px; color: var(--muted); }
.ph-task.is-done b { text-decoration: line-through; }
.ph-task.is-done small { color: var(--green); }
.ph-task.is-wait small { color: var(--amber-ink); }

.ph-box {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 2px solid var(--veil-18);
}

.ph-box--indigo { width: 26px; height: 26px; border-radius: 9px; border-color: var(--indigo); }

.ph-box--ok {
  border: 0;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.ph-box--wait {
  border: 0;
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.ph-pts {
  flex: none;
  background: var(--amber-soft);
  color: var(--amber-ink);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 13px;
  font-weight: 600;
}

.ph-pts--green { background: var(--green-soft); color: var(--green-ink); }

.ph-fab {
  position: absolute;
  right: 22px;
  bottom: 106px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--indigo);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 300;
  box-shadow: 0 14px 26px -10px rgba(59, 63, 216, .85);
}

.ph-nav {
  margin-top: auto;
  background: var(--white);
  border-top: 1px solid var(--veil-07);
  padding: 14px 26px 26px;
  display: flex;
  justify-content: space-between;
}

.ph-nav div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: var(--faint);
  font-size: 11px;
}

.ph-nav .on { color: var(--indigo); font-weight: 500; }
.ph-nav svg { width: 23px; height: 23px; stroke-width: 1.7; }
.ph-nav .on svg { stroke-width: 2.1; }

/* Boutique */

.ph-balance {
  background: var(--amber);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 600;
}

.ph-chips { padding: 0 24px 14px; display: flex; gap: 9px; }

.ph-chips span {
  background: var(--white);
  border: 1px solid var(--veil-10);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 14px;
  color: var(--muted);
}

.ph-chips .on { background: var(--ink); border-color: var(--ink); color: #fff; }

.ph-reward {
  background: var(--white);
  border: 1px solid var(--veil-08);
  border-radius: 22px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ph-reward.is-off { opacity: .55; }

.ph-reward > div { flex: 1; }
.ph-reward b { display: block; font-size: 16px; font-weight: 500; }
.ph-reward small { font-size: 12.5px; color: var(--muted); }

.ph-thumb {
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.ph-thumb--amber { background: var(--amber-soft); }
.ph-thumb--indigo { background: var(--indigo-soft); }
.ph-thumb--green { background: var(--green-soft); }

.ph-cost {
  flex: none;
  background: var(--indigo);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
}

.ph-cost--off {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--veil-15);
  font-weight: 400;
}

.ph-add {
  border: 1px dashed rgba(59, 63, 216, .35);
  color: var(--indigo);
  border-radius: 22px;
  padding: 16px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

/* Accueil enfant */

.ph-top {
  background: var(--indigo);
  color: #fff;
  padding: 16px 24px 26px;
  border-radius: 0 0 32px 32px;
}

.ph-top .ph-status { padding: 0; }
.ph-top .ph-status i { opacity: .8; }

.ph-hello {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 20px;
}

.ph-hello small { font-size: 13.5px; color: rgba(255, 255, 255, .7); }

.ph-hello .ph-avatar { background: rgba(255, 255, 255, .2); color: #fff; }

.ph-count { display: flex; align-items: baseline; gap: 8px; margin-top: 4px; }

.ph-count b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 46px;
  letter-spacing: -.03em;
  line-height: 1;
}

.ph-count span { font-size: 16px; color: rgba(255, 255, 255, .8); }

.ph-panel {
  margin-top: 20px;
  background: rgba(255, 255, 255, .14);
  border-radius: 20px;
  padding: 15px 16px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.ph-panel header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .75);
}

.ph-panel header small { font-size: inherit; }
.ph-panel header span { font-size: 13px; font-weight: 500; color: var(--amber); }

.ph-panel footer { font-size: 12.5px; color: rgba(255, 255, 255, .7); line-height: 1.4; }

.ph-picks { display: flex; gap: 8px; }

.ph-pick {
  flex: 1;
  background: var(--white);
  border-radius: 14px;
  padding: 11px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ph-pick b { font-size: 13px; color: var(--ink); font-weight: 500; line-height: 1.25; }

.ph-pick span {
  align-self: flex-start;
  background: var(--amber-soft);
  color: var(--amber-ink);
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 12px;
  font-weight: 600;
}

.ph-pick--soon {
  background: rgba(255, 255, 255, .16);
  border: 1px dashed rgba(255, 255, 255, .4);
}

.ph-pick--soon b { color: rgba(255, 255, 255, .85); }

.ph-pick--soon span {
  background: none;
  color: rgba(255, 255, 255, .7);
  font-weight: 400;
  padding: 3px 0;
}

.ph-list { padding: 22px 24px 0; display: flex; flex-direction: column; gap: 12px; }

.ph-list .ph-task { border-radius: 20px; padding: 16px; }
.ph-list .ph-task b { font-size: 16px; }

/* Les petites illustrations de recompense, reprises telles quelles. */

.ic-plate i { display: block; background: var(--amber-ink); }
.ic-plate i:nth-child(odd) { width: 4px; height: 26px; border-radius: 2px; }
.ic-plate i:nth-child(2) { width: 26px; height: 26px; border-radius: 50%; background: none; border: 3px solid var(--amber-ink); }

.ic-pad {
  width: 34px;
  height: 24px;
  border-radius: 6px;
  background: var(--indigo);
  position: relative;
}

.ic-pad::before, .ic-pad::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #fff;
}

.ic-pad::before { left: 6px; border-radius: 2px; }
.ic-pad::after { right: 6px; border-radius: 50%; }

.ic-film {
  width: 32px;
  height: 26px;
  border-radius: 4px;
  background: var(--green-ink);
  position: relative;
}

.ic-film::before, .ic-film::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  height: 4px;
  background: var(--green-soft);
}

.ic-film::before { top: 5px; }
.ic-film::after { bottom: 5px; }

/* ── Adaptations ───────────────────────────────────────── */

@media (max-width: 1000px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-phone { justify-self: center; }
  .lede { max-width: none; }
  .steps { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .top-right .btn { display: none; }
  .shot { --s: .58; }
  .store { flex: 1 1 100%; justify-content: center; }
  .foot-in { flex-direction: column; align-items: flex-start; }
}

/* Les plus petits ecrans en circulation (iPhone SE, 320 px). `--s` est une
   valeur fixe par palier, jamais un calcul : une propriete personnalisee n'est
   pas verifiee a la declaration, et un `min()` melant un nombre et une longueur
   ne casse qu'au moment ou `width` l'utilise — silencieusement, en rendant le
   telephone a sa taille brute. */
@media (max-width: 400px) {
  .hero-phone { --s: .72; }
  .shot { --s: .52; }
}
