:root {
  /* Aligné sur AmorisGenderPalette (tourSpectateur + accents duo) */
  --bg-deep: #111113;
  --bg-mid: #1a1a1e;
  --bg-highlight: #252528;
  --bg-corner: #0c0c0e;
  --panel: #222226;
  --panel-passive: #1c1c20;
  --panel-border: #4a4a54;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --faint: rgba(74, 74, 84, 0.42);
  --accent: #b0b0bc;
  --accent-dim: #6e6e78;
  --blue: #5eb1e8;
  --blue-dim: rgba(94, 177, 232, 0.18);
  --pink: #e88bb0;
  --pink-dim: rgba(232, 139, 176, 0.18);
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --header-h: 4.25rem;
  --page-max: 72rem;
  /* Ratio réel des captures (932×1950), évite le recadrage object-fit: cover */
  --screenshot-ar: 932 / 1950;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 300;
  color: var(--text);
  background-color: var(--bg-deep);
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, transparent 42%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(to bottom right, #111113 0%, #1a1a1e 34%, #252528 66%, #0c0c0e 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

.bg-bloom {
  pointer-events: none;
  position: fixed;
  inset: -45% -25%;
  background: radial-gradient(ellipse 85% 75% at 14% 16%, rgba(255, 255, 255, 0.045), transparent 52%),
    radial-gradient(ellipse 75% 65% at 86% 78%, rgba(0, 0, 0, 0.28), transparent 54%);
  filter: blur(3px);
  z-index: 0;
}

.bg-glow {
  pointer-events: none;
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.bg-glow--blue {
  width: min(55vw, 28rem);
  height: min(55vw, 28rem);
  top: 8%;
  left: -8%;
  background: radial-gradient(circle, rgba(94, 177, 232, 0.14), transparent 68%);
}

.bg-glow--pink {
  width: min(50vw, 26rem);
  height: min(50vw, 26rem);
  top: 28%;
  right: -10%;
  background: radial-gradient(circle, rgba(232, 139, 176, 0.12), transparent 68%);
}

/* --- Header --- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--header-h);
  padding: 0 clamp(1rem, 4vw, 2rem);
  background: rgba(17, 17, 19, 0.72);
  border-bottom: 1px solid rgba(74, 74, 84, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.site-header__logo {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.site-header__name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
  margin-right: 0.75rem;
}

.site-nav__link {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.58);
  transition: color var(--ease) 0.2s;
}

.site-nav__link:hover {
  color: rgba(255, 255, 255, 0.92);
}

.site-header .lang-switch {
  position: static;
  margin-left: auto;
  flex-shrink: 0;
}

.site-header .lang-switch ~ .lang-switch {
  margin-left: 0;
}

.site-nav + .lang-switch {
  margin-left: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 2px;
  border-radius: 999px;
  border: 1px solid rgba(74, 74, 84, 0.75);
  background: rgba(28, 28, 32, 0.88);
}

.lang-switch__btn {
  appearance: none;
  margin: 0;
  min-width: 2.85rem;
  padding: 0.45rem 0.72rem;
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--ease) 0.2s, color var(--ease) 0.2s;
}

.lang-switch__btn:hover {
  color: rgba(255, 255, 255, 0.9);
}

.lang-switch__btn.is-active {
  color: var(--bg-deep);
  background: #d8d8e0;
  box-shadow: 0 0 0 1px rgba(74, 74, 84, 0.4);
}

.lang-switch__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- Page layout --- */

.page {
  position: relative;
  z-index: 1;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: calc(var(--header-h) + 1.5rem) clamp(1.25rem, 4vw, 2.5rem) 5rem;
}

/* --- Hero --- */

.hero {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem) 0 clamp(3rem, 8vw, 5rem);
}

.hero__copy {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  margin: 0 0 1.1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  border: 1px solid rgba(176, 176, 188, 0.4);
  background: rgba(74, 74, 84, 0.28);
}

.hero__title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 3.15rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
  margin: 0 0 1.15rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.82) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-wrap: balance;
}

