/* ═══════════════════════════════════════════════════════════
   RTPySystems · Passe Booyah
   Design system da marca RT — crimson sobre preto puro.
   Tokens espelhados do rtcloud.com.br para as marcas baterem.
   ═══════════════════════════════════════════════════════════ */

:root {
  color-scheme: dark;

  /* marca */
  --crimson: #c41e3a;
  --crimson-bright: #e11d2e;
  --crimson-glow: #ff2d4a;
  --crimson-soft: rgba(225, 29, 46, 0.14);

  /* superfícies */
  --void: #000;
  --panel: #0a0a0b;
  --card: #0f0f12;
  --border: #1f1f24;

  /* tipografia */
  --ink: #f4f4f5;
  --ink-2: #d4d4d8;
  --muted: #8b8b98;
  --dim: #71717a;
  --faint: #52525b;

  /* glass */
  --glass-bg: rgba(16, 16, 20, 0.55);
  --glass-bg-raised: rgba(20, 20, 26, 0.72);
  --glass-bg-modal: rgba(12, 12, 16, 0.88);
  --glass-edge: hsla(0, 0%, 100%, 0.09);
  --glass-edge-strong: hsla(0, 0%, 100%, 0.16);
  --glass-specular: linear-gradient(180deg, hsla(0, 0%, 100%, 0.14), hsla(0, 0%, 100%, 0.04) 18%, hsla(0, 0%, 100%, 0) 42%);
  --glass-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 8px 28px -12px rgba(0, 0, 0, 0.8);
  --glass-shadow-raised: 0 2px 6px rgba(0, 0, 0, 0.55), 0 18px 48px -16px rgba(0, 0, 0, 0.85);
  --glass-shadow-modal: 0 32px 90px -20px rgba(0, 0, 0, 0.95);
  --glass-blur: 20px;
  --glass-blur-raised: 28px;
  --glass-saturate: 180%;

  /* estados */
  --ok: #22c55e;
  --warn: #f5b93a;
  --err: #ff4d5e;
  --gold: #ffc857;

  /* raios */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* movimento */
  --ease-fluid: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --shell-w: 1080px;
  --tabbar-h: 0px;
}

* { box-sizing: border-box; }

/* O atributo [hidden] vale display:none só na folha do navegador, então qualquer
   `display` que a gente declare (grid, flex, block...) o derrota silenciosamente.
   Sem isto, o overlay de carregamento e a folha de cancelar PIX ficam presos na
   tela e travam o site inteiro. Regra global, uma vez, para todos os casos. */
[hidden] { display: none !important; }

html, body { height: 100%; }

html {
  background: var(--void);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overscroll-behavior-y: none;
  -webkit-tap-highlight-color: transparent;
  background-color: var(--void);
  background-image:
    radial-gradient(90% 50% at 50% -12%, rgba(196, 30, 58, 0.16), transparent 55%),
    radial-gradient(60% 40% at 100% 100%, rgba(225, 29, 46, 0.07), transparent 55%),
    radial-gradient(50% 40% at 0 60%, rgba(120, 30, 80, 0.05), transparent 55%),
    linear-gradient(rgba(225, 29, 46, 0.035) 1px, transparent 0),
    linear-gradient(90deg, rgba(225, 29, 46, 0.035) 1px, transparent 0);
  background-size: auto, auto, auto, 56px 56px, 56px 56px;
  background-attachment: fixed;
  padding-bottom: calc(var(--tabbar-h) + env(safe-area-inset-bottom, 0px));
}

/* brilhos vivos por trás de tudo */
.bg-fx { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.glow-a {
  width: 46vw; height: 46vw; max-width: 560px; max-height: 560px;
  background: radial-gradient(circle, rgba(255, 45, 74, 0.5), transparent 68%);
  top: -14vw; left: -8vw;
  animation: drift 22s var(--ease-fluid) infinite alternate;
}
.glow-b {
  width: 40vw; height: 40vw; max-width: 480px; max-height: 480px;
  background: radial-gradient(circle, rgba(196, 30, 58, 0.34), transparent 70%);
  bottom: -12vw; right: -10vw;
  animation: drift 27s var(--ease-fluid) -6s infinite alternate-reverse;
}
.scanline {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.014) 0 1px, transparent 1px 3px);
  opacity: 0.6;
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4vw, 5vh, 0) scale(1.12); }
}

::selection { background: rgba(225, 29, 46, 0.42); color: #fff; }
:focus-visible { outline: 2px solid rgba(225, 29, 46, 0.65); outline-offset: 2px; }

a { color: inherit; }

/* ─────────────── ÍCONES ─────────────── */
.ico {
  width: 1.15em; height: 1.15em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.18em;
}
.ico.ok { color: var(--ok); }

/* ─────────────── PRIMITIVAS GLASS ─────────────── */
.card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-edge);
  border-radius: var(--r-lg);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  isolation: isolate;
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: var(--glass-specular);
  pointer-events: none;
  z-index: 0;
}
.card > * { position: relative; z-index: 1; }

