/* ============================================================
   SupraDash — Landing « Night Flight »
   Direction : cockpit de nuit. Navy encre, chartreuse phosphore
   (HUD), ambre instruments. Serif éditoriale Instrument Serif
   pour les displays, mono pour les lectures d'instruments.
   Autonome : ne dépend pas de site.css (réservé au login).
   ============================================================ */

:root {
  /* Encres & surfaces */
  --ink: #0b1222;
  --ink-deep: #070d19;
  --navy-850: #0e1730;
  --navy-800: #111c38;
  --navy-700: #1a2747;
  --paper: #f3f5f9;
  --paper-deep: #e9edf4;
  --card: #ffffff;

  /* Lignes & textes */
  --line: #dbe1ec;
  --line-strong: #c8d1e0;
  --line-dark: rgba(160, 180, 220, .16);
  --muted: #525e72;
  --text-hi-dark: #f4f7fd;
  --text-mid-dark: #aeb9cf;
  --text-low-dark: #7e8ba6;
  --faint-dark: #8fa0bc;

  /* Signature */
  --lime: #d4f94b;
  --lime-deep: #bfe73a;
  --lime-tint: rgba(212, 249, 75, .12);
  --lime-ink: #5d770e;
  --bad: #ab3434;

  /* Typo */
  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono: ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, monospace;

  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --page-max: 1140px;
  --r-lg: 12px;
  --r-xl: 18px;
  --r-2xl: 28px;
  --r-full: 9999px;
  --shadow-soft: 0 1px 2px rgba(11, 18, 34, .05), 0 12px 32px -16px rgba(11, 18, 34, .14);
  --shadow-deep: 0 1px 2px rgba(7, 13, 25, .2), 0 32px 80px -32px rgba(7, 13, 25, .55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 15px;
  line-height: 1.5;
}
::selection { background: var(--lime); color: var(--ink); }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; border-radius: 4px; }
.dark :focus-visible, .fl-hero :focus-visible, .fl-nav :focus-visible, .fl-footer :focus-visible, .duel-col.ifr :focus-visible, .price-card.featured :focus-visible { outline-color: var(--lime); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 300;
  background: var(--ink);
  color: var(--lime);
  padding: 10px 16px;
  border-radius: var(--r-lg);
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}
.skip-link:focus { left: 8px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 20px;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  font: 600 14px/1 var(--sans);
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn-lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 8px 24px -10px rgba(212, 249, 75, .45);
}
.btn-lime:hover { background: var(--lime-deep); transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 12px 32px -10px rgba(212, 249, 75, .6); }
.btn-ghost-dark { background: transparent; color: var(--text-hi-dark); border-color: rgba(170, 190, 230, .28); }
.btn-ghost-dark:hover { border-color: rgba(212, 249, 75, .6); color: var(--lime); }
.btn-outline { background: var(--card); color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); }
.btn.xl { min-height: 50px; padding: 14px 26px; font-size: 15px; }
.btn.full { width: 100%; }

/* ---------- Étiquettes mono (instruments) ---------- */
.tag {
  font: 600 11px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.dark .tag { color: var(--faint-dark); }
.tag-line { display: inline-flex; align-items: center; gap: 10px; }
.tag-line::before { content: ''; width: 26px; height: 1px; background: currentColor; opacity: .5; }

.hero-tag {
  font: 600 11px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint-dark);
}

