/* =====================================================================
   Tchala Plus — Landing cinématique (statique, sans framework)
   Palette officielle : noir #050308 · violet #12051F/#4D0879/#8B27D8
   or #D6A62E/#FFD564 · blanc #FFFFFF
   ===================================================================== */
:root {
  --black: #050308;
  --purple-deep: #12051F;
  --purple-royal: #4D0879;
  --violet: #8B27D8;
  --gold: #D6A62E;
  --gold-bright: #FFD564;
  --white: #FFFFFF;
  --text: #EDE8F6;
  --text-dim: #B9AECB;
  --glass: rgba(139, 39, 216, 0.08);
  --glass-border: rgba(214, 166, 46, 0.28);
  --radius: 20px;
  --nav-h: 64px;
  /* z-scale : 0 contenu · 10 décor flottant · 40 nav · 60 sticky bar */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
body {
  background: var(--black);
  color: var(--text);
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; }
a { color: var(--gold-bright); }

/* ---------- Fond cinématique global ---------- */
.bg-cinema {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1100px 520px at 80% -8%, rgba(139,39,216,0.32), transparent 60%),
    radial-gradient(900px 480px at 12% 22%, rgba(77,8,121,0.42), transparent 65%),
    radial-gradient(760px 400px at 55% 78%, rgba(214,166,46,0.10), transparent 60%),
    linear-gradient(180deg, #0A0512 0%, var(--black) 45%, #0B0414 100%);
}
#particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
main, .nav, .sticky-bar, footer { position: relative; z-index: 2; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 clamp(14px, 4vw, 40px);
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.nav.scrolled {
  background: rgba(10, 5, 18, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(0,0,0,0.45);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .3px;
}
.nav-brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-links {
  display: none;
  gap: 26px;
  list-style: none;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  transition: color .2s;
  padding: 8px 2px; /* cible tactile confortable */
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--gold-bright); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  display: flex;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  overflow: hidden;
}
.lang-switch a {
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  color: var(--text-dim);
  min-width: 44px;
  text-align: center;
}
.lang-switch a.active { background: var(--gold); color: #1a1300; }
.btn-nav {
  display: none;
  background: linear-gradient(120deg, var(--gold), var(--gold-bright));
  color: #1a1300;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(214,166,46,0.35);
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(214,166,46,0.55); }
@media (min-width: 860px) {
  .nav-links { display: flex; }
  .btn-nav { display: inline-block; }
}

/* ---------- Boutons génériques ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 16.5px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .18s ease, box-shadow .18s ease;
  touch-action: manipulation;
}
.btn-gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-bright), var(--gold));
  background-size: 200% 100%;
  color: #1a1300;
  box-shadow: 0 10px 34px rgba(214,166,46,0.4);
  animation: goldShift 4s ease-in-out infinite;
}
@keyframes goldShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.btn-gold:hover, .btn-gold:focus-visible { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 44px rgba(255,213,100,0.55); }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-ghost:hover, .btn-ghost:focus-visible { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Sections ---------- */
section { padding: clamp(64px, 10vw, 120px) clamp(18px, 5vw, 48px); }
.wrap { max-width: 1120px; margin: 0 auto; }
.center { text-align: center; }
.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 14px;
}
h1 {
  font-size: clamp(34px, 6.4vw, 62px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--white);
}
h2 {
  font-size: clamp(26px, 4.4vw, 42px);
  line-height: 1.15;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}
.lead { font-size: clamp(17px, 2.2vw, 20px); color: var(--text-dim); max-width: 640px; }
.center .lead { margin: 0 auto; }

/* Apparition au scroll (transform+opacity uniquement) */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,.8,.3,1);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- HERO ---------- */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 34px);
}
.hero-grid {
  display: grid;
  gap: 44px;
  align-items: center;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
@media (min-width: 920px) { .hero-grid { grid-template-columns: 1.1fr .9fr; } }
.hero-copy .lead { margin: 20px 0 8px; }
.hero-sub { color: var(--text); font-weight: 600; margin-bottom: 26px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.hero-trust { font-size: 13.5px; color: var(--text-dim); }
.hero-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 26px; }
.badge-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0d0d0d, #1e1428);
  border: 1.5px solid var(--glass-border);
  color: var(--white);
  text-decoration: none;
  border-radius: 14px;
  padding: 10px 18px;
  min-height: 52px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.badge-store:hover { transform: translateY(-2px); border-color: var(--gold-bright); box-shadow: 0 8px 26px rgba(214,166,46,0.3); }
.badge-store svg { width: 26px; height: 26px; flex: none; }
.badge-store .b-small { display: block; font-size: 10.5px; letter-spacing: .8px; opacity: .8; text-transform: uppercase; }
.badge-store .b-big { display: block; font-size: 16px; font-weight: 800; line-height: 1.15; }
.hero-qr {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--text-dim);
  font-size: 13.5px;
}
.hero-qr img { width: 84px; height: 84px; border-radius: 10px; background: #fff; padding: 5px; }
@media (min-width: 920px) { .hero-qr { display: flex; } }

/* Téléphone 3D flottant */
.phone-stage { perspective: 1200px; display: flex; justify-content: center; }
.phone {
  position: relative;
  width: min(290px, 72vw);
  border-radius: 38px;
  padding: 11px;
  background: linear-gradient(160deg, #241436, #0d0716 60%);
  border: 1px solid rgba(214,166,46,0.4);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.65),
    0 0 60px rgba(139,39,216,0.35),
    0 0 26px rgba(214,166,46,0.18);
  transform: rotateY(-8deg) rotateX(3deg);
  animation: phoneFloat 7s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: rotateY(-8deg) rotateX(3deg) translateY(0); }
  50% { transform: rotateY(-5deg) rotateX(1.5deg) translateY(-16px); }
}
.phone::before { /* encoche */
  content: "";
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 34%; height: 21px;
  background: #0d0716;
  border-radius: 12px;
  z-index: 3;
}
.phone-screen {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9 / 19.4;
  background: #12051F;
}
.phone-screen img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.phone-screen img.active { opacity: 1; }
.phone-glow {
  position: absolute;
  inset: -14%;
  z-index: -1;
  background: radial-gradient(closest-side, rgba(139,39,216,0.5), transparent 70%);
  filter: blur(10px);
}