.card-interactive {
  transition: transform 0.26s var(--ease-fluid), border-color 0.26s var(--ease-fluid), box-shadow 0.26s var(--ease-fluid);
}
.card-interactive:hover {
  transform: translateY(-2px);
  border-color: rgba(225, 29, 46, 0.35);
  box-shadow: var(--glass-shadow-raised), 0 0 0 1px rgba(225, 29, 46, 0.15);
}
.card-glow {
  border-color: rgba(225, 29, 46, 0.38);
  box-shadow: var(--glass-shadow), 0 0 0 1px rgba(196, 30, 58, 0.14), 0 0 44px -18px rgba(225, 29, 46, 0.6);
}

/* ─────────────── BOTÕES ─────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.05rem;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.2;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.18s var(--ease-fluid), background 0.18s var(--ease-fluid),
    border-color 0.18s var(--ease-fluid), box-shadow 0.18s var(--ease-fluid), opacity 0.18s var(--ease-fluid);
}
.btn:not(:disabled):active { transform: scale(0.97); }
.btn:disabled { cursor: not-allowed; opacity: 0.45; }

.btn-primary {
  background: linear-gradient(#e11d2e, #b3182c);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 6px 20px -8px rgba(225, 29, 46, 0.7);
}
.btn-primary:not(:disabled):hover {
  background: linear-gradient(#f0273a, #c41e3a);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 10px 28px -8px rgba(225, 29, 46, 0.85);
}
.btn-outline {
  background: rgba(225, 29, 46, 0.08);
  border-color: rgba(225, 29, 46, 0.45);
  backdrop-filter: blur(12px);
}
.btn-outline:not(:disabled):hover {
  background: rgba(225, 29, 46, 0.18);
  border-color: rgba(225, 29, 46, 0.7);
}
.btn-ghost {
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.043);
  border-color: var(--glass-edge);
  backdrop-filter: blur(12px) saturate(160%);
}
.btn-ghost:not(:disabled):hover {
  background: rgba(255, 255, 255, 0.086);
  border-color: var(--glass-edge-strong);
  color: #fff;
}
.btn-sm { padding: 0.5rem 0.8rem; font-size: 0.82rem; }
.btn-lg { padding: 0.92rem 1.4rem; font-size: 0.98rem; border-radius: var(--r-md); }
.btn-block { display: flex; width: 100%; }

/* ─────────────── TIPOGRAFIA ─────────────── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.kicker.sm { font-size: 0.62rem; margin-bottom: 8px; }
.kdot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--crimson-glow);
  box-shadow: 0 0 12px var(--crimson-glow);
  animation: blip 2.6s ease-in-out infinite;
}
@keyframes blip { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

h1, h2, h3 { margin: 0; font-weight: 900; letter-spacing: -0.025em; line-height: 1.1; }

.h-sec { font-size: clamp(1.45rem, 3.4vw, 2.1rem); margin-bottom: 20px; }
.h-pane { font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom: 8px; }
.p-pane { color: var(--muted); margin: 0 0 20px; font-size: 0.94rem; }
.center { text-align: center; }
.grad {
  background: linear-gradient(96deg, #fff 12%, var(--crimson-glow) 78%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hint { color: var(--dim); font-size: 0.8rem; margin: 8px 0 0; }
.hint b { color: var(--ink-2); }
.lbl {
  display: block;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  margin: 20px 0 8px;
}

/* ─────────────── TOPO ─────────────── */
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(6, 6, 8, 0.72);
  border-bottom: 1px solid var(--glass-edge);
  backdrop-filter: blur(var(--glass-blur-raised)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur-raised)) saturate(var(--glass-saturate));
  padding-top: env(safe-area-inset-top, 0px);
}
.topbar-in {
  max-width: var(--shell-w);
  margin: 0 auto;
  padding: 11px 18px;
  display: flex; align-items: center; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #e11d2e, #8f1526);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26), 0 8px 22px -10px rgba(225, 29, 46, 0.9);
  flex: none;
}
.brand-mark b { font-size: 0.92rem; font-weight: 900; letter-spacing: -0.03em; }
.brand-mark.sm { width: 34px; height: 34px; border-radius: 10px; }
.brand-mark.sm b { font-size: 0.78rem; }
.brand-txt strong { display: block; font-size: 0.95rem; font-weight: 800; letter-spacing: -0.02em; }
.brand-txt small { display: block; color: var(--dim); font-size: 0.68rem; letter-spacing: 0.02em; }

