/* ═══════════════════════════════════════════════════════════════
   WAKE UP — Site officiel
   Palette « flamme bleue » : bleu nuit · bleu Flamy · blanc · aube
   Langage visuel : éditorial, asymétrique, grain — pas de template.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #0B1220;
  --bg-2: #0F172A;
  --surface: #111C30;
  --surface-2: #17233B;
  --border: #243350;

  --blue: #2563EB;
  --blue-2: #3B82F6;
  --blue-3: #60A5FA;
  --ice: #93C5FD;
  --ice-2: #BFDBFE;

  --text: #F0F5FF;
  --text-2: #A7B4CC;
  --muted: #64748B;

  --rose: #F472B6;
  --amber: #FBBF24;
  --paper: #EEF2F8;
  --ink: #101828;

  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 60px -20px rgba(2, 8, 23, 0.85);
  --glow: 0 0 44px rgba(59, 130, 246, 0.32);

  --font-title: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "Cascadia Mono", monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain de film — la patte « print » qui casse le côté générique */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--blue); color: #fff; }

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1120px, 92%); margin: 0 auto; }
.container--narrow { width: min(780px, 92%); }
.center { text-align: center; }

h1, h2, h3 { font-family: var(--font-title); line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5.6vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.12rem; font-weight: 700; }

.mono { font-family: var(--font-mono); }

.grad-text {
  background: linear-gradient(120deg, var(--ice-2), var(--blue-3) 45%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue-3);
  margin-bottom: 1rem;
}

/* Icônes SVG inline */
.ic {
  width: 1.15em;
  height: 1.15em;
  flex: none;
  color: var(--blue-3);
  vertical-align: -0.18em;
}

/* ── Boutons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 14px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-3), var(--blue));
  color: #fff;
  padding: 0.9rem 1.5rem;
  box-shadow: var(--glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(59, 130, 246, 0.5); }

.btn-ghost {
  color: var(--text-2);
  border-color: var(--border);
  padding: 0.9rem 1.5rem;
  background: rgba(17, 28, 48, 0.45);
}
.btn-ghost:hover { border-color: var(--blue-3); color: var(--text); }

.btn-lg { font-size: 1.02rem; padding: 1.05rem 1.8rem; border-radius: 16px; }
.btn-sm { font-size: 0.88rem; padding: 0.6rem 1.05rem; }
.btn-block { width: 100%; }
.btn-glow { box-shadow: 0 0 56px rgba(59, 130, 246, 0.45); }

/* ── Navigation ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 0.8rem 0;
  transition: background 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 18, 32, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.nav-inner { display: flex; align-items: center; gap: 1.5rem; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.15rem;
}
.brand-flamy { width: 30px; height: 30px; filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.55)); }

.nav-links { display: flex; gap: 1.4rem; margin-left: auto; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav > .nav-inner > .btn { margin-left: 0.5rem; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-burger span {
  width: 22px; height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8.5rem 0 0;
  background:
    radial-gradient(1100px 620px at 78% 12%, rgba(37, 99, 235, 0.20), transparent 60%),
    linear-gradient(180deg, #0B1220 0%, #0D1526 78%, #10192E 100%);
  overflow: hidden;
}

.stars, .stars--far {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.stars {
  height: 2px; width: 2px; border-radius: 50%;
  background: transparent;
  box-shadow:
    12vw 18vh 0 0 var(--ice), 28vw 8vh 0 -0.5px #BFDBFE, 44vw 22vh 0 0 var(--ice-2),
    62vw 12vh 0 -0.5px var(--ice), 78vw 26vh 0 0 #BFDBFE, 90vw 9vh 0 -0.5px var(--ice-2),
    8vw 42vh 0 0 var(--ice-2), 36vw 52vh 0 -0.5px var(--ice), 55vw 44vh 0 0 #BFDBFE,
    72vw 56vh 0 -0.5px var(--ice), 94vw 48vh 0 0 var(--ice-2), 20vw 68vh 0 -0.5px #BFDBFE,
    48vw 74vh 0 0 var(--ice), 82vw 70vh 0 -0.5px var(--ice-2), 5vw 82vh 0 0 var(--ice),
    64vw 84vh 0 -0.5px #BFDBFE, 33vw 34vh 0 -0.5px var(--ice-2), 88vw 88vh 0 0 var(--ice);
  animation: twinkle 4.5s ease-in-out infinite alternate;
}
.stars--far {
  height: 1.5px; width: 1.5px;
  box-shadow:
    16vw 30vh 0 0 rgba(191, 219, 254, 0.5), 52vw 20vh 0 0 rgba(147, 197, 253, 0.4),
    70vw 38vh 0 0 rgba(191, 219, 254, 0.5), 26vw 60vh 0 0 rgba(147, 197, 253, 0.35),
    85vw 62vh 0 0 rgba(191, 219, 254, 0.45), 40vw 86vh 0 0 rgba(147, 197, 253, 0.4);
  animation: twinkle 6s ease-in-out infinite alternate-reverse;
}
@keyframes twinkle { from { opacity: 0.55; } to { opacity: 1; } }

.hero-glow {
  position: absolute;
  top: 8%; right: 6%;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.28), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}

/* Filigrane géant derrière le hero */
.hero-word {
  position: absolute;
  bottom: 6%;
  left: -1.5%;
  z-index: 0;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(6rem, 19vw, 17rem);
  letter-spacing: -0.04em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(96, 165, 250, 0.13);
  pointer-events: none;
  user-select: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2.5rem;
  padding-bottom: 4rem;
}

