/* Skyline - landing. DA : dark sobre + Liquid Glass (approximation frosted CSS) + accent froid unique.
   Approximation web du Liquid Glass d'Apple (backdrop-filter + hairline), pas un package officiel. */

:root {
  --bg: #08090c;
  --ink: #f2f3f5;
  --ink-2: rgba(242, 243, 245, 0.58);
  --ink-3: rgba(242, 243, 245, 0.34);

  /* Glass neutre, doux (pas le contraste dur du bas de la notch) */
  --glass: rgba(255, 255, 255, 0.035);
  --glass-2: rgba(255, 255, 255, 0.06);
  --hair: rgba(255, 255, 255, 0.08);
  --hair-2: rgba(255, 255, 255, 0.14);

  /* UN seul accent, froid et désaturé (l'app n'a pas de violet). Verrouillé sur toute la page. */
  --accent: #7e9bff;
  --accent-soft: rgba(126, 155, 255, 0.14);

  --radius: 20px;
  --max: 1080px;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Fond : une seule lueur froide très discrète en haut + grain léger. Sobre. */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(70% 48% at 50% -12%, rgba(126, 155, 255, 0.10), transparent 70%),
    var(--bg);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 3px 3px;
}

/* padding HORIZONTAL uniquement (longhand) : ne pas écraser le padding vertical des <section>. */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* ---------- Glass primitive (doux) ---------- */
.glass {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.30);
}
@media (prefers-reduced-transparency: reduce) {
  .glass { background: rgba(20, 21, 26, 0.92); backdrop-filter: none; -webkit-backdrop-filter: none; }
}

/* ---------- Nav ---------- */
nav {
  position: sticky; top: 14px; z-index: 50;
  width: calc(100% - 32px); max-width: var(--max);
  margin: 14px auto 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px 9px 16px;
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  border: 1px solid var(--hair);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.30);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px;
  letter-spacing: -0.01em; color: var(--ink); text-decoration: none; }
.brand-logo { width: 26px; height: 26px; border-radius: 7px; display: block;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--ink-2); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 10px; }

/* Bandeau ÉVÉNEMENT (Coupe du monde) + lien nav accentué */
.evt-banner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 9px 16px; text-decoration: none;
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  background: linear-gradient(90deg, rgba(126,155,255,0.16), rgba(126,155,255,0.10));
  border-bottom: 1px solid var(--hair-2);
  transition: background .2s;
}
.evt-banner:hover { background: linear-gradient(90deg, rgba(126,155,255,0.26), rgba(126,155,255,0.15)); }
.evt-banner .evt-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #2fd16f;
  box-shadow: 0 0 0 0 rgba(47,209,111,0.55); animation: evtpulse 1.8s infinite;
}
.evt-banner .evt-cta { color: var(--accent); font-weight: 700; }
@keyframes evtpulse {
  0% { box-shadow: 0 0 0 0 rgba(47,209,111,0.55); }
  70% { box-shadow: 0 0 0 7px rgba(47,209,111,0); }
  100% { box-shadow: 0 0 0 0 rgba(47,209,111,0); }
}
/* Lien « Événement » en pill accentué avec point live */
.nav-evt {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent) !important; font-weight: 700 !important;
  padding: 5px 11px; border-radius: 999px;
  background: var(--accent-soft); border: 1px solid rgba(126,155,255,0.34);
  transition: background .2s, border-color .2s;
}
.nav-evt:hover { background: rgba(126,155,255,0.22); border-color: rgba(126,155,255,0.5); }
.nav-evt::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: #2fd16f; flex: 0 0 auto;
  box-shadow: 0 0 0 0 rgba(47,209,111,0.55); animation: evtpulse 1.8s infinite;
}

/* Burger (mobile) */
.nav-burger { display: none; flex-direction: column; gap: 4px; width: 38px; height: 34px;
  align-items: center; justify-content: center; cursor: pointer;
  background: var(--glass-2); border: 1px solid var(--hair-2); border-radius: 10px; }
