/* ── Reset & tokens ─────────────────────────────────────────────────────────── */

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

:root {
  --bg:        #0C1116;
  --surface:   #121A20;
  --surface2:  #1A242C;
  --surface3:  #243038;
  --accent:    #2DBA7D;
  --accent2:   #34D08A;
  --accent-dim: rgba(45, 186, 125, 0.10);
  --text1:     #EAF1EE;
  --text2:     #9FB2AD;
  --text3:     #6E817C;
  --border:    rgba(234, 241, 238, 0.07);
  --radius:    20px;
  --shadow:    0 30px 60px -24px rgba(0, 0, 0, 0.7);
  --font-head: 'IBM Plex Sans', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text1);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* ── Nav ─────────────────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(12, 17, 22, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-mark {
  height: 48px;
  width: auto;
  display: block;
}

.nav-logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.5px;
  color: var(--text1);
  line-height: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  transition: color 0.2s;
}

.nav-link:hover { color: var(--text1); }

/* La cible tactile passe à ~44px sans changer la taille visible : ces liens
   restent affichés jusqu'à 900px, donc tactiles sur tablette en paysage. */
.nav-link, .lang-toggle { position: relative; }

.nav-link::after, .lang-toggle::after {
  content: '';
  position: absolute;
  inset: -11px -8px;
}

.lang-toggle {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text2);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 10px;
  border-radius: 20px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s, border-color 0.2s;
}

.lang-toggle:hover {
  color: var(--text1);
  border-color: rgba(255,255,255,0.15);
}

.btn-nav {
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -6px rgba(45, 186, 125, 0.5);
}

/* ── Section commons ─────────────────────────────────────────────────────────── */

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text1);
  margin-bottom: 48px;
}

/* ── Device frame (phone mockup) ─────────────────────────────────────────────── */

.device {
  position: relative;
  border-radius: 52px;
  border: 11px solid #1C1C1E;
  background: #1C1C1E;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.07),
    0 0 0 1px rgba(0,0,0,0.5),
    var(--shadow);
}

.device img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 40px;
}

/* Home indicator */
.device::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  z-index: 10;
  pointer-events: none;
}

/* ── Hero ────────────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100svh;
  padding: 120px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: radial-gradient(45% 45% at 78% 22%, rgba(45, 186, 125, 0.13) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(45, 186, 125, 0.25);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--text1);
  margin-bottom: 20px;
}

.accent { color: var(--accent); }

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.hero-trust li {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  padding-left: 20px;
}

.hero-trust li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ── Hero visual (layered phones) ────────────────────────────────────────────── */

.hero-visual {
  flex: 0 0 auto;
  position: relative;
  width: 380px;
  height: 540px;
}

.hero-visual .device {
  position: absolute;
  width: 270px;
}

.device--back {
  top: 30px;
  right: 0;
  transform: rotate(5deg) scale(0.92);
  opacity: 0.85;
  filter: saturate(0.9);
}

.device--front {
  bottom: 0;
  left: 0;
  z-index: 2;
  transform: rotate(-3deg);
}

/* ── Store buttons ───────────────────────────────────────────────────────────── */

.store-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-btns--centered {
  justify-content: center;
}

.btn-store {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 14px;
  font-family: var(--font-body);
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  min-width: 160px;
}

.btn-store:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -16px rgba(0, 0, 0, 0.9);
}

/* Pré-lancement : le bouton garde sa place dans la maquette mais n'est plus
   une action — voir le drapeau PRELAUNCH dans script.js. */
.btn-store.is-soon {
  cursor: default;
  opacity: 0.5;
  filter: grayscale(0.4);
}

.btn-store.is-soon:hover {
  opacity: 0.5;
  transform: none;
  box-shadow: none;
}

.btn-store span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.btn-store small {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.8;
  line-height: 1;
}

.btn-store strong {
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.btn-apple {
  background: var(--text1);
  color: var(--bg);
}

.btn-google {
  background: var(--surface2);
  color: var(--text1);
  border: 1px solid var(--border);
}

/* ── How it works ────────────────────────────────────────────────────────────── */

.how {
  padding: 100px 0;
}

.steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  text-align: left;
}

.step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.step-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(45, 186, 125, 0.45);
  display: block;
  margin-bottom: 18px;
}

.step h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--text1);
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.65;
}

.step-arrow {
  display: flex;
  align-items: center;
  color: var(--text3);
  font-size: 22px;
  flex: 0 0 auto;
}

