:root {
  --bg: #06060a;
  --bg-elevated: #0e0e14;
  --surface: #16161f;
  --text: #f4f4f8;
  --text-muted: #9898ae;
  --accent: #9b77f5;
  --accent-bright: #b89cff;
  --accent-soft: rgba(155, 119, 245, 0.12);
  --accent-glow: rgba(155, 111, 212, 0.45);
  --border: rgba(255, 255, 255, 0.07);
  --radius: 16px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --max: 720px;
  --max-wide: 1180px;
  --phone-radius: 2.25rem;
  --phone-frame: #1e1e28;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 85% -10%, rgba(155, 119, 245, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 10% 30%, rgba(124, 58, 237, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 30% at 70% 100%, rgba(155, 111, 212, 0.1), transparent 45%);
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 120% 80% at 50% 120%, rgba(139, 92, 246, 0.09), transparent 50%);
  z-index: 0;
  opacity: 0.85;
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes ambient-shift {
    0%,
    100% {
      opacity: 0.65;
      transform: scale(1);
    }
    50% {
      opacity: 1;
      transform: scale(1.03);
    }
  }

  body::after {
    animation: ambient-shift 14s ease-in-out infinite;
  }
}

a {
  color: var(--accent-bright);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 6, 10, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  color: var(--accent-bright);
}

.logo__eyes {
  flex-shrink: 0;
  display: block;
  width: 54px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav a {
  position: relative;
  color: var(--text-muted);
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 0.25rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), #ec4899);
  transition: width 0.28s ease;
}

.nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.nav a:hover::after {
  width: 100%;
}

main {
  flex: 1;
  position: relative;
  z-index: 1;
}

/* —— Yeux ZeFeedback (même géométrie que l’app, animation type « regard ») —— */
@keyframes ze-eyes-look {
  0%,
  18% {
    transform: translateY(0);
  }
  28% {
    transform: translateY(7px);
  }
  42% {
    transform: translateY(0);
  }
  52% {
    transform: translateY(5px);
  }
  65%,
  100% {
    transform: translateY(0);
  }
}

.ze-eyes__pupils {
  animation: ze-eyes-look 3.8s ease-in-out infinite;
}

.logo .ze-eyes__pupils {
  animation-duration: 4.4s;
  animation-delay: -0.8s;
}

.hero .ze-eyes__pupils {
  animation-duration: 3.5s;
  animation-delay: -0.2s;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 0 1.5rem 4rem;
}

.hero__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.35;
}

.hero__blob--a {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  background: rgba(155, 119, 245, 0.55);
  top: -12%;
  right: -8%;
}

.hero__blob--b {
  width: min(320px, 40vw);
  height: min(320px, 40vw);
  background: rgba(236, 72, 153, 0.35);
  bottom: 10%;
  left: -6%;
}

.hero__blob--c {
  width: min(240px, 35vw);
  height: min(240px, 35vw);
  background: rgba(34, 211, 238, 0.22);
  top: 42%;
  left: 35%;
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes blob-drift-a {
    0%,
    100% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(-16px, 12px);
    }
  }

  @keyframes blob-drift-b {
    0%,
    100% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(14px, -10px);
    }
  }

  .hero__blob--a {
    animation: blob-drift-a 12s ease-in-out infinite;
  }

  .hero__blob--b {
    animation: blob-drift-b 15s ease-in-out infinite 1s;
  }

  .hero__blob--c {
    animation: blob-drift-a 18s ease-in-out infinite 2s;
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-top: 2.5rem;
  padding-bottom: 1rem;
}

.hero__copy {
  text-align: left;
}

.hero__eyes-wrap {
  margin-bottom: 1rem;
}

.hero__eyes-wrap .ze-eyes--hero {
  width: clamp(200px, 46vw, 340px);
  height: auto;
  filter: drop-shadow(0 16px 48px var(--accent-glow));
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(155, 119, 245, 0.25);
  color: var(--accent-bright);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 0 24px rgba(155, 119, 245, 0.15);
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.85);
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes badge-pulse {
    0%,
    100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.75;
      transform: scale(0.92);
    }
  }

  .hero__badge-dot {
    animation: badge-pulse 2.2s ease-in-out infinite;
  }
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4.2vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.1;
  color: #fff;
}