.hero__subtitle {
  margin: 0 auto 1.35rem;
  max-width: 36rem;
  width: 100%;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 200;
  line-height: 1.72;
  color: var(--muted);
  text-wrap: balance;
}

.hero__personas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.25rem 0;
  margin: 0 0 1.15rem;
  padding: 0;
  width: 100%;
  max-width: 100%;
  list-style: none;
}

.hero__personas li {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(232, 139, 176, 0.82);
}

.hero__personas li + li::before {
  content: "·";
  margin: 0 0.65rem;
  color: rgba(232, 139, 176, 0.55);
  font-weight: 400;
  letter-spacing: 0;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.hero__pills li {
  padding: 0.4rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  border: 1px solid rgba(74, 74, 84, 0.65);
  background: rgba(28, 28, 32, 0.55);
}

.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.hero__reassurance {
  margin: 0.9rem 0 0;
  max-width: 22rem;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.46);
  text-align: center;
}

.hero__phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: clamp(18rem, 52vw, 26rem);
  padding: 0 0.5rem;
  transform: translateZ(0);
  perspective: 1200px;
}

/* --- Phone mockups --- */

.phone {
  position: relative;
  margin: 0;
  padding: 0.45rem;
  border-radius: 2rem;
  background: linear-gradient(155deg, #35353c 0%, #18181c 55%, #0e0e10 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.phone__screen {
  border-radius: 1.55rem;
  overflow: hidden;
  aspect-ratio: var(--screenshot-ar);
  background: #000;
  line-height: 0;
  transform: translateZ(0);
}

/* Petites vignettes : rendu net au downscale (hero, étapes, confiance, pas la galerie) */
.phone__screen img,
.step-card__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.phone--blue {
  width: min(42vw, 11.5rem);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.5), 0 0 48px var(--blue-dim);
}

.phone--pink {
  width: min(42vw, 11.5rem);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.5), 0 0 48px var(--pink-dim);
}

.phone--neutral {
  width: min(72vw, 14rem);
  margin: 0 auto;
}

/* Conteneur de rotation : l’image reste droite, le slot pivote (meilleure netteté) */
.phone-slot {
  flex-shrink: 0;
  width: min(42vw, 11.5rem);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.phone-slot .phone {
  width: 100%;
}

.phone-slot--left {
  transform: rotate(-7deg) translateX(12%) translate3d(0, 0, 0);
  z-index: 1;
}

.phone-slot--right {
  transform: rotate(7deg) translateX(-12%) translate3d(0, 0, 0);
  margin-bottom: 1.5rem;
  z-index: 2;
}

/* --- Sections --- */

main {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 10vw, 6.5rem);
}

.section {
  padding-top: 0;
}

.section__head {
  text-align: center;
  max-width: min(48rem, 100%);
  margin: 0 auto clamp(2.25rem, 5vw, 3rem);
}

.section__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(176, 176, 188, 0.75);
}

.section__title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.28;
  letter-spacing: 0.01em;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  text-wrap: balance;
}

.section__title--left {
  text-align: left;
}

.section__title::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin: 1rem auto 0;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  opacity: 0.85;
}

.section__title--left::after {
  margin-left: 0;
  margin-right: auto;
}

/* --- Steps --- */

.steps {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-card {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 18px;
  border: 1px solid rgba(74, 74, 84, 0.55);
  background: linear-gradient(155deg, rgba(74, 74, 84, 0.14) 0%, rgba(28, 28, 32, 0.88) 100%), var(--panel-passive);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.step-card__num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--bg-deep);
  border-radius: 999px;
  background: linear-gradient(135deg, #d8d8e0, #ececf0);
}

.step-card__media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(74, 74, 84, 0.45);
  max-width: 12rem;
  margin: 0 auto;
  aspect-ratio: var(--screenshot-ar);
  line-height: 0;
  background: #000;
}

.step-card__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0;
  text-align: center;
}

.step-card__text {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 200;
  line-height: 1.72;
  color: var(--muted);
  text-align: center;
}

/* --- Feature grid --- */

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.feature-card {
  padding: 1.35rem 1.4rem;
  border-radius: 16px;
  border: 1px solid rgba(74, 74, 84, 0.55);
  background: rgba(28, 28, 32, 0.72);
  transition: border-color var(--ease) 0.2s, transform var(--ease) 0.2s;
}

