/* ============================================
   BUDGIE BOUNCE — Paw Theme
   ============================================ */

:root {
  --cream: #fff6e9;
  --peach: #ffe6cf;
  --pink: #ffd6e0;
  --pink-deep: #ff7a8a;
  --mint: #c7f0d8;
  --sky: #cfe9ff;
  --lavender: #e2d5ff;
  --gold: #ffd86a;
  --orange: #ff9e10;
  --deep-orange: #c65109;
  --ink: #2a1f4a;
  --navy: #3b2e6e;
  --slate: #6a6396;

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;

  --shadow-card: 0 14px 30px rgba(58, 38, 96, 0.10), 0 4px 10px rgba(58, 38, 96, 0.06);
  --shadow-lift: 0 22px 50px rgba(58, 38, 96, 0.18);

  /* Cute-paws.png is 1254x1254, top row = pillars, 4 cols.
     Each pillar cell ≈ 313 wide × 627 tall. */
  --cute-sheet: url('assets/paws/cute-paws.png');
  /* Cat-paws.png is 1086x1448, top row = pillars, 3 cols.
     Each pillar cell ≈ 362 wide × 724 tall. */
  --cat-sheet: url('assets/paws/cat-paws.png');
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 600;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 80% 0%, rgba(255, 214, 224, 0.6), transparent 50%),
    radial-gradient(ellipse at 10% 30%, rgba(199, 240, 216, 0.45), transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(226, 213, 255, 0.5), transparent 50%),
    linear-gradient(180deg, #fff6e9 0%, #fff1f4 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}

/* Global paw print pattern — covers the whole page, behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' width='120' height='120'><g fill='%23ff7a8a' opacity='0.14'><circle cx='28' cy='38' r='10'/><ellipse cx='14' cy='24' rx='5' ry='6'/><ellipse cx='42' cy='24' rx='5' ry='6'/><ellipse cx='20' cy='12' rx='4' ry='5'/><ellipse cx='36' cy='12' rx='4' ry='5'/><circle cx='88' cy='90' r='10' transform='rotate(28 88 90)'/><ellipse cx='74' cy='78' rx='5' ry='6' transform='rotate(28 74 78)'/><ellipse cx='102' cy='78' rx='5' ry='6' transform='rotate(28 102 78)'/><ellipse cx='80' cy='66' rx='4' ry='5' transform='rotate(28 80 66)'/><ellipse cx='96' cy='66' rx='4' ry='5' transform='rotate(28 96 66)'/></g></svg>");
  background-size: 200px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.section-title {
  font-family: "DynaPuff", "Nunito", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.4rem);
  text-align: center;
  margin: 0 0 12px;
  color: var(--ink);
  letter-spacing: -0.5px;
  line-height: 1.05;
}
.section-title em {
  font-style: normal;
  color: var(--pink-deep);
  background: linear-gradient(180deg, transparent 60%, rgba(255, 122, 138, 0.22) 60%);
  padding: 0 4px;
}
.section-sub {
  text-align: center;
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto 56px;
  padding: 0 20px;
  font-weight: 600;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  background: rgba(255, 246, 233, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(58, 38, 96, 0.08);
  transition: padding 0.25s ease, background 0.25s ease;
}
.nav.scrolled { padding: 8px 28px; background: rgba(255, 246, 233, 0.95); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "DynaPuff", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
}
.nav-logo img { width: 40px; height: 40px; }
.nav-logo .nav-appicon {
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(58, 38, 96, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 800;
  font-size: 0.95rem;
}
.nav-links a { color: var(--navy); transition: color 0.2s ease; }
.nav-links a:hover { color: var(--pink-deep); }
.nav-cta {
  background: linear-gradient(180deg, var(--pink-deep), #d94060);
  color: white !important;
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: 0 5px 0 rgba(180, 40, 70, 0.35), 0 12px 22px rgba(255, 122, 138, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 rgba(180, 40, 70, 0.35), 0 14px 24px rgba(255, 122, 138, 0.5);
  color: white !important;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 2px solid rgba(58, 38, 96, 0.12);
  background: white;
  color: var(--navy);
  font-family: inherit;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.lang-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--pink-deep);
  background: #fff8fa;
}
.lang-toggle .lang-flag {
  font-size: 1.05rem;
  line-height: 1;
}
.lang-toggle .lang-code {
  letter-spacing: 0.5px;
}

@media (max-width: 720px) {
  .nav { padding: 10px 16px; }
  .nav-links { gap: 12px; font-size: 0.85rem; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ============================================
   PAW PILLAR SPRITES
   Show one paw from the sprite sheet using
   background-position + background-size.
   Sheet (cute-paws.png) is 1254×1254 with 4 cols
   in top row → 4 columns mean background-size: 400% (width).
   Each column starts at 0%, 33.33%, 66.66%, 100%.
   Height: 200% to show only the top row.
   ============================================ */

.paw-pillar-img,
.paw-thumb {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 400% 200%;
}

/* Cute-paws.png pillars (top row, 4 columns) */
.paw-variant-pink   { background-image: var(--cute-sheet); background-position: 0% 0%; }
.paw-variant-gray   { background-image: var(--cute-sheet); background-position: 33.333% 0%; }
.paw-variant-purple { background-image: var(--cute-sheet); background-position: 66.666% 0%; }
.paw-variant-beige  { background-image: var(--cute-sheet); background-position: 100% 0%; }

/* Cat-paws.png pillars (top row, 3 columns) — needs 300% × 200% */
.paw-variant-cat-gray,
.paw-variant-cat-tabby,
.paw-variant-cat-brown {
  background-image: var(--cat-sheet);
  background-size: 300% 200%;
}
.paw-variant-cat-gray  { background-position: 0% 0%; }
.paw-variant-cat-tabby { background-position: 50% 0%; }
.paw-variant-cat-brown { background-position: 100% 0%; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 100px 20px 80px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Walking paw trail — sequential footprints across the hero */
.paw-trail {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.trail-paw {
  position: absolute;
  width: 56px;
  height: 56px;
  left: var(--x);
  top: var(--y);
  fill: var(--pink-deep);
  opacity: 0;
  transform: translate(-50%, -50%) rotate(var(--rot, 0deg));
  transform-origin: center;
  filter: drop-shadow(0 4px 6px rgba(58, 38, 96, 0.15));
  animation: pawStep 6s ease-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes pawStep {
  0%   { opacity: 0; scale: 0.3; }
  6%   { opacity: 0.55; scale: 1.18; }
  10%  { opacity: 0.4; scale: 1; }
  72%  { opacity: 0.4; scale: 1; }
  88%  { opacity: 0; scale: 0.92; }
  100% { opacity: 0; scale: 0.85; }
}

@media (max-width: 820px) {
  .trail-paw { width: 42px; height: 42px; }
}
@media (max-width: 520px) {
  .trail-paw { width: 32px; height: 32px; }
}

/* Hero bird flying in the middle */
.hero-bird {
  position: absolute;
  left: 50%;
  top: 56%;
  width: 220px;
  z-index: 4;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: birdBounce 1.6s ease-in-out infinite;
}
.hero-bird img {
  width: 100%;
  filter:
    drop-shadow(0 18px 16px rgba(58, 38, 96, 0.28))
    drop-shadow(0 0 28px rgba(255, 158, 16, 0.35));
}
@keyframes birdBounce {
  0%, 100% { transform: translate(-50%, -50%) rotate(-4deg); }
  50% { transform: translate(-50%, calc(-50% - 22px)) rotate(6deg); }
}

/* Floating mini birds */
.float-bird {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 10px 12px rgba(58, 38, 96, 0.22));
  animation: floatBird 5s ease-in-out infinite;
}
.fb-1 { left: 12%; top: 22%; width: 90px; animation-delay: -1s; transform: rotate(-10deg); }
.fb-2 { right: 14%; bottom: 18%; width: 78px; animation-delay: -2.4s; transform: rotate(8deg); }

@keyframes floatBird {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

@media (max-width: 720px) {
  .hero-bird { width: 150px; top: 58%; }
  .fb-1, .fb-2 { display: none; }
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 720px;
  padding: 0 16px;
}

.badge-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.badge {
  background: white;
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
  box-shadow: 0 4px 0 rgba(58, 38, 96, 0.1), 0 8px 18px rgba(58, 38, 96, 0.08);
  border: 1px solid rgba(58, 38, 96, 0.08);
}

.logo {
  font-family: "DynaPuff", "Nunito", sans-serif;
  font-weight: 700;
  line-height: 0.88;
  margin: 0 0 24px;
  filter:
    drop-shadow(0 6px 0 rgba(58, 38, 96, 0.9))
    drop-shadow(0 16px 18px rgba(58, 38, 96, 0.35));
  animation: logoPop 800ms cubic-bezier(0.2, 0.9, 0.2, 1.25) both;
}
.logo span {
  display: block;
  color: white;
  font-size: clamp(3.2rem, 10vw, 5.6rem);
  -webkit-text-stroke: 4px var(--ink);
  text-shadow:
    0 2px 0 var(--pink-deep),
    0 5px 0 var(--pink-deep),
    0 8px 0 #c43b58;
  letter-spacing: -1px;
}
.logo span:last-child {
  font-size: clamp(3.4rem, 11vw, 6rem);
  color: var(--gold);
  -webkit-text-stroke: 4px var(--ink);
  text-shadow:
    0 2px 0 var(--orange),
    0 5px 0 var(--orange),
    0 8px 0 var(--deep-orange);
}
@keyframes logoPop {
  0% { transform: translateY(-20px) scale(0.85); opacity: 0; }
  60% { transform: translateY(4px) scale(1.04); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

.tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 32px;
  line-height: 1.45;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.05rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(180deg, var(--pink-deep), #d94060);
  color: white;
  box-shadow: 0 8px 0 rgba(180, 40, 70, 0.4), 0 18px 28px rgba(255, 122, 138, 0.5);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 11px 0 rgba(180, 40, 70, 0.4), 0 22px 34px rgba(255, 122, 138, 0.6); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 4px 0 rgba(180, 40, 70, 0.4), 0 8px 14px rgba(255, 122, 138, 0.5); }
.btn-ghost {
  background: white;
  color: var(--ink);
  box-shadow: 0 6px 0 rgba(58, 38, 96, 0.15), 0 14px 22px rgba(58, 38, 96, 0.1);
  border: 2px solid rgba(58, 38, 96, 0.08);
}
.btn-ghost:hover { transform: translateY(-3px); }

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--navy);
  border-radius: 13px;
  z-index: 5;
  opacity: 0.6;
}
.scroll-hint span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--navy);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollHint 1.6s ease-in-out infinite;
}

/* ============================================
   HOW TO PLAY
   ============================================ */
.play-section {
  padding: 100px 20px;
  position: relative;
}

.steps {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.step {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 2px solid rgba(58, 38, 96, 0.06);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

.step-num {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--pink-deep), #d94060);
  color: white;
  font-family: "DynaPuff", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 0 rgba(180, 40, 70, 0.4), 0 10px 18px rgba(255, 122, 138, 0.4);
}

.step-icon {
  width: 88px;
  height: 88px;
  margin: 14px auto 18px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--peach), var(--pink));
  color: var(--ink);
  box-shadow: 0 8px 0 rgba(58, 38, 96, 0.08);
}
.step-icon.paw-icon {
  background: linear-gradient(135deg, var(--lavender), var(--pink));
  color: var(--pink-deep);
}

.step h3 {
  margin: 0 0 8px;
  font-family: "DynaPuff", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
}
.step p {
  margin: 0;
  color: var(--slate);
  line-height: 1.55;
}

/* ============================================
   BIRDS
   ============================================ */
.birds-section {
  padding: 100px 20px;
  position: relative;
}

.bird-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.bird-card {
  background: linear-gradient(180deg, var(--c1, white) 0%, var(--c2, white) 100%);
  border-radius: var(--radius-xl);
  padding: 24px 22px 26px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(58, 38, 96, 0.06);
}
.bird-card::before {
  content: "";
  position: absolute;
  inset: -2px -2px auto -2px;
  height: 8px;
  background: var(--accent);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.bird-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><g fill='white' opacity='0.5'><circle cx='32' cy='38' r='14'/><ellipse cx='14' cy='22' rx='6' ry='8'/><ellipse cx='50' cy='22' rx='6' ry='8'/><ellipse cx='22' cy='8' rx='5' ry='7'/><ellipse cx='42' cy='8' rx='5' ry='7'/></g></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-15deg);
  pointer-events: none;
}
.bird-card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: var(--shadow-lift);
}