.hero__title-accent {
  display: inline-block;
  background: linear-gradient(
    105deg,
    #fff 0%,
    #e9d5ff 25%,
    #c4b5fd 45%,
    #f472b6 70%,
    #fb923c 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes title-shimmer {
    0% {
      background-position: 0% center;
    }
    100% {
      background-position: 200% center;
    }
  }

  .hero__title-accent {
    animation: title-shimmer 7s linear infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title-accent {
    background: linear-gradient(135deg, #e8e0ff, #c4b5fd);
    -webkit-background-clip: text;
    background-clip: text;
  }
}

.hero__kicker {
  margin: 0 0 0.75rem;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 600;
  color: rgba(196, 181, 253, 0.95);
  letter-spacing: -0.01em;
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 480px;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.hero__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes hero-pop-in {
    from {
      transform: translateY(22px);
    }
    to {
      transform: translateY(0);
    }
  }

  .hero__copy > * {
    animation: hero-pop-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero__copy > *:nth-child(1) {
    animation-delay: 0.04s;
  }

  .hero__copy > *:nth-child(2) {
    animation-delay: 0.12s;
  }

  .hero__copy > *:nth-child(3) {
    animation-delay: 0.2s;
  }

  .hero__copy > *:nth-child(4) {
    animation-delay: 0.28s;
  }

  .hero__copy > *:nth-child(5) {
    animation-delay: 0.36s;
  }

  .hero__copy > *:nth-child(6) {
    animation-delay: 0.44s;
  }
}

.hero__phones {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes phones-settle {
    from {
      transform: translateY(28px) scale(0.96);
    }
    to {
      transform: translateY(0) scale(1);
    }
  }

  .hero__phones {
    animation: phones-settle 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
  }
}

.phone {
  position: absolute;
  width: min(42vw, 260px);
  border-radius: var(--phone-radius);
  background: var(--phone-frame);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.35),
    0 24px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  aspect-ratio: 9 / 19.2;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.phone::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 22px;
  background: #0a0a0f;
  border-radius: 999px;
  z-index: 2;
  opacity: 0.9;
}

.phone img,
.phone video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #000;
}

/* Vidéo écran : contain = pas de sur-zoom flou ; couche GPU = rendu plus net sous transform */
.phone--hero-recording {
  isolation: isolate;
}

.phone--hero-recording .hero-screen-recording {
  object-fit: contain;
  object-position: center top;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.phone--left {
  transform: translate(-38%, 6%) rotate(-10deg);
  z-index: 1;
}

.phone--center {
  transform: translate3d(0, -4%, 0);
  z-index: 3;
  width: min(48vw, 290px);
  border-color: rgba(155, 119, 245, 0.35);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.35),
    0 28px 56px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(155, 119, 245, 0.2),
    0 0 60px rgba(155, 119, 245, 0.18);
}

.phone--right {
  transform: translate(38%, 8%) rotate(10deg);
  z-index: 2;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__phones:hover .phone--left {
    transform: translate(-42%, 4%) rotate(-11deg);
  }

  /* Pas de scale sur le centre : le zoom dégrade la netteté de la vidéo */
  .hero__phones:hover .phone--center {
    transform: translate3d(0, -6%, 0);
  }

  .hero__phones:hover .phone--right {
    transform: translate(42%, 6%) rotate(11deg);
  }
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.45rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-3px);
}

