/* Stickify: Sticker Maker — marketing site
   V1 "BUBBLEGUM POP": ultra-playful candy aesthetic.
   Bubblegum pink (#ff4d97) + mint green (#3ddc97) on cream/pink.
   Chunky rounded shapes, thick soft shadows, bouncy hovers. */

:root {
  --cream: #fff4ea;
  --cream-2: #ffe8f1;
  --bg: #fff4ea;
  --bg-card: #ffffff;
  --bg-card-soft: #fff7fb;

  --pink: #ff4d97;          /* bubblegum pink */
  --pink-deep: #e02f7d;     /* deep pink (text/links) */
  --pink-soft: #ffd2e6;     /* pale pink */
  --mint: #3ddc97;          /* mint green */
  --mint-deep: #16b87a;     /* deep mint */
  --mint-soft: #c9f6e3;     /* pale mint */
  --yellow: #ffd166;

  --text: #34203a;
  --text-soft: #6c4f72;
  --text-mute: #a386ab;

  --border: #ffd2e6;
  --border-strong: #ffb2d3;
  --ink: #34203a;           /* dark candy outline */

  /* thick soft candy shadows */
  --shadow-sm: 0 6px 0 rgba(255, 77, 151, 0.16);
  --shadow-md: 0 14px 34px rgba(255, 77, 151, 0.22);
  --shadow-lg: 0 30px 60px rgba(255, 77, 151, 0.30);
  --shadow-chunk: 0 10px 0 rgba(52, 32, 58, 0.10);
  --pink-glow: rgba(255, 77, 151, 0.42);

  --radius-card: 32px;
  --radius-hero: 40px;
  --radius-badge: 22px;
  --radius-pill: 999px;

  --maxw: 1180px;
  --font: "Baloo 2", "Quicksand", "Nunito", system-ui, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(900px 520px at 90% -6%, var(--cream-2), transparent 62%),
    radial-gradient(760px 520px at 2% 4%, var(--mint-soft), transparent 55%),
    radial-gradient(680px 480px at 50% 120%, var(--pink-soft), transparent 60%);
}

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(170%) blur(14px);
  -webkit-backdrop-filter: saturate(170%) blur(14px);
  background: rgba(255, 244, 234, 0.82);
  border-bottom: 3px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
}
.brand span b { color: var(--pink); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a.link {
  color: var(--text-soft);
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.18s, transform 0.18s;
}
.nav-links a.link:hover { color: var(--pink); transform: translateY(-1px); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  padding: 13px 26px;
  cursor: pointer;
  border: none;
  transition: transform 0.16s cubic-bezier(.34,1.56,.64,1), box-shadow 0.16s, filter 0.16s;
}
.btn-primary {
  background: var(--pink);
  color: #fff;
  border: 3px solid #fff;
  box-shadow: 0 10px 0 var(--pink-deep), 0 18px 26px var(--pink-glow);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.03); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 5px 0 var(--pink-deep), 0 10px 18px var(--pink-glow); }
.btn-ghost {
  background: var(--bg-card);
  color: var(--pink-deep);
  border: 3px solid var(--border-strong);
  box-shadow: var(--shadow-chunk);
}
.btn-ghost:hover { transform: translateY(-3px) scale(1.03); }

/* ---------- GOOGLE PLAY BADGE ---------- */
.googleplay-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-badge);
  padding: 13px 24px 13px 20px;
  border: 3px solid #fff;
  box-shadow: 0 10px 0 rgba(52,32,58,0.30), 0 18px 30px rgba(52,32,58,0.28);
  transition: transform 0.16s cubic-bezier(.34,1.56,.64,1), box-shadow 0.16s;
}
.googleplay-badge:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 13px 0 rgba(52,32,58,0.30), 0 22px 36px rgba(52,32,58,0.30);
}
.googleplay-badge svg { width: 28px; height: 28px; flex: none; }
.googleplay-badge .gp-text { display: flex; flex-direction: column; line-height: 1.1; }
.googleplay-badge .gp-small {
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}
.googleplay-badge .gp-big { font-size: 1.3rem; font-weight: 700; letter-spacing: 0.01em; }