.nav-burger span { display: block; width: 17px; height: 2px; border-radius: 2px; background: var(--ink);
  transition: transform .25s, opacity .2s; }
#nav.open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
#nav.open .nav-burger span:nth-child(2) { opacity: 0; }
#nav.open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Section Événements mise en avant */
.evt-kicker { color: var(--accent); font-size: 13.5px; font-weight: 700; }
.evt-frame { position: relative;
  box-shadow: 0 0 0 1px rgba(126,155,255,0.30), 0 18px 50px rgba(126,155,255,0.16); }
.evt-live { position: absolute; top: 16px; left: 16px; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px; border-radius: 999px; font-size: 11px; font-weight: 800; letter-spacing: .04em;
  color: #fff; background: rgba(8,9,12,0.72); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.16); }
.evt-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #ff4d4d;
  box-shadow: 0 0 0 0 rgba(255,77,77,0.6); animation: evtpulse 1.5s infinite; }

@media (max-width: 640px) {
  .evt-banner { font-size: 12px; padding: 8px 12px; gap: 7px; }
  .evt-banner .evt-cta { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .evt-banner .evt-dot, .nav-evt::before, .evt-live-dot { animation: none; }
}

/* Toggle de langue */
.lang {
  display: inline-flex; align-items: center; gap: 5px; cursor: pointer;
  font: inherit; font-size: 12.5px; font-weight: 600;
  color: var(--ink-3); background: transparent; border: 1px solid var(--hair);
  padding: 6px 11px; border-radius: 100px; transition: border-color .2s;
}
.lang:hover { border-color: var(--hair-2); }
.lang .sep { color: var(--ink-3); }
.lang [data-l] { color: var(--ink-3); transition: color .2s; }
.lang [data-l].on { color: var(--ink); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 12px; font-size: 14px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .15s ease, background .2s, border-color .2s;
}
.btn i { font-size: 17px; }
/* Primaire : surface claire, texte sombre = contraste garanti, sobre (style Apple). */
.btn-primary { color: #0a0b0e; background: #f2f3f5; }
.btn-primary:hover { transform: translateY(-1px); background: #ffffff; }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { color: var(--ink); background: var(--glass-2); border-color: var(--hair-2); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.10); }

/* ---------- Hero ---------- */
.hero { text-align: center; padding: 84px 0 36px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-2);
  padding: 7px 14px; border-radius: 100px; margin-bottom: 26px;
  background: var(--glass-2); border: 1px solid var(--hair);
}
.eyebrow .pip { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero h1 {
  font-size: clamp(38px, 6.4vw, 70px); line-height: 1.04; letter-spacing: -0.035em; font-weight: 700;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.66));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero h1 .hl { -webkit-text-fill-color: var(--accent); color: var(--accent); }
.hero p.sub { max-width: 600px; margin: 22px auto 0; font-size: clamp(16px, 2.1vw, 18.5px); color: var(--ink-2); }
.hero .cta { display: flex; gap: 12px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }

/* ---------- Slider vidéo de l'encoche ---------- */
.showcase { margin: 64px auto 0; max-width: 920px; }
.frame { position: relative; padding: 10px; overflow: hidden; }
.track { position: relative; width: 100%; aspect-ratio: 3024 / 1964; border-radius: 12px; overflow: hidden; background: #000; }
.slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .5s ease; pointer-events: none;
}
.slide.active { opacity: 1; }

.sc-ui { display: flex; align-items: center; gap: 12px; justify-content: center; margin-top: 18px; }
.sc-arrow {
  flex: none; width: 38px; height: 38px; display: grid; place-items: center; cursor: pointer;
  color: var(--ink); background: var(--glass-2); border: 1px solid var(--hair); border-radius: 50%;
  transition: background .2s, border-color .2s;
}
.sc-arrow:hover { background: rgba(255, 255, 255, 0.10); border-color: var(--hair-2); }
.sc-arrow i { font-size: 18px; }
.sc-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.sc-tab {
  cursor: pointer; font: inherit; font-size: 13px; font-weight: 600; color: var(--ink-2);
  padding: 8px 14px; border-radius: 100px; background: transparent;
  border: 1px solid var(--hair); transition: color .2s, background .2s, border-color .2s;
}
.sc-tab:hover { color: var(--ink); border-color: var(--hair-2); }
.sc-tab.on { color: var(--ink); background: var(--accent-soft); border-color: rgba(126, 155, 255, 0.40); }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
/* ---------- Teasers « Bientôt » (Quick Note + Agents) ---------- */
.soon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 34px; }
.soon-grid.soon-single { grid-template-columns: 1fr; max-width: 640px; margin-left: auto; margin-right: auto; }
@media (max-width: 720px) { .soon-grid { grid-template-columns: 1fr; } }
.soon-card { position: relative; padding: 28px 26px 30px; text-align: left; overflow: hidden; }
.soon-card::before { /* lueur froide discrète en haut de la carte */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 70% at 50% -20%, rgba(126,155,255,0.10), transparent 62%); }
.soon-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--accent); background: var(--accent-soft);
  border: 1px solid rgba(126,155,255,0.34); border-radius: 999px; padding: 4px 11px; margin-bottom: 15px; }
