/* ====== NAV ====== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: var(--s-5) 0;
  transition: padding var(--d-base) var(--ease-out-expo);
}
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-8);
  padding: var(--s-3) var(--s-5) var(--s-3) var(--s-5);
  border-radius: var(--r-pill);
  transition: background var(--d-base), border-color var(--d-base), box-shadow var(--d-base), backdrop-filter var(--d-base);
  border: 1px solid transparent;
}
.nav.is-scrolled { padding: var(--s-3) 0; }
.nav.is-scrolled .nav__inner {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: var(--shadow-glass);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav__logo img { height: 46px; width: auto; }
.nav__links {
  display: flex;
  gap: var(--s-2);
  justify-content: center;
}
.nav__link {
  position: relative;
  padding: var(--s-2) var(--s-4);
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-radius: var(--r-pill);
  transition: color var(--d-fast);
}
.nav__link:hover { color: var(--orange); }
.nav__link.is-active { color: var(--orange); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  bottom: 4px; left: 50%;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--orange);
  transform: translateX(-50%);
}
.nav__cta {
  display: flex;
  gap: var(--s-2);
  align-items: center;
}
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  background: var(--ink);
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--white);
  position: relative;
  transition: transform var(--d-base) var(--ease-out-expo);
}
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute;
  left: 0; width: 18px; height: 1.5px; background: var(--white);
  transition: transform var(--d-base) var(--ease-out-expo);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }
.nav.is-open .nav__burger span { background: transparent; }
.nav.is-open .nav__burger span::before { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__burger span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__inner { grid-template-columns: auto 1fr auto; gap: var(--s-3); }
  .nav__cta { gap: var(--s-1); }
  .nav__cta .btn { padding: var(--s-2) var(--s-3); font-size: 0.78rem; }
  .nav__cta .btn__arrow { display: none; }
}
@media (max-width: 560px) {
  .nav__inner { gap: var(--s-2); padding: var(--s-2) var(--s-3); }
  .nav__logo img { height: 32px; }
  .nav__cta .btn { padding: 6px 10px; font-size: 0.7rem; letter-spacing: 0; }
  .nav__burger { width: 38px; height: 38px; }
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: calc(var(--z-nav) - 1);
  padding: 96px var(--container-x) var(--s-12);
  transform: translateY(-100%);
  transition: transform var(--d-slow) var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  overflow-y: auto;
}
.drawer.is-open { transform: translateY(0); }
.drawer__link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3rem);
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: var(--s-4);
  padding-block: var(--s-2);
  border-bottom: 1px solid var(--line);
}
.drawer__link em {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-style: normal;
  color: var(--mute);
  letter-spacing: 0.15em;
}
.drawer__cta { margin-top: auto; display: flex; gap: var(--s-3); flex-wrap: wrap; }

/* ====== BUTTONS ====== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  padding: 14px var(--s-6);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
  max-width: 100%;
  transition: transform var(--d-fast) var(--ease-out-expo),
              box-shadow var(--d-fast) var(--ease-out-expo),
              background var(--d-fast),
              color var(--d-fast);
  cursor: pointer;
  user-select: none;
  will-change: transform;
}
.btn:active { transform: translate3d(0, 1px, 0) scale(0.98); }
@media (max-width: 640px) {
  .btn {
    white-space: normal;
    text-align: center;
    padding: 12px var(--s-5);
    font-size: 0.92rem;
    border-radius: 999px;
    line-height: 1.25;
  }
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 14px 30px -14px rgba(255, 107, 26, 0.65);
}
.btn--primary:hover {
  background: var(--orange-deep);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 22px 38px -16px rgba(255, 107, 26, 0.75);
  transform: translate3d(0, -1px, 0);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  overflow: hidden;
}
.btn--ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform 360ms var(--ease-out-expo);
  z-index: 0;
}
.btn--ghost > * { position: relative; z-index: 1; transition: color var(--d-fast); }
.btn--ghost:hover { color: var(--white); border-color: var(--ink); }
.btn--ghost:hover::before { transform: translateY(0); }

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.32);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

.btn__arrow {
  width: 18px; height: 18px;
  display: inline-flex;
  align-items: center; justify-content: center;
  transition: transform var(--d-fast) var(--ease-out-expo);
}
.btn:hover .btn__arrow { transform: translateX(2px); }

.btn--xl { padding: 18px 32px; font-size: 1rem; }

/* ====== STARS / RATING ====== */
.rating {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--fs-sm);
  color: var(--mute);
}
.rating__stars { display: inline-flex; gap: 2px; color: var(--orange); }
.rating__stars svg { width: 14px; height: 14px; fill: currentColor; }
.rating strong { color: var(--ink); font-weight: 600; }