.topnav { display: flex; gap: 2px; margin-left: auto; }
.topnav-a {
  padding: 8px 13px;
  border-radius: var(--r-sm);
  font-size: 0.86rem; font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s var(--ease-fluid), background 0.2s var(--ease-fluid);
}
.topnav-a:hover { color: #fff; background: rgba(255, 255, 255, 0.05); }
.topnav-a.is-on { color: #fff; background: var(--crimson-soft); }

.topbar-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.topnav + .topbar-right { margin-left: 0; }

.stock-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-edge);
  backdrop-filter: blur(12px);
}
.stock-chip b { color: var(--ok); font-weight: 800; font-variant-numeric: tabular-nums; }
.stock-chip .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ok); box-shadow: 0 0 10px var(--ok);
  animation: blip 2s ease-in-out infinite;
}
.stock-chip.is-out b, .stock-chip.is-out .pulse { color: var(--err); background: var(--err); box-shadow: 0 0 10px var(--err); }
.stock-chip.is-out .pulse { background: var(--err); }
.stock-chip.is-unknown b { color: var(--warn); }
.stock-chip.is-unknown .pulse { background: var(--warn); box-shadow: 0 0 10px var(--warn); }

/* ─────────────── LAYOUT ─────────────── */
.shell {
  position: relative; z-index: 2;
  max-width: var(--shell-w);
  margin: 0 auto;
  padding: 30px 18px 60px;
}
.page { animation: pop 0.4s var(--ease-fluid); }
@keyframes pop { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.block { margin-top: 54px; }

/* ─────────────── HERO ─────────────── */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 34px;
  align-items: start;
}
.hero-copy h1 {
  font-size: clamp(2rem, 5.2vw, 3.3rem);
  margin-bottom: 16px;
  text-wrap: balance;
}
.lead {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 46ch;
  margin: 0 0 26px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 11px; margin-bottom: 30px; }

.trust {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 20px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-edge);
  backdrop-filter: blur(12px);
  width: fit-content;
  max-width: 100%;
}
.trust-i { display: flex; flex-direction: column; }
.trust-i b { font-size: 1.25rem; font-weight: 900; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.trust-i span { font-size: 0.7rem; color: var(--dim); letter-spacing: 0.02em; }
.trust-sep { width: 1px; align-self: stretch; background: var(--glass-edge); }

/* card de compra */
.buy-card { padding: 26px; border-radius: var(--r-xl); }
.buy-top { display: flex; align-items: center; justify-content: space-between; }
.buy-top .kicker { margin-bottom: 0; }
.badge-live {
  font-size: 0.66rem; font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.32);
}
.badge-live.out { color: #fca5a5; background: rgba(255, 77, 94, 0.12); border-color: rgba(255, 77, 94, 0.34); }
.badge-live.unk { color: #fcd34d; background: rgba(245, 185, 58, 0.12); border-color: rgba(245, 185, 58, 0.32); }

.price-wrap { display: flex; align-items: baseline; gap: 6px; margin-top: 16px; }
.price-cur { font-size: 1.15rem; font-weight: 700; color: var(--muted); }
.price-val {
  font-size: 3.1rem; font-weight: 900; letter-spacing: -0.045em;
  line-height: 1;
  background: linear-gradient(180deg, #fff, #ffb3bd);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 44px rgba(255, 45, 74, 0.35);
}
.price-note { color: var(--dim); font-size: 0.8rem; margin: 8px 0 20px; }

.incl { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 10px; }
.incl li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--ink-2); }

.stock-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--glass-edge);
  font-size: 0.83rem; color: var(--muted);
  margin-bottom: 16px;
}
.sb-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--warn); box-shadow: 0 0 10px var(--warn); flex: none; animation: blip 1.8s infinite; }
.stock-bar.ok .sb-dot { background: var(--ok); box-shadow: 0 0 10px var(--ok); }
.stock-bar.out .sb-dot { background: var(--err); box-shadow: 0 0 10px var(--err); }
.stock-bar b { color: var(--ink); }

.secure {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  color: var(--faint); font-size: 0.74rem; margin: 14px 0 0;
}

