/* ============================================================================
   NekoTrip — Landing
   Alignée sur le kit UI « Encre · Crème · Orange » (Claude Design).
   Fluide + responsive.

   La palette, la typographie et les rayons viennent de
   /shared/style/nekotrip-tokens.css — ce fichier ne déclare AUCUN token.
   L'accent est l'orange torii #F17715 ; l'ancien vermillon #e8552e a disparu.
   --nk-red / --nk-card / --nk-bubble… restent des alias définis là-bas, le
   temps que les sélecteurs de cette feuille adoptent les noms du kit.
   ============================================================================ */

/* ------------------------------------------------------------------ Reset -- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.nk {
  margin: 0;
  background: var(--nk-ink);
  color: var(--nk-fg);
  font-family: var(--nk-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.nk a { color: inherit; text-decoration: none; }
.nk button { font-family: inherit; cursor: pointer; }
.nk img { max-width: 100%; display: block; }
.nk h1, .nk h2, .nk h3, .nk p { margin: 0; }

.nk-container {
  width: 100%;
  max-width: var(--nk-maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

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

/* --------------------------------------------------------------- Buttons -- */
.nk-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  padding: 15px 26px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
/* Le texte sur l'orange est toujours encre, et le primaire est le seul
   bouton coloré de l'écran. Pas de lueur : la profondeur vient de la valeur. */
.nk-btn-primary {
  background: var(--nk-accent);
  color: var(--nk-on-accent);
  font-weight: 700;
}
.nk-btn-primary:hover { background: var(--nk-accent-hover); }
.nk-btn-primary:active { background: var(--nk-accent-active); transform: translateY(1px); }
.nk-btn-ghost { color: var(--nk-fg); }
.nk-btn-ghost .nk-arrow { color: var(--nk-red); transition: transform .15s ease; }
.nk-btn-ghost:hover .nk-arrow { transform: translateX(4px); }
.nk-btn-sm { padding: 10px 18px; font-size: 14px; border-radius: 10px; }

/* ---------------------------------------------------------------- Header -- */
/* Barre en verre du kit : voile crème + liseré interne en haut. */
.nk-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nk-glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--nk-bd);
  box-shadow: var(--nk-glass-inset);
}
.nk-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nk-header-h);
  gap: 20px;
}
.nk-brand { display: flex; align-items: center; gap: 11px; }
/* L'icône de marque remplace le chat dessiné à la main.
   Rayon ≈ 27 % du côté, comme partout dans le kit. */
.nk-brand img { display: block; width: 32px; height: 32px; border-radius: 9px; }
.nk-brand-name {
  font-family: var(--nk-serif);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -.01em;
}
.nk-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--nk-fg-2);
  font-weight: 500;
}
.nk-nav a { transition: color .15s ease; }
.nk-nav a:hover { color: var(--nk-fg); }
.nk-header-actions { display: flex; align-items: center; gap: 14px; }
.nk-header-actions .nk-link { font-size: 14px; color: var(--nk-fg-2); font-weight: 500; }
.nk-header-actions .nk-link:hover { color: var(--nk-fg); }

.nk-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nk-burger span {
  display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--nk-fg); transition: transform .2s ease, opacity .2s ease;
}
.nk-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nk-burger.is-open span:nth-child(2) { opacity: 0; }
.nk-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------- Section -- */
.nk-section { padding: clamp(56px, 8vw, 84px) 0; border-top: 1px solid var(--nk-bd-2); }
.nk-section--ink { background: var(--nk-ink); }
.nk-section--deep { background: var(--nk-ink-deep); }

.nk-kicker {
  font-family: var(--nk-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--nk-red);
}
.nk-h2 {
  font-family: var(--nk-display);
  font-weight: 400;
  font-size: clamp(27px, 5vw, 44px);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin-top: 14px;
  overflow-wrap: break-word;
}
.nk-lead {
  font-size: clamp(16px, 2vw, 17px);
  color: var(--nk-fg-2);
  line-height: 1.6;
  margin-top: 14px;
}
.nk-section-head { text-align: center; max-width: 42em; margin: 0 auto clamp(32px, 5vw, 44px); }

