/* Akwaba Landing v2 — Editorial luxury + mobile app showcase */

:root {
  --violet-950: #2e1065;
  --violet-900: #4c1d95;
  --violet-700: #6d28d9;
  --violet-500: #7b2cbf;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --cream: #fdfbf7;
  --cream-2: #f5f0e8;
  --ink: #1a1625;
  --ink-muted: #5c5668;
  --hairline: rgba(26, 22, 37, 0.08);
  --radius-shell: 2rem;
  --radius-inner: calc(2rem - 0.375rem);
  --ease-out: cubic-bezier(0.32, 0.72, 0, 1);
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Film grain (fixed, pointer-events none) */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0.035;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* —— Island nav —— */
.island-nav {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.45rem 0.45rem 1rem;
  background: rgba(253, 251, 247, 0.82);
  backdrop-filter: blur(16px);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(46, 16, 101, 0.08);
  transition: transform 0.7s var(--ease-out),
    box-shadow 0.7s var(--ease-out);
  max-width: min(96vw, 920px);
  width: max-content;
}

.island-nav.is-hidden {
  transform: translateX(-50%) translateY(-120%);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.brand-link img.logo-round {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-link img.wordmark {
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0 0.5rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-muted);
  transition: color 0.35s var(--ease-out);
}

.nav-links a:hover {
  color: var(--violet-900);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: var(--violet-900);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  transition: transform 0.45s var(--ease-out),
    background 0.35s var(--ease-out);
}

.nav-cta:hover {
  background: var(--violet-700);
  transform: translateY(-1px);
}

.nav-cta .icon-pill {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  transition: transform 0.45s var(--ease-out);
}

.nav-cta:hover .icon-pill {
  transform: translate(2px, -2px) scale(1.05);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.5s var(--ease-out), opacity 0.35s;
}

.menu-toggle span:nth-child(1) {
  top: 16px;
}

.menu-toggle span:nth-child(2) {
  top: 21px;
}

.menu-toggle span:nth-child(3) {
  top: 26px;
}

.menu-toggle.is-open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(253, 251, 247, 0.94);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}

.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer a {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 500;
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.mobile-drawer.is-open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-drawer.is-open a:nth-child(2) {
  transition-delay: 0.08s;
}

.mobile-drawer.is-open a:nth-child(3) {
  transition-delay: 0.14s;
}

.mobile-drawer.is-open a:nth-child(4) {
  transition-delay: 0.2s;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: auto;
  padding: 5.75rem 5% 3.5rem;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr minmax(200px, 0.95fr);
  gap: 2rem 2.5rem;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 80% 60% at 90% 10%,
      rgba(123, 44, 191, 0.12),
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 50% at 0% 100%,
      rgba(245, 158, 11, 0.1),
      transparent 50%
    ),
    var(--cream);
  z-index: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(76, 29, 149, 0.08);
  color: var(--violet-900);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--violet-700);
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 32rem;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 11.75rem;
  padding: 0.65rem 1.25rem;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  transition: transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out);
}

.btn-store__text {
  flex: 1;
  min-width: 0;
}

.btn-store:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(26, 22, 37, 0.2);
}

.btn-store i {
  font-size: 1.75rem;
}

.btn-store__icon {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  display: block;
}

.btn-store small {
  display: block;
  font-size: 0.62rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-store strong {
  font-size: 1rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 1.25rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--violet-900);
}

.hero-stat span {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

/* Phone mockup — double bezel */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.phone-shell {
  padding: 0.5rem;
  border-radius: 2.75rem;
  background: linear-gradient(145deg, #e8e2d8, #fff);
  box-shadow: 0 40px 80px rgba(46, 16, 101, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  ring: 1px solid rgba(26, 22, 37, 0.06);
  border: 1px solid var(--hairline);
  transform: rotate(-4deg);
  transition: transform 0.8s var(--ease-out);
}

.phone-shell:hover {
  transform: rotate(0deg) scale(1.02);
}

.phone-inner {
  width: min(248px, 36vw);
  aspect-ratio: 9 / 19.5;
  border-radius: 2.25rem;
  overflow: hidden;
  background: #111;
  position: relative;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12);
}

.phone-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s var(--ease-out);
}

.phone-inner img.is-active {
  opacity: 1;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 22px;
  background: #111;
  border-radius: 0 0 12px 12px;
  z-index: 3;
}

/* —— Sections common —— */
.section {
  padding: clamp(4rem, 10vw, 7rem) 5%;
}

#features.section {
  background: var(--cream-2);
  padding-top: clamp(3.5rem, 8vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 3rem;
}

#features .section-head {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

#features .section-head h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.5rem);
  line-height: 1.2;
}

#features .section-head h2 em {
  font-style: normal;
  font-weight: 600;
  color: var(--violet-700);
}

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-head h2 em {
  font-style: italic;
  color: var(--violet-700);
}

