@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

/* ══════════════════════════════════════
   PROPULSEUR — charte de marque
   Source UNIQUE des tokens partagés par tous les sites de la marque
   (site.propulseur.io, livre.propulseur.io...).

   Le build (_systeme/build.sh) concatène ce fichier AVANT le CSS de
   chaque site, donc les var() sont définies avant d'être utilisées.
   Ne jamais redéclarer ces valeurs dans un site : les lire.
   ══════════════════════════════════════ */

:root {
  --dark-teal: #08272A;
  --dark-teal-haut: #0A3538;   /* haut du dégradé de la carte sombre */
  --teal: #528C8D;
  --corail: #EA7276;
  --or: #B29F32;
  --or-light: #C4B44A;
  --ink: #1a1a1a;
  --rouge-groupe: #e93d3d;
  --bleu-groupe: #188bf6;
  --soft-border: #e0e0e0;
}
/* ══════════════════════════════════════
   PROPULSEUR — LIVRE (book funnel)
   Servi par toutes les pages : /assets/base.css

   Les tokens de couleur et la police Roboto viennent de la charte de
   marque (propulseur/_charte/tokens.css), concaténée AVANT ce fichier
   par le build — mêmes couleurs que site.propulseur.io, déclarées une
   seule fois. Le design des sections de vente (façon Sabri) se
   construira ici, au fur et à mesure. Pour l'instant : fondation + page d'attente.
   ══════════════════════════════════════ */

/* ── Fondation ───────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 652px; margin: 0 auto; padding: 0 24px; }
section { padding: 64px 0; }
section > .wrap > *:first-child { margin-top: 0; }
p { margin: 0 0 1.25em; }

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.4;
  color: var(--dark-teal);
}
h1 { font-size: clamp(1.9rem, 5vw, 2.7rem); margin: 0 0 0.6em; }
h2 { font-size: clamp(1.45rem, 3.6vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2.6vw, 1.4rem); }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); }

.btn-primary {
  display: inline-block; background: var(--corail); color: white;
  font-weight: 600; font-size: 1.05rem;
  padding: 1rem 2.5rem; border-radius: 6px; text-decoration: none;
  transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(234,114,118,0.25);
}
.btn-primary:hover {
  background: #d4585c; transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(234,114,118,0.35);
}

/* ── Page d'attente (avant le vrai funnel) ── */
.page-attente {
  min-height: 100vh; display: grid; place-items: center;
  background: var(--dark-teal); color: #fff;
  text-align: center; padding: 24px;
}
.page-attente .eyebrow {
  font-family: Georgia, 'Times New Roman', serif;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--or-light); font-size: 15px; margin: 0 0 1.2em;
}
.page-attente h1 { color: #fff; max-width: 16em; margin: 0 0 .5em; }
.page-attente p { color: #9fbcbd; margin: 0; font-size: 15px; max-width: 32em; }