.feature-card:hover {
  transform: translateY(-2px);
}

.feature-card--blue {
  border-color: rgba(94, 177, 232, 0.35);
  background: linear-gradient(145deg, var(--blue-dim), rgba(28, 28, 32, 0.88));
}

.feature-card--pink {
  border-color: rgba(232, 139, 176, 0.35);
  background: linear-gradient(145deg, var(--pink-dim), rgba(28, 28, 32, 0.88));
}

.feature-card--expert {
  border-color: rgba(212, 102, 102, 0.35);
  background: linear-gradient(145deg, rgba(212, 102, 102, 0.12), rgba(28, 28, 32, 0.88));
}

.feature-card__icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  color: rgba(176, 176, 188, 0.85);
}

.feature-card--blue .feature-card__icon {
  color: var(--blue);
}

.feature-card--pink .feature-card__icon {
  color: var(--pink);
}

.feature-card--expert .feature-card__icon {
  color: #d46666;
}

.feature-card__icon svg,
.feature-card__icon .material-symbols-outlined {
  width: 100%;
  height: 100%;
  font-size: 2rem;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.feature-card__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin: 0 0 0.55rem;
}

.feature-card__text {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 200;
  line-height: 1.68;
  color: var(--muted);
}

.section__lead {
  max-width: 38rem;
  margin: 1.15rem auto 0;
  font-size: 0.98rem;
  font-weight: 200;
  line-height: 1.75;
  color: var(--muted);
  text-wrap: balance;
}

/* --- Pricing --- */

.pricing-grid {
  display: grid;
  gap: 1.15rem;
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 1.75rem);
  border-radius: 18px;
  border: 1px solid rgba(74, 74, 84, 0.55);
  background: rgba(28, 28, 32, 0.72);
  transition: border-color var(--ease) 0.2s, transform var(--ease) 0.2s;
}

.pricing-card--ribbon {
  padding-top: clamp(1.85rem, 4vw, 2.25rem);
}

.pricing-card:hover {
  transform: translateY(-2px);
}

.pricing-card--free {
  border-color: rgba(176, 176, 188, 0.35);
  background: linear-gradient(155deg, rgba(74, 74, 84, 0.12) 0%, rgba(28, 28, 32, 0.92) 100%);
}

.pricing-card--premium {
  border-color: rgba(94, 177, 232, 0.4);
  background: linear-gradient(155deg, var(--blue-dim) 0%, rgba(28, 28, 32, 0.92) 100%);
}

.pricing-card--expert {
  border-color: rgba(212, 102, 102, 0.4);
  background: linear-gradient(155deg, rgba(212, 102, 102, 0.12) 0%, rgba(28, 28, 32, 0.92) 100%);
}

.pricing-card--featured {
  box-shadow: 0 0 0 1px rgba(94, 177, 232, 0.18), 0 20px 48px rgba(0, 0, 0, 0.32);
}

.pricing-card__ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0.32rem 0.85rem;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  border: 1px solid rgba(176, 176, 188, 0.45);
  background: rgba(17, 17, 19, 0.92);
}

.pricing-card__ribbon--premium {
  border-color: rgba(94, 177, 232, 0.55);
  color: var(--blue);
  background: rgba(17, 17, 19, 0.96);
}

.pricing-card__badge {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.28rem 0.65rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  border: 1px solid rgba(74, 74, 84, 0.55);
  background: rgba(17, 17, 19, 0.45);
  align-self: flex-start;
}

.pricing-card--premium .pricing-card__badge {
  border-color: rgba(94, 177, 232, 0.45);
  color: var(--blue);
}

.pricing-card--expert .pricing-card__badge {
  border-color: rgba(212, 102, 102, 0.45);
  color: #ff8c8c;
}

.pricing-card__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.45rem);
  font-weight: 400;
  margin: 0 0 0.55rem;
}

.pricing-card__intro {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  font-weight: 200;
  line-height: 1.65;
  color: var(--muted);
}