.bird-portrait {
  width: 100%;
  height: 200px;
  margin: 8px auto 14px;
  display: grid;
  place-items: end center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.bird-portrait img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 14px 10px rgba(58, 38, 96, 0.22));
  transition: transform 0.4s ease;
  transform: translateY(var(--offset, 0)) scale(var(--scale, 1));
}
.bird-card:hover .bird-portrait img {
  transform: translateY(calc(var(--offset, 0px) - 6px)) scale(calc(var(--scale, 1) * 1.06)) rotate(-3deg);
}

.bird-card h3 {
  margin: 0 0 4px;
  font-family: "DynaPuff", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--ink);
  position: relative;
  z-index: 2;
}
.bird-role {
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
  position: relative;
  z-index: 2;
}
.bird-desc {
  margin: 0;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

/* ============================================
   PAWS SHOWCASE
   ============================================ */
.paws-section {
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 214, 224, 0.5), transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(226, 213, 255, 0.25) 100%);
}

.paws-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.deco-paw {
  position: absolute;
  fill: var(--pink-deep);
  opacity: 0.1;
  animation: pawSpin 18s linear infinite;
}
.d1 { width: 130px; top: 10%; left: 4%; transform: rotate(-20deg); }
.d2 { width: 90px; top: 60%; left: 8%; transform: rotate(35deg); animation-direction: reverse; }
.d3 { width: 110px; top: 18%; right: 6%; transform: rotate(15deg); }
.d4 { width: 100px; bottom: 12%; right: 10%; transform: rotate(-25deg); animation-direction: reverse; }
@keyframes pawSpin {
  to { transform: rotate(360deg); }
}