.btn__arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.btn--primary:hover .btn__arrow {
  transform: translateX(4px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #7c3aed 45%, #6d28d9 100%);
  color: #fff;
  box-shadow:
    0 10px 32px rgba(124, 58, 237, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 45%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.55s ease;
}

.btn--primary:hover::before {
  transform: translateX(100%);
}

.btn--primary:hover {
  box-shadow:
    0 14px 40px rgba(124, 58, 237, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.section {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.section--features {
  padding-top: 4rem;
  padding-bottom: 4.25rem;
}

.features-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.75rem;
}

.features-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(167, 139, 250, 0.95);
  margin: 0 0 0.7rem;
}

.features-title {
  font-size: clamp(1.65rem, 3.6vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.18;
  margin: 0 0 1rem;
  color: #fff;
}

.features-lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--text-muted);
}

.features-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.features-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1.35rem;
  align-items: flex-start;
  padding: 1.35rem 1.45rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(14, 14, 22, 0.45);
  transition:
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.features-item:hover {
  border-color: rgba(155, 119, 245, 0.28);
  background: rgba(155, 119, 245, 0.06);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.features-item__mark {
  width: 4px;
  border-radius: 6px;
  min-height: 3.25rem;
  align-self: stretch;
  background: linear-gradient(180deg, #a78bfa, #7c3aed);
}

.features-item__mark--b {
  background: linear-gradient(180deg, #f472b6, #a855f7);
}

.features-item__mark--c {
  background: linear-gradient(180deg, #22d3ee, #6366f1);
}

.features-item__mark--d {
  background: linear-gradient(180deg, #fbbf24, #fb7185);
}

.features-item__title {
  margin: 0 0 0.45rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
}

.features-item__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.58;
  color: var(--text-muted);
}

.section__title {
  text-align: center;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section__title--gradient {
  background: linear-gradient(135deg, #fff 10%, #ddd6fe 55%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Révélation au scroll (nécessite html.js-reveal + JS ; sinon contenu visible) */
[data-reveal] > .section__title,
[data-reveal] > .section__subtitle,
[data-reveal] > .section-intro > * {
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js-reveal [data-reveal]:not(.is-visible) > .section__title,
html.js-reveal [data-reveal]:not(.is-visible) > .section__subtitle,
html.js-reveal [data-reveal]:not(.is-visible) > .section-intro > * {
  opacity: 0;
  transform: translateY(22px);
}

[data-reveal].is-visible > .section__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

[data-reveal].is-visible > .section__subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

[data-reveal].is-visible > .section-intro > *:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.06s;
}

[data-reveal].is-visible > .section-intro > *:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.11s;
}

[data-reveal].is-visible > .section-intro > *:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.16s;
}

.stagger-children > * {
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js-reveal [data-reveal]:not(.is-visible) .stagger-children > * {
  opacity: 0;
  transform: translateY(18px);
}

[data-reveal].is-visible .stagger-children > *:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.18s;
}

[data-reveal].is-visible .stagger-children > *:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.26s;
}

[data-reveal].is-visible .stagger-children > *:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.34s;
}

[data-reveal].is-visible .stagger-children > *:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.42s;
}

[data-reveal].is-visible .stagger-children > *:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

[data-reveal].is-visible .stagger-children > *:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.58s;
}

[data-reveal].is-visible .stagger-children > *:nth-child(7) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.66s;
}

[data-reveal].is-visible .stagger-children > *:nth-child(8) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.74s;
}

@media (prefers-reduced-motion: reduce) {
  html.js-reveal [data-reveal]:not(.is-visible) > .section__title,
  html.js-reveal [data-reveal]:not(.is-visible) > .section__subtitle,
  html.js-reveal [data-reveal]:not(.is-visible) > .section-intro > *,
  html.js-reveal [data-reveal]:not(.is-visible) .stagger-children > * {
    opacity: 1;
    transform: none;
  }
}

.section__subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .screens-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.screen-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.screen-card:hover {
  border-color: rgba(155, 119, 245, 0.35);
  transform: translateY(-4px);
}

.screen-card__frame {
  aspect-ratio: 9 / 16;
  max-height: 320px;
  margin: 0 auto;
  background: #000;
  position: relative;
}

.screen-card__frame img,
.screen-card__frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.screen-card__cap {
  padding: 1rem 1.1rem 1.2rem;
}

.screen-card__cap h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}

.screen-card__cap p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(155, 119, 245, 0.35);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(155, 119, 245, 0.12);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Bloc téléchargement — badges officiels App Store / Google Play */
.store-panel {
  max-width: 560px;
  margin: 0 auto;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 12, 18, 0.65);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.store-panel--badges {
  max-width: 440px;
}

.store-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.25s ease;
}

.store-badge-row:last-of-type {
  border-bottom: 0;
}

.store-badge-row:hover {
  background: rgba(155, 119, 245, 0.06);
}

.store-badge-wrap {
  flex: 1;
  min-width: 0;
}

.store-badge {
  display: block;
  height: 40px;
  width: auto;
  max-width: 100%;
}

.store-row__chip {
  margin-left: auto;
  flex-shrink: 0;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(155, 119, 245, 0.2);
  border: 1px solid rgba(155, 119, 245, 0.35);
}