.pricing-card__price {
  margin: 0 0 0.65rem;
}

.pricing-card__price-main {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.65rem, 4vw, 2rem);
  font-weight: 400;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.96);
}

.pricing-card__price-unit {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72em;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(176, 176, 188, 0.92);
}

.pricing-card__price-alt {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(176, 176, 188, 0.88);
}

.pricing-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.pricing-card__list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  font-size: 0.88rem;
  font-weight: 200;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.82);
}

.pricing-card__list li:last-child {
  margin-bottom: 0;
}

.pricing-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(176, 176, 188, 0.55);
}

.pricing-card--premium .pricing-card__list li::before {
  background: var(--blue);
  opacity: 0.75;
}

.pricing-card--expert .pricing-card__list li::before {
  background: #ff8c8c;
  opacity: 0.75;
}

.pricing-card__highlight {
  margin: 0 0 1.15rem;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
  border-radius: 12px;
  border: 1px solid rgba(94, 177, 232, 0.45);
  background: rgba(94, 177, 232, 0.12);
  box-shadow: 0 0 24px rgba(94, 177, 232, 0.08);
}

.pricing-card--expert .pricing-card__highlight {
  border-color: rgba(212, 102, 102, 0.45);
  background: rgba(212, 102, 102, 0.12);
  box-shadow: 0 0 24px rgba(212, 102, 102, 0.08);
}

.pricing-card--premium .pricing-card__list,
.pricing-card--expert .pricing-card__list {
  padding-bottom: 1.15rem;
}

.pricing-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: background var(--ease) 0.2s, border-color var(--ease) 0.2s, color var(--ease) 0.2s,
    transform var(--ease) 0.2s;
}

.pricing-card__cta--free {
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(176, 176, 188, 0.45);
  background: rgba(17, 17, 19, 0.35);
}

.pricing-card__cta--free:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.pricing-card__cta--premium {
  color: var(--bg-deep);
  border: 1px solid rgba(94, 177, 232, 0.55);
  background: var(--blue);
}

.pricing-card__cta--premium:hover {
  background: #7bc4ef;
  transform: translateY(-1px);
}

.pricing-card__cta--expert {
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(212, 102, 102, 0.55);
  background: rgba(212, 102, 102, 0.18);
}

.pricing-card__cta--expert:hover {
  background: rgba(212, 102, 102, 0.28);
  transform: translateY(-1px);
}

.pricing-card__cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.pricing-ethics {
  margin: clamp(1.35rem, 3vw, 1.75rem) 0 0;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.pricing-note {
  margin-top: clamp(1rem, 2.5vw, 1.35rem);
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(74, 74, 84, 0.45);
  background: rgba(17, 17, 19, 0.55);
}

.pricing-note p {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 200;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.pricing-note p + p {
  margin-top: 0.55rem;
}

/* --- Showcase grid --- */

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.showcase-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(74, 74, 84, 0.45);
  background: rgba(28, 28, 32, 0.55);
  transition: transform var(--ease) 0.2s, box-shadow var(--ease) 0.2s;
}

.showcase-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.showcase-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: var(--screenshot-ar);
  object-fit: contain;
  object-position: top center;
}

.showcase-item figcaption {
  padding: 0.55rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.58);
  border-top: 1px solid rgba(74, 74, 84, 0.35);
}

/* --- Trust section --- */

.trust-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.trust-copy .section__eyebrow {
  text-align: left;
}

.trust-text {
  margin: 0 0 1.35rem;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.78;
  color: var(--muted);
}