.soon-card h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 10px; }
.soon-card p { font-size: 15px; line-height: 1.6; color: var(--ink-2); margin: 0; }

.kicker { text-align: center; font-size: 12.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--accent); }
.h2 { text-align: center; font-size: clamp(28px, 4.2vw, 42px); letter-spacing: -0.03em; font-weight: 700; margin-top: 10px; }
.lead { text-align: center; max-width: 580px; margin: 14px auto 0; color: var(--ink-2); font-size: 16px; }

/* Modules */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.card { padding: 22px; transition: transform .2s, border-color .2s; }
.card:hover { transform: translateY(-3px); border-color: var(--hair-2); }
.card .ic { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: var(--accent-soft); border: 1px solid var(--hair); margin-bottom: 14px; }
.card .ic i { font-size: 21px; color: var(--accent); }
.card h3 { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.card p { margin-top: 6px; font-size: 13.5px; color: var(--ink-2); }

/* ---------- Sections feature (vidéo + texte, en alterné) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  padding-top: 44px; padding-bottom: 44px; }
.feature .f-media { padding: 10px; }
.feature .f-media video { width: 100%; display: block; border-radius: 12px; background: #000; }
.feature .f-text .kicker { text-align: left; }
.feature .f-text h2 { text-align: left; font-size: clamp(26px, 3.4vw, 36px); letter-spacing: -0.03em;
  font-weight: 600; line-height: 1.06; margin-top: 6px; }
.feature .f-text p { text-align: left; color: var(--ink-2); margin-top: 14px; font-size: 15.5px;
  line-height: 1.6; max-width: 460px; }
.feature.reverse .f-media { order: 2; }
@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; gap: 22px; }
  .feature.reverse .f-media { order: 0; }
  .feature .f-text .kicker, .feature .f-text h2, .feature .f-text p { text-align: center; }
  .feature .f-text p { margin-left: auto; margin-right: auto; }
}

/* Vidéo de launch (centrée, pleine largeur contrôlée) */
.launch-frame { max-width: 960px; margin: 38px auto 0; padding: 10px; }
.launch-frame video { width: 100%; display: block; border-radius: 12px; background: #000; }

/* Pitch */
.pitch { text-align: center; padding: 54px 34px; }
.pitch h2 { font-size: clamp(26px, 4.2vw, 40px); letter-spacing: -0.03em; font-weight: 700; line-height: 1.12; }
.pitch h2 .hl { color: var(--accent); }
.pitch p { max-width: 560px; margin: 16px auto 0; color: var(--ink-2); }

/* Pricing */
.prices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 740px; margin: 44px auto 0; }
.prices-3 { grid-template-columns: repeat(3, 1fr); max-width: 920px; align-items: stretch; }
.price { padding: 28px; position: relative; display: flex; flex-direction: column; }
.price ul { flex: 1; }
.price.featured { border-color: rgba(126, 155, 255, 0.45);
  box-shadow: 0 10px 50px rgba(126, 155, 255, 0.14), 0 10px 40px rgba(0,0,0,0.30); }
.price .tag { position: absolute; top: 18px; right: 18px; font-size: 11px; font-weight: 600; color: var(--accent);
  padding: 4px 10px; border-radius: 100px; background: var(--accent-soft); border: 1px solid rgba(126, 155, 255, 0.30); }
.price .name { font-size: 14px; color: var(--ink-2); font-weight: 600; }
.price .amount { font-size: 38px; font-weight: 700; letter-spacing: -0.03em; margin-top: 8px; }
.price .amount small { font-size: 15px; font-weight: 500; color: var(--ink-3); }
.price ul { list-style: none; margin: 18px 0 22px; display: grid; gap: 10px; }
.price li { font-size: 14px; color: var(--ink-2); display: flex; gap: 9px; align-items: flex-start; }
.price li::before { content: "✓"; color: var(--accent); font-weight: 700; }
.price .btn { width: 100%; justify-content: center; }

/* Download */
.download { text-align: center; padding: 60px 34px; }
.download h2 { font-size: clamp(28px, 4.6vw, 44px); letter-spacing: -0.03em; font-weight: 700; }
.download .cta { display: flex; gap: 12px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }
.brew { position: relative; margin: 22px auto 0; max-width: 420px; padding: 13px 16px;
  font-family: "SF Mono", ui-monospace, monospace; font-size: 13.5px; color: var(--ink);
  display: flex; align-items: center; gap: 10px; justify-content: center; cursor: pointer;
  background: var(--glass-2); border: 1px solid var(--hair); border-radius: 12px;
  transition: border-color .2s, background .2s; }
.brew:hover { border-color: var(--hair-2); background: rgba(255,255,255,0.09); }
.brew .pmt { color: var(--accent); }
.brew-ico { font-size: 15px; color: var(--ink-3); transition: color .2s; }
.brew:hover .brew-ico { color: var(--ink-2); }
.brew-done { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 6px;
  color: var(--accent); font-weight: 600; background: var(--bg); border-radius: 12px; opacity: 0;
  pointer-events: none; transition: opacity .15s; }
.brew.copied .brew-done { opacity: 1; }
.download .note { margin-top: 16px; font-size: 13px; color: var(--ink-3); }

footer { padding: 48px 24px 56px; text-align: center; color: var(--ink-3); font-size: 13px; }
footer a { color: var(--ink-2); text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--ink); }
.foot-links { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; margin-bottom: 18px; }
.foot-links a { font-weight: 500; }

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 40px auto 0; display: grid; gap: 12px; }
.faq-item { padding: 0; overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 20px;
  font-size: 15px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 20px; font-weight: 400; color: var(--ink-2);
  transition: transform .25s ease; flex: none; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 20px 18px; margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.6; }