/* Flèche scroll */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  color: var(--gold-bright);
  animation: cueBounce 1.6s ease-in-out infinite;
}
@keyframes cueBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .95; }
  50% { transform: translateX(-50%) translateY(9px); opacity: .55; }
}

/* ---------- Cartes résultats (teaser flouté) ---------- */
.cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin: 42px 0 30px;
}
.lotto-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px 18px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.lotto-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-bright);
  box-shadow: 0 18px 44px rgba(0,0,0,0.5), 0 0 24px rgba(139,39,216,0.25);
}
.lotto-flag { font-weight: 800; color: var(--white); display: flex; align-items: center; gap: 8px; }
.lotto-flag svg { width: 18px; height: 18px; color: var(--gold-bright); }
.lotto-meta { font-size: 13px; color: var(--text-dim); margin: 4px 0 14px; }
.balls { display: flex; gap: 8px; }
.ball {
  width: 40px; height: 40px;
  flex: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  background: radial-gradient(circle at 32% 28%, #ffffff22, transparent 50%),
              linear-gradient(150deg, var(--purple-royal), var(--purple-deep));
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--white);
}
.ball.gold {
  background: radial-gradient(circle at 32% 28%, #fff5, transparent 55%),
              linear-gradient(150deg, var(--gold-bright), var(--gold));
  color: #1a1300;
  border-color: var(--gold-bright);
  box-shadow: 0 0 18px rgba(255,213,100,0.45);
}
.ball.blurred { filter: blur(7px); -webkit-user-select: none; user-select: none; }
.lotto-lock {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold-bright);
}
.lotto-lock svg { width: 14px; height: 14px; }

