/* Bora Pesar — landing page. Cores do app (lib/core/theme/app_colors.dart). */
:root {
  color-scheme: light;
  --bg: #f2f3f2;
  --surface: #ffffff;
  --ink: #1b1d1b;
  --muted: #50574f;
  --line: #e2e6e3;
  --green: #4cbe72;
  --green-ink: #217a43;
  --green-deep: #123d25;
  --green-soft: #e7f6ec;
  --orange: #ff9b54;
  --orange-ink: #a34c10;
  --note-yellow: #fdf1a8;
  --note-green: #dff3e5;
  --note-peach: #fde0cf;
  --radius: 22px;
  --radius-lg: 30px;
  --shadow-sm: 0 1px 2px rgba(27, 29, 27, .06), 0 4px 14px rgba(27, 29, 27, .06);
  --shadow-lg: 0 2px 6px rgba(27, 29, 27, .08), 0 30px 60px -12px rgba(27, 29, 27, .22);
  --max: 1120px;
  --gutter: 20px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 1.0625rem/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--green-ink); text-underline-offset: .18em; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid #0a6cd6;
  outline-offset: 3px;
  border-radius: 6px;
}
h1, h2, h3 { margin: 0; letter-spacing: -.025em; line-height: 1.1; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
.wrap { width: min(100% - var(--gutter) * 2, var(--max)); margin-inline: auto; }
.skip {
  position: absolute; left: 16px; top: -80px; z-index: 100;
  background: var(--surface); padding: 10px 14px; border-radius: 10px; box-shadow: var(--shadow-sm);
}
.skip:focus { top: 12px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Cabeçalho ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(242, 243, 242, .86);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(255, 255, 255, .9); }
.nav { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); text-decoration: none; font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em;
}
.brand img { width: 38px; height: 38px; border-radius: 10px; box-shadow: 0 1px 3px rgba(27, 29, 27, .15); }
.brand .pesar { color: var(--orange-ink); }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .95rem; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 20px; border-radius: 999px;
  background: var(--green-ink); color: #fff; font-weight: 700; font-size: .95rem; text-decoration: none;
  transition: background .15s, transform .15s;
}
.btn:hover { background: #1a6437; }
.btn:active { transform: scale(.98); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Selo da App Store ---------- */
.badge { display: inline-block; line-height: 0; border-radius: 10px; }
.badge img { height: 56px; width: auto; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 40px 0 24px; overflow: clip; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto 35%; height: 780px; z-index: -1;
  background: radial-gradient(closest-side, rgba(76, 190, 114, .20), rgba(76, 190, 114, 0));
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px;
  padding: 6px 12px 6px 8px; border-radius: 999px; background: var(--surface); box-shadow: var(--shadow-sm);
  color: var(--green-ink); font-size: .85rem; font-weight: 700;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }
.hero h1 { font-size: clamp(2.35rem, 5.6vw, 4rem); font-weight: 800; letter-spacing: -.035em; }
.hero h1 em { font-style: normal; color: var(--green-ink); }
.lead { margin: 20px 0 28px; max-width: 34ch; color: var(--muted); font-size: clamp(1.1rem, 1.8vw, 1.25rem); }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; }
.cta-note { color: var(--muted); font-size: .92rem; line-height: 1.4; }
.cta-note strong { color: var(--ink); }
.trust { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 26px 0 0; padding: 0; list-style: none; }
.trust li { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); font-size: .92rem; font-weight: 600; }
.trust svg { width: 18px; height: 18px; color: var(--green-ink); flex: none; }