/* ---------- HERO ---------- */
.hero { padding: 70px 0 120px; position: relative; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 3px solid var(--mint);
  color: var(--mint-deep);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 900;
  margin-bottom: 20px;
}
.hero h1 .grad {
  position: relative;
  color: var(--pink);
  -webkit-text-stroke: 1px rgba(224,47,125,0.18);
}
.hero p.lead {
  font-size: 1.2rem;
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 32px;
  font-weight: 500;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 700;
}
.trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 3px var(--mint-soft); }

/* confetti floating in hero */
.confetti {
  position: absolute;
  z-index: 1;
  font-size: 2.6rem;
  filter: drop-shadow(0 8px 12px rgba(255,77,151,0.28));
  animation: floaty 5s ease-in-out infinite;
  pointer-events: none;
}
.confetti.c1 { top: 12%; left: 4%; font-size: 3rem; }
.confetti.c2 { top: 22%; right: 6%; animation-delay: 1s; }
.confetti.c3 { bottom: 16%; left: 8%; animation-delay: 2s; font-size: 3.2rem; }
.confetti.c4 { bottom: 22%; right: 4%; animation-delay: 0.6s; }

/* hero phones */
.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}
.hero-art .blob {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--mint) 120%);
  opacity: 0.35;
  z-index: 0;
  animation: morph 8s ease-in-out infinite;
}
@keyframes morph {
  0%, 100% { border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; }
  50% { border-radius: 58% 42% 44% 56% / 44% 58% 42% 56%; }
}
.phone {
  position: relative;
  z-index: 1;
  width: 240px;
  border-radius: 34px;
  box-shadow: var(--shadow-lg);
  border: 5px solid #fff;
}
.phone.back {
  transform: rotate(-9deg) translateX(36px) translateY(14px);
  width: 214px;
  opacity: 0.98;
}
.phone.front {
  transform: rotate(6deg) translateX(-34px);
  z-index: 2;
}
.sticker-deco {
  position: absolute;
  font-size: 2.6rem;
  z-index: 3;
  filter: drop-shadow(0 8px 12px rgba(255,77,151,0.34));
  animation: floaty 4s ease-in-out infinite;
}
.sticker-deco.s1 { top: 4%; right: 12%; }
.sticker-deco.s2 { bottom: 8%; left: 4%; animation-delay: 1.2s; }
.sticker-deco.s3 { top: 44%; right: -2%; animation-delay: 2.1s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-14px) rotate(7deg); }
}

/* wavy section divider under hero */
.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  line-height: 0;
  z-index: 1;
}
.wave-divider svg { width: 100%; height: 110px; display: block; }
.wave-divider path { fill: var(--bg-card); }