.store-badges__hint {
  margin: 0;
  padding: 1rem 1.5rem 1.35rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 480px) {
  .store-badge-row {
    padding: 1.1rem 1.15rem;
  }

  .store-row__chip {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  .store-badges__hint {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
}

.legal {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.legal h1 {
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.legal .meta {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.legal h2 {
  font-size: 1.125rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.legal p,
.legal ul {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0 0 1rem;
}

.legal ul {
  padding-left: 1.25rem;
}

.legal li {
  margin-bottom: 0.35rem;
}

.legal .notice {
  background: var(--accent-soft);
  border: 1px solid rgba(155, 119, 245, 0.28);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--text);
}

.delete-request-form {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 1.25rem;
}

.delete-request-field {
  display: grid;
  gap: 0.45rem;
}

.delete-request-field span {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 600;
}

.delete-request-field input,
.delete-request-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.9rem 1rem;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.delete-request-field input::placeholder,
.delete-request-field textarea::placeholder {
  color: var(--text-muted);
}

.delete-request-field input:focus,
.delete-request-field textarea:focus {
  border-color: rgba(155, 119, 245, 0.75);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(155, 119, 245, 0.12);
}

.delete-request-field textarea {
  min-height: 120px;
  resize: vertical;
}

#submit-delete-request[disabled] {
  opacity: 0.75;
  cursor: wait;
}

.site-footer {
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(155, 119, 245, 0.35), transparent) 1;
  padding: 2rem 1.5rem;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.site-footer__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.site-footer__links {
  display: flex;
  gap: 1.25rem;
}

.site-footer__links a {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.site-footer__links a:hover {
  color: var(--accent-bright);
}

.linklike {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  color: var(--text-muted);
  font-size: 0.875rem;
  cursor: pointer;
}

.linklike:hover {
  color: var(--accent-bright);
  text-decoration: underline;
}

/* Cookies — bandeau compact (carte flottante, moins imposant qu’une barre pleine largeur) */
.cookie-banner {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  width: min(420px, calc(100vw - 1.25rem));
  padding: 0;
  background: transparent;
  pointer-events: none;
}

.cookie-banner__inner {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.65rem 0.75rem 0.7rem;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 12, 18, 0.88);
  backdrop-filter: blur(14px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(155, 119, 245, 0.08);
}

.cookie-banner__label {
  display: inline;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.cookie-banner__label::after {
  content: " · ";
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0;
}

.cookie-banner__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.cookie-banner__text a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.cookie-banner__text a:hover {
  color: var(--accent-bright);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
}

.cookie-banner__btn {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.38rem 0.65rem;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.cookie-banner__btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.cookie-banner__btn--muted {
  font-weight: 600;
  color: var(--text-muted);
}

.cookie-banner__btn--accent {
  border-color: rgba(155, 119, 245, 0.45);
  background: rgba(155, 119, 245, 0.22);
  color: #fff;
}

.cookie-banner__btn--accent:hover {
  background: rgba(155, 119, 245, 0.35);
  border-color: rgba(155, 119, 245, 0.55);
}

.cookie-dialog {
  width: min(640px, calc(100vw - 2rem));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) + 6px);
  background: rgba(14, 14, 22, 0.92);
  color: var(--text);
  padding: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.cookie-dialog::backdrop {
  background: rgba(0, 0, 0, 0.6);
}

.cookie-dialog__inner {
  padding: 1.15rem 1.15rem 1.25rem;
}

.cookie-dialog__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.cookie-dialog__title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cookie-dialog__close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-dialog__close:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cookie-dialog__text {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-dialog__toggles {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.cookie-toggle__label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: var(--text);
  font-size: 0.95rem;
}

.cookie-toggle__label span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.cookie-toggle input[type="checkbox"] {
  width: 44px;
  height: 24px;
  accent-color: #7c3aed;
}

.cookie-dialog__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

@media (max-width: 380px) {
  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__btn {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__eyes-wrap {
    display: flex;
    justify-content: center;
  }

  .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__stores {
    justify-content: center;
  }

  .hero__phones {
    min-height: 380px;
    margin-top: 0.5rem;
  }

  .phone {
    width: min(38vw, 200px);
  }

  .phone--center {
    width: min(44vw, 230px);
  }

  .phone--left {
    transform: translate(-32%, 10%) rotate(-8deg);
  }

  .phone--right {
    transform: translate(32%, 12%) rotate(8deg);
  }
}

@media (max-width: 600px) {
  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .screens-grid {
    grid-template-columns: 1fr;
  }

  .screen-card__frame {
    max-height: 400px;
  }
}

/* Captures d’écran onboarding (fichiers PNG réels) */
.onboarding-screens-section .section__subtitle {
  max-width: 640px;
}

.onboarding-carousel__hint {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(152, 152, 174, 0.95);
}

html.js-reveal .onboarding-screens-section[data-reveal]:not(.is-visible) .onboarding-carousel {
  opacity: 0;
  transform: translateY(18px);
}

html.js-reveal .onboarding-screens-section[data-reveal].is-visible .onboarding-carousel {
  opacity: 1;
  transform: translateY(0);
}

.onboarding-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0.65rem 0.75rem;
  max-width: min(1040px, 100%);
  margin: 0 auto;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.onboarding-carousel:focus-visible {
  outline: none;
}

.onboarding-carousel:focus-visible .onboarding-carousel__viewport {
  outline: 2px solid rgba(167, 139, 250, 0.95);
  outline-offset: 6px;
  border-radius: calc(var(--phone-radius) + 14px);
}

.onboarding-carousel__arrow {
  grid-row: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.onboarding-carousel__arrow:hover {
  background: rgba(155, 119, 245, 0.18);
  border-color: rgba(155, 119, 245, 0.45);
}

.onboarding-carousel__arrow:active {
  transform: scale(0.96);
}

.onboarding-carousel__arrow--prev {
  grid-column: 1;
}

.onboarding-carousel__arrow--next {
  grid-column: 3;
}

.onboarding-carousel__viewport {
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
  width: 100%;
  max-width: min(960px, calc(100vw - 7.5rem));
  margin: 0 auto;
}

@media (max-width: 959px) {
  .onboarding-carousel {
    max-width: min(380px, 100%);
  }

  .onboarding-carousel__viewport {
    max-width: min(320px, calc(100vw - 7.5rem));
  }
}

.onboarding-carousel__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  will-change: transform;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.onboarding-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0 2px;
}

.onboarding-carousel__dots {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.onboarding-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.onboarding-carousel__dot.is-active {
  background: rgba(167, 139, 250, 0.95);
  border-color: rgba(167, 139, 250, 0.6);
  transform: scale(1.15);
}

.onboarding-screen {
  margin: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.onboarding-screen:hover {
  transform: translateY(-4px);
}

.onboarding-screen__device {
  margin: 0 auto;
  padding: 11px 11px 15px;
  border-radius: calc(var(--phone-radius) + 10px);
  background: linear-gradient(165deg, rgba(42, 38, 58, 0.96), rgba(10, 10, 16, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  max-width: none;
  width: 100%;
  transition:
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.onboarding-screen:hover .onboarding-screen__device {
  border-color: rgba(155, 119, 245, 0.35);
  box-shadow:
    0 26px 58px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(155, 119, 245, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.onboarding-screen__frame {
  border-radius: var(--phone-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.35),
    0 12px 32px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(155, 119, 245, 0.14);
  background: #0a0a0f;
  line-height: 0;
  aspect-ratio: 9 / 19.5;
  max-height: min(68vh, 560px);
  margin: 0;
  width: 100%;
  transition:
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.onboarding-screen:hover .onboarding-screen__frame {
  border-color: rgba(155, 119, 245, 0.45);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.35),
    0 20px 48px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(155, 119, 245, 0.28),
    0 0 48px rgba(155, 119, 245, 0.15);
}

.onboarding-screen__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  background: #000;
}

.onboarding-screen figcaption {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .ze-eyes__pupils {
    animation: none;
  }

  .phone,
  .screen-card {
    transition: none;
  }

  body::after {
    animation: none;
  }

  .hero__blob--a,
  .hero__blob--b,
  .hero__blob--c {
    animation: none;
  }

  .hero__badge-dot {
    animation: none;
  }

  .hero__title-accent {
    animation: none;
  }

  .hero__copy > *,
  .hero__phones {
    animation: none !important;
  }

  .btn--primary::before {
    display: none;
  }

  .onboarding-carousel__track {
    transition: none;
  }

  .card:hover,
  .onboarding-screen:hover,
  .features-item:hover {
    transform: none;
  }
}
