/* Vitrine Sharelix : design system de l'app (docs/02). */
:root {
  --jaune: #FFD600;
  --jaune-fonce: #E0A400;
  --creme: #FBF6EC;
  --encre: #1C1812;
  --encre-douce: #5C5546;
  --surface: #FFFFFF;
  --rayon: 22px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Schibsted Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--creme);
  color: var(--encre);
  line-height: 1.55;
}

.wrap { max-width: 980px; margin: 0 auto; padding: 0 20px; }

header.top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.logo {
  display: inline-flex; align-items: baseline; gap: 1px;
  font-weight: 800; font-size: 26px; text-decoration: none; color: var(--encre);
}
.logo .x { color: var(--jaune-fonce); }
.top nav a {
  color: var(--encre-douce); text-decoration: none; font-weight: 600;
  margin-left: 18px; font-size: 15px;
}
.top nav a:hover { color: var(--encre); }

.hero { text-align: center; padding: 56px 0 40px; }
.hero h1 {
  font-size: clamp(34px, 6vw, 58px); font-weight: 800; line-height: 1.08;
  letter-spacing: -0.5px;
}
.hero h1 .accent { color: var(--jaune-fonce); }
.hero p.sub {
  margin: 18px auto 0; max-width: 560px; font-size: 19px; color: var(--encre-douce);
}
.badges { margin-top: 30px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: 16px; text-decoration: none;
}
.btn-jaune { background: var(--jaune); color: var(--encre); box-shadow: 0 8px 22px rgba(220, 170, 20, 0.28); }
.btn-ghost { background: var(--surface); color: var(--encre); border: 1.5px solid #EAE2D2; }
.note-badge { margin-top: 12px; font-size: 13px; color: var(--encre-douce); }

.phone {
  margin: 46px auto 0; width: min(320px, 80vw); border-radius: 40px;
  background: var(--surface); border: 10px solid #fff;
  box-shadow: 0 30px 60px rgba(28, 24, 18, 0.14);
  overflow: hidden;
}
.phone .screen { padding: 22px 16px 26px; background: var(--creme); text-align: left; }
.phone .titre { font-weight: 800; font-size: 20px; margin-bottom: 12px; }
.carte {
  background: var(--surface); border-radius: 16px; padding: 12px;
  box-shadow: 0 6px 18px rgba(28, 24, 18, 0.06); margin-bottom: 10px;
  display: flex; gap: 10px; align-items: center;
}
.poster { width: 44px; height: 64px; border-radius: 8px; flex: none; }
.p1 { background: linear-gradient(160deg, #2c3e50, #4ca1af); }
.p2 { background: linear-gradient(160deg, #5f2c82, #49a09d); }
.carte .t { font-weight: 700; font-size: 14px; }
.carte .m { font-size: 12px; color: var(--encre-douce); }
.pill {
  display: inline-block; background: var(--jaune); color: var(--encre);
  border-radius: 999px; padding: 3px 10px; font-weight: 800; font-size: 12px;
}

section.bloc { padding: 54px 0; }
section.bloc h2 {
  font-size: clamp(26px, 4vw, 36px); font-weight: 800; text-align: center;
  letter-spacing: -0.3px;
}
.grille {
  margin-top: 34px; display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.tuile {
  background: var(--surface); border-radius: var(--rayon); padding: 24px;
  box-shadow: 0 10px 26px rgba(28, 24, 18, 0.05);
}
.tuile .emoji { font-size: 30px; }
.tuile h3 { margin-top: 10px; font-size: 18px; font-weight: 800; }
.tuile p { margin-top: 6px; color: var(--encre-douce); font-size: 15px; }

.etapes { margin-top: 34px; display: grid; gap: 14px; }
.etape {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface); border-radius: var(--rayon); padding: 18px 22px;
  box-shadow: 0 10px 26px rgba(28, 24, 18, 0.05);
}
.etape .num {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  background: var(--jaune); color: var(--encre); font-weight: 800;
  display: grid; place-items: center; font-size: 17px;
}
.etape strong { display: block; font-size: 17px; }
.etape span { color: var(--encre-douce); font-size: 15px; }

.plus {
  background: var(--encre); color: var(--creme);
  border-radius: var(--rayon); padding: 40px 30px; text-align: center;
}
.plus h2 { color: #fff; }
.plus p { color: #CFC7B6; max-width: 560px; margin: 12px auto 0; }
.plus .prix { margin-top: 18px; font-weight: 800; font-size: 20px; color: var(--jaune); }

footer {
  padding: 40px 0 50px; text-align: center;
  color: var(--encre-douce); font-size: 13.5px;
}
footer a { color: var(--encre-douce); }
footer .liens { margin-bottom: 12px; }
footer .liens a { margin: 0 10px; font-weight: 600; }
footer .tmdb { margin-top: 12px; font-size: 12px; }

main.page { padding: 30px 0 60px; max-width: 720px; margin: 0 auto; }
main.page h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
main.page h2 { font-size: 20px; font-weight: 800; margin: 28px 0 8px; }
main.page p, main.page li { color: var(--encre-douce); font-size: 15.5px; }
main.page ul { padding-left: 22px; margin-top: 6px; }
main.page .maj { font-size: 13px; margin-bottom: 22px; }

/* Formulaire de contact (assistance) : le site n'expose plus d'adresse mail. */
.contact-form { margin-top: 10px; max-width: 520px; }
.contact-form label { display: block; font-weight: 600; margin: 14px 0 6px; }
.contact-form textarea,
.contact-form input[type="email"] {
  width: 100%; box-sizing: border-box; font: inherit; color: var(--encre);
  background: var(--surface); border: 1.5px solid #EAE2D2;
  border-radius: 14px; padding: 12px 14px;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form textarea:focus,
.contact-form input[type="email"]:focus { outline: none; border-color: var(--jaune-fonce); }
.contact-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-form .actions { margin-top: 16px; }
.contact-note { margin-top: 12px; font-weight: 600; min-height: 1.2em; }
.contact-note.ok { color: #1f8f5f; }
.contact-note.err { color: #c0392b; }