/* ---------- SECTION HEADINGS ---------- */
.section { padding: 84px 0; position: relative; }
.section-cream { background: var(--bg-card); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.section-head .kicker {
  display: inline-block;
  color: var(--pink-deep);
  background: var(--pink-soft);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.025em;
  font-weight: 900;
  margin: 4px 0 12px;
}
.section-head p { color: var(--text-soft); font-size: 1.1rem; font-weight: 500; }

/* ---------- FEATURES ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature-card {
  background: var(--bg-card);
  border: 3px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-chunk);
  transition: transform 0.2s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s, border-color 0.2s;
}
.feature-card:nth-child(3n+2) { border-color: var(--mint-soft); }
.feature-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 18px 0 rgba(255,77,151,0.14), var(--shadow-md);
  border-color: var(--border-strong);
}
.feature-card:nth-child(3n+2):hover { border-color: var(--mint); box-shadow: 0 18px 0 rgba(61,220,151,0.16), var(--shadow-md); }
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--pink-soft);
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
}
.feature-card:nth-child(3n+2) .feature-icon { background: var(--mint-soft); box-shadow: 0 6px 0 rgba(61,220,151,0.18); }
.feature-icon svg { width: 30px; height: 30px; }
.feature-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.01em; }
.feature-card p { color: var(--text-soft); font-size: 1rem; font-weight: 500; }

/* ---------- SCREENSHOTS ---------- */
.screens-scroller {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 4px 30px;
  scrollbar-width: thin;
  scrollbar-color: var(--pink) transparent;
}
.screens-scroller::-webkit-scrollbar { height: 10px; }
.screens-scroller::-webkit-scrollbar-thumb {
  background: var(--pink);
  border-radius: 999px;
}
.screens-scroller::-webkit-scrollbar-track { background: var(--pink-soft); border-radius: 999px; }
.screen-tile {
  flex: 0 0 auto;
  width: 280px;
  scroll-snap-align: center;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 5px solid #fff;
  background: var(--bg-card);
  transition: transform 0.2s cubic-bezier(.34,1.56,.64,1);
}
.screen-tile:hover { transform: translateY(-8px) rotate(-1.5deg); }
.screen-tile:nth-child(even):hover { transform: translateY(-8px) rotate(1.5deg); }
.screen-tile img { width: 100%; display: block; }

/* ---------- PRIVACY CALLOUT ---------- */
.privacy-callout {
  background: linear-gradient(135deg, var(--mint-soft), var(--pink-soft));
  border: 4px solid #fff;
  border-radius: var(--radius-hero);
  padding: 54px 50px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 44px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.privacy-callout .kicker {
  display: inline-block;
  color: var(--mint-deep);
  background: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.privacy-callout h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  letter-spacing: -0.025em;
  font-weight: 900;
  margin-bottom: 14px;
}
.privacy-callout p { color: var(--text-soft); margin-bottom: 12px; font-weight: 500; }
.privacy-callout a.inline { color: var(--pink-deep); font-weight: 800; text-decoration: underline; text-decoration-thickness: 2px; }
.privacy-list { list-style: none; display: grid; gap: 14px; }
.privacy-list li {
  display: flex; gap: 14px; align-items: center; font-size: 1rem; font-weight: 600;
  background: #fff;
  border: 3px solid #fff;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}
.privacy-list svg {
  flex: none; width: 24px; height: 24px;
  color: #fff; background: var(--mint); border-radius: 50%;
  padding: 4px; box-sizing: border-box;
}

/* ---------- DOWNLOAD CTA ---------- */
.download-card {
  background: linear-gradient(135deg, var(--pink) 0%, var(--mint) 130%);
  border: 5px solid #fff;
  border-radius: var(--radius-hero);
  padding: 66px 40px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.download-card::before,
.download-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.download-card::before { width: 260px; height: 260px; top: -100px; right: -70px; }
.download-card::after { width: 200px; height: 200px; bottom: -80px; left: -50px; }
.download-card > * { position: relative; z-index: 1; }
.download-card .dl-deco {
  position: absolute;
  z-index: 1;
  font-size: 2.6rem;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.18));
  animation: floaty 5s ease-in-out infinite;
}
.download-card .dl-deco.d1 { top: 16%; left: 9%; }
.download-card .dl-deco.d2 { top: 22%; right: 11%; animation-delay: 1.1s; }
.download-card .dl-deco.d3 { bottom: 16%; left: 14%; animation-delay: 2s; }
.download-card img.dl-icon {
  width: 96px; height: 96px; border-radius: 26px;
  border: 5px solid #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,0.24);
  margin-bottom: 22px;
}
.download-card h2 {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.download-card p { font-size: 1.15rem; opacity: 0.96; max-width: 540px; margin: 0 auto 30px; font-weight: 500; }
.download-card .googleplay-badge { background: var(--ink); }

/* ---------- FOOTER ---------- */
.footer {
  border-top: 4px solid var(--border);
  margin-top: 30px;
  padding: 60px 0 36px;
  background: var(--cream-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 34px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.05rem; margin-bottom: 14px; }
.footer-brand img { width: 40px; height: 40px; border-radius: 12px; border: 3px solid #fff; box-shadow: var(--shadow-sm); }
.footer p.blurb { color: var(--text-soft); font-size: 0.98rem; max-width: 280px; font-weight: 500; }
.footer h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink-deep);
  margin-bottom: 14px;
  font-weight: 800;
}
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a { color: var(--text-soft); font-size: 0.98rem; font-weight: 600; transition: color 0.16s, transform 0.16s; display: inline-block; }
.footer ul a:hover { color: var(--pink); transform: translateX(3px); }
.footer-bottom {
  border-top: 3px solid var(--border);
  margin-top: 42px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-mute);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ---------- LEGAL / CONTENT PAGES ---------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px 84px;
}
.legal .back-link {
  color: var(--pink-deep);
  background: var(--pink-soft);
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.16s;
}
.legal .back-link:hover { transform: translateY(-2px); }
.legal h1 {
  font-size: clamp(2.2rem, 4.4vw, 3rem);
  letter-spacing: -0.03em;
  font-weight: 900;
  margin-bottom: 8px;
}
.legal .dates { color: var(--text-mute); font-size: 0.95rem; margin-bottom: 34px; font-weight: 600; }
.legal .summary-box {
  background: linear-gradient(135deg, var(--mint-soft), var(--pink-soft));
  border: 4px solid #fff;
  border-radius: var(--radius-card);
  padding: 28px 30px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-md);
}
.legal .summary-box h3 { font-size: 1.15rem; margin-bottom: 14px; color: var(--pink-deep); font-weight: 800; }
.legal .summary-box ul { padding-left: 22px; display: grid; gap: 10px; }
.legal .summary-box li { color: var(--text-soft); font-weight: 500; }
.legal h2 {
  font-size: 1.55rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  margin: 38px 0 12px;
  padding-top: 8px;
  color: var(--text);
}
.legal h3 { font-size: 1.18rem; font-weight: 800; margin: 24px 0 8px; color: var(--text); }
.legal p, .legal li { color: var(--text-soft); margin-bottom: 12px; font-weight: 500; }
.legal ul, .legal ol { padding-left: 24px; margin-bottom: 14px; }
.legal li { margin-bottom: 7px; }
.legal a.inline { color: var(--pink-deep); font-weight: 800; text-decoration: underline; text-decoration-thickness: 2px; }
.legal strong { color: var(--text); font-weight: 800; }
.legal em { color: var(--pink-deep); font-style: italic; }
.legal .sdk-card {
  background: var(--bg-card);
  border: 3px solid var(--border);
  border-radius: 24px;
  padding: 22px 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-chunk);
}
.legal .sdk-card h3 { margin-top: 0; color: var(--pink-deep); }
.legal .sdk-card p { margin-bottom: 6px; font-size: 0.97rem; }
.legal table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 20px;
  font-size: 0.94rem;
  border: 3px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}
