/* ============================================================
   PM QUEST — Landing Page Stylesheet
   Matches app theme: Light Blue / Navy / Orange
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

:root {
  /* ── App-matched palette ── */
  --bg-page: #F0F4FF;
  --bg-alt: #E8EEFF;
  --bg-card: #FFFFFF;
  --bg-muted: #F8FAFC;
  --blue: #2D5BFF;
  --blue-dark: #1E3A8A;
  --blue-light: #4F79FF;
  --blue-subtle: rgba(45, 91, 255, 0.08);
  --orange: #FF6B35;
  --orange-light: #F7931E;
  --orange-subtle: rgba(255, 107, 53, 0.10);
  --green: #22C55E;
  --purple: #A855F7;
  --text-head: #1E3A8A;
  --text-body: #334155;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --border-hover: #CBD5E1;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--bg-page) 0%, var(--bg-alt) 100%);
  background-attachment: fixed;
  color: var(--text-body);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── DECORATIVE DOT GRID BACKGROUND ── */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(45, 91, 255, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.7;
}

/* Floating blobs */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: blobDrift 14s ease-in-out infinite alternate;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(45, 91, 255, 0.10);
  top: -150px;
  left: -100px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 107, 53, 0.08);
  bottom: 100px;
  right: -120px;
  animation-delay: -7s;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: rgba(168, 85, 247, 0.07);
  top: 40%;
  left: 50%;
  animation-delay: -4s;
}

@keyframes blobDrift {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(30px, 20px) scale(1.06);
  }
}

/* ── PARTICLES CANVAS ── */
.particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ── NAVBAR ── */
.lp-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  z-index: 900;
  display: flex;
  align-items: center;
  padding: 0 48px;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s, background 0.3s;
}

.lp-navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  image-rendering: pixelated;
}

.nav-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--blue-dark);
}

.nav-logo-text span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--blue-dark);
}

.nav-links a:hover::after {
  width: 100%;
}

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

.btn-nav-login {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-dark);
  background: transparent;
  border: 1.5px solid var(--border-hover);
  border-radius: 8px;
  padding: 8px 20px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-nav-login:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-subtle);
}

.btn-nav-cta {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  border: none;
  border-radius: 8px;
  padding: 9px 22px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.30);
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.40);
}

/* ── HERO SECTION ── */
.hero {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 80px 160px;
  gap: 64px;
}

.hero-left {
  flex: 1;
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-subtle);
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -1px;
  color: var(--blue-dark);
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--orange) 0%, #E8550A 100%);
  border: none;
  border-radius: 12px;
  padding: 15px 30px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255, 107, 53, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-dark);
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 15px 30px;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--blue);
  background: var(--blue-subtle);
  color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 4px;
}

.hero-stat-value span {
  color: var(--orange);
}

.hero-stat-label {
  font-size: 11px;
  color: var(--text-muted);
}

.hero-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── HERO RIGHT (Animation) ── */
.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-anim-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
  animation: heroFloat 3.5s ease-in-out infinite;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-anim-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 50px;
  background: radial-gradient(ellipse, rgba(45, 91, 255, 0.18) 0%, transparent 70%);
  filter: blur(10px);
  animation: glowPulse 3.5s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: translateX(-50%) scaleX(1);
  }

  50% {
    opacity: 0.9;
    transform: translateX(-50%) scaleX(1.12);
  }
}

/* Pixel corner frame */
.hero-frame {
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(45, 91, 255, 0.15);
  border-radius: 22px;
  pointer-events: none;
}

.hero-frame::before,
.hero-frame::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 3px solid var(--orange);
}

.hero-frame::before {
  top: -3px;
  left: -3px;
  border-right: none;
  border-bottom: none;
  border-radius: 4px 0 0 0;
}

.hero-frame::after {
  bottom: -3px;
  right: -3px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 4px 0;
}