/* 3D rotating paw wheel (çarkıfelek) */
.paw-wheel {
  perspective: 1400px;
  height: 400px;
  margin: 40px auto 0;
  position: relative;
  z-index: 1;
}
.paw-wheel-stage {
  width: 200px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  transform-style: preserve-3d;
  animation: wheelSpin 28s linear infinite;
}
.paw-wheel:hover .paw-wheel-stage { animation-play-state: paused; }

.paw-wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  display: grid;
  place-items: center;
  pointer-events: none;
  z-index: 0;
}
.paw-wheel-center svg {
  width: 100%;
  height: 100%;
  fill: var(--pink-deep);
  opacity: 0.18;
  animation: centerSpin 12s linear infinite reverse;
}

.paw-slot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 280px;
  margin: -140px 0 0 -90px;
  background: white;
  border-radius: 24px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 18px 36px rgba(58, 38, 96, 0.22);
  border: 2px solid rgba(58, 38, 96, 0.06);
  transform: rotateY(calc(var(--i) * (360deg / 7))) translateZ(360px);
  backface-visibility: hidden;
}

.paw-thumb {
  width: 90px;
  height: 200px;
  filter: drop-shadow(0 10px 14px rgba(58, 38, 96, 0.18));
  transform: rotate(180deg);
}