.trust-text strong {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

/* --- CTA panel --- */

.section--cta {
  text-align: center;
}

.cta-panel {
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
  border-radius: 20px;
  border: 1px solid rgba(74, 74, 84, 0.55);
  background: linear-gradient(155deg, rgba(94, 177, 232, 0.08) 0%, rgba(232, 139, 176, 0.06) 50%, rgba(28, 28, 32, 0.92) 100%),
    var(--panel-passive);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.cta-panel__logo {
  width: min(220px, 55vw);
  height: auto;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.cta-panel__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  margin: 0 0 0.75rem;
}

.cta-panel__text {
  margin: 0 auto 1.5rem;
  max-width: 26em;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.68;
  color: var(--muted);
}

.play-store-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.play-store-link {
  display: inline-flex;
  transition: transform var(--ease) 0.2s, opacity var(--ease) 0.2s;
}

.play-store-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.play-store-badge {
  display: block;
  height: 56px;
  width: auto;
  max-width: min(100%, 16.5rem);
}

.play-store-badge--hero {
  height: 52px;
}

.play-store-badge-wrap {
  display: inline-flex;
  line-height: 0;
}

.play-store-badge-wrap--disabled {
  opacity: 0.42;
  filter: grayscale(1);
  pointer-events: none;
  cursor: default;
}

.play-store-soon {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 200;
  letter-spacing: 0.06em;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.52);
}

.play-store-soon--hero {
  font-size: 0.78rem;
}

/* --- Waitlist --- */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.waitlist-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: min(100%, 22rem);
  margin-top: 0.35rem;
}

.waitlist-block--hero {
  width: min(100%, 20rem);
}

.waitlist-block__lead {
  margin: 0;
  width: 100%;
  max-width: none;
  font-size: clamp(0.68rem, 2.35vw, 0.78rem);
  font-weight: 200;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  white-space: nowrap;
}

.waitlist-block--hero .waitlist-block__lead {
  font-size: clamp(0.66rem, 2.2vw, 0.74rem);
}

.waitlist-block__hint {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
  width: 100%;
  margin: 0;
}

.waitlist-form--hero {
  width: 100%;
}

.waitlist-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: stretch;
}

.waitlist-form__input {
  flex: 1 1 10rem;
  min-width: 0;
  padding: 0.62rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 74, 84, 0.72);
  background: rgba(18, 18, 22, 0.82);
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.waitlist-form__input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.waitlist-form__input:focus {
  outline: none;
  border-color: rgba(200, 160, 180, 0.55);
  box-shadow: 0 0 0 2px rgba(200, 160, 180, 0.14);
}

.waitlist-form__submit {
  flex: 0 0 auto;
  padding: 0.62rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 160, 180, 0.42);
  background: linear-gradient(
    135deg,
    rgba(120, 72, 96, 0.88) 0%,
    rgba(88, 52, 72, 0.92) 100%
  );
  color: rgba(255, 255, 255, 0.94);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.waitlist-form__submit:hover:not(:disabled) {
  transform: translateY(-1px);
  opacity: 0.94;
}

.waitlist-form__submit:disabled {
  opacity: 0.55;
  cursor: wait;
}

.waitlist-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.waitlist-form__status {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.02em;
  text-align: center;
}

.waitlist-form__status--ok {
  color: rgba(180, 220, 190, 0.88);
}

.waitlist-form__status--error {
  color: rgba(240, 170, 170, 0.92);
}

/* --- Privacy note --- */

.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 28rem;
  width: 100%;
  padding: 0.75rem 0.875rem;
  background: rgba(28, 28, 32, 0.72);
  border: 1px solid rgba(74, 74, 84, 0.55);
  border-radius: 10px;
}

.privacy-note--inline {
  margin: 0;
}

.privacy-note__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  color: rgba(176, 176, 188, 0.55);
}

.privacy-note p {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 200;
  line-height: 1.56;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.58);
  text-align: left;
}

/* --- Footer --- */

.footer {
  text-align: center;
  margin-top: clamp(3.5rem, 8vw, 5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--faint);
  font-size: 0.75rem;
  font-weight: 200;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.65rem;
  margin-bottom: 0.9rem;
}

.footer__link {
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  transition: color var(--ease) 0.2s;
}

.footer__link:hover {
  color: rgba(255, 255, 255, 0.88);
}

.footer__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.footer__sep {
  color: rgba(255, 255, 255, 0.28);
}

.footer__copy {
  margin: 0;
}

.footer p {
  margin: 0;
}