/* ── Features ────────────────────────────────────────────────────────────────── */

.features {
  padding: 100px 0;
}

/* ── Thread node (progression fil narratif) ──────────────────────────────── */

.feature-thread-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.thread-step {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  opacity: 0.5;
}

.thread-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid rgba(45, 186, 125, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 0 0 6px var(--bg), 0 0 20px rgba(45, 186, 125, 0.12);
}

/* ── Focus clavier ───────────────────────────────────────────────────────────── */

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── CTA section ─────────────────────────────────────────────────────────────── */

.cta-section {
  padding: 100px 24px;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -1px;
  color: var(--text1);
  margin-bottom: 14px;
}

.cta-sub {
  font-size: 16px;
  color: var(--text2);
  margin-bottom: 36px;
}

/* ── Footer ──────────────────────────────────────────────────────────────────── */

.footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--text3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.45;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text3);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text2); }

.footer-copy {
  font-size: 12px;
  color: var(--text3);
}

/* ── Activities marquee ──────────────────────────────────────────────────────── */

.activities {
  padding: 64px 0 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.activities-head {
  max-width: 1100px;
  margin: 0 auto 32px;
  padding: 0 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.activities-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
}

.activities-note {
  font-size: 15px;
  color: var(--text2);
  font-style: italic;
}

.marquee {
  overflow: hidden;
  padding-bottom: 64px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 45s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-half {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.ha-chip {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 14px 26px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text1);
  white-space: nowrap;
}

/* ── Float chips (mockup annotations) ────────────────────────────────────────── */

.device-wrap {
  position: relative;
  display: inline-block;
}

.float-chip {
  position: absolute;
  z-index: 3;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.6);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: floaty 5s ease-in-out infinite;
}

.float-chip-col {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.float-chip--card strong {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text1);
  line-height: 1.3;
}

.float-chip--card small {
  font-size: 10.5px;
  color: var(--text2);
}

.float-chip-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), #1B7A52);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-dim);
  flex-shrink: 0;
}

.float-chip--tribe {
  top: 36px;
  right: -34px;
}

.float-chip--bubble {
  bottom: 60px;
  left: -30px;
  background: var(--accent);
  border: none;
  border-radius: 16px 16px 16px 4px;
  color: var(--bg);
  font-weight: 600;
  font-size: 14px;
  animation-delay: 1.2s;
}

.float-chip--map {
  top: -14px;
  right: -28px;
  animation-delay: 0.6s;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ── Principles ──────────────────────────────────────────────────────────────── */

.principles {
  padding: 96px 24px 48px;
}

.principles-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.principle {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.principle-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.principle h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--text1);
  margin-bottom: 10px;
}

.principle p {
  font-size: 14.5px;
  color: var(--text2);
  line-height: 1.7;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────────── */

.faq {
  padding: 48px 24px 96px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text1);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-plus {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  font-size: 16px;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.faq-item[open] .faq-plus {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

.faq-answer {
  padding: 0 4px 22px;
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 680px;
}

/* ── Features showcase ───────────────────────────────────────────────────────── */

.features-showcase {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Fil vertical reliant les nœuds */
.features-showcase::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(45, 186, 125, 0.22) 6%,
    rgba(45, 186, 125, 0.22) 94%,
    transparent 100%
  );
  pointer-events: none;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: center;
  gap: 48px;
  padding: 60px 0;
}

.feature-row-visual {
  flex: 0 0 auto;
}

.feature-row-visual .device--sm {
  width: 280px;
}

.feature-row-text {
  flex: 1;
}

.feature-row-text h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.6px;
  color: var(--accent);
  margin: 0 0 14px;
}

.feature-row-text p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.7;
  max-width: 440px;
}

/* Rows alt : texte à gauche aligné à droite */
.feature-row--alt .feature-row-text {
  text-align: right;
}

.feature-row--alt .feature-row-text p {
  margin-left: auto;
}