/* ─────────────── GRIDS ─────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: 14px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }

.feat { padding: 22px; }
.feat-ico {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  margin-bottom: 14px;
  font-size: 1.05rem;
  color: #ff8a96;
  background: linear-gradient(rgba(225, 29, 46, 0.16), rgba(196, 30, 58, 0.07));
  border: 1px solid rgba(225, 29, 46, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.feat h3 { font-size: 1rem; margin-bottom: 7px; letter-spacing: -0.015em; }
.feat p { color: var(--muted); font-size: 0.86rem; margin: 0; }

.step-c { padding: 22px; }
.step-n {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 11px;
  font-weight: 900; font-size: 0.9rem;
  margin-bottom: 13px;
  background: linear-gradient(#e11d2e, #b3182c);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 6px 18px -8px rgba(225, 29, 46, 0.8);
}
.step-c h3 { font-size: 0.98rem; margin-bottom: 6px; }
.step-c p { color: var(--muted); font-size: 0.85rem; margin: 0; }

/* ─────────────── WIZARD ─────────────── */
.stepper {
  display: flex; align-items: center; justify-content: center;
  gap: 4px;
  padding: 13px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-edge);
  backdrop-filter: blur(14px);
}
.st { display: flex; align-items: center; gap: 8px; color: var(--faint); }
.st i { font-style: normal; font-size: 0.78rem; font-weight: 650; }
.st-b {
  display: grid; place-items: center;
  width: 26px; height: 26px; border-radius: 50%;
  font-size: 0.75rem; font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-edge);
  transition: all 0.3s var(--ease-spring);
}
.st.on { color: #fff; }
.st.on .st-b {
  background: linear-gradient(#e11d2e, #b3182c);
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(225, 29, 46, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.st.done { color: var(--ok); }
.st.done .st-b { background: rgba(34, 197, 94, 0.16); border-color: rgba(34, 197, 94, 0.4); color: var(--ok); }
.st-l { width: 22px; height: 2px; border-radius: 2px; background: rgba(255, 255, 255, 0.09); }

.pane { padding: 28px; }
.back-a {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; padding: 0;
  color: var(--muted); font: inherit; font-size: 0.83rem; font-weight: 600;
  cursor: pointer; margin-bottom: 16px;
}
.back-a:hover { color: #fff; }

.mini-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--glass-edge);
  font-size: 0.86rem; color: var(--muted);
}
.mini-row b { color: #fff; font-size: 1.05rem; font-weight: 800; }

/* campos */
.field {
  display: flex; align-items: center; gap: 11px;
  padding: 0 14px;
  height: 56px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--glass-edge);
  transition: border-color 0.2s var(--ease-fluid), box-shadow 0.2s var(--ease-fluid), background 0.2s;
}
.field:focus-within {
  border-color: rgba(225, 29, 46, 0.55);
  box-shadow: 0 0 0 4px rgba(225, 29, 46, 0.12);
  background: rgba(255, 255, 255, 0.05);
}
.field.err { border-color: rgba(255, 77, 94, 0.6); box-shadow: 0 0 0 4px rgba(255, 77, 94, 0.12); }
.f-ico { color: var(--faint); font-size: 1.05rem; }
.field input {
  flex: 1; min-width: 0;
  background: none; border: 0; outline: none;
  color: #fff;
  font: inherit; font-size: 1.12rem; font-weight: 700;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}
.field input::placeholder { color: var(--faint); font-weight: 500; letter-spacing: 0.02em; }
.f-clear {
  display: grid; place-items: center;
  width: 26px; height: 26px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: rgba(255, 255, 255, 0.08); color: var(--muted);
}
.f-clear:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }

input, textarea {
  font-family: var(--font);
  color-scheme: dark;
}
#reviewNick, #reviewComment, #pixCode {
  width: 100%;
  padding: 13px 15px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--glass-edge);
  color: #fff;
  font: inherit; font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#reviewNick:focus, #reviewComment:focus {
  border-color: rgba(225, 29, 46, 0.55);
  box-shadow: 0 0 0 4px rgba(225, 29, 46, 0.12);
}
#reviewComment { resize: vertical; margin-top: 10px; }
input:-webkit-autofill {
  -webkit-text-fill-color: #fff !important;
  -webkit-box-shadow: 0 0 0 1000px #0f0f12 inset !important;
  transition: background-color 9999s;
}