/* --- Sticky CTA (mobile) --- */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 35;
  display: flex;
  justify-content: center;
  padding: 0.65rem 1rem max(0.65rem, env(safe-area-inset-bottom));
  background: rgba(17, 17, 19, 0.92);
  border-top: 1px solid rgba(74, 74, 84, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--ease) 0.25s, opacity var(--ease) 0.25s;
}

.sticky-cta.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

.sticky-cta__link {
  display: inline-flex;
}

.sticky-cta__badge {
  height: 44px;
  width: auto;
}

/* --- Shared buttons (join page) --- */

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 2rem;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg-deep);
  background: #d8d8e0;
  border: 1px solid rgba(74, 74, 84, 0.55);
  cursor: pointer;
  transition: background var(--ease) 0.2s, color var(--ease) 0.2s, transform var(--ease) 0.2s;
}

.cta-button:hover {
  background: linear-gradient(115deg, #d8d8e0, #e6e6ec 48%, #ececf0);
  transform: translateY(-1px);
}

.cta-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* --- Join page --- */

.join-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: min(32rem, 100%);
  margin: 0 auto;
  padding: clamp(2.5rem, 8vw, 4rem) clamp(1.35rem, 5vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.join-logo {
  width: min(210px, 58vw);
  height: auto;
  display: block;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.join-panel {
  width: 100%;
  text-align: center;
  padding: clamp(1.4rem, 5vw, 2rem);
  border-radius: 16px;
  border: 1px solid rgba(74, 74, 84, 0.65);
  background: linear-gradient(155deg, rgba(74, 74, 84, 0.22) 0%, rgba(34, 34, 38, 0.65) 42%, rgba(28, 28, 32, 0.94) 100%),
    #1c1c20;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.join-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.45rem, 5vw, 1.9rem);
  line-height: 1.28;
  margin: 0 0 1.2rem;
}

.join-title::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  margin: 0.85rem auto 0;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  opacity: 0.85;
}

.join-copy {
  margin: 0 auto 1rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.72;
  max-width: 25rem;
}

.join-panel .cta-button {
  margin-top: 0.65rem;
}

/* --- Amoris Match : spécifique --- */

.site-nav__link--amoris {
  color: var(--pink);
}

.site-nav__link--amoris:hover {
  color: rgba(255, 255, 255, 0.92);
}

.phone__screen--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18% 12%;
  background: linear-gradient(160deg, #1a1a1e 0%, #111113 100%);
}

.phone__screen--logo img {
  width: 72%;
  height: auto;
  object-fit: contain;
  opacity: 0.92;
}

.section--cross {
  text-align: center;
}

.cross-panel {
  position: relative;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
  border-radius: 20px;
  border: 1px solid rgba(74, 74, 84, 0.55);
  background: linear-gradient(155deg, rgba(232, 139, 176, 0.1) 0%, rgba(28, 28, 32, 0.92) 55%),
    var(--panel-passive);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.cross-panel__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 400;
  margin: 0 0 0.75rem;
}

.cross-panel__text {
  margin: 0 auto 1rem;
  max-width: 28em;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.68;
  color: var(--muted);
}

.cross-panel__free {
  display: inline-flex;
  margin: 0 0 0;
  padding: 0.4rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  border: 1px solid rgba(232, 139, 176, 0.45);
  background: rgba(232, 139, 176, 0.12);
}

.cross-panel__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #111113;
  background: var(--pink);
  border: 1px solid rgba(232, 139, 176, 0.65);
  transition: transform var(--ease) 0.2s, filter var(--ease) 0.2s;
}

.cross-panel__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.cross-panel__logo {
  display: block;
  width: min(140px, 36vw);
  height: auto;
  margin: 2rem auto 0;
  opacity: 0.88;
}

.join-code {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 200;
  color: var(--muted);
}

.join-code__value {
  display: block;
  margin-top: 0.4rem;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--text);
}

.join-play {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0 0.25rem;
}

.join-hint {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  font-weight: 200;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.48);
}

/* --- Age gate --- */