/* ------------------------------------------------------------------- Hero -- */
.nk-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 72px) 0;
  background:
    radial-gradient(58% 78% at 84% -12%, var(--nk-accent-soft), transparent 60%),
    radial-gradient(50% 70% at 2% 6%, var(--nk-accent-soft), transparent 60%);
}
.nk-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1.05fr;
  gap: clamp(32px, 5vw, 48px);
  align-items: center;
}
/* Empêche les pistes grid/flex de gonfler au-delà du conteneur (min-width:auto) */
.nk-hero-grid > *, .nk-mode-grid > * { min-width: 0; }
.nk-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--nk-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nk-red);
  background: var(--nk-panel);
  border: 1px solid var(--nk-accent-line);
  padding: 7px 13px;
  border-radius: 999px;
}
.nk-badge .nk-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--nk-red); animation: nk-pulse 2.4s infinite; }

.nk-hero h1 {
  font-family: var(--nk-display);
  font-weight: 400;
  font-size: clamp(33px, 7vw, 56px);
  line-height: 1.03;
  letter-spacing: -.025em;
  margin-top: 22px;
  overflow-wrap: break-word;
}
.nk-hero h1 em { font-style: italic; color: var(--nk-red); }
.nk-hero-sub {
  font-size: clamp(17px, 2.2vw, 19px);
  line-height: 1.6;
  color: var(--nk-fg-2);
  max-width: 31em;
  margin-top: 22px;
}
.nk-hero-sub .nk-strong { color: var(--nk-fg); font-weight: 600; }
.nk-caret {
  display: inline-block; width: 2px; height: .95em;
  background: var(--nk-red); margin-left: 2px; vertical-align: -1px;
  animation: nk-caret 1s steps(1) infinite;
}
.nk-hero-note { font-size: 15px; color: var(--nk-fg-3); margin-top: 16px; }
.nk-hero-actions {
  display: flex; gap: 14px; align-items: center;
  margin-top: 30px; flex-wrap: wrap;
}
.nk-trust {
  display: flex; gap: 22px; margin-top: 26px; flex-wrap: wrap;
  font-family: var(--nk-mono); font-size: 11.5px; color: var(--nk-fg-4); letter-spacing: .02em;
}

/* Browser mock (hero) */
.nk-mock {
  background: var(--nk-card);
  border: 1px solid var(--nk-bd);
  border-radius: var(--nk-r-lg);
  overflow: hidden;
  box-shadow: var(--nk-shadow);
  animation: nk-float 8s ease-in-out infinite;
}
.nk-mock-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 16px; border-bottom: 1px solid var(--nk-bd-2);
}
.nk-mock-bar i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.nk-mock-bar i { background: var(--nk-veil-3); }
.nk-mock-url { margin-left: 10px; font-family: var(--nk-mono); font-size: 11px; color: var(--nk-fg-4); }
.nk-mock-body { display: grid; grid-template-columns: 1fr 1fr; }
.nk-mock-chat {
  padding: 16px; border-right: 1px solid var(--nk-bd-2);
  display: flex; flex-direction: column; gap: 10px; background: var(--nk-panel);
}
.nk-mb-avatar { flex: none; }
.nk-mb-avatar img { width: 26px; height: 26px; border-radius: 7px; display: block; }
.nk-mb-row { display: flex; gap: 8px; align-items: flex-start; }
.nk-mb-in {
  background: var(--nk-bubble); border-radius: 4px 12px 12px 12px;
  padding: 9px 11px; font-size: 11.5px; line-height: 1.45; color: var(--nk-fg);
}
.nk-mb-out {
  align-self: flex-end; background: var(--nk-red); color: var(--nk-on-accent);
  border-radius: 12px 12px 4px 12px; padding: 9px 11px; font-size: 11.5px; max-width: 82%;
}
.nk-typing { display: inline-flex; gap: 4px; background: var(--nk-bubble); padding: 11px 12px; border-radius: 4px 12px 12px 12px; }
.nk-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--nk-fg-3); animation: nk-blink 1.2s infinite; }
.nk-typing span:nth-child(2) { animation-delay: .2s; } .nk-typing span:nth-child(3) { animation-delay: .4s; }

