/* =============================================
   Veenee Landing — pixel-perfect maquette
   ============================================= */

:root {
  --pink: #F91F56;
  --bg: #fce9f0;
  --text: #1a1a1a;
  --white: #ffffff;
  --card-border: rgba(0,0,0,0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
}

@media (min-width: 901px) {
  body {
    overflow: hidden;
    height: 100vh;
    height: 100dvh;
  }

  .page {
    height: 100vh;
    height: 100dvh;
  }
}

/* ---- PAGE & LAYOUT ---- */

.page {
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
}

.layout {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 32px 56px 32px 72px;
  gap: 40px;
  min-height: 0;
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
}

/* ---- COLONNE GAUCHE ---- */

.left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Titre "Like or Scroll" */
.headline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.likeBadge {
  background: var(--pink);
  color: var(--white);
  font-weight: 700;
  font-size: 46px;
  line-height: 1;
  padding: 8px 16px 10px;
  border-radius: 14px;
  letter-spacing: -0.02em;
  font-style: italic;
}

.orText {
  font-weight: 400;
  font-size: 44px;
  font-style: italic;
  color: var(--text);
}

.scrollText {
  font-weight: 700;
  font-size: 44px;
  color: var(--text);
}

/* Sous-titre */
.subtitle {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 22px;
  color: var(--text);
}

/* Partie du sous-titre qui change (après "Trouve ton") */
.subtitleDynamic {
  display: inline-block;
  font-weight: inherit;
  color: inherit;
  will-change: transform, opacity;
}

.subtitleDynamic.subtitleDynamic--tick {
  animation: subtitleTick 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes subtitleTick {
  0% {
    opacity: 0;
    transform: translateY(0.4em) scale(0.96);
    filter: blur(3px);
  }
  55% {
    opacity: 1;
    transform: translateY(0) scale(1.02);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Logo appli */
.appBrand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 48px;
}

.appBrandIcon {
  width: 40px;
  height: 40px;
}

.appBrandName {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.appBrandTag {
  font-size: 14px;
  opacity: 0.75;
  font-weight: 500;
}

/* Card inscription */
.card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px 20px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  max-width: 460px;
}

.storeLogos {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.storeLogo {
  height: 40px;
  width: auto;
}

.cardTitle {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cardBody {
  font-size: 15px;
  line-height: 1.45;
  opacity: 0.85;
  margin-bottom: 18px;
}

.ctaBtn {
  display: block;
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--text);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  text-align: center;
  transition: background 0.12s, color 0.12s, transform 0.08s;
}

.ctaBtn:hover {
  background: var(--text);
  color: var(--white);
}

.ctaBtn:active {
  transform: translateY(1px);
}

.spotsLeft {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: var(--text);
  letter-spacing: 0.02em;
}

.spotsLeftNumber {
  font-variant-numeric: tabular-nums;
  color: var(--pink);
  font-weight: 700;
}

/* ---- COLONNE DROITE : PHONE + CONTRÔLES ---- */

.right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Conteneur qui regroupe téléphone + contrôles côte à côte */
.phoneArea {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}

/* ---- TÉLÉPHONE ---- */

.phoneFrame {
  position: relative;
  width: 320px;
  height: 650px;
  border-radius: 52px;
  border: 8px solid #111111;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 28px 80px rgba(0,0,0,0.32);
  flex-shrink: 0;
}

/* Vidéo : remplit tout le téléphone */
.phoneScreen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 42px;
}

/* Stack vertical de 8 slides */
.stack {
  height: 800%;
  transform: translateY(0);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Transition un peu plus « rebond » uniquement après un like */
.stack.stack--playful {
  transition: transform 540ms cubic-bezier(0.33, 1.14, 0.32, 1);
}

.stack.stack--noTransition {
  transition: none !important;
}

/* --- Like : cœur masqué au-dessus vidéo / contenu, sous la tabbar (.phoneBottomBar z-index plus haut) --- */
.likeHeartWipe {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.likeHeartWipe.isActive {
  opacity: 1;
  visibility: visible;
}

/* Bloc animé : cœur masqué + texte « Like » */
.likeHeartWipe__motion {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1400px;
  height: 1400px;
  margin: -700px 0 0 -700px;
  transform: scale(0);
  transform-origin: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Forme cœur (masque) + fond rose */
.likeHeartWipe__fill {
  position: absolute;
  inset: 0;
  background: var(--pink);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* Même style typo que .likeBadge (titre) — taille de base plus petite car le bloc est mis à l’échelle par l’anim (~×1,65) */
.likeHeartWipe__label {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-style: italic;
  user-select: none;
}

/*
 * Une seule timeline : zoom puis slide sans « plateau » rouge entre les deux.
 * timing-function par segment : 0%→75% = zoom (~0,56s), 75%→100% = slide rapide.
 */
@keyframes heartLikeFull {
  0% {
    transform: scale(0) translateY(0);
    animation-timing-function: cubic-bezier(0.45, 0.02, 0.2, 1);
  }
  75% {
    transform: scale(1.65) translateY(0);
    animation-timing-function: cubic-bezier(0.4, 0, 0.82, 0.28);
  }
  100% {
    transform: scale(1.65) translateY(-115%);
  }
}

.likeHeartWipe--run .likeHeartWipe__motion {
  animation: heartLikeFull 0.9s forwards;
}

.slide {
  height: 12.5%;
  position: relative;
  width: 100%;
  /* Empile clairement vidéo → dégradé → texte (les <video> passent souvent au-dessus sans ça) */
  isolation: isolate;
}

.bgVideo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Grain sur toute la vidéo (au-dessus de la source, sous dégradé + UI) */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.68;
  mix-blend-mode: overlay;
  /* Bruit un peu plus fin + tuile plus petite = grain plus marqué */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 88px 88px;
}

/* Dégradé noir AU-DESSUS de la vidéo + grain, SOUS le texte (calque intermédiaire) */
.slide::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.7) 28%,
    rgba(0, 0, 0, 0.4) 55%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Overlay texte (au-dessus du dégradé) */
.slideOverlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

/* Bloc infos en bas du slide */
.overlayInfo {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 108px; /* marge suffisante au-dessus de la tabbar */
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #fff;
}

/* Nom + âge */
.nameRow {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pName {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 10px rgba(0,0,0,0.45);
}

.pAge {
  font-size: 19px;
  font-weight: 500;
  opacity: 0.95;
}

/* Pill localisation */
.locationPill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.38);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
}

.pinIcon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Ligne : texte "Recherche" + une seule pill (type recherché) */
.pillsRow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.rechercheLabel {
  font-size: 13px;
  font-weight: 300;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

.pill {
  background: rgba(0,0,0,0.38);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 500;
}

/* Ligne son */
.soundLine {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
}

.musicIcon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* Barre du bas : bouton Like + indicateur home */
.phoneBottomBar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  background: #000;
  padding: 12px 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.likeBtn {
  width: 100%;
  height: 46px;
  border-radius: 14px;
  background: var(--pink);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  transition: transform 0.08s, filter 0.12s;
}

.likeBtn:active { transform: translateY(1px); }

/* Animation like : squash du bouton + halo discret */
@keyframes likeBtnSquashPop {
  0% {
    transform: scale(1);
    filter: brightness(1);
    box-shadow: 0 0 0 0 rgba(249, 31, 86, 0.55);
  }
  22% {
    transform: scale(0.94);
    filter: brightness(1.12);
    box-shadow: 0 0 0 0 rgba(249, 31, 86, 0.4);
  }
  48% {
    transform: scale(1.06);
    filter: brightness(1);
    box-shadow: 0 0 0 14px rgba(249, 31, 86, 0);
  }
  72% { transform: scale(0.98); }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(249, 31, 86, 0);
  }
}

@keyframes likeIconWigglePop {
  0% { transform: scale(1) rotate(0deg); }
  18% { transform: scale(1.5) rotate(-14deg); }
  42% { transform: scale(1.15) rotate(10deg); }
  65% { transform: scale(1.28) rotate(-5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.likeBtn.likeBtn--burst {
  animation: likeBtnSquashPop 0.56s cubic-bezier(0.34, 1.5, 0.55, 1) forwards;
}

.likeBtn.likeBtn--burst:active {
  transform: none;
}

.likeIcon {
  width: 22px;
  height: 22px;
  display: block;
  transform-origin: center center;
  transition: transform 0.22s cubic-bezier(0.34, 1.2, 0.55, 1);
}

@media (hover: hover) {
  .likeBtn:hover .likeIcon {
    transform: scale(1.22);
  }
}

.likeBtn:focus-visible .likeIcon {
  transform: scale(1.22);
}

.likeIcon.likeIcon--burst {
  animation: likeIconWigglePop 0.56s cubic-bezier(0.34, 1.5, 0.55, 1) forwards;
}

.homeIndicator {
  width: 80px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
}

/* Flou 8e vidéo */
.isLocked .slide[data-slide="8"] .bgVideo {
  filter: blur(12px);
  transform: scale(1.08);
  transition: filter 0.3s ease;
}

/* ---- CONTRÔLES SCROLL (à droite du téléphone) ---- */

.scrollControls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.arrowBtn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.08s;
}

.arrowBtn:active { transform: translateY(1px); }

.arrowBtn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.arrowImg {
  width: 48px;
  height: 48px;
  display: block;
}

.scrollLabel {
  font-size: 12px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 2px;
}

/* ---- POPUP GLOBALE ---- */

.modalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 0s linear 0.32s;
}

.modalOverlay.isOpen {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    visibility 0s;
}

.modal {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px 22px;
  width: min(560px, 100%);
  position: relative;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.22);
  transform: scale(0.94) translateY(10px);
  opacity: 0;
  transform-origin: center center;
  transition:
    transform 0.42s cubic-bezier(0.34, 1.12, 0.32, 1),
    opacity 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modalOverlay.isOpen .modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Popup succès (même animation que .modal, contenu plus court) */
.modal--success .modalHeader {
  margin-bottom: 22px;
}

.modal--success .modalSubtitle {
  margin: 0;
  margin-top: 6px;
}

.modalClose {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.04);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modalHeader {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.modalIcon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.modalTitle {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.modalSubtitle {
  font-size: 13px;
  opacity: 0.78;
  line-height: 1.4;
}

/* Le CTA de la popup = même style que card CTA mais rose */
.modal .ctaBtn {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

.modal .ctaBtn:hover {
  background: #d8184a;
  color: var(--white);
}

.modalHint {
  font-size: 12px;
  opacity: 0.6;
  text-align: center;
}

.modalSeparator {
  height: 1px;
  width: 100%;
  background: rgba(31, 11, 45, 0.18);
  margin: 24px 0;
}

/* ===== Signup popup (email OU téléphone) ===== */
.signupForm {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 16px;
  row-gap: 12px;
  align-items: start;
  gap: 24px;
}

.field {
  display: grid;
  gap: 6px;
}

.fieldLabel {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.85;
}

.fieldInput {
  width: 100%;
  border-radius: 12px;
  border: 1.5px solid rgba(0, 0, 0, 0.22);
  background: var(--white);
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  outline: none;
}

.fieldInput:focus {
  border-color: rgba(248, 31, 86, 0.55);
}

.signupOr {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  align-self: center;
  margin-top: 16px;
  line-height: 1;
}

/* Hauteur 0 quand vide ; s’agrandit quand un message (erreur / succès) est affiché */
.signupStatus {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  overflow: hidden;
  max-height: 0;
  margin-top: 0;
  padding: 0;
  opacity: 0;
  transition:
    max-height 0.38s cubic-bezier(0.34, 1.02, 0.32, 1),
    margin-top 0.32s ease,
    opacity 0.28s ease,
    padding 0.28s ease;
}

.signupStatus:not(:empty) {
  max-height: 10rem;
  margin-top: 12px;
  padding-top: 4px;
  padding-bottom: 2px;
  opacity: 1;
  color: #1f0b2d;
}

.signupStatus[data-kind="error"] {
  color: #8b0000;
}

/* Étendre le CTA et le hint sur toute la popup */
.signupForm #modalCta {
  grid-column: 1 / -1;
}

.signupForm .modalHint {
  grid-column: 1 / -1;
  margin-top: -6px;
}

/* ---- Responsive landing ---- */

@media (max-width: 1100px) {
  .layout {
    padding: 28px 32px 28px 40px;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .layout {
    grid-template-columns: 1fr;
    padding: max(16px, env(safe-area-inset-top))
      max(20px, env(safe-area-inset-right))
      max(24px, env(safe-area-inset-bottom))
      max(20px, env(safe-area-inset-left));
    gap: 28px;
    align-items: stretch;
  }

  .left {
    align-items: center;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .headline {
    justify-content: center;
  }

  .appBrand {
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 28px;
  }

  .card {
    max-width: none;
    width: 100%;
  }

  .right {
    width: 100%;
    justify-content: center;
  }

  .phoneArea {
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .phoneFrame {
    width: min(300px, calc(100vw - 40px));
    height: auto;
    aspect-ratio: 320 / 650;
    border-width: 6px;
    border-radius: 44px;
  }

  .scrollControls {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    padding-bottom: 4px;
  }

  .scrollLabel {
    display: none;
  }

  .modalOverlay {
    padding: max(12px, env(safe-area-inset-top))
      max(16px, env(safe-area-inset-right))
      max(16px, env(safe-area-inset-bottom))
      max(16px, env(safe-area-inset-left));
    align-items: center;
  }

  .modal {
    width: 100%;
    max-height: min(88vh, 88dvh);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 600px) {
  .likeBadge {
    font-size: clamp(28px, 9vw, 40px);
    padding: 6px 12px 8px;
    border-radius: 12px;
  }

  .orText,
  .scrollText {
    font-size: clamp(26px, 8.5vw, 36px);
  }

  .subtitle {
    font-size: clamp(20px, 5.5vw, 28px);
    margin-bottom: 16px;
  }

  .cardTitle {
    font-size: 18px;
  }

  .cardBody {
    font-size: 14px;
  }

  .phoneFrame {
    width: min(280px, calc(100vw - 32px));
    border-width: 5px;
    border-radius: 40px;
  }

  .overlayInfo {
    left: 10px;
    right: 10px;
    bottom: 100px;
  }

  .pName {
    font-size: 20px;
  }

  .pAge {
    font-size: 17px;
  }
}

@media (max-width: 620px) {
  .signupForm {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 12px;
    align-items: stretch;
  }

  .signupOr {
    order: 2;
  }

  .signupForm #modalCta {
    order: 4;
  }
}

/* Like : respecter l’accessibilité */
@media (prefers-reduced-motion: reduce) {
  .slide::before {
    opacity: 0.12;
    mix-blend-mode: soft-light;
  }

  .stack.stack--playful {
    transition: transform 320ms ease;
  }

  .likeBtn.likeBtn--burst,
  .likeIcon.likeIcon--burst {
    animation: none !important;
  }

  .likeHeartWipe--run .likeHeartWipe__motion {
    animation: none !important;
  }

  .modalOverlay {
    transition:
      opacity 0.2s ease,
      visibility 0s linear 0.2s !important;
  }

  .modalOverlay.isOpen {
    transition: opacity 0.2s ease, visibility 0s !important;
  }

  .signupStatus {
    transition: none;
  }

  .modal {
    transform: none !important;
    transition: opacity 0.2s ease !important;
  }
}