.legal th, .legal td {
  border-bottom: 2px solid var(--border);
  padding: 12px 14px;
  text-align: left;
}
.legal tr:last-child td { border-bottom: none; }
.legal th { background: var(--pink-soft); color: var(--pink-deep); font-weight: 800; }
.legal td { color: var(--text-soft); font-weight: 500; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--bg-card);
  border: 3px solid var(--border);
  border-radius: 24px;
  padding: 24px 26px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-chunk);
  transition: transform 0.18s, border-color 0.18s;
}
.faq-item:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.faq-item h3 { font-size: 1.18rem; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.faq-item p { color: var(--text-soft); margin-bottom: 0; font-weight: 500; }
.contact-card {
  background: linear-gradient(135deg, var(--pink) 0%, var(--mint) 130%);
  color: #fff;
  border: 5px solid #fff;
  border-radius: var(--radius-card);
  padding: 40px 32px;
  text-align: center;
  margin-top: 36px;
  box-shadow: var(--shadow-lg);
}
.contact-card h2 { color: #fff; margin: 0 0 10px; font-weight: 900; font-size: 1.8rem; }
.contact-card p { color: rgba(255,255,255,0.95); margin-bottom: 20px; font-weight: 500; }
.contact-card a.email-btn {
  display: inline-block;
  background: #fff;
  color: var(--pink-deep);
  font-weight: 900;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: 3px solid #fff;
  box-shadow: 0 10px 0 rgba(52,32,58,0.18);
  transition: transform 0.16s cubic-bezier(.34,1.56,.64,1);
}
.contact-card a.email-btn:hover { transform: translateY(-3px) scale(1.04); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-cta, .trust-row { justify-content: center; }
  .hero-art { min-height: 460px; margin-top: 10px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .privacy-callout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links a.link { display: none; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .phone { width: 200px; }
  .phone.back { width: 178px; }
  .screen-tile { width: 230px; }
  .section { padding: 62px 0; }
  .hero { padding: 44px 0 90px; }
  .privacy-callout { padding: 36px 26px; }
  .download-card { padding: 48px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .confetti { display: none; }
}