body.age-gate-open {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2rem);
  background: rgba(12, 12, 14, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.age-gate[hidden] {
  display: none !important;
}

.age-gate__panel {
  width: min(26rem, 100%);
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 16px;
  border: 1px solid rgba(74, 74, 84, 0.65);
  background: linear-gradient(155deg, rgba(74, 74, 84, 0.22) 0%, rgba(34, 34, 38, 0.65) 42%, rgba(28, 28, 32, 0.94) 100%),
    #1c1c20;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.age-gate__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1rem;
  padding: 0.35rem 0.65rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  border: 1px solid rgba(176, 176, 188, 0.45);
  background: rgba(74, 74, 84, 0.35);
}

.age-gate__title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.35rem, 3.8vw, 1.65rem);
  letter-spacing: 0.02em;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.35;
}

.age-gate__title::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  margin-top: 0.75rem;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  opacity: 0.85;
}

.age-gate__text {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  font-weight: 200;
  line-height: 1.84;
  letter-spacing: 0.015em;
  color: var(--muted);
  text-align: left;
}

.age-gate__text strong {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.age-gate__btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--ease) 0.2s, color var(--ease) 0.2s, border-color var(--ease) 0.2s,
    transform var(--ease) 0.2s;
}

.age-gate__btn--primary {
  color: var(--bg-deep);
  background: #d8d8e0;
  border-color: rgba(74, 74, 84, 0.55);
}

.age-gate__btn--primary:hover {
  background: linear-gradient(115deg, #d8d8e0, #e6e6ec 48%, #ececf0);
  transform: translateY(-1px);
}

.age-gate__btn--ghost {
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border-color: rgba(74, 74, 84, 0.85);
}

.age-gate__btn--ghost:hover {
  border-color: rgba(176, 176, 188, 0.55);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.age-gate__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* --- Responsive --- */

@media (min-width: 640px) {
  .site-nav {
    display: flex;
  }

  .site-header .lang-switch {
    margin-left: 0;
  }

  .showcase-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .step-card {
    display: flex;
    flex-direction: column;
  }

  .step-card__text {
    flex: 1;
  }

  .phone-slot {
    width: min(34vw, 13rem);
  }
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1.05fr;
    text-align: left;
  }

  .hero__copy {
    text-align: left;
    margin: 0;
    max-width: none;
  }

  .hero__subtitle {
    margin-left: 0;
  }

  .hero__personas {
    margin-left: 0;
    justify-content: flex-start;
  }

  .hero__pills {
    justify-content: flex-start;
  }

  .hero__cta {
    align-items: flex-start;
  }

  .hero__reassurance {
    text-align: left;
    margin-left: 0;
  }

  .hero__phones {
    min-height: 28rem;
  }

  .phone-slot {
    width: 13.5rem;
  }

  .trust-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .phone--neutral {
    width: 15rem;
  }

  .sticky-cta {
    display: none;
  }
}

@media (min-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- Pages légales --- */

.legal-page {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) clamp(1.25rem, 4vw, 2.5rem) 3rem;
}

.legal-panel {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: 16px;
  border: 1px solid rgba(74, 74, 84, 0.65);
  background: linear-gradient(
      155deg,
      rgba(74, 74, 84, 0.14) 0%,
      rgba(28, 28, 32, 0.92) 100%
    ),
    var(--panel-passive);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.legal-panel__title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.65rem, 4vw, 2rem);
  margin: 0 0 1rem;
  line-height: 1.25;
}

.legal-panel__title::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  margin-top: 0.85rem;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  opacity: 0.85;
}

.legal-panel__intro {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.72;
  color: var(--muted);
}

.legal-section {
  margin-bottom: 1.5rem;
}

.legal-section__title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: 1.1rem;
  margin: 0 0 0.55rem;
  color: rgba(255, 255, 255, 0.92);
}

.legal-section__text {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 200;
  line-height: 1.72;
  color: var(--muted);
}

.legal-section__text a {
  color: rgba(176, 176, 188, 0.95);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-section__text a:hover {
  color: #fff;
}

.legal-section__text strong {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
}

.legal-panel__back {
  margin: 1.75rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--faint);
}

.legal-panel__back-link {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--ease) 0.2s;
}

.legal-panel__back-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer--legal {
  position: relative;
  z-index: 1;
  padding-bottom: 2rem;
}