.section-head p {
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.payment-methods-lead {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.35rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.payment-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0;
  background: transparent;
  border: none;
}

.payment-logos a {
  display: flex;
  align-items: center;
  line-height: 0;
}

.payment-logos img {
  display: block;
  width: auto;
  max-width: 5.5rem;
  height: 1.65rem;
  object-fit: contain;
  object-position: center;
}

.payment-logos img[alt="Wave"] {
  max-width: 5rem;
  height: 1.45rem;
}

.payment-logos .payment-logo--mtn {
  max-width: 4.25rem;
  height: 1.85rem;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(2.5rem);
}

/* —— Bento features —— */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.bento-card {
  padding: 0.45rem;
  border-radius: var(--radius-shell);
  background: rgba(76, 29, 149, 0.04);
  border: 1px solid var(--hairline);
}

.bento-card__inner {
  height: 100%;
  padding: 1.75rem;
  border-radius: var(--radius-inner);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.bento-card--lg {
  grid-column: 1 / 8;
  grid-row: 1;
}

.bento-card--md {
  grid-column: 8 / -1;
  grid-row: 1;
}

.bento-card--destinations {
  grid-column: 8 / -1;
  grid-row: 2;
}

.bento-card--offline {
  grid-column: 1 / 8;
  grid-row: 2;
  align-self: stretch;
}

.bento-card--tourisme {
  grid-column: 8 / -1;
  grid-row: 3;
  align-self: stretch;
}

.bento-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  background: rgba(123, 44, 191, 0.1);
  margin-bottom: 1rem;
}

.bento-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.bento-card p {
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.bento-acronym {
  margin: -0.15rem 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--violet-700);
}

.bento-acronym abbr {
  text-decoration: none;
  cursor: help;
}

.bento-card--interactive {
  cursor: pointer;
}

.bento-card--interactive .bento-card__inner {
  position: relative;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.bento-card--interactive:hover .bento-card__inner,
.bento-card--interactive:focus-visible .bento-card__inner {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 28px rgba(76, 29, 149, 0.1);
}

.bento-card--interactive:focus {
  outline: none;
}

.bento-card--interactive:focus-visible {
  outline: 2px solid var(--violet-700);
  outline-offset: 3px;
  border-radius: var(--radius-shell);
}

.bento-card__hint {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--violet-700);
  background: rgba(123, 44, 191, 0.08);
  border: 1px solid rgba(123, 44, 191, 0.14);
}

.bento-card__hint::after {
  content: '→';
  font-size: 0.85rem;
}

/* —— Bento preview overlay —— */
.bento-preview {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.bento-preview[hidden] {
  display: none;
}

.bento-preview__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 12, 28, 0.62);
  backdrop-filter: blur(6px);
}

.bento-preview__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  max-height: min(92vh, 52rem);
  overflow: auto;
  padding: 1.25rem 1.25rem 1.5rem;
  border-radius: 1.35rem;
  background: #fff;
  border: 1px solid var(--hairline);
  box-shadow: 0 28px 80px rgba(18, 12, 28, 0.28);
}

.bento-preview__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 4;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 999px;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--ink-muted);
  background: rgba(18, 12, 28, 0.06);
  cursor: pointer;
}

.bento-preview__close:hover {
  color: var(--ink);
  background: rgba(18, 12, 28, 0.1);
}

.bento-preview__overlay-card {
  grid-column: 1 / -1;
}

.bento-preview__head {
  padding-right: 2.5rem;
  margin: 0;
}

.bento-preview__head h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.bento-preview__caption {
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.bento-preview__stage {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0.35rem;
}

.bento-preview__overlay-card {
  grid-row: 1;
  margin-bottom: 0.85rem;
}

.bento-preview__figure {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  padding: 0.5rem;
  border-radius: 1.15rem;
  background: linear-gradient(
    165deg,
    rgba(123, 44, 191, 0.07) 0%,
    rgba(255, 255, 255, 0.95) 60%
  );
  border: 1px solid var(--hairline);
}

.bento-preview__nav--prev {
  grid-column: 1;
  grid-row: 2;
}

.bento-preview__nav--next {
  grid-column: 3;
  grid-row: 2;
}

.bento-preview__figure img {
  display: block;
  width: 100%;
  max-height: min(68vh, 36rem);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 0.85rem;
}

.bento-preview__slide-caption {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  text-align: left;
  color: var(--ink-muted);
}

.bento-preview__slide-caption[hidden] {
  display: none;
}

/* Thème saisonnier violet (modale classique) */
.bento-preview--seasonal-violet:not(.bento-preview--fullscreen)
  .bento-preview__dialog {
  border-color: rgba(109, 40, 217, 0.35);
  box-shadow:
    0 28px 80px rgba(76, 29, 149, 0.32),
    0 0 0 1px rgba(123, 44, 191, 0.12);
}

.bento-preview--seasonal-violet:not(.bento-preview--fullscreen)
  .bento-preview__head
  h3 {
  color: var(--violet-900);
}

.bento-preview--seasonal-violet .bento-preview__caption::before {
  content: '💜 Thème saisonnier violet';
  display: inline-block;
  margin-right: 0.45rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--violet-900);
  background: linear-gradient(
    135deg,
    rgba(123, 44, 191, 0.14) 0%,
    rgba(109, 40, 217, 0.08) 100%
  );
  border: 1px solid rgba(109, 40, 217, 0.22);
  vertical-align: middle;
}

