/* ═══════════════════════════════════════════════════════════════════════════
   SPOTVIB — Site marketing officiel
   Design system: Spotvib (coral #E76F51 · teal #2A9D8F · deep-teal #264653
   · sand-yellow #E9C46A · sand-orange #F4A261). Nunito Sans, Material-3 radii.
   GPU-only animations (transform + opacity). prefers-reduced-motion respected.
   ═══════════════════════════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,400;6..12,500;6..12,600;6..12,700;6..12,800;6..12,900&display=swap");

:root {
  /* Brand palette (from Spotvib design tokens) */
  --coral:        #E76F51;
  --coral-light:  #ED8A72;
  --coral-dark:   #DF5636;
  --coral-deep:   #D65A3C;
  --coral-glow:   #F2937A;
  --teal:         #2A9D8F;
  --teal-light:   #3FB4A5;
  --teal-dark:    #1F7B70;
  --navy:         #264653;
  --navy-light:   #3A5A68;
  --navy-dark:    #1A3038;
  --sand:         #E9C46A;  /* sand-yellow — Vibs / highlight */
  --sand-dark:    #E3B84C;
  --sand-orange:  #F4A261;  /* warning / pending */

  /* Surfaces & text */
  --bg:        #FFFFFF;
  --bg-alt:    #F7F7F5;
  --surface:   #FFFFFF;
  --fg:        #1A2B3C;     /* dark text (brief) */
  --fg-2:      #1F2937;
  --muted:     #6B7280;
  --border:    #E5E7EB;

  /* Shadows */
  --shadow-sm:   0 2px 6px rgba(0,0,0,0.06);
  --shadow:      0 4px 20px rgba(0,0,0,0.08);
  --shadow-md:   0 14px 36px rgba(0,0,0,0.12);
  --shadow-lg:   0 28px 64px rgba(0,0,0,0.18);
  --shadow-coral:0 8px 28px rgba(231,111,81,0.34);
  --shadow-phone:0 40px 80px rgba(0,0,0,0.20), 0 0 0 1px rgba(0,0,0,0.05);

  /* Radii */
  --r-sm: 8px;  --r: 12px;  --r-md: 16px;  --r-lg: 20px;  --r-xl: 28px; --r-full: 999px;

  /* Type */
  --font: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);

  --maxw: 1200px;
}

/* ──────── Reset ──────── */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font); color: var(--fg);
  background: var(--bg); line-height: 1.7;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