/* Badge façon sticker penché */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: var(--ice);
  background: rgba(17, 28, 48, 0.85);
  border: 1.5px solid rgba(96, 165, 250, 0.45);
  padding: 0.42rem 0.95rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  transform: rotate(-2deg);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue-3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(96, 165, 250, 0); }
  100% { box-shadow: 0 0 0 0 rgba(96, 165, 250, 0); }
}

.hero h1 { margin-bottom: 1.3rem; }

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-2);
  max-width: 33rem;
  margin-bottom: 2rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.9rem; }

.hero-points { display: grid; gap: 0.55rem; color: var(--text-2); font-size: 0.94rem; }
.hero-points li { display: flex; align-items: center; gap: 0.6rem; }

/* Scène Flamy 3D */
.hero-flamy { display: flex; justify-content: center; }
.flamy-stage {
  position: relative;
  width: min(420px, 88vw);
  aspect-ratio: 1 / 1.1;
}
#flamy3d {
  width: 100%;
  height: 100%;
  cursor: pointer;
  touch-action: manipulation;
}
.flamy-fallback { position: absolute; inset: 15%; }
.flamy-fallback svg { width: 100%; height: 100%; }
.fb-bob { animation: fbfloat 3s ease-in-out infinite; transform-origin: 60px 70px; }
@keyframes fbfloat { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-9px) rotate(2deg); } }

.flamy-caption {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
}

/* ── Horizon d'aube (remplace le bandeau défilant) ────────────── */
.horizon {
  position: relative;
  height: 130px;
  margin-top: auto;
  background:
    radial-gradient(90% 100% at 50% 100%, rgba(251, 191, 36, 0.16), transparent 70%),
    linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.08));
  border-top: 1px solid rgba(96, 165, 250, 0.25);
}
.horizon-sun {
  position: absolute;
  left: 50%;
  bottom: -34px;
  transform: translateX(-50%);
  width: 120px; height: 68px;
  border-radius: 120px 120px 0 0;
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.55), rgba(251, 191, 36, 0.08));
  box-shadow: 0 -6px 40px rgba(251, 191, 36, 0.35);
}
.horizon-stats {
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  color: var(--text-2);
  white-space: nowrap;
}
.horizon-stats i { font-style: normal; color: var(--muted); }