.paw-slot span {
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: 0.3px;
}

@keyframes wheelSpin {
  to { transform: rotateY(-360deg); }
}
@keyframes centerSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 820px) {
  .paw-wheel { height: 360px; perspective: 1000px; }
  .paw-slot {
    width: 150px;
    height: 240px;
    margin: -120px 0 0 -75px;
    transform: rotateY(calc(var(--i) * (360deg / 7))) translateZ(280px);
  }
  .paw-thumb { width: 75px; height: 160px; }
}
@media (max-width: 520px) {
  .paw-wheel { height: 320px; perspective: 800px; }
  .paw-slot {
    width: 130px;
    height: 210px;
    margin: -105px 0 0 -65px;
    transform: rotateY(calc(var(--i) * (360deg / 7))) translateZ(220px);
  }
  .paw-thumb { width: 65px; height: 140px; }
  .paw-slot span { font-size: 0.9rem; }
}

.paws-note {
  text-align: center;
  margin: 48px auto 0;
  color: var(--slate);
  font-size: 1rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ============================================
   SCREENSHOTS
   ============================================ */
.screenshots-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, rgba(207, 233, 255, 0.35) 0%, rgba(226, 213, 255, 0.25) 100%);
}

.screenshots-row {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 24px 4vw 50px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.screenshots-row::-webkit-scrollbar { height: 8px; }
.screenshots-row::-webkit-scrollbar-thumb { background: rgba(58, 38, 96, 0.2); border-radius: 4px; }

.phone {
  flex: 0 0 240px;
  aspect-ratio: 1242 / 2688;
  background: var(--ink);
  border-radius: 32px;
  padding: 8px;
  scroll-snap-align: center;
  box-shadow: 0 24px 50px rgba(58, 38, 96, 0.28);
  transition: transform 0.3s ease;
  border: 2px solid var(--ink);
}
.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  cursor: pointer;
}
.phone:hover { transform: translateY(-8px) scale(1.02); }