.bento-preview--seasonal-violet:not(.bento-preview--fullscreen)
  .bento-preview__figure {
  background: linear-gradient(
    165deg,
    rgba(76, 29, 149, 0.18) 0%,
    rgba(123, 44, 191, 0.1) 38%,
    rgba(255, 255, 255, 0.98) 72%
  );
  border-color: rgba(109, 40, 217, 0.28);
}

.bento-preview--seasonal-violet:not(.bento-preview--fullscreen)
  .bento-preview__slide-caption {
  color: var(--violet-700);
  font-weight: 600;
}

/* Image seule : capture à taille naturelle, sans texte */
.bento-preview--image-only .bento-preview__dialog {
  width: auto;
  max-width: min(calc(100vw - 2.5rem), 26rem);
  max-height: none;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
}

.bento-preview--image-only .bento-preview__overlay-card {
  display: none;
}

.bento-preview--image-only .bento-preview__stage {
  display: block;
  position: relative;
  width: min(calc(100vw - 2.5rem), 26rem);
  height: auto;
  margin: 0;
  background: transparent;
}

.bento-preview--image-only .bento-preview__figure {
  position: static;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 1.35rem;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 28px 80px rgba(18, 12, 28, 0.28);
}

.bento-preview--image-only .bento-preview__figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(92vh, 52rem);
  margin: 0;
  object-fit: contain;
  border-radius: 0;
}

.bento-preview--image-only .bento-preview__close {
  color: #fff;
  background: rgba(18, 12, 28, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.bento-preview--image-only .bento-preview__close:hover {
  background: rgba(18, 12, 28, 0.75);
  color: #fff;
}

.bento-preview--image-only .bento-preview__nav,
.bento-preview--image-only .bento-preview__dots {
  display: none;
}

.bento-preview--image-only .bento-preview__empty {
  width: min(calc(100vw - 2.5rem), 26rem);
  min-height: 12rem;
  margin: 0;
  border-radius: 1.35rem;
}

.bento-preview__nav {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: #fff;
  color: var(--violet-700);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.bento-preview__nav:hover {
  background: rgba(123, 44, 191, 0.08);
}

.bento-preview__nav[hidden] {
  visibility: hidden;
}

.bento-preview__empty {
  margin: 0.5rem 0 0;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-muted);
  border-radius: 0.85rem;
  background: rgba(123, 44, 191, 0.06);
}

.bento-preview__payment-lead {
  margin: 0 0 0.75rem;
  font-weight: 600;
  color: var(--ink);
}

.bento-preview__payment-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bento-preview__payment-logos img {
  display: block;
  max-width: 4.5rem;
  max-height: 1.65rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.bento-preview__dots {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--violet-700);
}

body.bento-preview-open {
  overflow: hidden;
}

/* —— Screenshots carousel —— */
.screens-section {
  background: var(--cream-2);
}

.screens-track-wrap {
  overflow: hidden;
  margin: 0 -5%;
  padding: 0 5% 1rem;
}

.screens-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 5%;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}

.screens-track::-webkit-scrollbar {
  height: 6px;
}

.screens-track::-webkit-scrollbar-thumb {
  background: rgba(76, 29, 149, 0.25);
  border-radius: 99px;
}

.screen-shot {
  flex: 0 0 min(260px, 72vw);
  scroll-snap-align: start;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 1.75rem;
  background: #fff;
  border: 1px solid var(--hairline);
  box-shadow: 0 16px 40px rgba(46, 16, 101, 0.08);
}

.screen-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  vertical-align: top;
}

/* —— Nadré —— */
.nadre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.nadre-visual {
  position: relative;
}

.nadre-visual img {
  border-radius: var(--radius-shell);
  width: 100%;
  box-shadow: 0 32px 64px rgba(46, 16, 101, 0.15);
}

.nadre-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--violet-900);
  color: #fff;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.nadre-copy ul {
  list-style: none;
  margin: 1.5rem 0 2rem;
}

