/* ============================================================
   Skydex — landing getskydex.com (6 août 2026)
   Structure inspirée d'une maquette ChatGPT fournie par l'auteur,
   contenu réaligné sur le produit réel (voir SKYDEX.md) :
   pas de « Pokédex » (marque Nintendo + le vocabulaire du projet est
   « Hangar »), pas de badges stores avant la publication, pas de
   promesse de synchronisation (le produit est local d'abord — c'est
   un argument, pas un manque), cartes = vrais rendus du moteur de
   l'app avec photos Wikimedia Commons créditées.
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: #070c14; color: #fff; font-family: 'Barlow', sans-serif; }
img { max-width: 100%; }

/* ---- entête ---- */
.lp-head { position: sticky; top: 0; z-index: 50; display: flex; align-items: center;
  gap: 26px; padding: 14px clamp(16px, 4vw, 44px);
  background: rgba(7,12,20,.88); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.07); }
.lp-logo { flex: 0 0 auto; display: flex; }
.lp-head nav { flex: 1; display: flex; gap: 22px; }
.lp-head nav a { color: #9db0c6; text-decoration: none; font-size: .88rem; }
.lp-head nav a:hover { color: #fff; }
.lp-cta { display: inline-block; background: #2f7bf0; color: #fff; text-decoration: none;
  font-family: 'Barlow Condensed'; font-weight: 700; font-size: 1.05rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 13px 28px; border-radius: 999px; }
.lp-cta:hover { background: #3d8bfd; }
.lp-cta.small { font-size: .9rem; padding: 9px 20px; }

/* ---- héros ---- */
.lp-hero { position: relative; min-height: min(88vh, 860px); display: flex; align-items: center;
  overflow: hidden; }
.lp-hero .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.lp-hero::after { content: ''; position: absolute; inset: auto 0 0 0; height: 140px;
  background: linear-gradient(180deg, transparent, #070c14); }
.lp-hero-inner { max-width: 1080px; width: 100%; margin: 0 auto;
  padding: clamp(60px, 10vh, 120px) clamp(16px, 4vw, 44px); }
.lp-hero .badge { display: block; margin-bottom: 18px; }
.lp-hero h1 { font-family: 'Barlow Condensed'; font-style: italic; font-weight: 800;
  font-size: clamp(3rem, 8vw, 5.2rem); line-height: .95; text-transform: uppercase;
  letter-spacing: .01em; text-shadow: 0 2px 24px rgba(0,0,0,.55); }
.lp-hero .lead { max-width: 430px; margin-top: 20px; font-size: 1.02rem; line-height: 1.6;
  color: #c6d3e4; text-shadow: 0 1px 10px rgba(0,0,0,.6); }
.lp-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.lp-soon { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: #8fa1b8;
  border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 11px 18px; }

/* ---- sections ---- */
.lp-section { padding: clamp(56px, 9vw, 100px) clamp(16px, 4vw, 44px); max-width: 1160px; margin: 0 auto; }
.lp-section.alt { max-width: none; background: #0a111d; }
.lp-section.alt > * { max-width: 1160px; margin-left: auto; margin-right: auto; }
.lp-section h2 { font-family: 'Barlow Condensed'; font-style: italic; font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.4rem); text-transform: uppercase; text-align: center;
  letter-spacing: .02em; }
.lp-sub { text-align: center; color: #9db0c6; max-width: 560px; margin: 12px auto 0;
  line-height: 1.55; font-size: .95rem; }

/* ---- étapes ---- */
.lp-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px; margin-top: 44px; }
.step { text-align: center; padding: 26px 18px; border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px; background: rgba(255,255,255,.02); }
.step .ic { width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 50%;
  background: #14273f; display: flex; align-items: center; justify-content: center; }
.step .ic svg { width: 24px; height: 24px; stroke: #7fa8dd; fill: none; stroke-width: 1.7; }
.step h3 { font-family: 'Barlow Condensed'; font-weight: 700; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: .05em; color: #3d8bfd; }
.step p { margin-top: 8px; font-size: .88rem; line-height: 1.55; color: #b7c5d8; }

/* ---- cartes (vrais rendus du moteur de l'app) ---- */
.lp-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px; margin-top: 46px; align-items: start; }
.lp-card .card { width: 100%; }
/* la carte de l'app fixe min(400px, 92vw) : ici elle remplit sa colonne */
.lp-card .card { max-width: 320px; margin: 0 auto; }

/* ---- rangs ---- */
.lp-ranks { display: grid; grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 18px 8px; margin-top: 44px; }
.lp-ranks figure { text-align: center; }
.lp-ranks img { width: 76px; height: 76px; object-fit: contain; }
.lp-ranks figcaption { margin-top: 6px; font-size: .66rem; letter-spacing: .08em;
  text-transform: uppercase; color: #8fa1b8; }

/* ---- réassurance ---- */
.lp-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.tile { border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 22px 20px;
  background: rgba(255,255,255,.02); }
.tile h3 { font-family: 'Barlow Condensed'; font-weight: 700; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: .05em; color: #37d67a; }
.tile p { margin-top: 7px; font-size: .86rem; line-height: 1.5; color: #b7c5d8; }

/* ---- CTA final ---- */
.lp-final { position: relative; overflow: hidden; padding: clamp(70px, 12vw, 130px) 20px;
  text-align: center; }
.lp-final .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: -1; opacity: .9; }
.lp-final h2 { font-family: 'Barlow Condensed'; font-style: italic; font-weight: 800;
  font-size: clamp(1.9rem, 5vw, 2.8rem); text-transform: uppercase; margin-bottom: 24px;
  text-shadow: 0 2px 18px rgba(0,0,0,.7); }

/* ---- pied de page ---- */
.lp-foot { border-top: 1px solid rgba(255,255,255,.07); padding: 40px clamp(16px, 4vw, 44px) 30px;
  max-width: 1160px; margin: 0 auto; }
.lp-foot .cols { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.lp-foot .cols p { margin-top: 8px; font-size: .78rem; color: #6b7a90; letter-spacing: .08em;
  text-transform: uppercase; }
.lp-foot nav { display: flex; gap: 20px; flex-wrap: wrap; }
.lp-foot nav a { color: #9db0c6; text-decoration: none; font-size: .85rem; }
.lp-foot nav a:hover { color: #fff; }
.lp-foot .fine { margin-top: 22px; font-size: .72rem; color: #56637a; line-height: 1.6; }

/* ---- pages annexes (confidentialité, mentions, support) ---- */
.lp-doc { max-width: 760px; margin: 0 auto; padding: 48px clamp(16px, 4vw, 44px) 80px; }
.lp-doc h1 { font-family: 'Barlow Condensed'; font-style: italic; font-weight: 800;
  font-size: 2rem; text-transform: uppercase; margin-bottom: 6px; }
.lp-doc .maj { color: #6b7a90; font-size: .8rem; margin-bottom: 30px; }
.lp-doc h2 { font-family: 'Barlow Condensed'; font-weight: 700; font-size: 1.25rem;
  text-transform: uppercase; letter-spacing: .04em; color: #3d8bfd; margin: 30px 0 10px; }
.lp-doc p, .lp-doc li { font-size: .94rem; line-height: 1.7; color: #c6d3e4; }
.lp-doc ul { padding-left: 22px; margin: 8px 0; }
.lp-doc a { color: #7fa8dd; }
.lp-doc .todo { background: rgba(251,191,36,.08); border: 1px solid rgba(251,191,36,.35);
  border-radius: 10px; padding: 10px 14px; color: #fbbf24; font-size: .86rem; }

@media (max-width: 700px) {
  .lp-head nav { display: none; }
  .lp-hero h1 { font-size: 3.2rem; }
}