/* ── Responsive ──────────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .nav-link { display: none; }

  .steps { flex-direction: column; align-items: stretch; }
  .step-arrow { transform: rotate(90deg); justify-content: center; padding: 4px 0; }

  .how { padding: 72px 0; }
  .features { padding: 72px 0; }
  .cta-section { padding: 72px 24px; }

  .feature-row { gap: 32px; padding: 44px 0; }
  .feature-row-visual .device--sm { width: 240px; }

  .principles { padding: 72px 24px 36px; }
  .principles-grid { grid-template-columns: 1fr; max-width: 520px; }
  .faq { padding: 36px 24px 72px; }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 60px;
    gap: 30px;
  }

  .hero-sub { max-width: 100%; }

  .store-btns { justify-content: center; }

  .hero-trust { justify-content: center; }

  .hero-visual {
    width: min(300px, 100%);
    height: 420px;
  }

  .hero-visual .device { width: 210px; }

  .features-showcase::before { display: none; }

  .feature-row,
  .feature-row--alt {
    grid-template-columns: 1fr;
    padding: 28px 0;
    text-align: center;
  }

  /* Ordre : visuel → nœud → texte */
  .feature-row .feature-row-visual,
  .feature-row--alt .feature-row-visual  { order: 1; display: flex; justify-content: center; }
  .feature-row .feature-thread-node,
  .feature-row--alt .feature-thread-node { order: 2; }
  .feature-row .feature-row-text,
  .feature-row--alt .feature-row-text    { order: 3; text-align: center; }
  .feature-row--alt .feature-row-text p  { margin-left: 0; }

  .features-showcase { gap: 20px; }

  .feature-row-visual .device--sm { width: 220px; }

  .feature-row-text p { max-width: 100%; }

  .float-chip--tribe { right: -8px; }
  .float-chip--bubble { left: -8px; }
  .float-chip--map { right: -8px; top: -10px; }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-inner { padding: 40px 24px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero { padding: 120px 48px 80px; }
  .hero-visual { width: 340px; }
  .hero-visual .device { width: 230px; }
  .feature-row { gap: 40px; }
  .feature-row-visual .device--sm { width: 240px; }
}

/* ── Legal pages (privacy, terms) ────────────────────────────────────────────── */

.legal { max-width: 740px; margin: 0 auto; padding: 130px 24px 120px; }
.legal h1 { font-family: var(--font-head); font-size: clamp(28px, 5vw, 42px); letter-spacing: -0.6px; margin-bottom: 8px; }
.legal .date { color: var(--text3); font-size: 13px; margin-bottom: 48px; }
.legal h2 { font-family: var(--font-head); font-size: 18px; letter-spacing: -0.2px; margin: 40px 0 12px; color: var(--accent); }
.legal p, .legal li { font-size: 15px; line-height: 1.75; color: var(--text2); margin-bottom: 12px; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--accent); }
.legal h3 { font-family: var(--font-head); font-size: 15px; font-weight: 600; margin: 28px 0 10px; color: var(--text1); }
.legal .lead { color: var(--text2); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.legal strong { color: var(--text1); font-weight: 600; }
[data-lang] { display: none; }
[data-lang].visible { display: block; }

/* Les tableaux (données collectées, sous-traitants, durées) débordent sur mobile :
   ils défilent dans leur propre conteneur pour que le corps de page ne parte
   jamais en scroll horizontal. */
.legal .table-wrap { overflow-x: auto; margin: 0 0 20px; -webkit-overflow-scrolling: touch; }
.legal table { width: 100%; min-width: 480px; border-collapse: collapse; font-size: 14px; }
.legal th, .legal td { text-align: left; vertical-align: top; padding: 10px 14px 10px 0; border-bottom: 1px solid var(--border); line-height: 1.6; color: var(--text2); }
.legal th { color: var(--text1); font-weight: 600; font-size: 13px; letter-spacing: 0.2px; white-space: nowrap; }
.legal td:first-child { color: var(--text1); }

/* Encadré d'avertissement — sécurité outdoor, limites de l'IA. */
.legal .callout { border: 1px solid rgba(45,186,125,0.25); background: var(--accent-dim); border-radius: 16px; padding: 20px 22px; margin: 24px 0; }
.legal .callout p:last-child, .legal .callout ul:last-child { margin-bottom: 0; }
.legal .callout strong { color: var(--accent); }

/* ── Animations ──────────────────────────────────────────────────────────────── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge, .hero-title, .hero-sub, .store-btns, .hero-trust {
  animation: fadeUp 0.6s ease both;
}

.hero-badge { animation-delay: 0.05s; }
.hero-title { animation-delay: 0.12s; }
.hero-sub   { animation-delay: 0.2s; }
.store-btns { animation-delay: 0.28s; }
.hero-trust { animation-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