.nk-mock-plan { padding: 16px; }
.nk-mp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.nk-mp-title { font-weight: 600; font-size: 14px; }
.nk-mp-badge { font-family: var(--nk-mono); font-size: 9.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--nk-success-text); background: var(--nk-success-soft); padding: 3px 7px; border-radius: var(--nk-r-chip); }
.nk-mp-list { display: flex; flex-direction: column; gap: 9px; }
.nk-mp-item { border: 1px solid var(--nk-bd); border-radius: var(--nk-r-sm); padding: 9px 10px; }
.nk-mp-day { font-size: 9.5px; font-family: var(--nk-mono); color: var(--nk-red); }
.nk-mp-place { font-size: 12px; font-weight: 600; margin-top: 2px; }

/* -------------------------------------------------------------- Concierge -- */
.nk-chat {
  max-width: 760px; margin: 0 auto;
  background: var(--nk-card); border: 1px solid var(--nk-bd);
  border-radius: var(--nk-r-lg); overflow: hidden; box-shadow: var(--nk-shadow);
}
.nk-chat-head {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-bottom: 1px solid var(--nk-bd-2); background: var(--nk-panel);
}
.nk-chat-ava { flex: none; }
.nk-chat-ava img { width: 38px; height: 38px; border-radius: 10px; display: block; }
.nk-chat-name { font-weight: 600; font-size: 15px; }
.nk-chat-status { font-size: 12px; color: var(--nk-fg-4); display: flex; align-items: center; gap: 6px; }
.nk-chat-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--nk-green); display: block; }
.nk-replay {
  margin-left: auto; font-family: var(--nk-mono); font-size: 11px; color: var(--nk-fg-3);
  background: var(--nk-veil); border: 1px solid var(--nk-veil-3);
  padding: 7px 12px; border-radius: 999px; transition: background .15s ease;
}
.nk-replay:hover { background: var(--nk-veil-3); }
.nk-chat-body { padding: 22px; display: flex; flex-direction: column; gap: 14px; min-height: 380px; }

.nk-msg { animation: nk-in .45s ease both; }
.nk-msg-user {
  align-self: flex-end; max-width: 78%; background: var(--nk-red); color: var(--nk-on-accent);
  padding: 12px 16px; border-radius: 16px 16px 4px 16px; font-size: 14.5px; line-height: 1.5;
}
.nk-msg-neko { display: flex; gap: 11px; max-width: 90%; }
.nk-neko-ava { flex: none; }
.nk-neko-ava img { width: 34px; height: 34px; border-radius: 9px; display: block; }
.nk-neko-body { flex: 1; min-width: 0; }
.nk-mb-in, .nk-mb-row { min-width: 0; }
.nk-plan-row > *:last-child { min-width: 0; }
.nk-neko-text {
  background: var(--nk-bubble); padding: 13px 16px; border-radius: 4px 16px 16px 16px;
  font-size: 14.5px; line-height: 1.55; color: var(--nk-fg);
}
.nk-neko-typing { display: inline-flex; gap: 5px; background: var(--nk-bubble); padding: 15px 16px; border-radius: 4px 16px 16px 16px; }
.nk-neko-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--nk-fg-3); animation: nk-blink 1.2s infinite; }
.nk-neko-typing span:nth-child(2) { animation-delay: .2s; } .nk-neko-typing span:nth-child(3) { animation-delay: .4s; }

.nk-plan {
  background: var(--nk-bubble); border: 1px solid var(--nk-bd-2);
  border-radius: 4px 16px 16px 16px; padding: 6px;
}
.nk-plan-row { display: flex; gap: 12px; padding: 11px 12px; align-items: flex-start; }
.nk-plan-day { font-family: var(--nk-mono); font-size: 11px; color: var(--nk-red); min-width: 82px; padding-top: 2px; }
.nk-plan-city { font-weight: 600; font-size: 14px; }
.nk-plan-items { font-size: 12.5px; color: var(--nk-fg-3); margin-top: 2px; }

.nk-refine { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; padding-left: 45px; }
.nk-refine-label { font-size: 11px; color: var(--nk-fg-4); font-family: var(--nk-mono); letter-spacing: .1em; }
.nk-chip {
  background: var(--nk-veil); border: 1px solid var(--nk-bd-3); color: var(--nk-fg);
  padding: 9px 14px; border-radius: 999px; font-size: 13px; transition: background .15s ease, border-color .15s ease;
}
.nk-chip:hover { background: var(--nk-veil-3); }
.nk-chip[disabled] { opacity: .4; cursor: default; }

