:root {
  --bg: #f5f8fc;
  --card: #fff;
  --line: #d7e2f0;
  --ink: #0f172a;
  --muted: #64748b;
  --blue: #2b63e6;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: linear-gradient(180deg, #f8fbff, var(--bg));
  color: var(--ink);
}
.wrap { max-width: 980px; margin: 0 auto; padding: 14px 14px 44px; }
.hero, .card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .07);
}
.hero { padding: 22px; }
h1 { margin: 8px 0 10px; font-size: clamp(1.7rem, 4.5vw, 2.7rem); }
h2 { margin: 0 0 8px; font-size: 1.18rem; }
.lead, .muted { color: var(--muted); }
.kicker { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: #3f527d; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.btn {
  display: inline-flex;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
}
.btn.alt { background: #111827; }
.card { padding: 16px; margin-top: 14px; }
.hero-example {
  min-height: calc(100svh - 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 0;
  padding: 0;
}
.flyer-wrap {
  position: relative;
  width: min(92vw, 420px);
}
.phone-title {
  margin: 2px 0 10px;
  text-align: center;
  color: #304a75;
  font-weight: 700;
}
.grid2 { display: grid; gap: 14px; grid-template-columns: 1fr; }
.flyer-img {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
  border-radius: 14px;
  display: block;
}
.qr-overlay {
  position: static;
  width: 82px;
  height: 82px;
  border-radius: 10px;
  border: 1px solid #c8d6e8;
  background: #fff;
  padding: 3px;
  box-shadow: 0 8px 22px rgba(17, 24, 39, .22);
}
.qr-overlay-link {
  position: fixed;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 24;
}
.qr-img {
  width: 180px;
  height: 180px;
  border-radius: 10px;
  border: 1px solid #c8d6e8;
  background: #fff;
  padding: 8px;
}
.qr-box {
  margin-top: 12px;
  border: 1px dashed #cad8eb;
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  background: #fff;
}
.slim-bounce-btn {
  position: fixed;
  left: 12px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  transform: none;
  display: inline-flex;
  justify-content: center;
  width: min(74vw, 320px);
  max-width: min(74vw, 320px);
  margin: 0;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .55);
  color: #fff;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .45);
  box-shadow: 0 10px 28px rgba(16, 24, 39, .45);
  border: 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  z-index: 4;
}
.delayed-hidden {
  opacity: 0;
  pointer-events: none;
}
.delayed-visible {
  opacity: 1;
  pointer-events: auto;
  transition: opacity .35s ease;
  animation: ctaBounce 2.2s ease-in-out infinite;
}
.slim-flat-btn {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #2b63e6;
  color: #fff;
  text-decoration: none;
  font-size: .86rem;
  font-weight: 700;
  border: 0;
}
.upsell-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  margin: 12px 0;
}
.bottom-section { text-align: center; }
.cover-img {
  width: 100%;
  max-width: 290px;
  border-radius: 0;
  border: 0;
  background: transparent !important;
  margin: 0 auto 10px;
  display: block;
  box-shadow: none;
  mix-blend-mode: normal;
}
.service-desc {
  max-width: 60ch;
  margin: 0 auto 12px;
  color: #3d5170;
  line-height: 1.5;
}
.benefits {
  margin: 0 auto 10px;
  max-width: 560px;
  text-align: left;
  color: #223b5f;
  padding-left: 20px;
}
.benefits li { margin-bottom: 6px; }
.buy-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin: 8px 0;
}
.buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #2b63e6, #1e4fc9);
  color: #fff;
  padding: 11px 16px;
  font-weight: 700;
  white-space: nowrap;
  min-width: 240px;
  min-height: 104px;
  font-size: 1.2rem;
  line-height: 1.12;
  text-align: center;
}
.scroll-cta {
  display: inline-block;
  margin-top: 4px;
  text-decoration: none;
  color: #23456f;
  font-weight: 700;
}
.copyright-line {
  margin: 12px 0 0;
  color: #556b8a;
  font-size: .85rem;
}
body.locked-bottom .bottom-section {
  filter: blur(6px);
  opacity: .9;
  pointer-events: none;
  user-select: none;
  transition: filter .35s ease, opacity .35s ease;
}
.social-media {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.follow-label {
  margin: 0 6px 0 0;
  color: #334e77;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}
.social-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.tiny { font-size: .8rem; color: #5a6e89; word-break: break-all; }
ul { margin: 10px 0 0; padding-left: 20px; }
li + li { margin-top: 6px; }
@keyframes ctaBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
:root.locked-view,
:root.locked-view body {
  overflow: hidden;
}
:root.locked-view body {
  background: #0d1220;
}
:root.locked-view .wrap {
  max-width: none;
  margin: 0;
  padding: 0;
}
:root.locked-view .hero-example {
  position: fixed;
  inset: 0;
  z-index: 10;
  min-height: 100svh;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #0d1220;
  margin: 0;
  padding: 0 !important;
}
:root.locked-view .flyer-wrap {
  width: 100vw;
  height: 100dvh;
  max-width: none;
}
:root.locked-view .flyer-img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  border-radius: 0;
}
:root.locked-view .slim-bounce-btn { z-index: 24; }
:root.locked-view .qr-overlay-link { z-index: 24; }
@media (max-width: 640px) {
  .buy-row {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .qr-img {
    width: 132px;
    height: 132px;
    flex: 0 0 auto;
  }
  .buy-button {
    min-width: 188px;
    min-height: 96px;
    font-size: 1.05rem;
    padding: 10px 12px;
    flex: 0 0 auto;
  }
  .slim-bounce-btn {
    max-width: min(72vw, 300px);
    width: min(72vw, 300px);
    font-size: .82rem;
    padding: 9px 12px;
    background: rgba(0, 0, 0, .8);
    border: 1px solid rgba(255, 255, 255, .8);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .5);
  }
  .qr-overlay {
    width: 74px;
    height: 74px;
  }
  .delayed-visible {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}
@media (min-width: 860px) {
  .grid2 { grid-template-columns: 1.35fr .95fr; align-items: start; }
  .upsell-grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .cover-img { max-width: 320px; }
}