/* ====== LOGOS MARQUEE ====== */
.logo-marquee {
  position: relative;
  overflow: hidden;
  padding: var(--s-7) 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}
.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 1;
  pointer-events: none;
}
.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--white) 0, rgba(255,255,255,0) 100%);
}
.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--white) 0, rgba(255,255,255,0) 100%);
}
.logo-marquee__track {
  display: flex;
  gap: var(--s-12);
  padding-right: var(--s-12);
  align-items: center;
  animation: logoMarquee 45s linear infinite;
  width: max-content;
}
.logo-marquee:hover .logo-marquee__track { animation-play-state: paused; }
.logo-marquee__item {
  flex-shrink: 0;
  height: 64px;
  display: flex;
  align-items: center;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: opacity 0.4s, filter 0.4s;
}
.logo-marquee__item:hover { filter: grayscale(0); opacity: 1; }
.logo-marquee__item img {
  max-width: 180px;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
/* Bike Atlas est un carré 800×800 donc occupe moins d'espace visuel que les logos
   plus larges (text). On l'agrandit visuellement sans toucher au flex layout
   pour garder le gap identique entre les items. */
.logo-marquee__item img[src*="bike-atlas"] {
  transform: scale(1.2);
  transform-origin: center;
}

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

@media (max-width: 768px) {
  .logo-marquee { padding: var(--s-5) 0; }
  .logo-marquee::before { width: 60px; }
  .logo-marquee::after { width: 60px; }
  .logo-marquee__item { height: 48px; }
  .logo-marquee__item img { max-width: 130px; }
}

/* ====== MOBILE SWIPE SLIDER (with dots) ====== */
/* Apply .swipe-slider on the card container (alongside its desktop layout class).
   Below 640px it converts to a horizontal scroll-snap row.
   Add .swipe-dots block right after with one .swipe-dots__dot per card. */
.swipe-dots { display: none; }

@media (max-width: 640px) {
  .swipe-slider {
    display: flex !important;
    flex-direction: row !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    overflow-y: visible !important; /* let badges, halos, shadows above/below the cards remain visible */
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--container-x);
    gap: var(--s-6) !important;
    padding-inline: var(--container-x);
    padding-block: 24px; /* breathing room so :first-child badge (top: -14px) and shadow are not clipped */
    margin-inline: calc(var(--container-x) * -1);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    /* Neutralize container chrome that some slider hosts (e.g. .personas) use for the grid look */
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
  }
  .swipe-slider::-webkit-scrollbar { display: none; }
  .swipe-slider > * {
    flex: 0 0 86vw;
    max-width: 380px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .swipe-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: var(--s-5);
  }
  .swipe-dots__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--line-strong, var(--line));
    transition: background var(--d-base), width var(--d-base);
  }
  .swipe-dots__dot.is-active {
    background: var(--orange);
    width: 18px;
    border-radius: 3px;
  }
}

/* ====== GLASS CARD ====== */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-2xl);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: var(--shadow-glass);
}

/* ====== TAG ====== */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 6px var(--s-3);
  border-radius: var(--r-pill);
  background: var(--linen);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}
.tag::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
}
.tag--ink { background: var(--ink); color: var(--white); border-color: rgba(255,255,255,0.1); }
.tag--orange { background: var(--orange-soft); border-color: rgba(255,107,26,0.18); color: var(--orange-deep); }

/* ====== CARD HOVER WRAPPER ====== */
.tilt {
  transform-style: preserve-3d;
  transition: transform var(--d-base) var(--ease-out-expo);
  will-change: transform;
}

/* ====== FOOTER ====== */
.footer {
  background: var(--ink);
  color: var(--white);
  padding-top: var(--s-20);
  position: relative;
  overflow: hidden;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-12);
  padding-bottom: var(--s-16);
}
.footer__brand h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: var(--s-4);
}
.footer__brand img {
  display: block;
  height: 56px;
  width: auto;
  margin-bottom: var(--s-4);
  filter: brightness(0) invert(1);
}
.footer__brand p { color: rgba(255,255,255,0.62); max-width: 36ch; font-size: 0.95rem; }
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--s-5);
}
.footer__col ul { display: flex; flex-direction: column; gap: var(--s-3); }
.footer__col a {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  transition: color var(--d-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.footer__col a:hover { color: var(--orange); }
.footer__col a::before {
  content: "→";
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--d-fast), transform var(--d-fast);
  color: var(--orange);
}
.footer__col a:hover::before { opacity: 1; transform: translateX(0); }
.footer__band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--s-6);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.5);
}
.footer__band a { color: rgba(255,255,255,0.5); transition: color var(--d-fast); }
.footer__band a:hover { color: var(--orange); }
.footer__strip {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__strip-track {
  display: flex;
  gap: var(--s-12);
  padding: var(--s-5) 0;
  width: max-content;
  animation: marquee 60s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 107, 26, 0.4);
  font-weight: 800;
  white-space: nowrap;
}
.footer__strip-track span { display: inline-flex; align-items: center; gap: var(--s-6); }
.footer__strip-track i {
  display: inline-block;
  width: 14px; height: 14px;
  background: var(--orange);
  border-radius: 50%;
  font-style: normal;
}
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-10); }
}
@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__band { flex-direction: column; gap: var(--s-3); align-items: flex-start; }
}