/* ---------- Notification lock-screen ---------- */
.lockscreen {
  max-width: 380px;
  margin: 40px auto 30px;
  border-radius: 30px;
  padding: 26px 18px 34px;
  background: linear-gradient(170deg, #1A0B2E, #0A0512 70%);
  border: 1px solid rgba(139,39,216,0.4);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 0 44px rgba(139,39,216,0.25);
}
.lock-time { text-align: center; font-size: 44px; font-weight: 300; color: var(--white); letter-spacing: 1px; }
.lock-date { text-align: center; font-size: 13.5px; color: var(--text-dim); margin-bottom: 22px; }
.notif {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255,255,255,0.10);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 13px 14px;
  text-align: left;
  animation: notifIn .8s cubic-bezier(.2,.9,.3,1.2) both;
}
@keyframes notifIn {
  from { opacity: 0; transform: translateY(-26px) scale(.94); }
  to { opacity: 1; transform: none; }
}
.notif img { width: 38px; height: 38px; border-radius: 9px; flex: none; }
.notif-app { font-size: 11px; letter-spacing: 1px; color: var(--text-dim); text-transform: uppercase; }
.notif-title { font-size: 14.5px; font-weight: 800; color: var(--white); }
.notif-body { font-size: 13.5px; color: var(--text); }

/* ---------- Grille features / news / communauté ---------- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 44px;
}
.feat-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 26px 22px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feat-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-bright);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(139,39,216,0.22);
}
.feat-icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(140deg, rgba(139,39,216,0.35), rgba(77,8,121,0.25));
  border: 1px solid rgba(214,166,46,0.35);
}
.feat-icon svg { width: 26px; height: 26px; color: var(--gold-bright); }

/* ---------- Visuels de carte (fonds SVG/dégradés maison, sans photo) ---------- */
.feat-visual {
  position: relative;
  height: 132px;
  margin: -26px -22px 18px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.feat-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.feat-visual.v-haiti { background: linear-gradient(175deg, #3B0F63 0%, #1C0733 55%, #0A0412 100%); }
.feat-visual.v-intl { background: radial-gradient(120% 100% at 50% 15%, #4D0879 0%, #1A0630 55%, #0A0412 100%); }
.feat-visual.v-sports { background: linear-gradient(160deg, #2B0A4E 0%, #170430 55%, #0A0412 100%); }
.feat-card h3 { color: var(--white); font-size: 19px; margin-bottom: 8px; }
.feat-card p { font-size: 14.5px; color: var(--text-dim); }
.feat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--gold-bright);
  text-decoration: none;
  min-height: 44px;
}
.feat-link svg { width: 15px; height: 15px; transition: transform .18s; }
.feat-link:hover svg { transform: translateX(4px); }

/* ---------- Section rêves ---------- */
.dream {
  position: relative;
  background:
    radial-gradient(700px 340px at 78% 12%, rgba(139,39,216,0.24), transparent 65%),
    radial-gradient(520px 300px at 18% 80%, rgba(214,166,46,0.10), transparent 60%);
  border-top: 1px solid rgba(139,39,216,0.18);
  border-bottom: 1px solid rgba(139,39,216,0.18);
}
.dream-moon {
  position: absolute;
  top: 44px; right: clamp(16px, 8vw, 110px);
  width: clamp(60px, 9vw, 96px);
  color: var(--gold-bright);
  opacity: .9;
  filter: drop-shadow(0 0 26px rgba(255,213,100,0.5));
  animation: moonFloat 9s ease-in-out infinite;
  z-index: 10;
}
@keyframes moonFloat {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-13px) rotate(2deg); }
}
.dream-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 920px) { .dream-grid { grid-template-columns: 1fr 1fr; } }
.dream-teaser {
  background: rgba(18, 5, 31, 0.72);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 22px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-style: italic;
  color: var(--text);
  margin: 22px 0 26px;
}

/* ---------- Communauté : bulles chat ---------- */
.chat-demo {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 36px auto;
}
.bubble {
  max-width: 82%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14.5px;
  line-height: 1.45;
}
.bubble.left {
  align-self: flex-start;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-bottom-left-radius: 6px;
}
.bubble.right {
  align-self: flex-end;
  background: linear-gradient(140deg, var(--purple-royal), var(--violet));
  border-bottom-right-radius: 6px;
  color: var(--white);
}
.bubble .who { display: block; font-size: 11.5px; font-weight: 800; color: var(--gold-bright); margin-bottom: 3px; }
.voice-note { display: flex; align-items: center; gap: 9px; }
.voice-note svg { width: 20px; height: 20px; color: var(--gold-bright); flex: none; }
.wave { display: flex; align-items: center; gap: 2.5px; height: 20px; }
.wave i {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.75);
  height: 30%;
}
.wave i:nth-child(2n) { height: 75%; }
.wave i:nth-child(3n) { height: 50%; }
.wave i:nth-child(5n) { height: 95%; }

/* ---------- Routine quotidienne ---------- */
.routine { display: grid; gap: 40px; align-items: center; }
@media (min-width: 920px) { .routine { grid-template-columns: 1fr 1fr; } }
.routine ul { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.routine li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text);
}
.routine li svg { width: 22px; height: 22px; color: var(--gold-bright); flex: none; }

