/* ============================================================
   app.css, mobile-first stijl voor de voucher-flow
   ------------------------------------------------------------
   Geen externe fonts of libraries. Alles in CSS-variabelen, animaties
   respecteren prefers-reduced-motion. Knoppen minimaal 44px hoog.
   ============================================================ */

:root {
  --bg: #f4f6fb;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --primary: #0f172a;
  --primary-text: #ffffff;
  --accent: #f59e0b;
  --accent-2: #fbbf24;
  --success: #16a34a;
  --danger: #dc2626;
  --danger-bg: #fef2f2;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(15, 23, 42, .08);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  background-image: radial-gradient(60% 40% at 50% -10%, rgba(251, 191, 36, .18), transparent 70%);
  min-height: 100dvh;
}
button, input, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }

.app {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: max(12px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
}

/* ---------- topbar ---------- */
.topbar { display: flex; align-items: center; justify-content: space-between; padding: 4px 0 12px; }
.brand { display: flex; align-items: center; gap: 8px; font-weight: 700; letter-spacing: .01em; }
.brand-mark { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; background: var(--primary); color: var(--accent-2); font-size: 15px; }
.brand-name { font-size: 15px; }

.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.topbar-actions { display: flex; align-items: center; gap: 8px; }
.help-btn {
  width: 40px; height: 40px; border-radius: 999px; display: inline-grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line); font-weight: 800; font-size: 17px; color: var(--primary);
  transition: background .15s, transform .12s;
}
.help-btn:hover { background: var(--bg); }
.help-btn:active { transform: scale(.94); }

/* ---------- modal (sluit alleen via kruisje, knop of Escape) ---------- */
.modal { position: fixed; inset: 0; z-index: 50; display: grid; place-items: end center; padding: 16px; background: rgba(15, 23, 42, .55); animation: fade-in .2s ease both; }
.modal-card {
  position: relative; width: 100%; max-width: 440px; background: var(--surface); border-radius: 22px;
  padding: 28px 20px 16px; text-align: center; box-shadow: 0 24px 60px rgba(15, 23, 42, .35);
  animation: sheet-in .32s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes sheet-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@media (min-width: 560px) { .modal { place-items: center; } }
.modal-close { position: absolute; top: 10px; right: 10px; width: 36px; height: 36px; border-radius: 999px; background: var(--bg); font-size: 22px; line-height: 1; color: var(--muted); display: grid; place-items: center; }
.modal-icon { width: 56px; height: 56px; margin: 0 auto 12px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, var(--primary), #334155); color: var(--accent-2); font-size: 26px; }
.modal-title { margin: 0 0 6px; font-size: 21px; font-weight: 800; }
.modal-text { margin: 0 0 16px; color: var(--muted); line-height: 1.5; }
.help-email { font-weight: 700; font-size: 16px; padding: 12px; background: var(--bg); border-radius: 12px; margin-bottom: 12px; user-select: all; word-break: break-all; }
.modal .btn-link { margin-top: 2px; }

.lang { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 40px; padding: 6px 10px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  font-weight: 600; font-size: 14px;
}
.lang-flag svg { display: block; }
.lang-caret { color: var(--muted); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px); z-index: 20;
  list-style: none; margin: 0; padding: 6px;
  min-width: 200px; max-height: 60vh; overflow: auto;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
}
.lang-item {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 10px 12px; border: 0; background: transparent; border-radius: 10px; text-align: left; min-height: 44px;
}
.lang-item:hover, .lang-item:focus-visible { background: var(--bg); outline: none; }
.lang-item.is-active { font-weight: 700; }
.lang-item .lang-name { flex: 1; }
.lang-item .lang-check { color: var(--success); }

/* ---------- progress ---------- */
.progress { list-style: none; display: flex; gap: 6px; margin: 0 0 18px; padding: 0; }
.progress-step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 11px; color: var(--muted); }
.progress-step .dot { width: 100%; height: 4px; border-radius: 2px; background: var(--line); transition: background .3s; }
.progress-step.is-active .dot { background: var(--accent); }
.progress-step.is-done .dot { background: var(--primary); }
.progress-step.is-active .lbl { color: var(--text); font-weight: 600; }
.progress-step .lbl { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }

/* ---------- screens ---------- */
.screens { flex: 1; position: relative; }
.screen {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px 20px;
  animation: screen-in .35s ease both;
}
.screen.is-leaving { animation: screen-out .25s ease both; }
@keyframes screen-in { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }
@keyframes screen-out { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateX(-24px); } }

.h1 { font-size: 22px; line-height: 1.25; margin: 0 0 8px; font-weight: 800; letter-spacing: -.01em; }
.h2 { font-size: 18px; margin: 0 0 6px; font-weight: 700; }
.sub { margin: 0 0 18px; color: var(--muted); font-size: 15px; }
.center { text-align: center; }
.note { font-size: 13px; color: var(--muted); margin: 10px 0 0; }

/* ---------- form ---------- */
.field { display: block; margin-bottom: 14px; }
.field-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.input {
  display: block; width: 100%;
  min-height: 48px; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: 12px; background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(15, 23, 42, .08); }
.input.is-invalid { border-color: var(--danger); }
.input-order { font-size: 20px; letter-spacing: .06em; font-variant-numeric: tabular-nums; text-align: center; font-weight: 600; }
.textarea { resize: vertical; min-height: 96px; }
.hint { display: block; font-size: 12px; color: var(--muted); margin-top: 6px; }
.error { color: var(--danger); font-size: 14px; margin: 0 0 12px; }
.error:not([hidden]) { display: block; }
p.error { background: var(--danger-bg); padding: 10px 12px; border-radius: 10px; }
span.error { margin-top: 6px; }
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.check { display: flex; align-items: center; gap: 10px; min-height: 44px; margin: 4px 0 10px; cursor: pointer; }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check-box { width: 22px; height: 22px; border: 1.5px solid var(--line); border-radius: 6px; display: inline-grid; place-items: center; flex: 0 0 auto; transition: background .15s, border-color .15s; }
.check input:checked + .check-box { background: var(--primary); border-color: var(--primary); }
.check input:checked + .check-box::after { content: ""; width: 6px; height: 11px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg) translate(-1px, -1px); }
.check input:focus-visible + .check-box { box-shadow: 0 0 0 4px rgba(15, 23, 42, .12); }

/* ---------- buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 18px;
  border-radius: 12px; border: 1.5px solid transparent;
  font-weight: 700; font-size: 16px; text-decoration: none;
  transition: transform .12s, background .2s, opacity .2s, box-shadow .2s;
}
.btn:active { transform: scale(.985); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .45; cursor: not-allowed; }
.btn-block { display: flex; width: 100%; }
.btn-primary { background: var(--primary); color: var(--primary-text); }
.btn-secondary { background: #fff; color: var(--text); border-color: var(--line); }
.btn-link { background: transparent; color: var(--muted); font-weight: 600; min-height: 40px; margin-top: 6px; width: 100%; }
.btn .btn-spinner { display: none; width: 18px; height: 18px; border: 2.5px solid rgba(255, 255, 255, .35); border-top-color: #fff; border-radius: 50%; animation: spin .8s linear infinite; }
.btn.is-loading .btn-label { opacity: .6; }
.btn.is-loading .btn-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* De claimknop licht op zodra alles ingevuld is. De glans is een aparte laag die
   met transform over de knop loopt: begint en eindigt buiten beeld, dus nooit een sprong. */