/* ---------- Pages légales (doc) ---------- */
.doc { max-width: 760px; margin: 0 auto; padding: 40px 24px 80px; }
.doc h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -0.03em; }
.doc .doc-sub { color: var(--ink-2); font-size: 15px; margin-top: 8px; }
.doc h2 { font-size: 17px; font-weight: 600; margin-top: 30px; letter-spacing: -0.01em; }
.doc p { color: var(--ink-2); font-size: 14.5px; margin-top: 8px; line-height: 1.65; }
.doc a { color: var(--accent); text-decoration: none; }
.doc a:hover { text-decoration: underline; }
.doc .pledge {
  display: flex; gap: 12px; align-items: flex-start; margin-top: 22px; padding: 16px;
  border-radius: 14px; background: rgba(126, 155, 255, 0.10); border: 1px solid rgba(126, 155, 255, 0.28);
}
.doc .pledge i { font-size: 22px; color: var(--accent); flex: none; }
.doc .pledge p { margin-top: 2px; color: var(--ink); }
.doc .perm { display: flex; gap: 12px; align-items: flex-start; margin-top: 12px; padding: 14px; }
.doc .perm i { font-size: 20px; color: var(--accent); flex: none; width: 26px; text-align: center; }
.doc .perm h3 { font-size: 14px; font-weight: 600; }
.doc .perm p { margin-top: 2px; font-size: 13px; }
.doc .back { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-2); font-size: 13.5px; font-weight: 500; margin-bottom: 8px; }