/* ── Sections génériques ─────────────────────────────────────── */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--bg-2); }

.section-head { max-width: 42rem; margin: 0 auto 3.2rem; text-align: center; }
.section-head p { color: var(--text-2); margin-top: 0.8rem; }
.section-head--left { text-align: left; margin-left: 0; }

/* ── « Comment ça marche » : liste éditoriale numérotée ───────── */
.how { max-width: 60rem; }

.how-row {
  position: relative;
  display: grid;
  grid-template-columns: 92px 128px 1fr;
  gap: 1.6rem;
  align-items: center;
  padding: 2.1rem 0;
  border-top: 1px solid var(--border);
}
.how-row:last-child { border-bottom: 1px solid var(--border); }

.how-when {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  transform: rotate(-1deg);
}
.how-num {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 4.4rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(96, 165, 250, 0.55);
  transition: color 0.3s ease;
}
.how-row:hover .how-num { color: rgba(96, 165, 250, 0.25); }
.how-body h3 { margin-bottom: 0.45rem; }
.how-body p { color: var(--text-2); font-size: 0.96rem; max-width: 34rem; }

/* ── Missions : stickers penchés, scotch inclus ───────────────── */
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem 1.2rem; }

.mission-card {
  position: relative;
  background: linear-gradient(165deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
}
/* Penchements décalés — c'est une planche de stickers, pas une grille */
.mission-card:nth-child(odd) { transform: rotate(-1.3deg); }
.mission-card:nth-child(even) { transform: rotate(0.9deg); }
.mission-card:nth-child(3n) { margin-top: 1.1rem; }
.mission-card:hover {
  transform: rotate(0) translateY(-5px);
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: var(--shadow);
  z-index: 2;
}
.mission-card--surprise {
  background: linear-gradient(150deg, var(--surface), rgba(37, 99, 235, 0.24));
  border-color: rgba(96, 165, 250, 0.42);
}

/* Morceau de ruban adhésif en haut de chaque sticker */
.mission-tape {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 74px; height: 20px;
  background: rgba(191, 219, 254, 0.16);
  border-left: 1px dashed rgba(191, 219, 254, 0.25);
  border-right: 1px dashed rgba(191, 219, 254, 0.25);
}

.mission-icon {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 15px;
  margin-bottom: 1rem;
}
.mission-icon svg { width: 26px; height: 26px; color: var(--blue-3); }
.mission-card--surprise .mission-icon svg { color: var(--ice-2); }
.mission-card p { color: var(--text-2); font-size: 0.92rem; margin-top: 0.4rem; }

/* ── Aperçu : split + mockup téléphone penché ─────────────────── */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3.5rem;
}
.split .lead { color: var(--text-2); margin: 0.9rem 0 1.6rem; }

.checklist { display: grid; gap: 0.7rem; margin-bottom: 2rem; color: var(--text-2); }
.checklist li { display: flex; gap: 0.65rem; align-items: center; }
.checklist li::before {
  content: "";
  flex: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2360A5FA' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 11px no-repeat;
  border: 1px solid rgba(96, 165, 250, 0.35);
}

.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative;
  width: 290px;
  aspect-ratio: 9 / 19;
  border-radius: 42px;
  background: linear-gradient(160deg, #1D2C4A, var(--surface));
  border: 1.5px solid var(--border);
  padding: 10px;
  box-shadow: var(--shadow), var(--glow);
  transform: rotate(3deg);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}
.phone-wrap:hover .phone { transform: rotate(0deg); }
.phone-notch {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 22px;
  background: var(--bg);
  border-radius: 999px;
  z-index: 2;
}
.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 33px;
  background: linear-gradient(180deg, #0E1830, #0B1220);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.4rem 1.3rem 2.4rem;
  text-align: center;
}
.app-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--blue-3);
  border: 1px solid rgba(96, 165, 250, 0.4);
  background: rgba(37, 99, 235, 0.13);
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
}
.dot { width: 6px; height: 6px; border-radius: 50%; }
.dot-on { background: var(--blue-3); animation: pulse 2s infinite; }