/* -------------------------------------------------------------- Catalogue -- */
.nk-cat-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 26px;
}
.nk-cat-head p { font-size: 15px; color: var(--nk-fg-3); max-width: 24em; line-height: 1.6; }
.nk-cat-filters { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 26px; }
.nk-cat-filter {
  background: var(--nk-veil); border: 1px solid var(--nk-bd); color: var(--nk-fg-2);
  padding: 9px 15px; border-radius: 999px; font-size: 13px; font-weight: 500; transition: all .15s ease;
}
.nk-cat-filter:hover { color: var(--nk-fg); border-color: var(--nk-bd-3); }
.nk-cat-filter.is-active { background: var(--nk-chip-on-bg); border-color: transparent; color: var(--nk-chip-on-fg); font-weight: 600; }

.nk-places { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.nk-place {
  background: var(--nk-card); border: 1px solid var(--nk-bd);
  border-radius: var(--nk-r); overflow: hidden; display: flex; flex-direction: column;
}
.nk-place-photo {
  height: 128px;
  background: repeating-linear-gradient(135deg, var(--nk-bubble), var(--nk-bubble) 11px, var(--nk-stripe) 11px, var(--nk-stripe) 22px);
  display: flex; align-items: flex-end; justify-content: space-between; padding: 12px;
}
.nk-place-photo.has-img { background-size: cover; background-position: center; }
.nk-place-ph-label { font-family: var(--nk-mono); font-size: 9.5px; color: var(--nk-fg-4); }
.nk-place-tag {
  font-family: var(--nk-mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--nk-cream); background: var(--nk-scrim); padding: 5px 10px; border-radius: var(--nk-r-chip);
}
.nk-place-body { padding: 15px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.nk-place-city { font-family: var(--nk-mono); font-size: 10.5px; color: var(--nk-fg-3); letter-spacing: .06em; }
.nk-place-name { font-weight: 600; font-size: 16px; line-height: 1.3; }
.nk-place-jp { font-family: var(--nk-jp); font-size: 12.5px; color: var(--nk-fg-4); margin-bottom: 2px; }
.nk-place-desc { font-size: 13px; color: var(--nk-fg-2); line-height: 1.45; flex: 1; }
.nk-place-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.nk-place-price { font-family: var(--nk-mono); font-size: 13px; font-weight: 500; color: var(--nk-fg); }
.nk-place-price.is-free { color: var(--nk-success-text); }
.nk-place-add {
  background: var(--nk-veil-2); color: var(--nk-fg); border: none;
  padding: 8px 14px; border-radius: 9px; font-size: 12.5px; font-weight: 600;
  transition: background .15s ease, color .15s ease;
}
.nk-place-add:hover { background: var(--nk-accent); color: var(--nk-on-accent); }
.nk-place-added { font-size: 12.5px; color: var(--nk-green); font-weight: 600; }

/* ------------------------------------------------------------ Mode voyage -- */
.nk-mode-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 52px); align-items: center;
}
.nk-toggle {
  display: inline-flex; background: var(--nk-veil); border: 1px solid var(--nk-bd);
  border-radius: 999px; padding: 5px; gap: 5px; margin-top: 26px;
}
.nk-toggle button {
  border: none; background: none; color: var(--nk-fg-3); font-weight: 600; font-size: 14px;
  padding: 9px 18px; border-radius: 999px; transition: all .18s ease;
}
.nk-toggle button.is-active { background: var(--nk-red); color: var(--nk-on-accent); }
.nk-mode-points { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.nk-mode-point { display: flex; gap: 12px; align-items: flex-start; }
.nk-mode-point .nk-star { color: var(--nk-red); font-size: 17px; line-height: 1.3; }
.nk-mode-point p { font-size: 15px; color: var(--nk-fg-2); line-height: 1.5; }
.nk-mode-point p .nk-strong { color: var(--nk-fg); }

.nk-phone-wrap { display: flex; justify-content: center; }
.nk-phone {
  width: 300px; max-width: 100%; background: var(--nk-bg-deep); border-radius: 42px; padding: 11px;
  box-shadow: var(--nk-shadow);
}
.nk-phone-screen { background: var(--nk-ink); border-radius: 32px; overflow: hidden; height: 600px; position: relative; }
.nk-phone-notch { height: 34px; display: flex; align-items: center; justify-content: center; }
.nk-phone-notch div { width: 110px; height: 22px; background: var(--nk-bg-deep); border-radius: 0 0 16px 16px; }
.nk-phone-pane { padding: 8px 18px 18px; }
.nk-phone-pane[hidden] { display: none; }
.nk-phone-title { font-family: var(--nk-display); font-weight: 400; font-size: 22px; }
.nk-phone-sub { font-size: 12px; color: var(--nk-fg-3); margin-top: 2px; }
.nk-phone-slot { font-family: var(--nk-mono); font-size: 10px; color: var(--nk-red); letter-spacing: .1em; }
.nk-phone-card { background: var(--nk-card); border-radius: 12px; padding: 12px; }
.nk-phone-card .n { font-size: 13.5px; font-weight: 600; }
.nk-phone-card .m { font-size: 11.5px; color: var(--nk-fg-3); }
.nk-phone-stack { margin-top: 18px; display: flex; flex-direction: column; gap: 11px; }
.nk-phone-row { display: flex; justify-content: space-between; align-items: center; }
.nk-phone-row .nk-go { color: var(--nk-red); font-size: 18px; }
.nk-phone-head { display: flex; align-items: center; justify-content: space-between; }
.nk-phone-head .k { font-family: var(--nk-mono); font-size: 11px; color: var(--nk-red); }
.nk-phone-head .t { font-family: var(--nk-mono); font-size: 11px; color: var(--nk-fg-3); }
.nk-phone-big { font-family: var(--nk-display); font-weight: 400; font-size: 24px; line-height: 1.1; letter-spacing: -.02em; margin-top: 14px; }

/* ---------------------------------------------------------------- Partage -- */
.nk-roles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 940px; margin: 0 auto; }
.nk-role { background: var(--nk-card); border: 1px solid var(--nk-bd); border-radius: var(--nk-r); padding: 24px; }
.nk-role--hi { border-color: var(--nk-accent-line); background: var(--nk-accent-soft); }
.nk-role h3 { font-family: var(--nk-display); font-weight: 400; font-size: 22px; }
.nk-role--hi h3 { color: var(--nk-red); }
.nk-role p { font-size: 14px; color: var(--nk-fg-3); line-height: 1.55; margin-top: 10px; }
.nk-roles-note { text-align: center; font-size: 14px; color: var(--nk-fg-4); margin-top: 24px; }
.nk-roles-note .nk-strong { color: var(--nk-fg); }