/* ====== FAQ ACCORDION ====== */
.faq {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--white);
  transition: border-color var(--d-fast), background var(--d-fast);
  overflow: hidden;
}
.faq__item.is-open {
  border-color: var(--ink);
  background: var(--cream);
}
.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  padding: var(--s-6) var(--s-8);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  text-align: left;
  letter-spacing: -0.015em;
  color: var(--ink);
  cursor: pointer;
}
.faq__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--d-fast), transform var(--d-base) var(--ease-out-expo);
}
.faq__icon svg { width: 14px; height: 14px; stroke: var(--ink); stroke-width: 2; fill: none; }
.faq__item.is-open .faq__icon { background: var(--orange); transform: rotate(45deg); }
.faq__item.is-open .faq__icon svg { stroke: var(--white); }
.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--d-base) var(--ease-out-expo);
}
.faq__item.is-open .faq__panel { grid-template-rows: 1fr; }
.faq__panel-inner {
  overflow: hidden;
  min-height: 0;
}
.faq__panel-inner > div {
  padding: 0 var(--s-8) var(--s-6);
  color: var(--mute);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 64ch;
}

/* ====== CTA BANNER — "Mission control" ====== */
.cta-banner {
  position: relative;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(255,107,26,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #0F1B2E 0%, var(--ink) 100%);
  color: var(--white);
  border-radius: var(--r-2xl);
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 80px);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 60px 120px -60px rgba(0,0,0,0.6);
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}
.cta-banner__halo {
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  filter: blur(40px);
}
.cta-banner__halo--tl {
  top: -280px;
  right: -200px;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.42) 0%, transparent 60%);
  animation: ctaHaloFloat 12s ease-in-out infinite alternate;
}
.cta-banner__halo--br {
  bottom: -340px;
  left: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.18) 0%, transparent 65%);
  animation: ctaHaloFloat 14s ease-in-out infinite alternate-reverse;
}
@keyframes ctaHaloFloat {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(20px, -20px, 0) scale(1.08); }
}
.cta-banner__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 100%);
  opacity: 0.5;
}

/* Left content */
.cta-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.cta-banner__eyebrow { color: rgba(255,255,255,0.5); }
.cta-banner__title {
  color: var(--white);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  max-width: 14ch;
  line-height: 0.96;
  letter-spacing: -0.028em;
  margin: 0;
}
.cta-banner__title em {
  font-style: italic;
  color: var(--orange);
  font-family: "Cabinet Grotesk", serif;
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.cta-banner__title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: -2px;
  bottom: 4%;
  height: 8%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,107,26,0.32) 30%, rgba(255,107,26,0.32) 70%, transparent 100%);
  filter: blur(6px);
  z-index: -1;
}
.cta-banner__lead {
  color: rgba(255,255,255,0.72);
  max-width: 46ch;
  margin: 0;
  font-size: clamp(0.98rem, 1.1vw, 1.1rem);
  line-height: 1.55;
}
.cta-banner__lead strong {
  color: var(--white);
  font-weight: 500;
}
.cta-banner__actions {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
  margin-top: var(--s-3);
}

/* Primary CTA — pulsing glow */
.cta-banner__primary {
  position: relative;
  isolation: isolate;
}
.cta-banner__primary-glow {
  position: absolute;
  inset: -8px;
  border-radius: var(--r-pill);
  background: radial-gradient(circle, rgba(255,107,26,0.6) 0%, transparent 70%);
  filter: blur(18px);
  opacity: 0.6;
  z-index: -1;
  animation: ctaPrimaryPulse 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ctaPrimaryPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.06); }
}
.cta-banner__primary:hover .cta-banner__primary-glow {
  animation-duration: 1.4s;
  opacity: 0.95;
}