.app-clock {
  font-family: var(--font-title);
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ice-2);
  margin: 1.1rem 0 0.6rem;
}
.app-days { display: flex; gap: 0.35rem; margin-bottom: 1.3rem; }
.app-day {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  font-size: 0.68rem; font-weight: 700;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--muted);
}
.app-day--on { background: var(--blue); border-color: var(--blue); color: #fff; }

.app-label {
  align-self: flex-start;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.app-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: auto; }
.app-chip {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-2);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.35rem 0.6rem;
  border-radius: 10px;
}
.app-chip--on { background: var(--blue); border-color: var(--blue); color: #fff; }

.app-cta {
  width: 100%;
  padding: 0.8rem 0;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--blue-3), var(--blue));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--glow);
}

.app-flamy { position: absolute; right: -14px; bottom: 58px; width: 74px; filter: drop-shadow(0 8px 18px rgba(37, 99, 235, 0.45)); }

.phone-shadow {
  position: absolute;
  bottom: -34px;
  width: 240px; height: 46px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.30), transparent 70%);
}

/* ── Premium : le reçu MVola ──────────────────────────────────── */
.receipt { display: flex; justify-content: center; perspective: 900px; }
.receipt-paper {
  width: min(460px, 100%);
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
  padding: 2rem 1.9rem 1.8rem;
  transform: rotate(-1.6deg);
  box-shadow:
    0 1px 2px rgba(2, 8, 23, 0.4),
    0 30px 60px -18px rgba(2, 8, 23, 0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.receipt-paper:hover { transform: rotate(0deg) scale(1.01); }

.receipt-head { display: flex; align-items: center; gap: 0.85rem; }
.receipt-flame { width: 34px; height: 34px; color: var(--blue); flex: none; }
.receipt-title { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; }
.receipt-sub { font-size: 0.68rem; color: #5a6474; margin-top: 2px; }

.receipt-sep { border-top: 2px dashed rgba(16, 24, 40, 0.28); margin: 1.15rem 0; }

.receipt-items { display: grid; gap: 0.55rem; font-size: 0.82rem; }
.receipt-items li { display: flex; justify-content: space-between; gap: 1rem; }
.receipt-items li span:last-child { color: #3d4a5c; white-space: nowrap; }

.receipt-total { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.receipt-total > span:first-child { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.14em; }
.receipt-price { font-size: 1.7rem; font-weight: 700; letter-spacing: -0.02em; }
.receipt-per { font-size: 0.85rem; font-weight: 500; color: #5a6474; }

.receipt-meta {
  font-size: 0.78rem;
  color: #5a6474;
  margin: 0.9rem 0 1.4rem;
  line-height: 1.55;
}

/* Le bouton du reçu reste bleu marque — signature Wake Up */
.receipt-paper .btn-primary { margin-top: 0.2rem; }

/* ── Installation ────────────────────────────────────────────── */
.install-steps { display: grid; gap: 1rem; margin-bottom: 2rem; }
.install-steps li {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
}
.install-num {
  flex: none;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  font-family: var(--font-title);
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-3), var(--blue));
  border-radius: 12px;
  box-shadow: var(--glow);
}
.install-steps p { color: var(--text-2); font-size: 0.93rem; margin-top: 0.25rem; }

.install-warn {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: rgba(37, 99, 235, 0.10);
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin-bottom: 2.2rem;
  color: var(--text-2);
  font-size: 0.93rem;
}
.install-warn svg { flex: none; color: var(--blue-3); margin-top: 2px; }
.install-warn strong { color: var(--text); }

/* ── FAQ : liste éditoriale, hairlines, pas de boîtes ─────────── */
.faq-list { border-top: 1px solid var(--border); }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0.2rem;
  font-weight: 600;
  font-size: 1.02rem;
  transition: color 0.15s ease;
}
.faq-item summary:hover { color: var(--blue-3); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "→";
  font-family: var(--font-mono);
  color: var(--muted);
  margin-right: 0.2rem;
  transition: color 0.15s ease;
}
.faq-item[open] summary::before { color: var(--blue-3); }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-title);
  font-size: 1.35rem;
  color: var(--blue-3);
  transition: transform 0.22s ease;
  flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 2.2rem 1.35rem 1.7rem;
  color: var(--text-2);
  font-size: 0.93rem;
}
.faq-item a { color: var(--blue-3); text-decoration: underline; }

/* ── CTA final + footer ──────────────────────────────────────── */
.cta-final { background: var(--bg); padding: 7rem 0 0; overflow: hidden; }
.cta-sub { color: var(--text-2); margin: 1rem 0 2rem; }
.cta-final .horizon--mini { height: 90px; margin-top: 4.5rem; }

.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 3rem 0 2rem; }
.footer-word {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(3rem, 10vw, 6.5rem);
  letter-spacing: -0.03em;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(96, 165, 250, 0.22);
  margin-bottom: 2.2rem;
  user-select: none;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 0.8rem; }