.btn-claim { background: var(--line); color: var(--muted); overflow: hidden; }
.btn-claim.is-ready {
  color: #1f1300; opacity: 1;
  background: linear-gradient(110deg, #f59e0b, #fbbf24);
  animation: glow 1.6s ease-in-out infinite alternate;
  box-shadow: 0 8px 24px rgba(245, 158, 11, .35);
}
.btn-claim.is-ready::after, .btn-amazon::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 60%;
  background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.55) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-170%) skewX(-12deg);
  animation: sweep 2.4s ease-in-out infinite;
  pointer-events: none;
}
.btn-claim.is-ready > *, .btn-amazon > * { position: relative; z-index: 1; }
@keyframes sweep { 0% { transform: translateX(-170%) skewX(-12deg); } 60%, 100% { transform: translateX(270%) skewX(-12deg); } }
@keyframes glow { from { box-shadow: 0 6px 18px rgba(245, 158, 11, .25); } to { box-shadow: 0 10px 30px rgba(245, 158, 11, .5); } }
.pending-note { text-align: center; color: var(--muted); font-size: 14px; margin: 12px 0 0; }

/* ---------- eerdere bestelnummers ---------- */
.recent { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); animation: fade-in .3s ease both; }
.recent-title { margin: 0 0 8px; font-size: 13px; font-weight: 600; color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 6px 12px;
  border: 1.5px solid var(--line); border-radius: 999px; background: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 13px; font-weight: 600;
  transition: border-color .15s, transform .12s;
}
.chip:hover { border-color: var(--primary); }
.chip:active { transform: scale(.97); }
.chip-tag { font-family: var(--font); font-size: 11px; font-weight: 600; padding: 2px 7px; border-radius: 999px; background: var(--bg); color: var(--muted); }
.chip-tag.is-claimed { background: #dcfce7; color: #166534; }

/* ---------- bestelling gevonden (auto-doorgaan) ---------- */
.screen-found { text-align: center; }
.found { display: grid; place-items: center; height: 84px; }
.found-check { width: 64px; height: 64px; }
.found .check-circle { fill: none; stroke: var(--success); stroke-width: 3; stroke-dasharray: 190; stroke-dashoffset: 190; animation: draw .6s ease forwards; }
.found .check-path { fill: none; stroke: var(--success); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 50; stroke-dashoffset: 50; animation: draw .45s .45s ease forwards; }
.screen-found .items { text-align: left; }
.screen-found .item { animation: item-in .5s .5s ease both; }
@keyframes item-in { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }
.found-bar { height: 4px; border-radius: 2px; background: var(--line); overflow: hidden; margin-top: 4px; }
.found-bar span { display: block; height: 100%; width: 0; background: var(--accent); animation: found-progress var(--found-ms, 1.8s) linear forwards; }
@keyframes found-progress { to { width: 100%; } }

/* ---------- order items ---------- */
.items { list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 10px; }
.item { display: flex; gap: 12px; align-items: center; padding: 10px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.item-img { width: 64px; height: 64px; border-radius: 10px; background: var(--bg); object-fit: contain; flex: 0 0 auto; display: grid; place-items: center; color: var(--muted); overflow: hidden; }
.item-img img { width: 100%; height: 100%; object-fit: contain; }
.item-title { font-weight: 600; font-size: 14px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.item-qty { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ---------- stars ---------- */
.stars { display: flex; justify-content: center; gap: 6px; margin: 6px 0 4px; }
.star { width: 52px; height: 52px; border: 0; background: transparent; padding: 4px; border-radius: 12px; color: #d9dee7; transition: transform .15s, color .15s; }
.star svg { width: 100%; height: 100%; fill: currentColor; }
.star:hover, .star.is-hover { transform: scale(1.12); }
.star.is-on { color: var(--accent); }
.star.is-picked { animation: pop .35s ease; }
.star:focus-visible { outline: 3px solid rgba(245, 158, 11, .5); outline-offset: 2px; }
@keyframes pop { 0% { transform: scale(1); } 50% { transform: scale(1.3); } 100% { transform: scale(1); } }
.star-label { text-align: center; color: var(--muted); font-weight: 600; min-height: 24px; margin: 0 0 12px; }
.rate-block { animation: fade-in .3s ease both; }
@keyframes fade-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- gift card options ---------- */
.options { display: grid; gap: 10px; margin-bottom: 18px; }
.option { display: flex; align-items: center; gap: 12px; padding: 12px 14px; min-height: 56px; border: 1.5px solid var(--line); border-radius: 14px; background: #fff; cursor: pointer; transition: border-color .15s, box-shadow .15s; }
.option input { position: absolute; opacity: 0; width: 0; height: 0; }
.option-radio { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid var(--line); display: inline-grid; place-items: center; flex: 0 0 auto; }
.option input:checked ~ .option-radio { border-color: var(--primary); }
.option input:checked ~ .option-radio::after { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--primary); }
.option.is-selected { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(15, 23, 42, .06); }
.option-label { flex: 1; font-weight: 600; }
.option-amount { font-weight: 800; }
.option-badge { font-size: 11px; color: var(--muted); background: var(--bg); padding: 2px 8px; border-radius: 999px; }

/* ---------- done ---------- */
.check-circle { fill: none; stroke: var(--success); stroke-width: 3; stroke-dasharray: 190; stroke-dashoffset: 190; animation: draw .7s ease forwards; }
.check-path { fill: none; stroke: var(--success); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 50; stroke-dashoffset: 50; animation: draw .5s .5s ease forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
/* Confetti zonder eigen hoogte: knalt vanaf de bovenrand van het scherm. */
.confetti-host { position: relative; height: 0; }
.confetti { position: absolute; left: 0; right: 0; top: 30px; height: 0; pointer-events: none; overflow: visible; }
.confetti i {
  position: absolute; top: 0; left: 50%; width: 8px; height: 12px; border-radius: 2px;
  background: var(--c, var(--accent)); opacity: 0;
  animation: burst 1.4s cubic-bezier(.2, .7, .3, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes burst {
  0% { opacity: 1; transform: translate(0, 0) rotate(0); }
  100% { opacity: 0; transform: translate(var(--x), var(--y)) rotate(var(--r)); }
}

.voucher-card { border: 1.5px dashed var(--accent); border-radius: 18px; padding: 18px 16px; background: linear-gradient(180deg, #fffbeb, #fff); margin-bottom: 20px; }
.voucher-amount { font-size: 40px; font-weight: 900; text-align: center; letter-spacing: -.02em; line-height: 1.1; }
.voucher-label { text-align: center; color: var(--muted); font-weight: 600; margin: 2px 0 16px; }
.voucher-code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: clamp(15px, 5vw, 21px); letter-spacing: .06em; text-align: center; padding: 12px 8px; background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; user-select: all; font-weight: 700; display: grid; gap: 4px; }
.voucher-code .code-main { white-space: nowrap; overflow-x: auto; }
.voucher-code .code-pin { font-size: 14px; font-weight: 600; color: var(--muted); letter-spacing: .04em; }
.voucher-ready .btn { margin-bottom: 10px; }
.voucher-pending, .voucher-failed { text-align: center; padding: 12px 4px; color: var(--muted); }
.spinner-lg { display: inline-block; width: 36px; height: 36px; border: 3px solid var(--line); border-top-color: var(--accent); border-radius: 50%; animation: spin .9s linear infinite; margin-bottom: 8px; }
/* Mailen: knop klapt vloeiend uit naar veld + versturen; na verzenden een vinkje. */
.mailbox { margin: 2px 0 10px; }
.mail-first { margin: 0 0 10px; text-align: center; }
.mail-panel.is-loose { margin: 4px 0 12px; padding: 14px 12px 4px; border: 1px dashed var(--line); border-radius: 14px; background: rgba(255,255,255,.6); }
.mail-panel.is-loose .mail-first { margin-bottom: 10px; }
#btnShowLink { margin-top: 2px; }
.mail-sent { margin-bottom: 0; }
.mail-toggle .mail-ico { font-size: 18px; line-height: 1; }
.mail-toggle { transition: opacity .25s, transform .25s, max-height .3s; max-height: 60px; }
.mailbox.is-open .mail-toggle, .mailbox.is-sent .mail-toggle { opacity: 0; transform: translateY(-6px); max-height: 0; padding-top: 0; padding-bottom: 0; min-height: 0; margin: 0; overflow: hidden; border: 0; pointer-events: none; }
.mail-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .38s cubic-bezier(.2,.7,.2,1); }
.mail-wrap > .mail-form { overflow: hidden; min-height: 0; }
.mailbox.is-open .mail-wrap { grid-template-rows: 1fr; }
.mail-form .input { margin-bottom: 10px; }
.mail-form .btn { margin-bottom: 0; }
.mail-note { margin: 8px 0 0; text-align: center; }
.mail-sent {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 10px 14px; border-radius: 12px;
  background: #ecfdf5; color: #166534; font-weight: 700;
  animation: fade-in .35s ease both;
}
.mail-check { width: 26px; height: 26px; flex: 0 0 auto; }
.mail-check .mc-circle { fill: none; stroke: var(--success); stroke-width: 2; stroke-dasharray: 70; stroke-dashoffset: 70; animation: draw .5s ease forwards; }
.mail-check .mc-path { fill: none; stroke: var(--success); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 20; stroke-dashoffset: 20; animation: draw .35s .4s ease forwards; }

/* Reviewblok: eigen kaart met bewegende gradientrand, zodat het verzoek opvalt. */
.review {
  position: relative; margin: 4px 0 20px; padding: 3px; border-radius: 20px;
  background: linear-gradient(120deg, #ff9900, #ffd166, #ff6a00, #ffb347, #ff9900);
  background-size: 300% 300%;
  animation: fade-in .4s .3s ease both, gradient-move 6s ease-in-out infinite;
}
.review::before {
  content: ""; position: absolute; inset: -6px; border-radius: 24px; z-index: -1;
  background: inherit; background-size: inherit; filter: blur(18px); opacity: .45;
  animation: gradient-move 6s ease-in-out infinite;
}
.review-inner { background: var(--surface); border-radius: 17px; padding: 22px 18px 18px; }
.review-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 8px; }
.review-icon {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, #ff9900, #ffb347); color: #fff; font-weight: 900; font-size: 26px;
  box-shadow: 0 6px 16px rgba(255, 153, 0, .35);
  animation: wiggle 2.4s ease-in-out infinite;
}
.review-title { margin: 2px 0 0; font-size: 21px; line-height: 1.25; font-weight: 800; letter-spacing: -.01em; }
.review-sub { margin: 0 0 16px; color: var(--muted); font-size: 15px; line-height: 1.5; }
.review-links { display: grid; gap: 8px; margin: 0 0 10px; }
.btn-amazon { min-height: 54px; font-size: 17px; }
.done-sub { margin: 4px 0 14px; color: var(--muted); font-size: 14px; text-align: center; }
.btn-amazon {
  color: #1f1300; border: 0; justify-content: flex-start; text-align: left; overflow: hidden;
  background: linear-gradient(110deg, #ff9900, #ffb84d);
  box-shadow: 0 8px 22px rgba(255, 153, 0, .35);
}
.btn-amazon .amz { flex: 0 0 auto; font-weight: 900; font-size: 20px; line-height: 1; color: #1f1300; }
.btn-amazon .txt { flex: 1; line-height: 1.25; }
.btn-amazon .arrow { flex: 0 0 auto; animation: nudge 1.4s ease-in-out infinite; }
@keyframes gradient-move { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes wiggle { 0%, 100% { transform: rotate(0); } 10% { transform: rotate(-12deg) scale(1.08); } 20% { transform: rotate(10deg); } 30% { transform: rotate(0); } }
@keyframes nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(4px); } }

.foot { text-align: center; font-size: 12px; color: var(--muted); padding: 16px 0 0; }

.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(20px); background: var(--primary); color: #fff; padding: 10px 16px; border-radius: 999px; font-weight: 600; font-size: 14px; opacity: 0; transition: opacity .2s, transform .2s; z-index: 50; pointer-events: none; }
.toast.is-on { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (min-width: 560px) {
  .app { padding-top: 28px; }
  .screen { padding: 28px 26px 24px; }
  .h1 { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; }
  .btn-claim.is-ready, .btn-claim.is-ready::after, .btn-amazon::after, .review, .review::before, .review-icon, .btn-amazon .arrow { animation: none; }
  .confetti, .found-bar { display: none; }
}