/* Live availability pill */
.cta-banner__meta {
  margin-top: var(--s-4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  align-self: flex-start;
}
.cta-banner__pulse {
  position: relative;
  width: 10px;
  height: 10px;
  flex: none;
}
.cta-banner__pulse i {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--orange);
}
.cta-banner__pulse::before,
.cta-banner__pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255,107,26,0.5);
  animation: ctaPulseRing 2.2s ease-out infinite;
}
.cta-banner__pulse::after { animation-delay: 1.1s; }
@keyframes ctaPulseRing {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* === Rocket scene === */
.cta-banner__scene {
  position: relative;
  z-index: 1;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 460px;
  justify-self: end;
  align-self: center;
  display: grid;
  place-items: center;
  perspective: 1000px;
  will-change: transform;
}

.rocket-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.rocket-stars i {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 6px rgba(255,255,255,0.6);
  animation: starTwinkle var(--d, 2s) ease-in-out infinite;
}
.rocket-stars i:nth-child(odd) {
  background: rgba(255,107,26,0.85);
  box-shadow: 0 0 8px rgba(255,107,26,0.5);
}
@keyframes starTwinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1); }
}

.rocket-orbit {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.rocket-orbit--lg {
  animation: orbitSpin 28s linear infinite;
}
.rocket-orbit--md {
  animation: orbitSpin 18s linear infinite reverse;
  width: 88%;
  height: 88%;
}
@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

.rocket-trail {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.rocket-trail path {
  stroke-dasharray: 2 8;
  animation: trailDash 18s linear infinite;
  filter: drop-shadow(0 0 6px rgba(255,107,26,0.4));
}
@keyframes trailDash {
  to { stroke-dashoffset: -200; }
}

.rocket-glow {
  position: absolute;
  width: 60%;
  height: 60%;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,107,26,0.45) 0%, transparent 60%);
  filter: blur(28px);
  pointer-events: none;
  animation: rocketGlowPulse 3.2s ease-in-out infinite;
  z-index: 1;
}
@keyframes rocketGlowPulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.95; transform: translate(-50%, -50%) scale(1.18); }
}

.rocket {
  position: relative;
  z-index: 3;
  animation: rocketFloat 4.5s ease-in-out infinite;
  filter: drop-shadow(0 22px 38px rgba(255,107,26,0.32)) drop-shadow(0 8px 14px rgba(10,22,40,0.4));
  transform-origin: center bottom;
}
@keyframes rocketFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
}
.rocket__flame {
  transform-origin: 40px 102px;
  animation: rocketFlame 0.16s ease-in-out infinite alternate;
}
@keyframes rocketFlame {
  0% { transform: scaleY(1) scaleX(1); opacity: 0.9; }
  100% { transform: scaleY(1.18) scaleX(0.9); opacity: 1; }
}
.rocket__particles {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 80px;
  pointer-events: none;
}
.rocket__particles i {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange);
  animation: rocketParticle 1.6s ease-out infinite;
  opacity: 0;
}
.rocket__particles i:nth-child(1) { --offset: -16px; animation-delay: 0s; }
.rocket__particles i:nth-child(2) { --offset: 14px; animation-delay: 0.3s; }
.rocket__particles i:nth-child(3) { --offset: -8px; animation-delay: 0.6s; }
.rocket__particles i:nth-child(4) { --offset: 6px; animation-delay: 0.9s; }
.rocket__particles i:nth-child(5) { --offset: 0; animation-delay: 1.2s; }
@keyframes rocketParticle {
  0% { transform: translate(-50%, 0) scale(1); opacity: 1; }
  100% { transform: translate(calc(-50% + var(--offset, 0)), 80px) scale(0.2); opacity: 0; }
}