.footer-links { display: grid; gap: 0.6rem; }
.footer-links a { color: var(--text-2); font-size: 0.92rem; }
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  padding-top: 1.6rem;
  color: var(--muted);
  font-size: 0.82rem;
}
.mg-line { display: inline-flex; align-items: center; gap: 0.45rem; }
.mg-line .ic { color: var(--muted); }

/* ── Animations d'apparition ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }

/* Les stickers gardent leur penchement après le reveal */
.mission-card.reveal { transform: translateY(26px); }
.mission-card.reveal.visible:nth-child(odd) { transform: rotate(-1.3deg); }
.mission-card.reveal.visible:nth-child(even) { transform: rotate(0.9deg); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 2; }
  .hero-flamy { order: 1; margin-top: -1rem; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-points { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 1.2rem; }
  .how-row { grid-template-columns: 64px 1fr; }
  .how-num { grid-row: span 2; font-size: 2.8rem; }
  .how-when { grid-column: 2; }
  .how-body { grid-column: 2; }
  .mission-grid { grid-template-columns: 1fr 1fr; }
  .mission-card:nth-child(3n) { margin-top: 0; }
  .split { grid-template-columns: 1fr; gap: 4rem; }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    inset: 64px 4% auto;
    flex-direction: column;
    gap: 0;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.6rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 0.85rem 1rem; border-radius: 10px; }
  .nav-links a:hover { background: rgba(37, 99, 235, 0.14); }
  .nav > .nav-inner > .btn { display: none; }
  .nav-burger { display: flex; }

  .hero { padding-top: 6.5rem; }
  .hero-word { font-size: 24vw; bottom: 14%; }
  .horizon { height: 110px; }
  .horizon-stats { gap: 0.35rem; font-size: 0.68rem; top: 18px; }
  .mission-grid { grid-template-columns: 1fr; }
  .mission-card:nth-child(odd),
  .mission-card:nth-child(even),
  .mission-card.reveal.visible:nth-child(odd),
  .mission-card.reveal.visible:nth-child(even) { transform: rotate(0); }
  .section { padding: 4rem 0; }
  .receipt-paper { padding: 1.6rem 1.3rem 1.5rem; }
  .faq-item p { padding-left: 1.2rem; padding-right: 0.6rem; }
}

/* ── Accessibilité : mouvement réduit ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .stars, .stars--far, .pulse-dot, .fb-bob { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .mission-card.reveal.visible:nth-child(odd) { transform: rotate(-1.3deg); }
  .mission-card.reveal.visible:nth-child(even) { transform: rotate(0.9deg); }
}