/* ------------------------------------------------------------------ Tarif -- */
.nk-price {
  max-width: 560px; margin: 0 auto; text-align: center;
  background: var(--nk-card); border: 1px solid var(--nk-bd);
  border-radius: 22px; padding: clamp(32px, 5vw, 44px) 40px;
}
.nk-price-amount { font-family: var(--nk-display); font-weight: 400; font-size: clamp(48px, 9vw, 62px); letter-spacing: -.02em; line-height: 1; margin-top: 16px; }
.nk-price-amount span { font-size: 24px; color: var(--nk-fg-3); }
.nk-price-sub { font-size: 15px; color: var(--nk-fg-2); line-height: 1.6; margin: 14px auto 0; max-width: 26em; }
.nk-price-feats { display: flex; flex-direction: column; gap: 10px; margin: 26px auto; text-align: left; max-width: 22em; }
.nk-price-feats div { font-size: 14px; color: var(--nk-fg-2); }
.nk-price-feats .nk-check { color: var(--nk-red); margin-right: 6px; }
.nk-price-fine { font-family: var(--nk-mono); font-size: 11px; color: var(--nk-fg-4); margin-top: 16px; }

/* -------------------------------------------------------------------- FAQ -- */
.nk-faq { max-width: 720px; margin: 0 auto; }
.nk-faq-item { border-bottom: 1px solid var(--nk-bd); }
.nk-faq-q {
  list-style: none;
  cursor: pointer;
  color: var(--nk-fg);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 4px; text-align: left; font-size: 17px; font-weight: 600; font-family: var(--nk-sans);
}
.nk-faq-q::-webkit-details-marker { display: none; }
.nk-faq-q .nk-faq-sign { font-size: 26px; line-height: 1; flex: none; color: var(--nk-fg-3); transition: color .15s ease; }
.nk-faq-q .nk-faq-sign::before { content: "+"; }
.nk-faq-item[open] > .nk-faq-q .nk-faq-sign { color: var(--nk-red); }
.nk-faq-item[open] > .nk-faq-q .nk-faq-sign::before { content: "\2212"; } /* minus sign */
.nk-faq-a {
  font-size: 15px; color: var(--nk-fg-2); line-height: 1.65; max-width: 60ch;
  padding: 0 4px 22px;
  animation: nk-in .3s ease both;
}
.nk-faq-a a { color: var(--nk-red); }