/* Floating "30 MIN" badge */
.rocket-badge {
  position: absolute;
  bottom: 6%;
  right: -2%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px 16px 14px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.5);
  animation: badgeFloat 6s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.rocket-badge__ring {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid var(--orange);
  opacity: 0;
  animation: badgeRing 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes badgeRing {
  0% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.18); }
}
.rocket-badge strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: var(--white);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.rocket-badge strong span {
  font-size: 0.62rem;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  font-style: normal;
}
.rocket-badge em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* === Responsive === */
@media (max-width: 900px) {
  .cta-banner {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .cta-banner__scene {
    order: -1;
    max-width: 320px;
    justify-self: center;
    margin-bottom: var(--s-4);
  }
  .rocket-badge { right: -4%; }
}
@media (max-width: 520px) {
  .cta-banner { padding: clamp(32px, 6vw, 56px) clamp(24px, 5vw, 40px); }
  .cta-banner__scene { max-width: 260px; }
  .rocket-badge { padding: 10px 12px 11px; }
  .rocket-badge strong { font-size: 1.5rem; }
}

/* === BULLSEYE TARGET SCENE (CTA banner site-web) === */
.cta-target {
  position: absolute;
  inset: 8% 8%;
  width: 84%;
  height: 84%;
  z-index: 2;
  filter: drop-shadow(0 18px 32px rgba(255, 107, 26, 0.18));
}
.cta-target__ring {
  transform-box: fill-box;
  transform-origin: center;
}
.cta-target__ring--5 { animation: ctaTargetSpin 28s linear infinite; }
.cta-target__ring--4 { animation: ctaTargetSpin 22s linear infinite reverse; }
@keyframes ctaTargetSpin {
  to { transform: rotate(360deg); }
}
.cta-target__ring--1 { animation: ctaBullPulse 3.2s ease-in-out infinite; }
@keyframes ctaBullPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}
.cta-target__bullseye { animation: ctaBullDot 3.2s ease-in-out infinite; }
@keyframes ctaBullDot {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.6; }
}

.cta-target__halo {
  position: absolute;
  width: 60%;
  height: 60%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,107,26,0.42) 0%, transparent 60%);
  filter: blur(32px);
  pointer-events: none;
  animation: ctaTargetGlow 5s ease-in-out infinite;
  z-index: 1;
}
@keyframes ctaTargetGlow {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 0.95; transform: translate(-50%, -50%) scale(1.18); }
}

/* === Arrow (SVG réaliste, position absolue) === */
.cta-arrow {
  position: absolute;
  top: var(--top, 50%);
  left: var(--left, 50%);
  width: 120px;
  height: 18px;
  margin-left: -120px;  /* tip (right edge) = au point d'ancrage (top/left) */
  margin-top: -9px;     /* centre vertical */
  pointer-events: none;
  z-index: 4;
  transform-origin: 100% 50%;
  transform: rotate(var(--rot, 0deg));
  will-change: transform, opacity;
  filter: drop-shadow(0 4px 8px rgba(10, 22, 40, 0.55))
          drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6));
}
.cta-arrow__svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* === "+1 client" pop badges === */
.cta-conv-pop {
  position: absolute;
  top: var(--top, 50%);
  left: var(--left, 50%);
  transform: translate(-50%, -50%) scale(0);
  z-index: 5;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange);
  border: 1px solid rgba(255, 255, 255, 0.32);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: 0 8px 20px -6px rgba(255, 107, 26, 0.6);
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

/* === Sparkles burst (au centre, déclenché à l'arrivée de la flèche bullseye) === */
.cta-sparkles {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: 6;
  pointer-events: none;
}
.cta-sparkles i {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 8px rgba(255, 107, 26, 0.85);
  opacity: 0;
  transform-origin: 0 0;
  --r: 0px;
  transform: rotate(var(--a, 0deg)) translateX(var(--r));
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cta-banner__halo--tl,
  .cta-banner__halo--br,
  .cta-banner__primary-glow,
  .cta-banner__pulse::before,
  .cta-banner__pulse::after,
  .rocket-stars i,
  .rocket-orbit,
  .rocket-trail path,
  .rocket-glow,
  .rocket,
  .rocket__flame,
  .rocket__particles i,
  .rocket-badge,
  .rocket-badge__ring,
  .cta-target__ring,
  .cta-target__bullseye,
  .cta-target__halo {
    animation: none !important;
  }
  .cta-arrow { opacity: 1 !important; }
  .cta-sparkles i { opacity: 0 !important; }
}

/* === Halo Glow accent === */
.halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
}
.halo--orange { background: rgba(255, 107, 26, 0.4); }

/* === Spotlight border (cards w/ pointer glow) === */
.spotlight {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.spotlight::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(450px circle at var(--mx, -100px) var(--my, -100px),
              rgba(255, 107, 26, 0.18) 0%, transparent 40%);
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
  opacity: 0;
  transition: opacity var(--d-base);
}
.spotlight:hover::before { opacity: 1; }
.spotlight > * { position: relative; z-index: 1; }

/* ============== SPLIT-WORD (animations word-by-word) ============== */
/* Wrapper créé dynamiquement par gsap-animations.js pour reveals (h1, h2…).
   Italic guard : la pente de l'italique dépasse l'advance-width et se fait clipper
   par la box inline-block. On ajoute un padding-right uniquement pour les mots
   dans un <em> (titres avec accent orange italique). */
.split-word {
  display: inline-block;
  will-change: transform, opacity;
}
em > .split-word,
em .split-word {
  padding-right: 0.1em;
}