/* ============================================
   DOWNLOAD
   ============================================ */
.download {
  padding: 100px 20px;
  display: grid;
  place-items: center;
}
.download-card {
  max-width: 720px;
  width: 100%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--lavender) 60%, var(--peach) 100%);
  border-radius: var(--radius-xl);
  padding: 60px 40px 56px;
  text-align: center;
  color: var(--ink);
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
  border: 3px solid white;
}
.download-paw {
  position: absolute;
  fill: white;
  opacity: 0.45;
  pointer-events: none;
}
.paw-bg-1 { width: 140px; top: -30px; left: -30px; transform: rotate(-20deg); }
.paw-bg-2 { width: 110px; bottom: -20px; right: -20px; transform: rotate(35deg); }
.paw-bg-3 { width: 80px; top: 30%; right: 8%; transform: rotate(12deg); opacity: 0.3; }

.download-card h2 {
  font-family: "DynaPuff", sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 12px;
  position: relative;
  z-index: 2;
}
.download-card > p {
  font-size: 1.05rem;
  margin: 0 0 28px;
  color: var(--navy);
  position: relative;
  z-index: 2;
}

.signup-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 24px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.signup-form input {
  flex: 1 1 240px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 2px solid white;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 600;
  outline: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: inset 0 2px 4px rgba(58, 38, 96, 0.05);
}
.signup-form input:focus { border-color: var(--pink-deep); }
.signup-form button {
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(180deg, var(--pink-deep), #d94060);
  color: white;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 0 rgba(180, 40, 70, 0.4);
  transition: transform 0.15s ease;
}
.signup-form button:hover { transform: translateY(-2px); }
.signup-form button:active { transform: translateY(2px); box-shadow: 0 3px 0 rgba(180, 40, 70, 0.4); }
.signup-msg {
  flex-basis: 100%;
  margin: 8px 0 0;
  font-weight: 800;
  color: var(--ink);
}

.launch-note {
  position: relative;
  z-index: 2;
  margin: 8px 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.8;
}

.store-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: white;
  padding: 12px 22px;
  border-radius: 14px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.store-badge:hover { transform: translateY(-2px); background: var(--navy); }
.store-badge small { display: block; font-size: 0.7rem; opacity: 0.8; }
.store-badge strong { font-size: 1.1rem; font-weight: 700; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink);
  color: #b8b0e0;
  padding: 40px 20px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 48px; height: 48px; }
.footer-brand .footer-appicon {
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.footer-brand strong {
  display: block;
  color: white;
  font-family: "DynaPuff", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}
.footer-brand small { font-size: 0.85rem; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a {
  color: #b8b0e0;
  font-size: 0.92rem;
  transition: color 0.2s ease;
  font-weight: 700;
}
.footer-links a:hover { color: var(--gold); }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28, 18, 56, 0.92);
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(420px, 90vw);
  max-height: 90vh;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: white;
  color: var(--ink);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  font-weight: 800;
}

/* ============================================
   REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   CLICK PAW EFFECT
   ============================================ */
.click-paw {
  position: absolute;
  z-index: 998;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(0deg) scale(0.4);
  animation: pawPoof 700ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
@keyframes pawPoof {
  0% { transform: translate(-50%, -50%) rotate(-25deg) scale(0.3); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translate(-50%, -150%) rotate(20deg) scale(1.2); opacity: 0; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes scrollHint {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 14px); opacity: 0; }
}

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