/* Woofly — landing de dispatch. Une page, une action. Palette reprise du thème de l'app. */
:root {
  --creme: #fff6eb;
  --corail: #ef6640;
  --cacao: #3c261c;
  --taupe: #ac826b;
  --sable: #eee1d4;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  height: 100%;
}

body {
  background: var(--creme);
  color: var(--cacao);
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  /* Centre la carte, plein écran, sans scroll (100dvh gère la barre mobile). */
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.card {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.oscar {
  width: 200px;
  height: auto;
  max-width: 55vw;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.wordmark {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: var(--cacao);
  letter-spacing: 0.2px;
}

.tagline {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  margin: 0;
  color: var(--cacao);
}

.stores {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.badge {
  display: inline-flex;
  transition: transform 0.12s ease, opacity 0.12s ease;
}

.badge:active {
  transform: scale(0.97);
  opacity: 0.9;
}

.badge img {
  height: 56px;
  width: auto;
  display: block;
}

.soon {
  font-weight: 700;
  color: var(--taupe);
  margin: 0;
}

.qr-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.qr {
  background: var(--white);
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--sable);
  line-height: 0;
}

.qr img {
  display: block;
  width: 148px;
  height: 148px;
  image-rendering: pixelated;
}

.qr-hint {
  font-weight: 600;
  color: var(--taupe);
  font-size: 14px;
  margin: 0;
}

@media (max-height: 640px) {
  .oscar {
    width: 150px;
  }
  .tagline {
    font-size: 21px;
  }
}