/* alertas */
.alert {
  margin-top: 16px;
  padding: 12px 15px;
  border-radius: var(--r-md);
  font-size: 0.86rem;
  color: #ffb4bc;
  background: rgba(255, 77, 94, 0.1);
  border: 1px solid rgba(255, 77, 94, 0.3);
}
.alert.warn { color: #fcd77a; background: rgba(245, 185, 58, 0.1); border-color: rgba(245, 185, 58, 0.3); }
.alert.ok { color: #86efac; background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.3); }

/* ─────────────── CARD DO JOGADOR ─────────────── */
.player {
  border-radius: var(--r-lg);
  padding: 20px;
  background: linear-gradient(rgba(225, 29, 46, 0.1), rgba(196, 30, 58, 0.03));
  border: 1px solid rgba(225, 29, 46, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.pl-head { display: flex; align-items: center; gap: 15px; }
.pl-av {
  position: relative;
  width: 60px; height: 60px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 1.5rem; font-weight: 900;
  color: #fff;
  background: linear-gradient(145deg, #e11d2e, #7d1223);
  box-shadow: 0 8px 26px -10px rgba(225, 29, 46, 0.9);
}
.pl-ring { position: absolute; inset: -5px; width: calc(100% + 10px); height: calc(100% + 10px); transform: rotate(-90deg); }
.pl-ring circle {
  fill: none; stroke: rgba(255, 255, 255, 0.14); stroke-width: 3;
  stroke-dasharray: 289; stroke-dashoffset: 0;
}
.pl-av.lvl .pl-ring circle { stroke: var(--crimson-glow); transition: stroke-dashoffset 1s var(--ease-fluid); }
.pl-id { flex: 1; min-width: 0; }
.pl-nick {
  font-size: 1.25rem; font-weight: 850; letter-spacing: -0.02em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.pl-sub { color: var(--muted); font-size: 0.8rem; }
.pl-sub code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  background: rgba(255, 255, 255, 0.07);
  padding: 2px 7px; border-radius: 6px;
  color: var(--ink-2); font-size: 0.82em;
}
.pl-lvl { text-align: center; flex: none; }
.pl-lvl b { display: block; font-size: 1.5rem; font-weight: 900; line-height: 1; letter-spacing: -0.03em; }
.pl-lvl span { font-size: 0.62rem; color: var(--dim); text-transform: uppercase; letter-spacing: 0.12em; }

.pl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
  margin-top: 16px;
}
.pl-grid:empty { display: none; }
.pl-f {
  padding: 10px 12px;
  border-radius: var(--r-sm);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-width: 0;
}
.pl-f span {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--faint); margin-bottom: 3px;
}
.pl-f b {
  display: block;
  font-size: 0.88rem; font-weight: 700;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.total {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 18px; padding: 16px 18px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--glass-edge);
}
.total span { color: var(--muted); font-size: 0.88rem; }
.total strong { font-size: 1.4rem; font-weight: 900; letter-spacing: -0.03em; }

/* ─────────────── PIX ─────────────── */
.pix-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.pix-amount span { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--dim); }
.pix-amount b { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.03em; }
.pix-timer {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 13px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-edge);
}
.pix-timer.warn { color: #fcd77a; border-color: rgba(245, 185, 58, 0.4); background: rgba(245, 185, 58, 0.1); }
.pix-timer.over { color: #ffb4bc; border-color: rgba(255, 77, 94, 0.4); background: rgba(255, 77, 94, 0.1); }

.qr-box { display: grid; place-items: center; margin-bottom: 6px; }
.qr-frame {
  position: relative;
  width: 244px; height: 244px;
  display: grid; place-items: center;
  padding: 14px;
  border-radius: var(--r-lg);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(225, 29, 46, 0.3), 0 20px 60px -22px rgba(225, 29, 46, 0.75);
}
.qr-frame img { width: 100%; height: 100%; object-fit: contain; border-radius: 6px; display: block; }
.qr-c { position: absolute; width: 20px; height: 20px; border: 3px solid var(--crimson-bright); }
.qr-c.tl { top: -3px; left: -3px; border-right: 0; border-bottom: 0; border-radius: 8px 0 0 0; }
.qr-c.tr { top: -3px; right: -3px; border-left: 0; border-bottom: 0; border-radius: 0 8px 0 0; }
.qr-c.bl { bottom: -3px; left: -3px; border-right: 0; border-top: 0; border-radius: 0 0 0 8px; }
.qr-c.br { bottom: -3px; right: -3px; border-left: 0; border-top: 0; border-radius: 0 0 8px 0; }
.qr-load { position: absolute; inset: 0; display: grid; place-items: center; color: var(--crimson); }

.copy-row { display: flex; gap: 9px; align-items: stretch; }
.copy-row #pixCode {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.78rem;
  letter-spacing: 0;
  overflow: hidden; text-overflow: ellipsis;
}
.copy-row .btn { flex: none; }
.copy-row .btn.done { background: rgba(34, 197, 94, 0.16); border-color: rgba(34, 197, 94, 0.45); color: #86efac; }

.poll {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 18px; padding: 14px;
  border-radius: var(--r-md);
  font-size: 0.87rem; font-weight: 600;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--glass-edge);
}
.poll.ok { color: #86efac; background: rgba(34, 197, 94, 0.1); border-color: rgba(34, 197, 94, 0.3); }
.poll.err { color: #ffb4bc; background: rgba(255, 77, 94, 0.1); border-color: rgba(255, 77, 94, 0.3); }

/* spinner */
.spin {
  width: 18px; height: 18px; flex: none;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.16);
  border-top-color: var(--crimson-glow);
  animation: rot 0.75s linear infinite;
  display: inline-block;
}
.spin.sm { width: 15px; height: 15px; border-width: 2px; }
.spin.lg { width: 34px; height: 34px; border-width: 3px; }
@keyframes rot { to { transform: rotate(360deg); } }

/* ─────────────── RESULTADO ─────────────── */
.res { text-align: center; }
.res-ico {
  width: 78px; height: 78px; margin: 4px auto 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 2rem;
  color: #86efac;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.34);
  box-shadow: 0 0 50px -12px rgba(34, 197, 94, 0.7);
  animation: pop-in 0.5s var(--ease-spring);
}
.res-ico.warn { color: #fcd77a; background: rgba(245, 185, 58, 0.12); border-color: rgba(245, 185, 58, 0.34); box-shadow: 0 0 50px -12px rgba(245, 185, 58, 0.7); }
.res-ico.err { color: #ffb4bc; background: rgba(255, 77, 94, 0.12); border-color: rgba(255, 77, 94, 0.34); box-shadow: 0 0 50px -12px rgba(255, 77, 94, 0.7); }
@keyframes pop-in { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.res-box {
  display: grid; gap: 8px;
  text-align: left;
  padding: 15px 17px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--glass-edge);
  font-size: 0.86rem;
  margin-bottom: 18px;
}
.res-box:empty { display: none; }
.res-box div { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); }
.res-box b { color: #fff; font-weight: 700; text-align: right; word-break: break-all; }
.res-actions { display: flex; gap: 10px; }
.res-actions .btn { flex: 1; }

.review-box {
  margin-top: 26px; padding-top: 24px;
  border-top: 1px solid var(--glass-edge);
  text-align: left;
}
.review-box h3 { font-size: 1.02rem; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.stars { display: flex; gap: 6px; margin-bottom: 14px; }
.stars button {
  background: none; border: 0; cursor: pointer;
  padding: 4px;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.16);
  transition: transform 0.2s var(--ease-spring), color 0.2s;
}
.stars button:hover { transform: scale(1.16); }
.stars button.on { color: var(--gold); }
.stars button.on .ico { fill: currentColor; }
.review-box .btn { margin-top: 12px; }

/* ─────────────── AVALIAÇÕES ─────────────── */
.rev-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px; align-items: center;
  padding: 26px;
}
.rev-score { text-align: center; }
.rev-score b { display: block; font-size: 3rem; font-weight: 900; line-height: 1; letter-spacing: -0.04em; }
.rev-score span { font-size: 0.78rem; color: var(--dim); }
.rev-stars { display: flex; gap: 3px; justify-content: center; margin: 8px 0 5px; color: rgba(255, 255, 255, 0.16); }
.rev-stars .ico { width: 17px; height: 17px; }
.rev-stars .ico.on { color: var(--gold); fill: currentColor; }

.rev-bars { display: grid; gap: 7px; }
.rev-bar { display: grid; grid-template-columns: 34px 1fr 34px; align-items: center; gap: 10px; font-size: 0.75rem; color: var(--dim); }
.rev-bar-t { height: 7px; border-radius: 999px; background: rgba(255, 255, 255, 0.07); overflow: hidden; }
.rev-bar-f { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--crimson), var(--crimson-glow)); transition: width 0.9s var(--ease-fluid); }

.rev-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: 13px; }
.rev-c { padding: 18px; }
.rev-c .top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 9px; }
.rev-who { display: flex; align-items: center; gap: 9px; min-width: 0; }
.rev-av {
  width: 32px; height: 32px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 0.78rem; font-weight: 800;
  background: linear-gradient(145deg, #e11d2e, #7d1223);
}
.rev-name { font-weight: 700; font-size: 0.87rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rev-when { font-size: 0.68rem; color: var(--faint); }
.rev-n { color: var(--gold); font-size: 0.8rem; letter-spacing: 1px; flex: none; }
.rev-txt { color: var(--muted); font-size: 0.87rem; margin: 0; }

.sk { height: 118px; opacity: 0.5; animation: sk 1.4s ease-in-out infinite; }
@keyframes sk { 0%, 100% { opacity: 0.32; } 50% { opacity: 0.6; } }
.muted { color: var(--muted); }

/* ─────────────── FAQ ─────────────── */
.faq { display: grid; gap: 9px; }
.faq-i {
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-edge);
  overflow: hidden;
  transition: border-color 0.22s var(--ease-fluid), background 0.22s;
}
.faq-i[open] { border-color: rgba(225, 29, 46, 0.32); background: rgba(225, 29, 46, 0.05); }
.faq-i summary {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 650; font-size: 0.92rem;
  list-style: none;
}
.faq-i summary::-webkit-details-marker { display: none; }
.faq-i .chev { color: var(--muted); transition: transform 0.3s var(--ease-fluid); flex: none; }
.faq-i[open] .chev { transform: rotate(180deg); color: var(--crimson-glow); }
.faq-i p { margin: 0; padding: 0 18px 18px; color: var(--muted); font-size: 0.88rem; }
.faq-i p b { color: var(--ink-2); }

/* ─────────────── RODAPÉ ─────────────── */
.foot {
  position: relative; z-index: 2;
  border-top: 1px solid var(--glass-edge);
  background: rgba(6, 6, 8, 0.6);
  backdrop-filter: blur(16px);
  margin-top: 40px;
}
.foot-in {
  max-width: var(--shell-w);
  margin: 0 auto;
  padding: 34px 18px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 30px;
}
.foot-brand { display: flex; gap: 13px; align-items: flex-start; }
.foot-brand strong { font-size: 0.95rem; font-weight: 800; }
.foot-brand p { color: var(--dim); font-size: 0.83rem; margin: 5px 0 0; max-width: 44ch; }
.foot-links { display: flex; flex-direction: column; gap: 9px; align-items: flex-start; }
.foot-links a { color: var(--muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.foot-links a:hover { color: var(--crimson-glow); }
.foot-bar {
  max-width: var(--shell-w);
  margin: 0 auto;
  padding: 16px 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  color: var(--faint); font-size: 0.74rem;
}

/* ═══════════════════════════════════════════════════════════
   TAB BAR MOBILE — liquid glass
   Pílula flutuante translúcida, cápsula do item ativo deslizando
   com easing de mola. Só aparece em telas pequenas.
   ═══════════════════════════════════════════════════════════ */
.tabbar { display: none; }

@media (max-width: 880px) {
  :root { --tabbar-h: 74px; }

  .tabbar {
    display: block;
    position: fixed;
    left: 50%;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    z-index: 60;
    width: min(430px, calc(100vw - 20px));
    transition: transform 0.42s var(--ease-fluid), opacity 0.3s;
  }
  .tabbar.hide { transform: translateX(-50%) translateY(150%); opacity: 0; }

  .tabbar-glass {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    padding: 7px 8px;
    border-radius: 30px;
    isolation: isolate;
    /* o "vidro líquido": blur forte + saturação alta + borda especular */
    background: rgba(18, 18, 22, 0.62);
    border: 1px solid hsla(0, 0%, 100%, 0.13);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    box-shadow:
      inset 0 1px 0 hsla(0, 0%, 100%, 0.18),
      inset 0 -1px 0 hsla(0, 0%, 0%, 0.5),
      0 1px 2px rgba(0, 0, 0, 0.6),
      0 22px 54px -14px rgba(0, 0, 0, 0.95),
      0 0 34px -20px rgba(225, 29, 46, 0.8);
  }
  /* brilho especular de topo, como o vidro da Apple */
  .tabbar-glass::before {
    content: "";
    position: absolute; inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0.16), hsla(0, 0%, 100%, 0.045) 26%, hsla(0, 0%, 100%, 0) 55%);
    pointer-events: none;
    z-index: 0;
  }
  /* refração crimson na base */
  .tabbar-glass::after {
    content: "";
    position: absolute; left: 12%; right: 12%; bottom: -1px; height: 40%;
    border-radius: inherit;
    background: radial-gradient(60% 100% at 50% 100%, rgba(225, 29, 46, 0.22), transparent 72%);
    pointer-events: none;
    z-index: 0;
    filter: blur(6px);
  }

  /* cápsula que desliza atrás do item ativo */
  .tab-pill {
    position: absolute;
    top: 7px; left: 0;
    height: calc(100% - 14px);
    border-radius: 23px;
    z-index: 0;
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0.15), hsla(0, 0%, 100%, 0.06));
    border: 1px solid hsla(0, 0%, 100%, 0.14);
    box-shadow:
      inset 0 1px 0 hsla(0, 0%, 100%, 0.22),
      0 6px 18px -8px rgba(225, 29, 46, 0.75);
    transition: transform 0.5s var(--ease-spring), width 0.5s var(--ease-spring), opacity 0.25s;
    will-change: transform, width;
  }
  .tabbar-glass.no-anim .tab-pill { transition: none; }

  .tab {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 52px;
    padding: 6px 2px;
    background: none;
    border: 0;
    cursor: pointer;
    font: inherit;
    color: var(--dim);
    -webkit-tap-highlight-color: transparent;
    transition: color 0.28s var(--ease-fluid), transform 0.28s var(--ease-spring);
  }
  .tab:active { transform: scale(0.9); }
  .tab-i { position: relative; display: grid; place-items: center; height: 22px; }
  .tab-i .ico { width: 22px; height: 22px; stroke-width: 1.8; transition: stroke-width 0.28s, transform 0.35s var(--ease-spring); }
  .tab-t {
    font-size: 0.62rem;
    font-weight: 650;
    letter-spacing: -0.01em;
    line-height: 1;
  }
  .tab.is-on { color: #fff; }
  .tab.is-on .ico { stroke-width: 2.3; transform: translateY(-1px); }
  .tab.is-on .tab-t { font-weight: 750; }

  /* badge estilo iOS */
  .tab-badge {
    position: absolute;
    top: -6px; left: 52%;
    min-width: 17px; height: 17px;
    padding: 0 5px;
    display: grid; place-items: center;
    border-radius: 999px;
    background: #22c55e;
    color: #04170b;
    font-size: 0.6rem; font-weight: 900; font-style: normal;
    line-height: 1;
    border: 1.5px solid rgba(10, 10, 12, 0.9);
    font-variant-numeric: tabular-nums;
    animation: pop-in 0.4s var(--ease-spring);
  }
  .tab-badge.out { background: var(--err); color: #fff; }

  /* topo mais compacto no celular */
  .topnav { display: none; }
  .hide-sm { display: none; }
  .topbar-in { padding: 9px 15px; gap: 10px; }
  .brand-txt small { display: none; }
  .shell { padding: 22px 15px 34px; }
}

/* ─────────────── OVERLAY / SHEET / TOAST ─────────────── */
.overlay {
  position: fixed; inset: 0; z-index: 90;
  display: grid; place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  animation: fade 0.22s var(--ease-fluid);
}
.overlay-card {
  display: grid; place-items: center; gap: 16px;
  padding: 32px 38px;
  border-radius: var(--r-lg);
  background: var(--glass-bg-modal);
  border: 1px solid var(--glass-edge-strong);
  box-shadow: var(--glass-shadow-modal);
  backdrop-filter: blur(var(--glass-blur-raised)) saturate(var(--glass-saturate));
  text-align: center;
}
.overlay-card p { margin: 0; font-size: 0.9rem; font-weight: 600; color: var(--ink-2); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

.sheet-bd {
  position: fixed; inset: 0; z-index: 95;
  display: grid; place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  animation: fade 0.22s var(--ease-fluid);
}
.sheet {
  position: relative;
  width: 100%; max-width: 400px;
  padding: 26px 24px 24px;
  border-radius: var(--r-xl);
  text-align: center;
  background: var(--glass-bg-modal);
  border: 1px solid var(--glass-edge-strong);
  box-shadow: var(--glass-shadow-modal);
  backdrop-filter: blur(var(--glass-blur-raised)) saturate(var(--glass-saturate));
  animation: sheet-in 0.38s var(--ease-fluid);
}
@keyframes sheet-in { from { transform: translateY(18px) scale(0.97); opacity: 0; } to { transform: none; opacity: 1; } }
.grabber { display: none; }
.sheet-ico {
  width: 56px; height: 56px; margin: 0 auto 16px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 1.4rem;
}
.sheet-ico.warn { color: #fcd77a; background: rgba(245, 185, 58, 0.12); border: 1px solid rgba(245, 185, 58, 0.32); }
.sheet h3 { font-size: 1.15rem; margin-bottom: 8px; }
.sheet p { color: var(--muted); font-size: 0.88rem; margin: 0 0 20px; }
.sheet p b { color: #fff; }
.sheet-actions { display: grid; gap: 9px; }

/* no celular a folha sobe de baixo, como no iOS */
@media (max-width: 880px) {
  .sheet-bd { align-items: end; padding: 0; }
  .sheet {
    max-width: none;
    border-radius: 26px 26px 0 0;
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    animation: sheet-up 0.42s var(--ease-fluid);
  }
  @keyframes sheet-up { from { transform: translateY(100%); } to { transform: none; } }
  .grabber {
    display: block;
    width: 38px; height: 5px; border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    margin: -8px auto 16px;
  }
  .sheet-actions { grid-auto-flow: row; }
}

.toasts {
  position: fixed;
  left: 50%; transform: translateX(-50%);
  bottom: calc(var(--tabbar-h) + 22px + env(safe-area-inset-bottom, 0px));
  z-index: 100;
  display: grid; gap: 8px;
  width: min(400px, calc(100vw - 28px));
  pointer-events: none;
}
.toast {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: 0.86rem; font-weight: 600;
  color: var(--ink);
  background: rgba(20, 20, 26, 0.9);
  border: 1px solid var(--glass-edge-strong);
  box-shadow: var(--glass-shadow-raised);
  backdrop-filter: blur(20px) saturate(180%);
  animation: toast-in 0.4s var(--ease-spring);
}
.toast.ok { border-color: rgba(34, 197, 94, 0.4); color: #86efac; }
.toast.err { border-color: rgba(255, 77, 94, 0.4); color: #ffb4bc; }
.toast.out { animation: toast-out 0.3s var(--ease-fluid) forwards; }
@keyframes toast-in { from { transform: translateY(14px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes toast-out { to { transform: translateY(10px); opacity: 0; } }

/* ─────────────── RESPONSIVO ─────────────── */
@media (max-width: 940px) {
  .hero { grid-template-columns: 1fr; gap: 26px; }
  .buy-card { order: -1; }
  .foot-in { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 560px) {
  .pane { padding: 22px 18px; }
  .buy-card { padding: 22px 18px; }
  .rev-head { grid-template-columns: 1fr; gap: 20px; padding: 22px 18px; }
  .trust { width: 100%; justify-content: space-between; padding: 14px 16px; gap: 10px; }
  .trust-i b { font-size: 1.08rem; }
  .trust-i span { font-size: 0.64rem; }
  .st i { display: none; }
  .st-l { width: 16px; }
  .stepper { padding: 11px 14px; gap: 6px; }
  .price-val { font-size: 2.6rem; }
  .qr-frame { width: min(244px, 76vw); height: min(244px, 76vw); }
  .res-actions { flex-direction: column; }
  .copy-row { flex-direction: column; }
  .copy-row .btn { width: 100%; }
  .hero-cta .btn { flex: 1; }
  .foot-bar { flex-direction: column; gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