.nadre-copy li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 0.95rem;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.nadre-copy li::before {
  content: "✓";
  color: var(--amber-500);
  font-weight: 800;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: var(--amber-500);
  color: var(--violet-950);
  font-weight: 800;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.45s var(--ease-out),
    background 0.35s;
}

.btn-primary:hover {
  background: var(--amber-600);
  transform: translateY(-2px);
}

/* —— Live showcase (app parity) —— */
.live-preview {
  background: #fff;
}

.preview-map-cta {
  margin-top: 0.75rem;
}

.preview-map-cta a {
  color: var(--violet-700);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.landing-showcase {
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-loading,
.showcase-error {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--ink-muted);
}

.showcase-error {
  color: #b91c1c;
}

.showcase-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.showcase-row-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.showcase-row-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
}

.showcase-row-theme {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-top: 0.25rem;
}

.showcase-badge {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(123, 44, 191, 0.1);
  color: var(--violet-900);
}

.showcase-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
}

.showcase-scroll::-webkit-scrollbar {
  height: 6px;
}

.showcase-scroll::-webkit-scrollbar-thumb {
  background: rgba(76, 29, 149, 0.3);
  border-radius: 99px;
}

.showcase-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
  background: transparent;
  border-radius: 1.25rem;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out);
}

.showcase-card:hover {
  transform: translateY(-6px);
}

.showcase-card-image-wrap {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 1.25rem;
  overflow: hidden;
}

.showcase-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.15) 45%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

.showcase-card-meta {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 2.75rem 0.7rem 0.7rem;
  pointer-events: none;
}

.showcase-card-line {
  display: block;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.showcase-card-line--title {
  font-weight: 700;
  font-size: 0.86rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.showcase-card-line--loc {
  font-size: 0.74rem;
  opacity: 0.92;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.showcase-card-line--price {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.showcase-card-bookmark {
  position: absolute;
  z-index: 3;
  top: 8px;
  right: 8px;
  font-size: 1rem;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.35));
}

.showcase-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  border: 3px solid rgba(123, 44, 191, 0.15);
  border-top-color: var(--violet-700);
  border-radius: 50%;
  animation: showcase-spin 0.9s linear infinite;
}

@keyframes showcase-spin {
  to {
    transform: rotate(360deg);
  }
}

/* —— Download CTA —— */
.page-end {
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.download-band {
  margin: 0 5% clamp(1.25rem, 3vw, 2rem);
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: var(--radius-shell);
  background: linear-gradient(
    128deg,
    var(--violet-950) 0%,
    var(--violet-900) 42%,
    var(--violet-700) 100%
  );
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 56px rgba(46, 16, 101, 0.22);
}

.download-band::before {
  content: "";
  position: absolute;
  width: min(420px, 80vw);
  height: min(420px, 80vw);
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.22);
  top: -55%;
  right: -12%;
  filter: blur(64px);
  pointer-events: none;
}

.download-band::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: -40%;
  left: -8%;
  filter: blur(48px);
  pointer-events: none;
}

.download-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.download-band p {
  opacity: 0.92;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.download-band .store-row {
  justify-content: center;
  position: relative;
  z-index: 1;
}

.btn-waitlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.65rem 1.35rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(10px);
  transition: transform 0.45s var(--ease-out),
    background 0.35s,
    border-color 0.35s;
}

.btn-waitlist:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
}

.download-band .btn-store {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* —— Footer —— */
.site-footer {
  margin: 0 5% clamp(2.5rem, 6vw, 4rem);
  padding: 0;
  color: var(--ink);
}

.footer-shell {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-shell);
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: 0 12px 40px rgba(46, 16, 101, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .brand-link img.wordmark {
  height: 36px;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  max-width: 300px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  color: var(--ink-muted);
  font-weight: 800;
}

.footer-links {
  list-style: none;
}

.footer-links a {
  display: block;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--violet-700);
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.footer-bottom p {
  margin-bottom: 0.35rem;
}

.footer-admin-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
}

.footer-admin-links a {
  color: var(--ink-muted);
  font-weight: 600;
}

.footer-admin-links a:hover {
  color: var(--violet-700);
}

.footer-social {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--violet-900);
  border: 1px solid var(--hairline);
  transition: transform 0.35s var(--ease-out),
    background 0.35s,
    color 0.35s;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: var(--violet-900);
  color: #fff;
  border-color: transparent;
}

/* —— Responsive —— */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 6rem;
    padding-bottom: 2.5rem;
  }

  .phone-inner {
    width: min(260px, 72vw);
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .store-row,
  .hero-stats {
    justify-content: center;
  }

  .bento-card--lg,
  .bento-card--md,
  .bento-card--destinations,
  .bento-card--offline,
  .bento-card--tourisme {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

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

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .island-nav {
    width: calc(100% - 2rem);
    justify-content: space-between;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