/* ──────── Layout primitives ──────── */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(72px, 10vw, 132px) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--coral); margin: 0 0 18px;
}
.eyebrow--teal { color: var(--teal); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
h2.h2 {
  font-size: clamp(30px, 4.6vw, 52px); font-weight: 800; line-height: 1.08;
  letter-spacing: -0.02em; color: var(--fg); margin: 0 0 20px; text-wrap: balance;
}
.lead { font-size: clamp(17px, 1.5vw, 20px); color: var(--muted); max-width: 60ch; margin: 0; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
.section-head { max-width: 760px; }
.section-head.center { margin-inline: auto; }
em.accent { color: var(--coral); font-style: italic; font-weight: 800; }

/* ──────── Buttons ──────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 800; font-size: 16px; border-radius: var(--r-full);
  padding: 16px 30px; transition: transform .12s var(--ease), box-shadow .3s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--coral); color: #fff; box-shadow: var(--shadow-coral); }
.btn-primary:hover { background: var(--coral-dark); box-shadow: 0 12px 34px rgba(231,111,81,0.46); transform: translateY(-2px); }
.btn-primary:active { transform: scale(.97); }
.btn-ghost { background: transparent; color: var(--fg); }
.btn-ghost:hover { color: var(--coral); }
.btn-light { background: #fff; color: var(--coral); box-shadow: var(--shadow); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 18px 36px; font-size: 17px; }

/* ──────── Pills / tags ──────── */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px; border-radius: var(--r-full);
  font-size: 13.5px; font-weight: 700; line-height: 1;
}
.pill svg { width: 15px; height: 15px; }
.pill--coral { background: rgba(231,111,81,.12); color: var(--coral-dark); }
.pill--teal  { background: rgba(42,157,143,.13); color: var(--teal-dark); }
.pill--sand  { background: rgba(233,196,106,.22); color: #9A7B22; }
.pill--navy  { background: rgba(38,70,83,.10); color: var(--navy); }

.tagrow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }

/* ═══════════════════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav.scrolled {
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
}
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo img { width: 40px; height: 40px; }
.logo__word { font-size: 23px; font-weight: 800; letter-spacing: -.01em; color: var(--fg); }
.nav__links { display: flex; gap: 36px; }
.nav__links a { font-size: 15.5px; font-weight: 700; color: var(--fg); opacity: .82; transition: opacity .2s, color .2s; position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--coral); transition: width .25s var(--ease); border-radius: 2px; }
.nav__links a:hover { opacity: 1; color: var(--coral); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav .btn-primary { padding: 12px 22px; font-size: 15px; }
.nav-toggle { display: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   PHONE MOCKUP (shared)
   ═══════════════════════════════════════════════════════════════════════════ */
.phone-wrap { position: relative; display: inline-flex; justify-content: center; }
.phone-halo {
  position: absolute; top: 50%; left: 50%; width: 360px; height: 360px;
  transform: translate(-50%,-50%); border-radius: 50%; z-index: 0;
  background: radial-gradient(circle, rgba(231,111,81,.30), transparent 68%);
  filter: blur(12px);
}
.phone-halo--teal { background: radial-gradient(circle, rgba(42,157,143,.28), transparent 68%); }
.phone {
  position: relative; z-index: 1;
  width: 272px; height: 566px; border-radius: 46px;
  background: #0d0f12; padding: 9px;
  box-shadow: var(--shadow-phone);
  transition: transform .5s var(--ease);
  transform-style: preserve-3d;
}
.phone__screen {
  position: relative; width: 100%; height: 100%; border-radius: 38px;
  overflow: hidden; background: #fff;
}
.phone__island {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 26px; border-radius: var(--r-full); background: #000; z-index: 30;
}
/* ───── Real screenshot filling the phone frame ───── */
.scr-shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* ───── Animated map clusters layered over the screenshot ───── */
.scr-cluster {
  position: absolute; z-index: 6;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: #263C45; color: #fff;
  font-size: 16px; font-weight: 700; letter-spacing: -.01em;
  box-shadow: 0 5px 12px rgba(0,0,0,.28);
  transform: translate(-50%, -50%);
  animation: clusterFloat 3.6s var(--ease) infinite;
  animation-delay: var(--d, 0s);
}
@keyframes clusterFloat {
  0%, 100% { transform: translate(-50%, -50%); }
  50%      { transform: translate(-50%, calc(-50% - 5px)); }
}
@media (prefers-reduced-motion: reduce) {
  .scr-cluster { animation: none; }
}
/* ───── Self-running decorative scroll of a tall screenshot inside the phone ───── */
.scr-scroll { position: absolute; inset: 0; overflow: hidden; background: #FAFAFA; }
.scr-scroll__img {
  display: block; width: 100%; height: auto;
  transform: translateY(0); will-change: transform;
  animation: spotScroll 18s ease-in-out infinite;
}
@keyframes spotScroll {
  0%, 9%    { transform: translateY(0); }
  47%, 56%  { transform: translateY(var(--scroll-end, -1535px)); }
  94%, 100% { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .scr-scroll__img { animation: none; transform: translateY(0); }
}

/* ───── Discreet legal caption under phone mockups ───── */
.phone-caption,
.feature .phone-caption {
  margin: 14px auto 0; max-width: 272px; text-align: center;
  font-size: 11.5px; line-height: 1.45; font-style: italic;
  color: #9CA3AF; letter-spacing: .005em; text-wrap: pretty;
}
/* On the dark hero, lighten so it stays discreet yet legible */
.cine-phone .phone-caption { color: rgba(255,255,255,.55); }
/* Feature phones drift downward on scroll (parallax) — give the caption
   extra clearance so the moving mockup never covers it. */
.feature__media .phone-caption { margin-top: 52px; }
.cine-phone, .feature__media { flex-direction: column; align-items: center; }
.phone__statusbar {
  position: absolute; top: 0; left: 0; right: 0; height: 48px; z-index: 25;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px 0; font-size: 13px; font-weight: 800; pointer-events: none;
}
.phone__statusbar .sb-icons { display: flex; gap: 5px; align-items: center; }
.phone__statusbar .sb-icons svg { width: 16px; height: 11px; }

/* ───── In-phone: SPLASH ───── */
.scr-splash {
  position: absolute; inset: 0;
  background: linear-gradient(165deg, #F7B27E 0%, #E8673A 42%, #cf5733 78%, #2A9D8F 160%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
}
.scr-splash::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(255,255,255,.28), transparent 55%);
}
.splash-mark {
  position: relative; display: flex; align-items: center; gap: 12px;
  background: #fff; padding: 16px 26px 16px 18px; border-radius: var(--r-full);
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.splash-mark img { width: 46px; height: 46px; }
.splash-mark span { font-size: 25px; font-weight: 800; color: var(--fg); letter-spacing: -.01em; }
.splash-tag { position: relative; color: #fff; font-weight: 700; font-size: 13.5px; letter-spacing: .22em; text-transform: uppercase; opacity: .95; }
.splash-dots { position: relative; display: flex; gap: 8px; margin-top: 6px; }
.splash-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.6); animation: splashDot 1.2s var(--ease) infinite; }
.splash-dots i:nth-child(2){ animation-delay: .2s; }
.splash-dots i:nth-child(3){ animation-delay: .4s; }
@keyframes splashDot { 0%,100%{ opacity:.4; transform: scale(.8);} 50%{ opacity:1; transform: scale(1.15);} }

/* ───── In-phone: generic app shell ───── */
.scr { position: absolute; inset: 0; background: #FAFAFA; display: flex; flex-direction: column; }
.scr-appbar {
  background: var(--navy); color: #fff; padding: 50px 18px 14px;
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.scr-appbar .ab-title { font-size: 16px; font-weight: 800; }
.scr-appbar .ab-ico { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.16); display: flex; align-items: center; justify-content: center; }
.scr-appbar .ab-ico svg { width: 16px; height: 16px; stroke: #fff; }
.scr-body { flex: 1; overflow: hidden; }

/* ───── In-phone: SPOT DETAIL ───── */
.sd-hero { position: relative; height: 218px; }
.sd-hero img { width: 100%; height: 100%; object-fit: cover; }
.sd-hero::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(0,0,0,.45), transparent 50%); }
.sd-chrome { position: absolute; top: 46px; left: 14px; right: 14px; display: flex; justify-content: space-between; z-index: 4; }
.sd-chrome .cbtn { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.92); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.sd-chrome .cbtn svg { width: 17px; height: 17px; stroke: var(--navy); }
.sd-chrome .cbtn--fav svg { stroke: var(--coral); fill: var(--coral); }
.sd-cat { position: absolute; left: 14px; bottom: 14px; z-index: 4; display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.94); padding: 6px 12px 6px 8px; border-radius: var(--r-full); font-size: 12px; font-weight: 800; color: var(--navy); }
.sd-cat img { width: 18px; height: 18px; }
.sd-content { padding: 16px 16px 0; }
.sd-title { font-size: 19px; font-weight: 800; color: var(--fg); line-height: 1.2; }
.sd-meta { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 12.5px; font-weight: 600; margin-top: 6px; }
.sd-meta .mdot { width: 3px; height: 3px; border-radius: 50%; background: #BDBDBD; }
.sd-validated { display: inline-flex; align-items: center; gap: 7px; background: rgba(42,157,143,.13); color: var(--teal-dark); padding: 8px 13px; border-radius: var(--r-full); font-size: 12.5px; font-weight: 800; margin-top: 14px; }
.sd-validated svg { width: 15px; height: 15px; }
.sd-info { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 14px; }
.sd-info .cell { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 11px 12px; }
.sd-info .cell .k { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.sd-info .cell .k svg { width: 13px; height: 13px; stroke: var(--coral); }
.sd-info .cell .v { font-size: 14px; font-weight: 800; color: var(--fg); margin-top: 4px; }
.sd-cta { margin: 16px; background: var(--coral); color: #fff; border-radius: var(--r-full); text-align: center; padding: 14px; font-weight: 800; font-size: 14px; box-shadow: var(--shadow-coral); }

/* ───── In-phone: MAP ───── */
.scr-map { position: absolute; inset: 0; overflow: hidden;
  background:
    radial-gradient(circle at 22% 24%, #d2e6cf 0%, transparent 38%),
    radial-gradient(circle at 78% 40%, #e9e1cb 0%, transparent 42%),
    radial-gradient(circle at 40% 78%, #cfe2e6 0%, transparent 44%),
    radial-gradient(circle at 85% 84%, #dde7d6 0%, transparent 40%),
    linear-gradient(150deg, #eef2ea, #e6ece6);
}
.scr-map .road { position: absolute; background: #fff; opacity: .85; border-radius: 4px; }
.scr-map .road.r1 { width: 5px; height: 130%; left: 32%; top: -10%; transform: rotate(18deg); }
.scr-map .road.r2 { width: 4px; height: 120%; left: 68%; top: -5%; transform: rotate(-12deg); }
.scr-map .road.r3 { width: 4px; height: 140%; left: 50%; top: -10%; transform: rotate(78deg); }
.scr-map .water { position: absolute; width: 150px; height: 70px; right: -28px; bottom: 90px; background: #bcdce4; border-radius: 50% 40% 45% 55%; transform: rotate(-12deg); opacity: .9; }
.map-search {
  position: absolute; top: 50px; left: 14px; right: 14px; z-index: 6;
  display: flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.85); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-radius: var(--r-full); padding: 11px 15px; box-shadow: var(--shadow-sm);
}
.map-search svg { width: 16px; height: 16px; stroke: var(--muted); }
.map-search span { font-size: 12.5px; font-weight: 700; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.map-filters { position: absolute; top: 98px; left: 14px; right: 14px; z-index: 6; display: flex; gap: 8px; overflow: hidden; }
.map-chip { background: #fff; border-radius: var(--r-full); padding: 6px 12px; font-size: 11.5px; font-weight: 800; color: var(--navy); box-shadow: var(--shadow-sm); white-space: nowrap; }
.map-chip.on { background: var(--coral); color: #fff; }
.cluster {
  position: absolute; z-index: 5; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; background: var(--teal);
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
  box-shadow: 0 6px 14px rgba(42,157,143,.4);
}
.cluster.c1 { width: 58px; height: 58px; font-size: 18px; top: 200px; left: 44px; }
.cluster.c2 { width: 44px; height: 44px; font-size: 15px; top: 290px; left: 150px; background: var(--teal-light); }
.cluster.c3 { width: 38px; height: 38px; font-size: 13px; top: 168px; left: 168px; }
.map-pin { position: absolute; z-index: 5; width: 34px; height: 34px; }
.map-pin.p1 { top: 360px; left: 80px; }
.map-pin.p2 { top: 410px; left: 168px; }
.map-fab {
  position: absolute; bottom: 78px; left: 50%; transform: translateX(-50%); z-index: 8;
  width: 56px; height: 56px; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, var(--coral-glow), var(--coral) 46%, var(--coral-deep));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-coral);
}
.map-fab svg { width: 26px; height: 26px; stroke: #fff; stroke-width: 2.4; }
.phone-bottombar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 62px; z-index: 7;
  background: #fff; border-radius: var(--r-xl) var(--r-xl) 0 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,.07);
  display: flex; align-items: center; justify-content: space-around; padding: 0 14px 6px;
}
.phone-bottombar img { width: 24px; height: 24px; opacity: .92; }
.phone-bottombar .spacer { width: 52px; }

/* ───── In-phone: WIZARD (3 types) ───── */
.scr-wizard { position: absolute; inset: 0; background: #FAFAFA; display: flex; flex-direction: column; }
.wz-head { padding: 52px 18px 8px; }
.wz-head .step { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--coral); }
.wz-head .q { font-size: 19px; font-weight: 800; color: var(--fg); line-height: 1.25; margin-top: 6px; }
.wz-list { padding: 14px 16px; display: flex; flex-direction: column; gap: 12px; }
.wz-card {
  display: flex; align-items: center; gap: 13px; background: #fff;
  border: 1.5px solid var(--border); border-radius: var(--r-md); padding: 14px;
  position: relative; overflow: hidden;
}
.wz-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; }
.wz-card.sel { border-color: var(--coral); box-shadow: 0 6px 18px rgba(231,111,81,.16); }
.wz-card .wz-ico { width: 46px; height: 46px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wz-card .wz-ico img { width: 30px; height: 30px; }
.wz-card .wz-txt { display: flex; flex-direction: column; gap: 2px; }
.wz-card .wz-tt { display: block; font-size: 15px; font-weight: 800; color: var(--fg); line-height: 1.2; }
.wz-card .wz-sub { display: block; font-size: 12px; font-weight: 700; line-height: 1.2; }
.wz-card .wz-chev { margin-left: auto; }
.wz-card .wz-chev svg { width: 18px; height: 18px; stroke: #C4C9CF; }
.wz-card.t-spot::before { background: var(--sand-orange); }
.wz-card.t-spot .wz-ico { background: rgba(244,162,97,.16); }
.wz-card.t-spot .wz-sub { color: var(--sand-orange); }
.wz-card.t-mythe::before { background: var(--teal); }
.wz-card.t-mythe .wz-ico { background: rgba(42,157,143,.13); }
.wz-card.t-mythe .wz-sub { color: var(--teal-dark); }
.wz-card.t-event::before { background: var(--coral); }
.wz-card.t-event .wz-ico { background: rgba(231,111,81,.13); }
.wz-card.t-event .wz-sub { color: var(--coral-dark); }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 120px 0 70px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 120%; object-fit: cover; object-position: 50% 35%; will-change: transform; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 34%, rgba(255,255,255,.45) 55%, rgba(255,255,255,.08) 75%),
              linear-gradient(to bottom, transparent 55%, rgba(255,255,255,.85) 96%);
}
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 40px; align-items: center; width: 100%; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; background: #fff;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  padding: 9px 16px; border-radius: var(--r-full); font-size: 13px; font-weight: 800; color: var(--navy);
}
.hero__badge .live { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 0 rgba(42,157,143,.5); }
.hero h1 {
  font-size: clamp(38px, 5.6vw, 68px); font-weight: 800; line-height: 1.04;
  letter-spacing: -0.025em; color: var(--fg); margin: 22px 0 0; text-wrap: balance;
}
.hero h1 .l2 { color: var(--coral); font-style: italic; display: block; }
.hero__sub { font-size: clamp(17px, 1.6vw, 20px); color: #44546A; max-width: 50ch; margin: 22px 0 0; font-weight: 500; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 32px; }
.hero__stats { display: flex; gap: 34px; margin-top: 44px; }
.hero__stats .stat .num { font-size: clamp(28px, 3vw, 38px); font-weight: 800; color: var(--fg); line-height: 1; letter-spacing: -.02em; }
.hero__stats .stat .lbl { font-size: 13px; font-weight: 700; color: var(--muted); margin-top: 6px; text-transform: uppercase; letter-spacing: .06em; }
.hero__stats .sep { width: 1px; background: var(--border); }
.hero__phone { display: flex; justify-content: center; }

/* float + tilt */
.phone-float { animation: floaty 5.5s var(--ease) infinite; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }
.phone-tilt:hover { transform: perspective(1100px) rotateY(-7deg) rotateX(4deg) scale(1.02); }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO — CINEMATIC PINNED SCROLL
   ═══════════════════════════════════════════════════════════════════════════ */
.hero-trigger { position: relative; height: 400vh; background: #0F1A23; }
.hero-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  background: #0F1A23; /* dark stage revealed as the photo dims */
}
.hero-bg { position: absolute; inset: 0; z-index: 0; transform-origin: center center; will-change: transform, opacity; }
.hero-bg-img, .hero-bg-fallback {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 42%;
  transform-origin: center center; will-change: transform, opacity;
}
/* le repli reste derrière la vidéo ; la vidéo le recouvre une fois chargée */
.hero-bg-fallback { z-index: 0; }
.hero-bg-img { z-index: 1; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,26,35,.30) 0%, rgba(15,26,35,.06) 38%, rgba(15,26,35,.62) 100%);
}
.hero-stage {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transform-origin: center center; will-change: transform, opacity;
}
.cine { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.cine-q .qi {
  color: #fff; font-weight: 900; font-size: clamp(3.6rem, 12vw, 10rem);
  letter-spacing: -0.045em; text-shadow: 0 4px 40px rgba(0,0,0,.45);
  white-space: nowrap; will-change: transform, opacity, filter;
}
.cine-brand { opacity: 0; }
.cine-brand .bi { display: flex; align-items: center; gap: clamp(10px, 1.4vw, 20px); will-change: transform; }
.cine-brand .bi img { width: clamp(54px, 7.5vw, 104px); height: auto; filter: drop-shadow(0 8px 28px rgba(0,0,0,.4)); }
.cine-brand .bi .bw { color: #fff; font-weight: 900; font-size: clamp(3rem, 9.5vw, 8rem); letter-spacing: -0.035em; text-shadow: 0 4px 40px rgba(0,0,0,.45); }

.hero-final {
  position: relative; z-index: 3; width: 100%; max-width: var(--maxw);
  margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(32px, 5vw, 72px); align-items: center;
  pointer-events: none; margin-top: 52px;
}
.cine-desc { opacity: 0; will-change: transform, opacity; }
.cine-desc h1 {
  font-size: clamp(34px, 4.6vw, 62px); font-weight: 800; line-height: 1.04;
  letter-spacing: -0.025em; color: #fff; margin: 0; text-wrap: balance;
}
.cine-desc h1 .accent2 { display: block; color: var(--coral-light); font-style: italic; }
.hero2-sub { font-size: clamp(16px, 1.5vw, 20px); color: rgba(255,255,255,.86); margin: 22px 0 0; max-width: 46ch; font-weight: 500; }
.hero2-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 30px; }
.btn-ghost-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn-ghost-light:hover { color: var(--navy); background: #fff; border-color: #fff; transform: translateY(-2px); }
.hero2-stats { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.hero2-stats .stat {
  display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: var(--r-full);
  padding: 11px 20px; box-shadow: 0 8px 22px rgba(0,0,0,.14);
}
.hero2-stats .stat .num { font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; color: var(--fg); line-height: 1; letter-spacing: -.02em; }
.hero2-stats .stat .lbl { font-size: 11.5px; font-weight: 700; color: var(--muted); margin-top: 5px; text-transform: uppercase; letter-spacing: .08em; }
.hero2-stats .sep { display: none; }
.cine-phone { display: flex; justify-content: center; opacity: 0; will-change: transform, opacity; }
.cine-phone .phone-halo { background: radial-gradient(circle, rgba(231,111,81,.45), transparent 66%); }
.cine-phone .phone-halo--teal { background: radial-gradient(circle, rgba(42,157,143,.42), transparent 66%); }

.hero-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.85); font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .22em; pointer-events: none;
}
.hero-hint svg { width: 22px; height: 26px; stroke: currentColor; animation: arrowBob 1.8s var(--ease) infinite; }

/* nav over the dark cinematic hero — white content until scrolled past */
.nav:not(.scrolled) .logo__word,
.nav:not(.scrolled) .nav__links a { color: #fff; text-shadow: 0 1px 12px rgba(0,0,0,.3); }
.nav:not(.scrolled) .nav__links a { opacity: .9; }
.nav:not(.scrolled) .nav__links a:hover { color: var(--sand); opacity: 1; }

/* ═══════════════════════════════════════════════════════════════════════════
   PROBLEM
   ═══════════════════════════════════════════════════════════════════════════ */
.prob-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 720px; margin: 36px auto 0; position: relative; z-index: 3; }
.prob-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  padding: 12px 18px; border-radius: var(--r-full); font-size: 15px; font-weight: 700; color: var(--muted);
  position: relative;
}
.prob-pill .strike { text-decoration: line-through; text-decoration-color: rgba(231,111,81,.7); text-decoration-thickness: 2px; }
.prob-pill .x { width: 19px; height: 19px; border-radius: 50%; background: rgba(231,111,81,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.prob-pill .x svg { width: 12px; height: 12px; stroke: var(--coral); stroke-width: 3; }
.prob-arrow { display: flex; justify-content: center; margin: 36px 0 30px; }
.prob-arrow svg { width: 34px; height: 44px; stroke: var(--coral); animation: arrowBob 1.8s var(--ease) infinite; }
@keyframes arrowBob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(8px);} }
.prob-funnel { position: relative; width: 100%; max-width: 440px; height: 320px; margin: -130px auto 0; z-index: 1; }
.prob-funnel__canvas { display: block; width: 100%; height: 100%; }
.prob-resolve { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: -54px; position: relative; z-index: 2; }
.prob-resolve .prob-solution { margin: 0; }
.prob-resolve__icon { width: 56px; height: 56px; object-fit: contain; flex-shrink: 0; }
.prob-solution {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 auto;
  background: var(--coral); color: #fff; padding: 12px 18px; border-radius: var(--r-full);
  font-size: 15px; font-weight: 700; box-shadow: none;
}
.prob-solution img { width: 22px; height: 22px; }
/* ═══════════════════════════════════════════════════════════════════════════
   FEATURES (alternating)
   ═══════════════════════════════════════════════════════════════════════════ */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.feature + .feature { margin-top: clamp(80px, 9vw, 132px); }
.feature--rev .feature__text { order: 2; }
.feature--rev .feature__media { order: 1; }
.feature__text { position: relative; }
.feature__num { position: absolute; top: -56px; left: -8px; font-size: 150px; font-weight: 900; color: rgba(231,111,81,.07); line-height: 1; z-index: 0; pointer-events: none; letter-spacing: -.04em; }
.feature__text > * { position: relative; }
.feature h3 { font-size: clamp(26px, 3.2vw, 40px); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; color: var(--fg); margin: 0 0 16px; text-wrap: balance; }
.feature p { color: var(--muted); font-size: 17px; max-width: 46ch; }
.feature__media { display: flex; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════════════════
   3 TYPES
   ═══════════════════════════════════════════════════════════════════════════ */
.types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.type-card {
  position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px 28px; box-shadow: var(--shadow); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.type-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; }
.type-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.type-card .tc-ico { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.type-card .tc-ico img { width: 40px; height: 40px; }
.type-card h3 { font-size: 22px; font-weight: 800; color: var(--fg); margin: 0; }
.type-card .tc-sub { font-size: 14px; font-weight: 800; margin: 4px 0 14px; }
.type-card p { font-size: 15px; color: var(--muted); }
.type-card.t-spot::before { background: linear-gradient(var(--sand), var(--sand-orange)); }
.type-card.t-spot .tc-ico { background: rgba(244,162,97,.16); }
.type-card.t-spot .tc-sub { color: var(--sand-orange); }
.type-card.t-mythe::before { background: var(--teal); }
.type-card.t-mythe .tc-ico { background: rgba(42,157,143,.13); }
.type-card.t-mythe .tc-sub { color: var(--teal-dark); }
.type-card.t-event::before { background: var(--coral-light); }
.type-card.t-event .tc-ico { background: rgba(231,111,81,.13); }
.type-card.t-event .tc-sub { color: var(--coral-dark); }

/* ═══════════════════════════════════════════════════════════════════════════
   VIBS ECONOMY
   ═══════════════════════════════════════════════════════════════════════════ */
.vibs--bg { position: relative; overflow: hidden; }
.vibs--bg::before {
  content: ""; position: absolute; inset: -40px; z-index: 0;
  background: url("assets/img/bg_scan.jpg") center/cover no-repeat;
  filter: blur(11px) saturate(1.05); transform: scale(1.08);
}
.vibs--bg::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(248,246,242,0.78), rgba(245,242,236,0.72));
}
.vibs--bg > .wrap { position: relative; z-index: 1; }
.vibs { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px,6vw,90px); align-items: center; }
.vibs__ringwrap { display: flex; justify-content: center; }
.vibs-ring { position: relative; width: 300px; height: 300px; }
.vibs-ring .vibs-blob {
  position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible;
  filter: drop-shadow(0 12px 30px rgba(231,111,81,0.20));
}
.vibs-ring .vibs-blob__path { transition: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.vibs-ring .core { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.vibs-ring .core img { width: 46px; height: 46px; margin-bottom: 8px; }
.vibs-ring .core .count { font-size: 60px; font-weight: 900; color: var(--fg); line-height: 1; letter-spacing: -.03em; }
.vibs-ring .core .lbl { font-size: 15px; font-weight: 800; color: var(--coral); text-transform: uppercase; letter-spacing: .14em; margin-top: 6px; }
.vibs-steps { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.vibs-step { display: flex; align-items: center; gap: 16px; }
.vibs-step .vs-ico { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vibs-step .vs-ico svg { width: 24px; height: 24px; }
.vibs-step .vs-tt { font-size: 17px; font-weight: 800; color: var(--fg); }
.vibs-step .vs-tt small { display: block; font-size: 14px; font-weight: 700; color: var(--muted); margin-top: 2px; }
.vibs-step .vs-gain { margin-left: auto; font-size: 15px; font-weight: 800; white-space: nowrap; }
.vibs-step.s-coral .vs-ico { background: rgba(231,111,81,.13); } .vibs-step.s-coral .vs-ico svg { stroke: var(--coral); } .vibs-step.s-coral .vs-gain { color: var(--coral); }
.vibs-step.s-teal .vs-ico { background: rgba(42,157,143,.13); } .vibs-step.s-teal .vs-ico svg { stroke: var(--teal); } .vibs-step.s-teal .vs-gain { color: var(--teal-dark); }
.vibs-step.s-sand .vs-ico { background: rgba(233,196,106,.22); } .vibs-step.s-sand .vs-ico svg { stroke: #B58A1E; } .vibs-step.s-sand .vs-gain { color: #B58A1E; }
.vibs-note { margin-top: 26px; font-size: 14px; color: var(--muted); font-style: italic; }

/* ═══════════════════════════════════════════════════════════════════════════
   COMMUNITY / WAVERING
   ═══════════════════════════════════════════════════════════════════════════ */
.badge-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 56px; }
.badge-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 22px; text-align: center;
  box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.badge-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.badge-ring { position: relative; width: 116px; height: 116px; margin: 0 auto 18px; }
.badge-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.badge-ring .bc-center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.badge-ring .bc-center svg { width: 38px; height: 38px; transform: none; stroke-width: 2; fill: none; }
.badge-card h3 { font-size: 19px; font-weight: 800; margin: 0 0 4px; }
.badge-card .bc-lvl { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 10px; }
.badge-card p { font-size: 13.5px; color: var(--muted); }
.badge-note { display: flex; justify-content: center; margin-top: 40px; }
.hero2-stats .stat-fb { font-size: 13px; font-weight: 700; line-height: 1.25; max-width: 150px; color: var(--fg); text-align: center; text-wrap: balance; }

/* ═══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.step-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 38px 30px; box-shadow: var(--shadow); overflow: hidden; }
.step-card .sc-num { position: absolute; top: -22px; right: 6px; font-size: 130px; font-weight: 900; line-height: 1; letter-spacing: -.04em; }
.step-card.n1 .sc-num { color: rgba(231,111,81,.10); }
.step-card.n2 .sc-num { color: rgba(42,157,143,.10); }
.step-card.n3 .sc-num { color: rgba(233,196,106,.20); }
.step-card .sc-tag { position: relative; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.step-card.n1 .sc-tag { color: var(--coral); }
.step-card.n2 .sc-tag { color: var(--teal-dark); }
.step-card.n3 .sc-tag { color: #B58A1E; }
.step-card h3 { position: relative; font-size: 22px; font-weight: 800; margin: 14px 0 10px; color: var(--fg); }
.step-card p { position: relative; font-size: 15px; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════════════════════
   BETA CTA
   ═══════════════════════════════════════════════════════════════════════════ */
.beta { position: relative; padding: clamp(90px,12vw,150px) 0; overflow: hidden; }
.beta__bg { position: absolute; inset: 0; z-index: 0; }
.beta__bg img { width: 100%; height: 130%; object-fit: cover; object-position: 50% 40%; will-change: transform; }
.beta__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(207,87,51,.92), rgba(231,111,81,.72) 45%, rgba(38,70,83,.55) 100%); }
.beta__inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; text-align: center; color: #fff; }
.beta h2 { font-size: clamp(30px, 4.4vw, 50px); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; color: #fff; margin: 0 0 18px; text-wrap: balance; }
.beta p { font-size: clamp(16px,1.6vw,19px); color: rgba(255,255,255,.92); margin: 0 auto 32px; max-width: 48ch; }
.beta__form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.beta__form input {
  flex: 1; border: 2px solid rgba(255,255,255,.35); background: rgba(255,255,255,.96); color: var(--fg);
  border-radius: var(--r-full); padding: 16px 22px; font-size: 16px; font-family: inherit; font-weight: 600;
  transition: border-color .2s, box-shadow .2s;
}
.beta__form input::placeholder { color: var(--muted); }
.beta__form input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(42,157,143,.3); }
.beta__form input.err { border-color: #fff; box-shadow: 0 0 0 4px rgba(214,90,60,.5); }
.beta__note { font-size: 13.5px; color: rgba(255,255,255,.85); margin-top: 18px; font-weight: 600; }
.beta__note--err { color: #FFC4B2; font-weight: 700; }
.beta__ok { display: none; font-size: 18px; font-weight: 800; background: rgba(255,255,255,.16); border-radius: var(--r-md); padding: 20px; }
.beta__ok.show { display: block; }

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.footer { background: var(--navy); color: #fff; padding: 70px 0 40px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .logo__word { color: #fff; }
.footer__blurb { color: rgba(255,255,255,.6); font-size: 14.5px; margin: 18px 0 0; max-width: 30ch; }
.footer__col h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin: 0 0 16px; }
.footer__col a { display: block; color: rgba(255,255,255,.82); font-size: 15px; font-weight: 600; padding: 6px 0; transition: color .2s; }
.footer__col a:hover { color: var(--coral-light); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 50px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.footer__bottom span { color: rgba(255,255,255,.55); font-size: 14px; font-weight: 600; }
.footer__tagline { color: var(--coral-light) !important; font-weight: 800 !important; letter-spacing: .12em; text-transform: uppercase; font-size: 13px !important; }
.footer__legal { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.footer__legal a { color: rgba(255,255,255,.55); font-size: 13px; font-weight: 600; transition: color .2s; }
.footer__legal a:hover { color: var(--coral-light); }
.footer__legal span { color: rgba(255,255,255,.32) !important; font-size: 13px; }

/* ═══════════════════════════════════════════════════════════════════════════
   LA CARTE S'ÉVEILLE — sticky parallax narrative (Act 1)
   Map stays pinned; content fades/scales in on scroll progress. No scroll-jack.
   ═══════════════════════════════════════════════════════════════════════════ */
:root {
  --spot-green:      #4E9D5B; /* Spots — nature/leaf green (harmonised w/ teal) */
  --spot-green-dark: #3C7E48;
}

.awaken {
  position: relative;
  height: 480vh;
  background: var(--navy-dark);
}
.awaken__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: block;
}

/* drawn region map — pinned background (fixed, no zoom), brightens with progress */
.awaken__map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.6) saturate(0.4);
  will-change: filter;
}
.awaken__map img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center top; }

/* map licence attribution — discreet, always visible (legal requirement) */
.awaken__attrib {
  position: absolute;
  right: auto;
  left: 8px;
  bottom: 8px;
  z-index: 3;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .01em;
  color: rgba(26,48,56,0.62);
  background: rgba(255,255,255,0.6);
  padding: 2px 7px;
  border-radius: 6px;
  pointer-events: none;
}

/* sleepy veil — a cool navy wash that lifts as the map "wakes" */
.awaken__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 38%, rgba(26,48,56,0) 0%, rgba(26,48,56,0.45) 100%),
    rgba(26,48,56,0.55);
  opacity: 1;
  pointer-events: none;
}

.awaken__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* Act-1 title */
.awaken__title {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, 14px);
  width: min(90%, 600px);
  text-align: center;
  margin: 0;
  color: var(--navy-dark);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.06;
  font-size: clamp(28px, 6.4vw, 60px);
  text-shadow: 0 1px 2px rgba(255,255,255,0.92), 0 0 16px rgba(255,255,255,0.85), 0 2px 24px rgba(255,255,255,0.6);
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.awaken__title.lit { opacity: 1; transform: translate(-50%, 0); }

/* pins */
.aw-pin {
  position: absolute;
  width: 50px;
  height: 50px;
  margin: -48px 0 0 -25px; /* anchor on the tip */
  opacity: 0;
  transform: scale(0.2) translateY(6px);
  transform-origin: 50% 100%;
  transition: opacity .45s var(--ease-out), transform .5s cubic-bezier(.34,1.56,.64,1);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.aw-pin.lit { opacity: 1; transform: scale(1) translateY(0); }
.aw-pin img, .aw-pin .aw-lottie { width: 100%; height: 100%; display: block; }
.aw-pin img { object-fit: contain; filter: drop-shadow(0 5px 9px rgba(26,48,56,0.30)); }
.aw-pin .aw-lottie svg { display: block; }
.aw-pin--concert { filter: drop-shadow(0 5px 9px rgba(26,48,56,0.30)); }

/* expanding halo on light-up */
.aw-pin .aw-halo {
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 30px;
  height: 30px;
  margin: 0 0 -15px -15px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0;
}
.aw-pin.lit .aw-halo {
  animation: awHalo 1.1s var(--ease-out) calc(var(--d, 0) * 90ms) both;
}
@keyframes awHalo {
  0%   { opacity: 0; transform: scale(0.4); }
  35%  { opacity: 0.45; }
  100% { opacity: 0; transform: scale(2.8); }
}
.aw-pin--spot   { color: var(--spot-green); }
.aw-pin--legende{ color: var(--teal); }
.aw-pin--event  { color: var(--coral); }

/* one-word labels */
.aw-word {
  position: absolute;
  transform: translate(-50%, 8px);
  font-weight: 800;
  font-size: clamp(15px, 2.4vw, 22px);
  letter-spacing: -0.01em;
  white-space: nowrap;
  padding: 5px 13px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 6px 18px rgba(26,48,56,0.22);
  opacity: 0;
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.aw-word.lit { opacity: 1; transform: translate(-50%, 0); }
.aw-word--spot    { color: var(--spot-green-dark); }
.aw-word--legende { color: var(--teal-dark); }
.aw-word--event   { color: var(--coral-dark); }

/* ═══════════════ ACTE 2 — les pins se retournent en avatars ═══════════════ */
.aw-flip__inner {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transition: transform .7s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.aw-pin.aw-flip { perspective: 700px; }
.aw-flip__front, .aw-flip__back {
  position: absolute; inset: 0;
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
}
.aw-flip__front img { width: 100%; height: 100%; display: block; object-fit: contain; filter: drop-shadow(0 5px 9px rgba(26,48,56,0.30)); }
.aw-flip__back { transform: rotateY(180deg); display: flex; align-items: center; justify-content: center; }
.aw-pin.flipped .aw-flip__inner { transform: rotateY(180deg); }

/* warm avatar pastille (the back of a flipped pin) */
.aw-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  overflow: hidden; border: 2px solid #fff;
  box-shadow: 0 5px 14px rgba(26,48,56,0.30);
  background: #EDEAE3;
}
.aw-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; filter: none; }

/* wavy 3-arc reputation ring (Spots / Avis / Modifications) */
.aw-wring {
  position: absolute; left: 50%; top: 50%;
  width: 66px; height: 66px;
  transform: translate(-50%, -50%);
  overflow: visible; pointer-events: none;
  opacity: 0; transition: opacity .6s var(--ease);
}
.aw-pin.flipped .aw-wring { opacity: 1; }
.aw-wring polyline { fill: none; stroke-linecap: round; }

/* the non-flipping pins fade back so the avatars stand out */
.awaken.act2 .aw-pin.lit:not(.aw-flip) { opacity: 0.4; }

/* Act 2: the type labels name places, not people — fade them out (reversible) */
.awaken.act2 .aw-word.lit { opacity: 0; }

/* ═══════════════ ACTE 3 — le cercle vertueux ═══════════════ */
.aw-act3 {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(18px, 4vh, 40px);
  padding: 9vh 5vw;
  background: #F7F3EB;
  opacity: 0; pointer-events: none;
  transition: opacity .7s var(--ease);
}
.aw-act3.lit { opacity: 1; }
.aw-act3__phrase {
  margin: 0; max-width: 640px; text-align: center;
  color: var(--navy-dark); font-weight: 800; letter-spacing: -0.01em; line-height: 1.16;
  font-size: clamp(21px, 4.2vw, 36px);
  text-shadow: 0 1px 1px rgba(255,255,255,0.6);
  opacity: 0; transition: opacity .7s var(--ease);
}
.aw-act3__phrase.lit { opacity: 1; }
.aw-act3__note {
  margin: 0; max-width: 360px; text-align: center;
  color: var(--muted); font-size: 13px; font-weight: 600; line-height: 1.35;
  opacity: 0; transition: opacity .7s var(--ease);
}
.aw-act3__note.lit { opacity: 1; }
.aw-act3__diagram { position: relative; width: min(88vw, 430px); aspect-ratio: 1 / 1; }
.aw-act3__arrows { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.a3-arc { fill: none; stroke: var(--teal); stroke-width: 1.5; stroke-linecap: round; stroke-dasharray: 60; stroke-dashoffset: 60; opacity: 0; transition: stroke-dashoffset .85s var(--ease-out), opacity .3s var(--ease); }
.a3-arc--4 { stroke: var(--coral); stroke-width: 1.9; }
.a3-arc.drawn { stroke-dashoffset: 0; opacity: 1; }

.a3-node { position: absolute; transform: translate(-50%, -50%); opacity: .35; filter: grayscale(0.75); transition: opacity .5s var(--ease), filter .5s var(--ease); }
.a3-node.on { opacity: 1; filter: none; }
.a3-disc {
  position: relative; width: 80px; height: 80px; border-radius: 50%;
  background: #fff; box-shadow: 0 6px 18px rgba(26,48,56,0.16);
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.a3-node.on .a3-disc { box-shadow: 0 10px 24px rgba(231,111,81,0.34), 0 0 0 3px rgba(231,111,81,0.16); }
.a3-label {
  position: absolute; top: calc(100% + 9px); left: 50%; transform: translateX(-50%);
  width: max-content; max-width: 116px; white-space: normal; text-align: center; line-height: 1.18;
  font-weight: 800; font-size: 13.5px; color: var(--navy-dark);
}
/* node 1 — avatar posing a pin */
.a3-ava { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.a3-badge { position: absolute; right: -2px; bottom: -2px; width: 36px; height: 36px; object-fit: contain; filter: drop-shadow(0 2px 3px rgba(26,48,56,0.30)); }
/* node 2 — a pin with small avatars around it */
.a3-pin { width: 34px; height: 34px; object-fit: contain; }
.a3-mini { position: absolute; width: 26px; height: 26px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: 0 2px 5px rgba(26,48,56,0.25); }
.a3-mini--a { top: 9px; left: 11px; }
.a3-mini--b { top: 9px; right: 11px; }
.a3-mini--c { bottom: 8px; left: 50%; transform: translateX(-50%); }
/* node 3 — local shopfront lighting up */
.a3-shop { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* node — Vibs reward coin */
.a3-coin { width: 52px; height: 52px; object-fit: contain; }
/* « bientôt » badge (partner shops node only) */
.a3-soon {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%); z-index: 2;
  background: var(--sand-orange); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: .02em;
  padding: 2px 9px; border-radius: var(--r-full);
  box-shadow: 0 2px 6px rgba(244,162,97,0.45); white-space: nowrap;
}
/* small decorative partner pins on the avantages node edge — centred on the sides */
.a3-edgepin { position: absolute; width: 34px; height: 34px; top: 50%; object-fit: contain; z-index: 1; filter: drop-shadow(0 2px 4px rgba(26,48,56,0.30)); }
.a3-edgepin--a { right: -13px; transform: translateY(-50%); }
.a3-edgepin--b { left: -13px; transform: translateY(-50%); }
/* the gift on the closing arrow — the reward that restarts the loop */
.a3-gift {
  position: absolute; left: 25%; top: 25%; transform: translate(-50%, -50%) scale(0.5);
  width: 48px; height: 48px; border-radius: 50%; background: #fff;
  box-shadow: 0 5px 14px rgba(231,111,81,0.40), 0 0 0 2px rgba(231,111,81,0.18);
  display: flex; align-items: center; justify-content: center; z-index: 3;
  opacity: 0; transition: opacity .5s var(--ease), transform .5s var(--ease-out);
}
.a3-gift.lit { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.a3-gift img { width: 30px; height: 30px; object-fit: contain; }

/* node pulse when a blob is absorbed */
@keyframes a3pulse { 0% { transform: scale(1); } 42% { transform: scale(1.13); } 100% { transform: scale(1); } }
.a3-node.pulse .a3-disc { animation: a3pulse .52s var(--ease-out); }

/* reduced motion: no blobs — show the static curved arcs instead */
@media (prefers-reduced-motion: reduce) {
  .a3-arc { opacity: 1; stroke-dashoffset: 0; }
  .a3-blobs { display: none !important; }
}

/* act 2 phrase steps aside for act 3 */
.awaken.act3 .awaken__phrase.lit { opacity: 0; }

/* Act-2 phrase — crossfades with the title in the central band */
.awaken__phrase {
  position: absolute;
  top: 25%; left: 50%;
  transform: translate(-50%, 16px);
  width: min(92%, 680px);
  text-align: center;
  margin: 0;
  color: var(--navy-dark);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.14;
  font-size: clamp(21px, 4.4vw, 38px);
  text-shadow: 0 1px 2px rgba(255,255,255,0.92), 0 0 16px rgba(255,255,255,0.85), 0 2px 24px rgba(255,255,255,0.6);
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  pointer-events: none;
}
.awaken__phrase.lit { opacity: 1; transform: translate(-50%, 0); }
.awaken__title.lit.dim { opacity: 0; transform: translate(-50%, -10px); }

@media (max-width: 560px) {
  .awaken { height: 460vh; }
  .aw-pin { width: 44px; height: 44px; margin: -42px 0 0 -22px; }
  .awaken__title { top: 24%; font-size: clamp(24px, 7.2vw, 31px); }
  .awaken__phrase { top: 25%; }
  .aw-act3__diagram { width: min(90vw, 360px); }
  .a3-disc { width: 66px; height: 66px; }
  .a3-badge { width: 30px; height: 30px; }
  .a3-mini { width: 22px; height: 22px; }
  .a3-edgepin { width: 30px; height: 30px; }
  .a3-label { font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-28px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal-l.in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .08s; }
[data-delay="2"] { transition-delay: .16s; }
[data-delay="3"] { transition-delay: .24s; }
[data-delay="4"] { transition-delay: .32s; }
[data-delay="5"] { transition-delay: .40s; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .hero-trigger { height: 320vh; }
  /* mobile hero = text only, vertically centered: drop the mockup AND the animated brand
     wordmark (it docked top-centre and clashed with the headline) */
  .hero-stage { height: 100vh !important; }
  .cine-brand { display: none; }
  .cine-phone { display: none; }
  .hero-final { grid-template-columns: 1fr; gap: 14px; text-align: center; margin-top: 0; }
  .cine-desc h1 { font-size: clamp(27px, 7vw, 40px); }
  .hero2-sub { margin: 12px auto 0; font-size: 15px; max-width: 38ch; }
  .hero2-cta { margin-top: 22px; gap: 12px; }
  .hero2-cta, .hero2-stats { justify-content: center; }
  /* smaller value-prop capsules */
  .hero2-stats { margin-top: 22px; gap: 8px; }
  .hero2-stats .stat { padding: 7px 15px; box-shadow: 0 4px 14px rgba(0,0,0,.12); }
  .hero2-stats .stat .stat-fb { font-size: 12.5px; font-weight: 700; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__phone { order: -1; }
  .hero__bg::after { background: linear-gradient(to bottom, rgba(255,255,255,.62), rgba(255,255,255,.92) 60%); }
  .feature { grid-template-columns: 1fr; gap: 22px; }
  .feature__num { display: none; }   /* hide the big 01-04 watermark on mobile → text hugs the mockup */
  .feature--rev .feature__text, .feature--rev .feature__media { order: 0; }
  .feature__media { order: -1 !important; }
  .vibs { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .badge-grid {
    display: flex; overflow-x: auto; gap: 14px;
    scroll-snap-type: x mandatory; padding: 4px 4px 16px;
    -webkit-overflow-scrolling: touch; margin-top: 40px;
  }
  .badge-card { flex: 0 0 auto; width: min(60vw, 230px); scroll-snap-align: center; }
  .nav .nav__cta .btn span.full { display: none; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .hero__stats { gap: 20px; }
  .badge-card { width: 74vw; }
  .beta__form { flex-direction: column; }
  .footer__top { grid-template-columns: 1fr; }
  .prob-solution { font-size: 15px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-l { opacity: 1 !important; transform: none !important; }
  /* La carte s'éveille — show everything static, awake, no zoom */
  .awaken__map { transform: none !important; filter: none !important; }
  .awaken__veil { opacity: 0.08 !important; }
  .awaken__title, .aw-pin, .aw-word { opacity: 1 !important; transform: none !important; }
  .aw-pin .aw-halo { display: none !important; }
}