/* ---------- Responsive ---------- */
/* Tablette large */
@media (max-width: 1024px) {
  section { padding: 80px 0; }
  .showcase { margin-top: 48px; }
}

/* Tablette / petit laptop */
@media (max-width: 820px) {
  nav { top: 10px; width: calc(100% - 24px); padding: 8px 10px 8px 14px; }
  .nav-burger { display: flex; }
  .nav-dl { display: none; }          /* le Télécharger passe dans le menu */
  /* Menu déroulant propre, ancré sous la barre */
  .nav-links {
    position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px; padding: 8px;
    background: rgba(14, 16, 22, 0.92); backdrop-filter: blur(18px) saturate(125%);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
    border: 1px solid var(--hair-2); border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
    opacity: 0; transform: translateY(-6px); pointer-events: none;
    transition: opacity .2s, transform .2s;
  }
  #nav.open .nav-links { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a { font-size: 15px; padding: 11px 12px; border-radius: 10px; }
  .nav-links a:not(.nav-evt):hover { background: var(--glass-2); }
  .nav-evt { justify-content: flex-start; }   /* pill pleine largeur dans le menu */
  section { padding: 64px 0; }
  .hero { padding: 60px 0 24px; }
  .grid { grid-template-columns: 1fr 1fr; }
  /* Une seule colonne de prix, centrée ; Lifetime (featured) en tête */
  .prices, .prices-3 { grid-template-columns: 1fr; max-width: 440px; }
  .price.featured { order: -1; }
  .pitch { padding: 44px 24px; }
  .download { padding: 48px 24px; }
}

/* Mobile */
@media (max-width: 600px) {
  .wrap { padding-left: 18px; padding-right: 18px; }
  .grid { grid-template-columns: 1fr; gap: 12px; }
  .hero { padding: 48px 0 16px; }
  .hero h1 { font-size: clamp(29px, 8.6vw, 44px); letter-spacing: -0.03em; }
  .hero p.sub { font-size: 15.5px; margin-top: 18px; }
  .hero .cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero .cta .btn { justify-content: center; }
  .showcase { margin-top: 32px; }
  .frame { padding: 6px; }
  .sc-ui { gap: 8px; }
  .sc-tab { font-size: 12px; padding: 7px 11px; }
  .h2 { font-size: clamp(24px, 6.6vw, 34px); }
  .card { padding: 18px; }
  .pitch { padding: 36px 20px; }
  .pitch p, .lead { font-size: 15px; }
  .download { padding: 40px 18px; }
  .brew { font-size: 11px; padding: 12px; flex-wrap: wrap; }
  .brew .brew-cmd { word-break: break-word; }
  .faq-item summary { font-size: 14px; padding: 15px 16px; }
  .faq-item p { padding: 0 16px 16px; }
  .foot-links { gap: 12px 18px; }
  .doc { padding: 28px 18px 64px; }
}

/* Très petit (≤380) : nav compacte */
@media (max-width: 380px) {
  .brand { font-size: 14px; }
  .btn { padding: 9px 14px; font-size: 13px; }
  .lang { padding: 6px 9px; }
}

/* ---------- Accessibilité : motion réduite ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card, .slide { transition: none; }
}