/* ---------- CTA final ---------- */
.finale {
  text-align: center;
  background:
    radial-gradient(800px 380px at 50% 0%, rgba(139,39,216,0.30), transparent 65%),
    radial-gradient(560px 300px at 50% 100%, rgba(214,166,46,0.14), transparent 60%);
  border-top: 1px solid rgba(139,39,216,0.2);
}
.finale img.logo { width: 92px; height: 92px; border-radius: 22px; margin-bottom: 24px; box-shadow: 0 14px 44px rgba(139,39,216,0.4); }
.finale .hero-badges { justify-content: center; }
.finale .hero-qr { display: flex; justify-content: center; }
@media (max-width: 919px) { .finale .hero-qr { display: none; } }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 40px auto 0; }
.faq details {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
  font-size: 16.5px;
  color: var(--white);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 56px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 18px; height: 18px; color: var(--gold-bright); flex: none; transition: transform .25s; }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq .faq-a { padding: 0 20px 20px; color: var(--text-dim); font-size: 15px; }
.faq .faq-a a { font-weight: 700; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid rgba(139,39,216,0.2);
  padding: 44px clamp(18px, 5vw, 48px) calc(96px + env(safe-area-inset-bottom));
  text-align: center;
  color: var(--text-dim);
  font-size: 13.5px;
}
@media (min-width: 860px) { footer { padding-bottom: 44px; } }
.foot-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin: 16px 0; }
.foot-links a { color: var(--text-dim); text-decoration: none; font-weight: 600; padding: 6px 2px; }
.foot-links a:hover { color: var(--gold-bright); }
.foot-legal { max-width: 680px; margin: 18px auto 0; font-size: 12.5px; opacity: .8; }

/* ---------- Barre sticky mobile ---------- */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(10, 5, 18, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(214,166,46,0.35);
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.22,.8,.3,1);
}
.sticky-bar.show { transform: none; }
@media (min-width: 860px) { .sticky-bar { display: none; } }
.sticky-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 14px; color: var(--white); }
.sticky-brand img { width: 34px; height: 34px; border-radius: 9px; }
.sticky-bar .btn { min-height: 46px; padding: 11px 20px; font-size: 14.5px; flex: none; }

/* ---------- Utilitaires ---------- */
.mt-lg { margin-top: 34px; }
.mb-md { margin-bottom: 22px; }
.mb-lg { margin-bottom: 30px; }
.ctas-center { justify-content: center; }
.demo-clip {
  max-width: 380px;
  border-radius: 18px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
}
.foot-logo { border-radius: 11px; }
.foot-copy { margin-top: 14px; }
.txt-white { color: var(--white); }

/* ---------- Accessibilité mouvement ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .phone, .dream-moon, .scroll-cue, .btn-gold { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .notif { animation: none; }
}