/* --------------------------------------------------------------- Final CTA -- */
.nk-final {
  padding: clamp(64px, 9vw, 88px) 0;
  background: var(--nk-bg-deep);
  border-top: 1px solid var(--nk-bd-2);
  text-align: center;
}
.nk-final .nk-logo-lg { width: 64px; height: 64px; border-radius: 17px; margin: 0 auto 22px; }
.nk-final h2 {
  font-family: var(--nk-display); font-weight: 400;
  font-size: clamp(32px, 6vw, 50px); line-height: 1.05; letter-spacing: -.02em;
  margin: 0 auto; max-width: 16em;
}
.nk-final p { font-size: 17px; color: var(--nk-fg-2); margin-top: 20px; }
.nk-final .nk-btn { margin-top: 30px; }

/* ----------------------------------------------------------------- Footer -- */
.nk-footer {
  padding: 30px 0; background: var(--nk-ink-deep); border-top: 1px solid var(--nk-bd-2);
}
.nk-footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.nk-footer-brand { display: flex; align-items: center; gap: 10px; }
.nk-footer-brand img { width: 24px; height: 24px; border-radius: 7px; display: block; }
.nk-footer-brand span { font-family: var(--nk-display); font-weight: 400; font-size: 18px; color: var(--nk-fg-2); }
.nk-footer-links { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: var(--nk-fg-3); }
.nk-footer-links a:hover { color: var(--nk-fg); }
.nk-footer-meta { font-family: var(--nk-mono); font-size: 11px; color: var(--nk-fg-4); }

/* ------------------------------------------------------------- Animations -- */
@keyframes nk-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes nk-blink { 0%, 100% { opacity: .25; } 50% { opacity: 1; } }
@keyframes nk-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes nk-caret { 0%, 100% { opacity: 0; } 50% { opacity: 1; } }
@keyframes nk-pulse {
  0%   { box-shadow: 0 0 0 0 var(--nk-accent-soft); }
  70%  { box-shadow: 0 0 0 9px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* ---------------------------------------------------------------- Responsive */
@media (max-width: 960px) {
  /* Titre/proposition de valeur en premier, visuel ensuite (mobile-first) */
  .nk-hero-grid { grid-template-columns: 1fr; }
  .nk-mode-grid { grid-template-columns: 1fr; }
  .nk-places { grid-template-columns: repeat(2, 1fr); }
  .nk-roles { grid-template-columns: 1fr; max-width: 460px; }
  .nk-mock { max-width: 520px; margin: 8px auto 0; }
  .nk-phone { margin-top: 8px; }
}

@media (max-width: 720px) {
  .nk-nav { display: none; }
  .nk-header-actions .nk-desktop { display: none; }
  .nk-burger { display: flex; }

  /* Mobile nav panel */
  .nk-mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 14px clamp(20px, 5vw, 40px) 22px;
    background: var(--nk-ink);
    border-bottom: 1px solid var(--nk-bd);
  }
  .nk-mobile-nav.is-open { display: flex; }
  .nk-mobile-nav a { padding: 12px 4px; font-size: 15px; color: var(--nk-fg-2); border-bottom: 1px solid var(--nk-bd-2); }
  .nk-mobile-nav a:last-child { border-bottom: none; }
  .nk-mobile-nav .nk-btn { margin-top: 12px; justify-content: center; }

  .nk-mock-body { grid-template-columns: 1fr; }
  .nk-mock-chat { border-right: none; border-bottom: 1px solid var(--nk-bd-2); }
  .nk-places { grid-template-columns: 1fr; }
  .nk-chat-body { min-height: 0; padding: 16px; }
  .nk-refine { padding-left: 0; }
  .nk-hero-actions .nk-btn { width: 100%; justify-content: center; }
}

@media (min-width: 721px) { .nk-mobile-nav { display: none !important; } }

@media (prefers-reduced-motion: reduce) {
  .nk, html { scroll-behavior: auto; }
  .nk-mock, .nk-dot, .nk-badge .nk-dot { animation: none !important; }
}