/* ---------- Nav ---------- */
.fl-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.fl-nav.scrolled {
  background: rgba(7, 13, 25, .82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-dark);
}
.fl-nav-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-hi-dark);
  font-weight: 650;
  font-size: 15px;
  letter-spacing: -0.03em;
}
.roundel {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 249, 75, .85);
  display: grid;
  place-items: center;
  font: 700 10.5px/1 var(--mono);
  letter-spacing: .04em;
  color: var(--lime);
  position: relative;
}
.fl-links { display: flex; align-items: center; gap: 2px; margin-left: 12px; }
.fl-links a {
  color: var(--text-mid-dark);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--r-full);
  transition: color .16s var(--ease), background .16s var(--ease);
}
.fl-links a:hover { color: #fff; background: rgba(170, 190, 230, .12); }
.fl-nav-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.fl-nav-actions .link-login { color: var(--text-mid-dark); text-decoration: none; font-size: 13.5px; font-weight: 500; }
.fl-nav-actions .link-login:hover { color: #fff; }
.nav-burger {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(170, 190, 230, .28);
  border-radius: var(--r-full);
  background: transparent;
  color: var(--text-hi-dark);
  place-items: center;
  cursor: pointer;
}
.nav-burger svg { width: 16px; height: 16px; }

/* Barre de progression « altimètre » */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200; pointer-events: none; }
.scroll-progress span {
  display: block;
  height: 100%;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
}

/* ---------- HERO ---------- */
.fl-hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 78% -10%, rgba(26, 39, 71, .9), transparent 64%),
    radial-gradient(900px 500px at -10% 110%, rgba(17, 28, 56, .8), transparent 60%),
    var(--ink-deep);
  color: var(--text-hi-dark);
  overflow: hidden;
  padding: 0 24px;
}
/* Grille radar */
.radar-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(143, 160, 188, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 160, 188, .07) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(720px 560px at 72% 38%, #000 30%, transparent 78%);
  mask-image: radial-gradient(720px 560px at 72% 38%, #000 30%, transparent 78%);
}

.fl-hero-inner {
  position: relative;
  max-width: var(--page-max);
  margin: 0 auto;
  min-height: 100vh;
  padding: 150px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  align-items: center;
  gap: 56px;
}
.fl-hero-copy { display: grid; gap: 22px; justify-items: start; min-width: 0; }
.fl-title {
  margin: 0;
  font: 400 clamp(44px, 5.6vw, 76px)/1.02 var(--serif);
  letter-spacing: -0.015em;
  color: var(--text-hi-dark);
}
.fl-title em {
  font-style: italic;
  color: var(--lime);
}
.fl-sub {
  margin: 0;
  max-width: 520px;
  color: var(--text-mid-dark);
  font-size: 16.5px;
  line-height: 1.65;
}
.fl-sub strong { color: var(--text-hi-dark); font-weight: 600; }
.fl-ctas { display: flex; flex-wrap: wrap; gap: 10px; }
.fl-proof { margin: 4px 0 0; color: var(--faint-dark); font-size: 13px; }
.fl-proof strong { color: var(--text-hi-dark); font-weight: 600; }
.fl-trust { margin: 0; color: var(--text-low-dark); font-size: 12px; }

/* Entrée : un seul fondu sobre par colonne */
.fl-hero-copy { opacity: 0; animation: riseIn .7s var(--ease-out) .05s forwards; }
@keyframes riseIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Capture produit : le vrai SupraDash dans une fenêtre ---------- */
.shot-wrap { position: relative; min-width: 0; width: 100%; margin: 0 auto; opacity: 0; animation: riseIn .8s var(--ease-out) .25s forwards; }
.shot {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 40px 90px -30px rgba(0, 0, 0, .65);
}
.shot-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: #f4f4f5;
  border-bottom: 1px solid #e4e4e7;
}
.shot-dots { display: inline-flex; gap: 6px; }
.shot-dots i { width: 9px; height: 9px; border-radius: 50%; background: #d4d4d8; }
.shot-url {
  flex: 1;
  text-align: center;
  font: 500 10.5px/1 var(--sans);
  color: #52525b;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  border-radius: 6px;
  padding: 5px 10px;
  max-width: 220px;
  margin: 0 auto;
}
.shot-body { display: grid; grid-template-columns: 118px minmax(0, 1fr); min-height: 296px; }
.shot-side {
  background: #f7f7f8;
  border-right: 1px solid #e4e4e7;
  padding: 12px 8px;
  display: grid;
  gap: 2px;
  align-content: start;
}
.shot-brand { font: 650 11px/1 var(--sans); letter-spacing: -0.02em; color: #0b1222; padding: 4px 8px 10px; }
.shot-nav {
  font: 500 10.5px/1 var(--sans);
  color: #52525b;
  padding: 6px 8px;
  border-radius: 7px;
}
.shot-nav.active { background: #0b1222; color: #ffffff; }
.shot-main { padding: 14px; display: grid; gap: 10px; align-content: start; }
.shot-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.shot-title { font: 650 13px/1 var(--sans); letter-spacing: -0.02em; color: #0b1222; }
.shot-cta {
  font: 600 10px/1 var(--sans);
  color: #0b1222;
  background: #d4f94b;
  border-radius: 7px;
  padding: 6px 10px;
}
.shot-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.shot-metric {
  border: 1px solid #e4e4e7;
  border-radius: 9px;
  padding: 9px 11px;
  display: grid;
  gap: 4px;
  background: #ffffff;
}
.shot-metric small {
  font: 600 8.5px/1 var(--sans);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #52525b;
}
.shot-metric strong { font: 600 14px/1 var(--sans); letter-spacing: -0.02em; color: #0b1222; font-variant-numeric: tabular-nums; white-space: nowrap; }
.shot-section { font: 600 9.5px/1 var(--sans); letter-spacing: .07em; text-transform: uppercase; color: #52525b; margin-top: 2px; }
.shot-row {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #e4e4e7;
  border-radius: 10px;
  padding: 9px 11px;
  background: #ffffff;
}
.shot-chip {
  flex: 0 0 auto;
  font: 600 8.5px/1 var(--sans);
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #52525b;
  background: #f4f4f5;
  border-radius: 999px;
  padding: 4px 8px;
  white-space: nowrap;
}
.shot-chip.danger { color: #ab3434; background: #f5e9e9; }
.shot-chip.warn { color: #8f5616; background: #f3eee2; }
.shot-text { flex: 1; min-width: 0; font: 400 11px/1.4 var(--sans); color: #3f3f46; transition: opacity .22s var(--ease); }
#mockAction.swap .shot-text { opacity: 0; }
.shot-btn {
  flex: 0 0 auto;
  font: 600 10px/1 var(--sans);
  color: #0b1222;
  background: #d4f94b;
  border-radius: 7px;
  padding: 6px 10px;
  white-space: nowrap;
}
.shot-btn.ghost { color: #0b1222; background: #ffffff; border: 1px solid #e4e4e7; }

/* ---------- Sections génériques ---------- */
.section { padding: 110px 24px; }
.section-inner { max-width: var(--page-max); margin: 0 auto; }
.section-inner.narrow { max-width: 780px; }
.section--flush { padding-top: 0; }
.section--tight { padding-top: 40px; }
.section--deep { background: var(--paper-deep); }
.section-head { display: grid; gap: 14px; justify-items: start; margin-bottom: 56px; max-width: 680px; }
.fl-h2 {
  margin: 0;
  font: 400 clamp(32px, 4vw, 52px)/1.06 var(--serif);
  letter-spacing: -0.01em;
}
.fl-h2 em { font-style: italic; color: inherit; }
.section-sub { margin: 0; color: var(--muted); font-size: 16.5px; line-height: 1.65; max-width: 580px; }
.dark { background: var(--ink-deep); color: var(--text-hi-dark); }
.dark .fl-h2 { color: var(--text-hi-dark); }
.dark .fl-h2 em { color: var(--lime); }
.dark .section-sub { color: var(--text-mid-dark); }

/* ---------- Bande logos sources ---------- */
.logo-strip { background: var(--card); border-bottom: 1px solid var(--line); padding: 26px 24px; }
.logo-strip-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px 28px;
  flex-wrap: wrap;
}
.logo-words { display: flex; align-items: center; gap: 10px 30px; flex-wrap: wrap; }
.logo-word {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--muted);
}
.logo-glyph { width: 18px; height: 18px; flex: 0 0 auto; }
.glyph-shopify { color: #95bf47; }
.glyph-meta { color: #0467df; }
.glyph-googleads { color: #4285f4; }
.glyph-tiktok { color: #0b1222; }
.glyph-pinterest { color: #e60023; }
.glyph-ga4 { color: #e37400; }

/* ---------- Instruments (stats) ---------- */
.instruments { background: var(--paper); border-bottom: 1px solid var(--line); padding: 56px 24px; }
.instruments-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.instrument {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
  padding: 8px 12px;
  position: relative;
}
.instrument + .instrument::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: var(--line);
}
.instrument strong {
  font: 600 clamp(30px, 3.4vw, 44px)/1 var(--mono);
  letter-spacing: -0.04em;
  color: var(--ink);
}
.instrument strong sup { font-size: .45em; color: var(--muted); font-weight: 600; }
.instrument span { color: var(--muted); font-size: 12.5px; }

/* ---------- Vol à vue / aux instruments ---------- */
.duel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; align-items: stretch; }
.duel-col {
  border-radius: var(--r-2xl);
  padding: 30px;
  display: grid;
  gap: 10px;
  align-content: start;
}
.duel-col.vfr { background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.duel-col.ifr {
  background: linear-gradient(180deg, var(--navy-850), var(--ink-deep));
  border: 1px solid var(--line-dark);
  color: var(--text-hi-dark);
  box-shadow: inset 0 1px 0 rgba(190, 210, 250, .07), var(--shadow-deep);
  position: relative;
}
.duel-head { margin: 0 0 12px; display: grid; gap: 4px; }
.duel-head .tag-line { color: inherit; opacity: .75; }
.duel-head h3 { margin: 0; font: 400 24px/1.15 var(--serif); letter-spacing: -0.01em; }
.duel-item { display: flex; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); }
.duel-col.ifr .duel-item { border-top-color: var(--line-dark); }
.duel-item .mark {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--bad);
}
.duel-col.ifr .duel-item .mark { border-color: rgba(212, 249, 75, .4); color: var(--lime); }
.duel-item .mark svg { width: 11px; height: 11px; }
.duel-item strong { display: block; font-size: 15px; letter-spacing: -0.015em; font-weight: 600; }
.duel-item p { margin: 3px 0 0; font-size: 14px; line-height: 1.55; color: var(--muted); }
.duel-col.ifr .duel-item p { color: var(--text-mid-dark); }

/* ---------- Poste de pilotage (modules) ---------- */
.deck-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.deck-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 24px;
  display: grid;
  gap: 10px;
  align-content: start;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
  position: relative;
  overflow: hidden;
}
.deck-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .3s var(--ease);
}
.deck-card:hover { border-color: var(--ink); }
.deck-card:hover .deck-idx { color: var(--lime-ink); }
.deck-card:hover::before { transform: scaleX(1); }
.deck-idx { font: 600 10.5px/1 var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.deck-card h3 { margin: 2px 0 0; font: 400 20px/1.25 var(--serif); letter-spacing: -0.01em; }
.deck-card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

.steps-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.step-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 26px;
  display: grid;
  gap: 8px;
  align-content: start;
}
.step-card .tag { color: var(--muted); }
.step-card h3 { margin: 4px 0 0; font: 400 21px/1.2 var(--serif); }
.step-card p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ---------- Cartes d'embarquement (témoignages) ---------- */
.boarding-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.boarding {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.boarding:hover { border-color: var(--ink); }
.boarding blockquote { margin: 0; padding: 20px 22px; font-size: 15px; line-height: 1.65; color: var(--ink); }
.boarding blockquote em { font-family: var(--serif); font-size: 1.06em; }
.boarding-bottom {
  border-top: 1px solid var(--line);
  padding: 14px 22px 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 4px 10px;
}
.boarding .pax-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--lime);
  font: 700 11px/1 var(--mono);
}
.pax-meta { display: grid; min-width: 0; }
.pax-meta strong { font-size: 13px; letter-spacing: -0.01em; }
.pax-meta small { color: var(--muted); font-size: 11.5px; }
.pax-stat {
  grid-column: 1 / -1;
  justify-self: start;
  font: 600 10.5px/1 var(--mono);
  letter-spacing: .06em;
  color: var(--lime-ink);
  background: var(--lime-tint);
  border: 1px solid rgba(191, 231, 58, .5);
  border-radius: var(--r-full);
  padding: 5px 10px;
  margin-top: 6px;
}

/* ---------- Règlement de vol (manifesto) ---------- */
.rules { position: relative; padding: 110px 24px; overflow: hidden; }
.rules-inner { max-width: var(--page-max); margin: 0 auto; display: grid; gap: 28px; justify-items: start; position: relative; }
.rules-lines { display: grid; gap: 6px; }
.rules-lines p {
  margin: 0;
  font: 400 clamp(24px, 3.2vw, 40px)/1.25 var(--serif);
  color: var(--text-low-dark);
  letter-spacing: -0.01em;
}
.rules-lines p em { font-style: italic; color: var(--text-hi-dark); transition: color .3s var(--ease); }
.rules-lines p:hover em { color: var(--lime); }

/* ---------- Comparaison ---------- */
.compare-wrap {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: auto;
  background: var(--card);
  box-shadow: var(--shadow-soft);
}
.compare-grid { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-grid th, .compare-grid td { border-bottom: 1px solid var(--line); padding: 13px 16px; text-align: center; font-size: 13px; }
.compare-grid thead th {
  background: var(--paper);
  font: 600 10.5px/1.3 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.compare-grid th:first-child, .compare-grid td:first-child { text-align: left; font-weight: 500; color: var(--ink); }
.compare-grid td:not(:first-child) { color: var(--muted); }
.compare-grid tr:last-child td { border-bottom: 0; }
.compare-grid .col-cp { background: var(--ink); color: var(--lime) !important; font-weight: 600; border-bottom-color: rgba(212, 249, 75, .18); }
.compare-grid thead th.col-cp { background: var(--ink); color: var(--lime); }
.compare-grid tr:last-child .col-cp { border-bottom: 0; }
.compare-grid td .icon { width: 14px; height: 14px; }

/* ---------- Pricing ---------- */
.billing-toggle {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
}
.billing-option {
  border: 1px solid transparent;
  background: transparent;
  border-radius: var(--r-full);
  padding: 8px 16px;
  font: 600 13px/1 var(--sans);
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .16s var(--ease), color .16s var(--ease);
}
.billing-option.active { background: var(--ink); color: var(--paper); }
.billing-option .pill {
  font: 600 10px/1 var(--mono);
  background: var(--lime);
  color: var(--ink);
  padding: 3px 7px;
  border-radius: var(--r-full);
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 30px;
  display: grid;
  gap: 20px;
  align-content: start;
  grid-template-rows: auto auto auto 1fr auto;
  position: relative;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.price-card:hover { border-color: var(--lime-deep); box-shadow: var(--shadow-soft); }
.price-card.featured {
  background: linear-gradient(180deg, var(--navy-850), var(--ink-deep));
  border-color: rgba(212, 249, 75, .35);
  color: var(--text-hi-dark);
  box-shadow: inset 0 1px 0 rgba(190, 210, 250, .07), var(--shadow-deep);
}
.featured-tag {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--lime);
  color: var(--ink);
  font: 700 10.5px/1 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  padding: 7px 12px;
}
.price-head h3 { margin: 0 0 4px; font: 400 24px/1.1 var(--serif); letter-spacing: -0.01em; }
.price-head p { margin: 0; color: var(--muted); font-size: 13px; }
.price-card.featured .price-head p { color: var(--text-mid-dark); }
.price-line { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price-amount { font: 600 46px/1 var(--mono); letter-spacing: -0.05em; }
.price-amount.swap { animation: priceSwap .25s var(--ease); }
@keyframes priceSwap { from { opacity: 0; transform: translateY(4px); } }
.price-unit { color: var(--muted); font-size: 14px; }
.price-card.featured .price-unit { color: var(--text-mid-dark); }
.price-note { margin: -12px 0 0; font-size: 12px; color: var(--muted); }
.price-card.featured .price-note { color: var(--faint-dark); }
.price-features { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; align-content: start; }
.price-features li { padding-left: 24px; position: relative; font-size: 14px; line-height: 1.5; }
.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 14px;
  background: currentColor;
  opacity: .85;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3.5 8.5 3 3 6-7'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3.5 8.5 3 3 6-7'/%3E%3C/svg%3E") center / contain no-repeat;
}
.price-features li { color: var(--ink); }
.price-card.featured .price-features li { color: var(--text-hi-dark); }
.price-card.featured .price-features li::before { color: var(--lime); background: var(--lime); opacity: 1; }
.pricing-foot { text-align: center; color: var(--muted); font-size: 13px; margin: 28px 0 0; }

/* ---------- Journal de bord (fondateur) ---------- */
.logbook {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.logbook-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  padding: 16px 32px;
  border-bottom: 1px dashed var(--line);
  font: 600 10.5px/1 var(--mono);
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}
.logbook-body { padding: 32px; display: grid; gap: 14px; }
.logbook-body h2 { margin: 0; font: 400 clamp(24px, 3vw, 34px)/1.15 var(--serif); letter-spacing: -0.01em; }
.logbook-body p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.logbook-body p em { font-style: italic; font-family: var(--serif); color: var(--ink); font-size: 1.05em; }
.logbook-body p strong { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item[open] { border-color: var(--ink); box-shadow: var(--shadow-soft); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 20px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}
.faq-icon .icon { width: 11px; height: 11px; }
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--lime); border-color: var(--lime); }
.faq-item p { margin: 0; padding: 0 20px 18px; color: var(--muted); font-size: 14.5px; line-height: 1.65; }

/* ---------- Piste d'envol (CTA final) ---------- */
.runway-section {
  position: relative;
  overflow: hidden;
  padding: 120px 24px;
  text-align: center;
}
.runway-inner { position: relative; max-width: 720px; margin: 0 auto; display: grid; gap: 18px; justify-items: center; }
.runway-inner .fl-h2 { font-size: clamp(36px, 4.6vw, 60px); }
.runway-inner p { margin: 0; color: var(--text-mid-dark); font-size: 15.5px; }

/* ---------- Footer ---------- */
.fl-footer { background: var(--ink-deep); color: var(--text-mid-dark); border-top: 1px solid var(--line-dark); padding: 56px 24px 28px; }
.fl-footer-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.fl-footer .brand { color: var(--text-hi-dark); }
.footer-brand { display: grid; gap: 14px; align-content: start; justify-items: start; }
.footer-brand p { margin: 0; font-size: 13px; line-height: 1.6; color: var(--faint-dark); }
.footer-brand p em { font-family: var(--serif); font-style: italic; color: var(--text-hi-dark); }
.footer-col { display: grid; gap: 10px; align-content: start; }
.footer-col strong { font: 600 10.5px/1 var(--mono); letter-spacing: .13em; text-transform: uppercase; color: var(--text-low-dark); margin-bottom: 4px; }
.footer-col a { color: var(--text-mid-dark); text-decoration: none; font-size: 13px; transition: color .16s var(--ease); }
.footer-col a:hover { color: var(--lime); }
.fl-footer-base {
  max-width: var(--page-max);
  margin: 44px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  color: var(--text-low-dark);
  font: 500 11.5px/1.4 var(--mono);
  letter-spacing: .04em;
}

/* ---------- Reveal au scroll ---------- */
/* L'état caché ne s'applique que si le JS est là (html.js) ET tant que
   l'élément n'est pas révélé — :not(.visible) garantit que la révélation
   gagne toujours la spécificité. */
[data-reveal] {
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
html.js [data-reveal]:not(.visible) {
  opacity: 0;
  transform: translateY(24px);
}

.icon { width: 16px; height: 16px; flex: 0 0 auto; display: inline-block; vertical-align: -3px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .fl-hero-inner { grid-template-columns: 1fr; gap: 44px; min-height: auto; padding: 130px 0 70px; }
  .shot-wrap { max-width: 560px; }
  .deck-grid, .steps-grid, .pricing-grid, .boarding-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .duel { grid-template-columns: 1fr; }
  .instruments-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 0; }
  .instrument:nth-child(3)::before { display: none; }
  .fl-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .fl-links { display: none; }
  .nav-burger { display: grid; }

  /* Menu mobile : panneau plein sous la nav, liens empilés */
  .fl-nav.menu-open {
    background: var(--ink-deep);
    border-bottom-color: var(--line-dark);
  }
  .fl-nav.menu-open .nav-burger {
    border-color: rgba(212, 249, 75, .6);
    color: var(--lime);
  }
  .fl-nav.menu-open .fl-links {
    display: grid;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 8px 16px 16px;
    gap: 2px;
    background: var(--ink-deep);
    border-bottom: 1px solid var(--line-dark);
    box-shadow: var(--shadow-deep);
  }
  .fl-nav.menu-open .fl-links a {
    padding: 12px 14px;
    font-size: 15px;
    border-radius: var(--r-lg);
  }
}

/* ---------- Mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  html.js [data-reveal]:not(.visible) { opacity: 1; transform: none; }
  .fl-hero-copy, .shot-wrap { opacity: 1; animation: none; }
}

/* ---------- Transitions inter-pages ----------
   Fondu croisé natif entre les pages (View Transitions cross-document).
   html.no-vt = repli JS (src/warm.js) pour les navigateurs sans support. */
@media (prefers-reduced-motion: no-preference) {
  @view-transition { navigation: auto; }
  ::view-transition-old(root) { animation-duration: .2s; }
  ::view-transition-new(root) { animation-duration: .3s; }
  html.no-vt body { animation: pageWarmIn .3s ease both; }
  html.no-vt body.page-leave { opacity: 0; transition: opacity .16s ease; }
}
@keyframes pageWarmIn { from { opacity: 0; } }