.stage { position: relative; min-height: 600px; display: grid; place-items: center; }
.stage .phone { --w: 290px; position: relative; z-index: 2; transform: translateX(34px); }
.stage .sheet {
  position: absolute; z-index: 1; left: 0; top: 70px; width: 300px;
  transform: rotate(-6deg); border-radius: 6px; background: #fff;
  box-shadow: var(--shadow-lg);
}
.stage .sheet img { border-radius: 6px; }
.float {
  position: absolute; z-index: 3; background: var(--surface); border-radius: 18px; box-shadow: var(--shadow-lg);
  padding: 12px 14px; font-size: .86rem; line-height: 1.35;
  animation: floaty 6s ease-in-out infinite;
}
.float small { display: block; color: var(--muted); font-size: .78rem; }
.float strong { font-weight: 700; white-space: nowrap; }
.float-dose { right: -8px; top: 96px; min-width: 200px; }
.float-dose .row { display: flex; align-items: center; gap: 10px; }
.float-dose .ico { width: 32px; height: 32px; border-radius: 10px; background: var(--green-soft); display: grid; place-items: center; color: var(--green-ink); flex: none; }
.float-dose .ico svg { width: 18px; height: 18px; }
.bar { height: 6px; border-radius: 3px; background: #e5e9e6; margin-top: 10px; overflow: hidden; }
.bar span { display: block; height: 100%; width: 71%; background: var(--green); border-radius: 3px; }
.float-mood { left: 18px; bottom: 58px; animation-delay: -3s; display: flex; align-items: center; gap: 10px; }
.float-mood .ico { width: 32px; height: 32px; border-radius: 50%; background: var(--green-soft); display: grid; place-items: center; color: var(--green-ink); flex: none; }
.float-mood .ico svg { width: 20px; height: 20px; }
@keyframes floaty { 50% { transform: translateY(-8px); } }

/* ---------- Moldura do celular ---------- */
.phone {
  --w: 280px;
  width: var(--w); aspect-ratio: 393 / 852; flex: none;
  padding: calc(var(--w) * .032);
  border-radius: calc(var(--w) * .16);
  background: #1b1d1b;
  box-shadow: inset 0 0 0 2px #3a3d3a, var(--shadow-lg);
  position: relative;
}
.phone .screen { position: relative; width: 100%; height: 100%; border-radius: calc(var(--w) * .13); overflow: hidden; background: #fff; }
.phone .screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.phone .status { position: absolute; inset: 0 0 auto; width: 100%; height: auto; pointer-events: none; }

/* ---------- Faixa de destaques ---------- */
.strip { padding: 20px 0 8px; }
.strip ul {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 0 auto; padding: 0; list-style: none;
}
.strip li {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px;
  background: var(--surface); border-radius: 18px; box-shadow: var(--shadow-sm);
  font-weight: 600; line-height: 1.3; font-size: .98rem;
}
.strip li span { display: block; color: var(--muted); font-weight: 400; font-size: .86rem; }
.strip .ico { width: 40px; height: 40px; border-radius: 12px; background: var(--green-soft); color: var(--green-ink); display: grid; place-items: center; flex: none; }
.strip .ico svg { width: 22px; height: 22px; }

/* ---------- Seções ---------- */
section { scroll-margin-top: 72px; }
.section { padding: 96px 0; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.kicker { display: block; margin-bottom: 12px; color: var(--green-ink); font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.section h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); font-weight: 800; }
.section-head p { margin-top: 16px; color: var(--muted); font-size: 1.12rem; }

/* Problema: anotações soltas */
.problem-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.notes { position: relative; height: 380px; }
.note {
  position: absolute; width: 150px; padding: 18px 16px 16px;
  border-radius: 4px; box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 14px 24px -10px rgba(27, 29, 27, .3);
  font-weight: 800; font-size: 2rem; line-height: 1; letter-spacing: -.02em; color: #2a2c2a;
}
.note small { display: block; margin-top: 8px; font-size: .82rem; font-weight: 600; color: #5d625c; letter-spacing: 0; }
.note.n1 { background: var(--note-yellow); left: 4%; top: 10px; transform: rotate(-7deg); }
.note.n2 { background: var(--note-green); left: 40%; top: 70px; transform: rotate(4deg); }
.note.n3 { background: var(--note-peach); left: 10%; top: 190px; transform: rotate(3deg); font-size: 1.45rem; }
.note.n4 { background: #fff; left: 50%; top: 214px; transform: rotate(-4deg); font-size: 1.25rem; font-weight: 700; width: 170px; }
.note.n4 s { color: #8a8f89; }
.questions { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.questions li {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px 18px;
  background: var(--surface); border-radius: 16px; box-shadow: var(--shadow-sm); font-weight: 600;
}
.questions li::before {
  content: "?"; flex: none; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; background: #fff1e6; color: var(--orange-ink); font-weight: 800; font-size: .9rem;
}
.answer { margin-top: 22px; font-size: 1.15rem; font-weight: 600; }
.answer strong { color: var(--green-ink); }

/* Como funciona */
.how { background: var(--surface); border-radius: 40px; margin-inline: 12px; }
.how-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 56px; align-items: center; }
.steps { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; counter-reset: step; }
.steps li {
  counter-increment: step; position: relative; padding: 22px 22px 22px 78px;
  border-radius: var(--radius); background: var(--bg);
}
.steps li::before {
  content: counter(step); position: absolute; left: 22px; top: 22px;
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  background: var(--green-ink); color: #fff; font-weight: 800;
}
.steps h3 { font-size: 1.2rem; margin-bottom: 6px; }
.steps p { color: var(--muted); }
.video-card { position: relative; justify-self: center; width: min(100%, 320px); }
.video-card .frame {
  position: relative; aspect-ratio: 9 / 16; border-radius: 28px; overflow: hidden;
  background: #e9ece9; box-shadow: var(--shadow-lg);
}
.video-card video, .video-card .frame img { width: 100%; height: 100%; object-fit: cover; }
.video-toggle {
  position: absolute; right: 12px; bottom: 12px; width: 44px; height: 44px; border: 0; border-radius: 50%;
  background: rgba(27, 29, 27, .72); color: #fff; display: grid; place-items: center; cursor: pointer;
}
.video-toggle svg { width: 18px; height: 18px; }
.video-toggle .i-play { display: none; }
.video-toggle[aria-pressed="false"] .i-play { display: block; }
.video-toggle[aria-pressed="false"] .i-pause { display: none; }
.video-card figcaption { margin-top: 14px; text-align: center; color: var(--muted); font-size: .9rem; }

/* Recursos em destaque */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 36px 0; }
.feature + .feature { border-top: 1px solid var(--line); }
.feature:nth-child(even) .feature-media { order: 2; }
.feature-media { position: relative; display: grid; place-items: center; min-height: 560px; }
.feature-media::before {
  content: ""; position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%; z-index: 0;
  background: radial-gradient(closest-side, rgba(76, 190, 114, .22), rgba(76, 190, 114, 0));
}
.feature-media .phone { --w: 270px; z-index: 1; }
.feature-media.duo .phone { transform: translateX(-70px); }
.feature-media.duo .sheet {
  position: absolute; z-index: 2; right: 0; bottom: 30px; width: 280px; transform: rotate(4deg);
  background: #fff; border-radius: 6px; box-shadow: var(--shadow-lg);
}
.feature-copy h3 { font-size: clamp(1.6rem, 3vw, 2.15rem); font-weight: 800; }
.feature-copy > p { margin-top: 14px; color: var(--muted); font-size: 1.1rem; }
.checks { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.checks li { position: relative; padding-left: 32px; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .2em; width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 10.5l3 3 6-7' fill='none' stroke='%23217a43' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 20px no-repeat;
}

/* Grade de recursos */
.grid-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  padding: 24px; border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm);
}
.card .ico { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: var(--green-soft); color: var(--green-ink); margin-bottom: 16px; }
.card .ico svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.1rem; letter-spacing: -.01em; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: .98rem; }

/* Privacidade */
.privacy { background: var(--green-deep); color: #eaf6ee; border-radius: 40px; margin-inline: 12px; position: relative; overflow: hidden; }
.privacy::after {
  content: ""; position: absolute; right: -120px; top: -120px; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(76, 190, 114, .35), rgba(76, 190, 114, 0));
}
.privacy .kicker { color: #8fe0aa; }
.privacy h2 { color: #fff; }
.privacy .section-head p { color: #bfd9c7; }
.privacy-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.privacy-item { padding: 24px; border-radius: var(--radius); background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); }
.privacy-item h3 { color: #fff; font-size: 1.12rem; margin-bottom: 6px; letter-spacing: -.01em; display: flex; gap: 10px; align-items: center; }
.privacy-item h3 svg { width: 22px; height: 22px; color: #8fe0aa; flex: none; }
.privacy-item p { color: #c7dccd; font-size: .98rem; }
.privacy-item a { color: #a6ebbd; }

/* É / não é */
.is-isnt { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.is-isnt > div { padding: 28px; border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.is-isnt h3 { font-size: 1.25rem; margin-bottom: 14px; }
.is-isnt ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.is-isnt li { position: relative; padding-left: 30px; }
.is-isnt li::before { position: absolute; left: 0; top: 0; font-weight: 800; }
.is li::before { content: "✓"; color: var(--green-ink); }
.isnt li::before { content: "✕"; color: #9a3412; }
.is-isnt .fine { margin-top: 16px; color: var(--muted); font-size: .92rem; }

/* Dúvidas */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 10px; }
.faq details { background: var(--surface); border-radius: 18px; box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 56px 20px 22px; position: relative;
  font-weight: 700; font-size: 1.05rem; line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 12px; height: 12px; margin-top: -8px;
  border-right: 2.5px solid var(--green-ink); border-bottom: 2.5px solid var(--green-ink);
  transform: rotate(45deg); transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq details p { padding: 0 22px 20px; color: var(--muted); }
.faq details p + p { margin-top: -8px; }

/* CTA final */
.final { padding: 40px 0 96px; }
.final-card {
  position: relative; overflow: hidden; display: grid; grid-template-columns: 1.3fr .7fr; gap: 32px; align-items: center;
  padding: 56px; border-radius: 40px; background: var(--surface); box-shadow: var(--shadow-sm);
}
.final-card::before {
  content: ""; position: absolute; left: -80px; bottom: -160px; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 155, 84, .18), rgba(255, 155, 84, 0));
}
.final-card h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 800; }
.final-card p { margin: 14px 0 26px; color: var(--muted); font-size: 1.12rem; max-width: 40ch; }
.qr { justify-self: end; text-align: center; }
.qr .code { width: 168px; padding: 14px; border-radius: 20px; background: #fff; border: 1px solid var(--line); }
.qr p { margin: 10px 0 0; font-size: .86rem; color: var(--muted); max-width: 20ch; }

/* Rodapé */
.site-footer { padding: 48px 0 56px; border-top: 1px solid var(--line); color: var(--muted); font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer-grid h2 { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); margin-bottom: 12px; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.footer-grid a { color: var(--muted); text-decoration: none; }
.footer-grid a:hover { color: var(--green-ink); text-decoration: underline; }
.footer-brand p { margin-top: 12px; max-width: 34ch; }
.delta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 8px 14px; border-radius: 999px;
  background: var(--surface); box-shadow: var(--shadow-sm); color: var(--ink); text-decoration: none; font-weight: 600; font-size: .88rem;
}
.delta:hover { color: var(--green-ink); }
.delta span { color: var(--muted); font-weight: 400; }
.legal { margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); display: grid; gap: 8px; font-size: .82rem; }

/* Barra fixa no celular */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 50;
  display: none; align-items: center; gap: 12px; padding: 10px 10px 10px 12px;
  background: rgba(255, 255, 255, .96); border-radius: 20px; box-shadow: 0 12px 32px rgba(27, 29, 27, .22);
  transform: translateY(140%); transition: transform .3s ease;
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta img { width: 40px; height: 40px; border-radius: 10px; }
.sticky-cta .txt { line-height: 1.25; font-size: .9rem; }
.sticky-cta .txt strong { display: block; font-size: .98rem; }
.sticky-cta .btn { margin-left: auto; min-height: 42px; padding: 0 16px; }

/* Páginas de texto (privacidade, suporte) */
.doc { padding: 48px 0 72px; }
.doc article {
  max-width: 820px; margin-inline: auto; padding: clamp(24px, 5vw, 56px);
  background: var(--surface); border-radius: 28px; box-shadow: var(--shadow-sm);
}
.doc h1 { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 800; }
.doc h2 { font-size: 1.25rem; margin: 32px 0 10px; letter-spacing: -.01em; }
.doc p, .doc li { color: #353935; }
.doc p + p { margin-top: 14px; }
.doc .date { margin: 14px 0 28px; padding-bottom: 24px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .92rem; }
.doc .eyebrow { box-shadow: none; background: var(--green-soft); }
.doc .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn.ghost { background: var(--green-soft); color: var(--green-ink); }
.btn.ghost:hover { background: #d6efdf; }

/* Revelação ao rolar: animação ligada à rolagem, sem JS. Navegador sem
   suporte mostra o conteúdo parado, nunca escondido. */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      animation: reveal linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 45%;
    }
  }
}
@keyframes reveal { from { opacity: 0; transform: translateY(24px); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .float { animation: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1000px) {
  .strip ul { grid-template-columns: repeat(2, 1fr); }
  .grid-cards { grid-template-columns: repeat(2, 1fr); }
  .feature { gap: 32px; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav .btn { margin-left: auto; }
  .hero { padding-top: 24px; }
  .hero-grid, .problem-grid, .how-grid, .feature, .final-card, .is-isnt, .privacy-grid { grid-template-columns: 1fr; }
  .lead { max-width: none; }
  .stage { min-height: 520px; margin-top: 8px; }
  .stage .phone { --w: 240px; transform: translateX(40px); }
  .stage .sheet { width: 220px; top: 70px; left: calc(50% - 190px); }
  .float-dose { right: calc(50% - 190px); top: 40px; }
  .float-mood { left: calc(50% - 180px); bottom: 36px; }
  .section { padding: 64px 0; }
  .how, .privacy { border-radius: 28px; margin-inline: 8px; }
  .feature:nth-child(even) .feature-media { order: 0; }
  .feature-media { min-height: 0; padding: 12px 0; }
  .feature-media .phone { --w: 240px; }
  .feature-media.duo .phone { transform: translateX(-50px); }
  .feature-media.duo .sheet { width: 200px; right: calc(50% - 170px); bottom: 10px; }
  .notes { height: 330px; max-width: 380px; order: 2; }
  .final-card { padding: 36px 24px; border-radius: 28px; }
  .qr { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .sticky-cta { display: flex; }
  .site-footer { padding-bottom: 120px; }
}
@media (max-width: 520px) {
  :root { --gutter: 16px; }
  .strip ul { grid-template-columns: 1fr 1fr; gap: 8px; }
  .strip li { flex-direction: column; align-items: flex-start; padding: 14px; gap: 10px; font-size: .92rem; }
  .grid-cards { grid-template-columns: 1fr; }
  .badge img { height: 52px; }
  .stage { min-height: 470px; }
  .stage .phone { --w: 214px; transform: translateX(46px); }
  .stage .sheet { width: 190px; left: 0; top: 60px; }
  .float-dose { right: 0; top: 18px; min-width: 0; font-size: .8rem; }
  .float-mood { left: 0; bottom: 26px; font-size: .8rem; }
  .note { width: 128px; font-size: 1.7rem; }
  .note.n3 { font-size: 1.25rem; }
  .note.n4 { font-size: 1.1rem; width: 150px; }
  .feature-media.duo .phone { transform: translateX(-40px); --w: 220px; }
  .feature-media.duo .sheet { width: 170px; right: 0; }
}
