/* Aphélie — page de vente · © 2026 Samer ABOUKAIS */
:root{
  --bg-top:#0a1026;
  --bg-mid:#111a3d;
  --bg-low:#2e3d63;
  --panel:rgba(13,20,46,.78);
  --line:rgba(255,255,255,.09);
  --text:#c9d1e4;
  --muted:#98a2bf;
  --cream:#f2ead6;
  --card-title:#f2dfae;
  --gold:#f2b134;
  --gold-btn:#f0c052;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,"Segoe UI",sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,var(--bg-top) 0%,var(--bg-mid) 55%,var(--bg-low) 100%);
  background-attachment:fixed;
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}
.wrap{max-width:640px;margin:0 auto;padding:1.6rem 1.35rem 3.2rem}

/* ---- bascule de langue ---- */
.lang{display:flex;justify-content:flex-end}
.lang a{
  border:1px solid rgba(242,177,52,.5);
  color:var(--muted);
  text-decoration:none;
  border-radius:999px;
  padding:.55rem 1.15rem;
  font-size:.85rem;
  letter-spacing:.05em;
}
.lang a:hover{color:var(--cream);border-color:var(--gold)}

/* ---- en-tête ---- */
.app-icon{width:96px;height:96px;border-radius:24px;display:block;margin:2.1rem 0 1.7rem;box-shadow:0 12px 34px rgba(0,0,0,.45)}
h1{
  font-family:"Fraunces",Georgia,serif;
  font-weight:600;
  color:var(--cream);
  font-size:clamp(2.5rem,10vw,3.5rem);
  line-height:1.06;
  margin:0 0 1.1rem;
  letter-spacing:.01em;
}
h1 .g{color:var(--gold)}
.lede{font-size:1.14rem;line-height:1.68;color:#b9c2da;margin:0}

/* ---- boutons ---- */
.btn{
  display:block;
  text-align:center;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  color:#141b38;
}
.btn-buy{
  background:var(--gold-btn);
  font-size:1.28rem;
  padding:1.1rem 1.4rem;
  margin:1.9rem 0 0;
  box-shadow:0 0 38px rgba(242,177,52,.45);
}
.btn-buy:hover{filter:brightness(1.06)}
.fine{color:var(--muted);font-size:.95rem;line-height:1.62;margin:1.1rem 0 0}
.center{text-align:center}
.btn-try{
  display:inline-block;
  background:var(--gold-btn);
  font-size:1.05rem;
  padding:.85rem 1.7rem;
  margin:1.5rem auto 0;
  box-shadow:0 0 26px rgba(242,177,52,.32);
}
.btn-try:hover{filter:brightness(1.06)}

/* ---- sections ---- */
h2{
  font-family:"Fraunces",Georgia,serif;
  font-weight:600;
  color:var(--cream);
  font-size:clamp(1.9rem,7vw,2.4rem);
  line-height:1.15;
  margin:3.2rem 0 1.1rem;
}
.card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:18px;
  padding:1.35rem 1.4rem;
  margin:1.15rem 0;
}
.card h3{margin:0 0 .55rem;color:var(--card-title);font-size:1.14rem;font-weight:600}
.card p{margin:0;line-height:1.62}

/* ---- pied de page ---- */
footer{margin-top:3.4rem;color:#8b95b4;font-size:.95rem;line-height:1.72}
.name-note{color:#9aa4c2;margin:0 0 1.4rem}
.credits{font-size:.9rem;margin:0 0 .9rem}
footer a{color:#b9c2da}
footer a:hover{color:var(--cream)}
.copyright{font-size:.85rem;color:#7c86a6;margin:0}

/* ---- pages confidentialité ---- */
.legal h1{font-size:clamp(2rem,8vw,2.6rem)}
.legal h2{font-size:1.25rem;font-family:"Inter",system-ui,sans-serif;color:var(--card-title);margin:1.9rem 0 .5rem}
.legal p{margin:.4rem 0 0}
.back{display:inline-block;margin:2.2rem 0 0;color:#b9c2da;text-decoration:none;border:1px solid var(--line);border-radius:999px;padding:.5rem 1.1rem;font-size:.9rem}
.back:hover{color:var(--cream);border-color:var(--gold)}

@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}
