/* ===== Design tokens (Wesh Pothos) ===== */
:root {
  --neutral-cream-50: #F7F6F0;
  --surface-canvas: #FFFFFF;
  --surface-inverse: #162232;
  --content-primary: #162232;
  --slate-fennel-night-950: #162232;
  --border-default: #E0DDCC;

  --brand-crazy-pink-500: #FC6DAB;
  --brand-secondary-wasabi-400: #BAFC87;
  --brand-secondary-wasabi-700: #5DCF04;

  --color-white: #FFFFFF;
}

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

body {
  background: var(--neutral-cream-50);
  min-height: 100vh;
  font-family: 'Outfit', sans-serif;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px 96px;
  position: relative;
}

.content-wrapper {
  width: 100%;
  max-width: 1053px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Carte principale */
.card {
  width: 100%;
  background: var(--surface-canvas);
  box-shadow: 12px 12px 0px var(--slate-fennel-night-950);
  border-radius: 36px;
  outline: 3px solid var(--slate-fennel-night-950);
  outline-offset: -3px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  width: 182px;
  height: 180px;
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Titre */
.headline {
  text-align: center;
  color: var(--content-primary);
  font-size: 48px;
  font-family: 'Anybody', sans-serif;
  font-weight: 900;
  text-transform: lowercase;
  line-height: 68px;
  letter-spacing: 0.88px;
}

/* Description */
.description {
  max-width: 680px;
  text-align: center;
  color: var(--content-primary);
  font-size: 18px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  line-height: 27px;
}

/* Réseaux sociaux */
.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: 4px 4px 0px var(--slate-fennel-night-950);
  outline: 2px solid var(--slate-fennel-night-950);
  outline-offset: -2px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.15s ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
}

.btn .icon {
  width: 24px;
  height: 24px;
}

.btn-instagram {
  background: var(--brand-crazy-pink-500);
  color: var(--color-white);
}

.btn-facebook {
  background: var(--brand-secondary-wasabi-400);
  color: var(--slate-fennel-night-950);
}

/* Footer */
.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 24px;
}

.footer-line {
  width: 100px;
  height: 0;
  border-top: 1px solid var(--border-default);
}

.footer-text {
  opacity: 0.60;
  color: var(--slate-fennel-night-950);
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
  .card {
    padding: 32px 24px;
    border-radius: 24px;
    box-shadow: 6px 6px 0px var(--slate-fennel-night-950);
  }

  .headline {
    font-size: 30px;
    line-height: 40px;
  }

  .description {
    font-size: 16px;
    line-height: 24px;
  }

  .logo {
    width: 140px;
    height: 138px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .sparkle {
    width: 40px;
    height: 40px;
    top: -20px;
    right: 8%;
  }
}