#heroImg {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
  image-rendering: pixelated;
  transition: opacity 0.45s ease;
  box-shadow: var(--shadow-lg);
}

/* ── FEATURES SECTION ── */
.features {
  position: relative;
  z-index: 10;
  padding: 80px 80px 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
  background: var(--blue-subtle);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(45, 91, 255, 0.15);
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--blue-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.85;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card.card-blue {
  --gradient: linear-gradient(90deg, var(--blue), #7C9FFF);
}

.feature-card.card-orange {
  --gradient: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.feature-card.card-pink {
  --gradient: linear-gradient(90deg, #e91e8c, var(--blue-light));
}

.feature-card.card-teal {
  --gradient: linear-gradient(90deg, #00a884, var(--blue));
}

.feature-card.card-gold {
  --gradient: linear-gradient(90deg, #c49a00, var(--orange));
}

.feature-card.card-purple {
  --gradient: linear-gradient(90deg, #9333ea, #e91e8c);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  display: block;
}

.feature-icon.blue-bg {
  background: rgba(45, 91, 255, 0.10);
}

.feature-icon.orange-bg {
  background: rgba(255, 107, 53, 0.10);
}

.feature-icon.pink-bg {
  background: rgba(233, 30, 140, 0.10);
}

.feature-icon.teal-bg {
  background: rgba(0, 168, 132, 0.10);
}

.feature-icon.gold-bg {
  background: rgba(196, 154, 0, 0.12);
}

.feature-icon.purple-bg {
  background: rgba(147, 51, 234, 0.10);
}

.feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.4;
}

.feature-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}

/* ── STATS SECTION ── */
.stats-section {
  position: relative;
  z-index: 10;
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-pill {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 20px 40px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.stat-pill:hover {
  border-color: rgba(255, 107, 53, 0.30);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-pill-value {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--blue-dark);
  display: block;
  margin-bottom: 6px;
}

.stat-pill-value em {
  color: var(--orange);
  font-style: normal;
}

.stat-pill-label {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── GROUND / PET LAYER ── */
.ground-layer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  z-index: 500;
  pointer-events: none;
}

.ground-track {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: url('/assets/pm/images/floor4_seamless_v2.png');
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: auto 100%;
  image-rendering: pixelated;
}



.pet {
  position: absolute;
  bottom: 30px;
  /* floor4 surface at 63.8% from bottom of 200px layer (63.8% × 200 ≈ 128px) */
  pointer-events: all;
  cursor: pointer;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.pet img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  image-rendering: pixelated;
  display: block;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.12));
}

.pet.flipped img {
  transform: scaleX(-1);
}

.pet-label {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue-dark);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  box-shadow: var(--shadow-sm);
}

.pet:hover .pet-label {
  opacity: 1;
}

.pet.bounce img {
  animation: petBounce 0.4s ease-out;
}

@keyframes petBounce {
  0% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-18px);
  }

  60% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

.pet.flipped.bounce img {
  animation: petBounceFlipped 0.4s ease-out;
}

@keyframes petBounceFlipped {
  0% {
    transform: scaleX(-1) translateY(0);
  }

  30% {
    transform: scaleX(-1) translateY(-18px);
  }

  60% {
    transform: scaleX(-1) translateY(-5px);
  }

  100% {
    transform: scaleX(-1) translateY(0);
  }
}

/* ── FOOTER ── */
.footer-spacer {
  height: 250px;
  background-image: url('/assets/pm/images/wall.png');
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: auto 250px;
  image-rendering: pixelated;
}

.footer {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.60);
}

.footer a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  color: var(--blue-dark);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero {
    padding: 100px 40px 180px;
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-right {
    max-width: 480px;
    width: 100%;
  }

  .features {
    padding: 60px 40px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stats-section {
    padding: 40px;
  }

  .nav-links {
    display: none;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0px;
    text-decoration: none;
  }
  .nav-logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    image-rendering: pixelated;
  }
  .nav-logo-text {
    font-size: 14px;
  }
}

/* ─────────────────────────────
   Mobile ≤640px
───────────────────────────── */
@media (max-width: 640px) {
  .hero {
    padding: 90px 20px 200px; /* extra bottom pad agar tidak tertutup pet layer */
  }

  .hero-title {
    font-size: clamp(24px, 6vw, 32px);
  }

  .features {
    padding: 40px 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stats-section {
    padding: 30px 20px;
    gap: 12px;
  }

  .stat-pill {
    padding: 14px 22px;
  }

  .stat-pill-value {
    font-size: 15px;
  }

  .lp-navbar {
    padding: 0px;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0px;
    text-decoration: none;
  }
  .nav-logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    image-rendering: pixelated;
  }
  .nav-logo-text {
    font-size: 14px;
  }

  /* ── Ground layer: 160px total ── */
  .ground-layer {
    height: 160px;
  }

  .ground-track {
    background-size: auto 160px;
    background-position: bottom;
  }

  /* floor texture surface ≈ 63.8% × 160px ≈ 102px */
  .pet {
    width: 60px;
    height: 60px;
    bottom: 30px !important;
  }

  .pet img {
    width: 60px;
    height: 60px;
  }

  /* footer spacer = ground-layer height so wall + floor align */
  .footer-spacer {
    height: 160px;
    background-size: auto 160px;
  }
}

/* ─────────────────────────────
   Mobile ≤480px
───────────────────────────── */
@media (max-width: 480px) {
  .lp-navbar {
    padding: 0px;
    height: 56px;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0px;
    text-decoration: none;
  }
  .nav-logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    image-rendering: pixelated;
  }
  .nav-logo-text {
    font-size: 14px;
  }

  .hero {
    padding: 80px 16px 180px;
    gap: 28px;
  }

  .hero-title {
    font-size: clamp(22px, 7vw, 28px);
    line-height: 1.25;
  }

  .hero-desc {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .features {
    padding: 32px 16px;
  }

  .features-grid {
    gap: 12px;
  }

  .feature-card {
    padding: 20px 16px;
  }

  .stats-section {
    padding: 24px 16px;
    gap: 10px;
    flex-direction: column;
    align-items: center;
  }

  .stat-pill {
    width: 100%;
    max-width: 280px;
  }

  /* ── Ground layer: 130px total ── */
  .ground-layer {
    height: 130px;
  }

  .ground-track {
    background-size: auto 130px;
    background-position: bottom;
  }

  /* floor texture surface ≈ 63.8% × 130px ≈ 83px */
  .pet {
    width: 52px;
    height: 52px;
    bottom: 82px;
  }

  .pet img {
    width: 52px;
    height: 52px;
  }

  /* footer spacer sesuai ground-layer */
  .footer-spacer {
    height: 130px;
    background-size: auto 130px;
  }
}

/* ─────────────────────────────
   Mobile ≤360px (very small)
───────────────────────────── */
@media (max-width: 360px) {
  .lp-navbar {
    padding: 0px;
    height: 52px;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0px;
    text-decoration: none;
  }
  .nav-logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    image-rendering: pixelated;
  }
  .nav-logo-text {
    font-size: 14px;
  }

  .hero {
    padding: 70px 12px 170px;
  }

  .hero-title {
    font-size: 20px;
  }

  .hero-desc {
    font-size: 13px;
  }

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

  /* ── Ground layer: 110px total ── */
  .ground-layer {
    height: 110px;
  }

  .ground-track {
    background-size: auto 110px;
    background-position: bottom;
  }

  /* floor texture surface ≈ 63.8% × 110px ≈ 70px */
  .pet {
    width: 44px;
    height: 44px;
    bottom: 68px;
  }

  .pet img {
    width: 44px;
    height: 44px;
  }

  .footer-spacer {
    height: 110px;
    background-size: auto 110px;
  }
}