:root {
  --accent: #0f172a;
  --green: #15803d;
  --green-dark: #14532d;
  --green-light: #f0fdf4;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --card-bg: #ffffff;
  --danger: #b91c1c;
  --danger-light: #fef2f2;
  --amber: #92400e;
  --amber-light: #fffbeb;
  --radius: 10px;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
}

.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 32px 16px;
}

.card {
  width: 100%;
  max-width: 420px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 10px 30px rgba(17, 24, 39, 0.06);
  padding: 28px 24px 20px;
  display: flex;
  flex-direction: column;
  height: fit-content;
}

/* Brand */
.brand { text-align: center; margin-bottom: 18px; }

.logo-badge {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.02em;
}

.brand h1 { font-size: 18px; margin: 0 0 4px; }
.brand .subtitle { margin: 0; color: var(--muted); font-size: 13px; }

/* Live video */
.live-video-wrap { margin-bottom: 18px; }
.live-video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.live-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Progress */
.progress { display: flex; gap: 6px; margin-bottom: 18px; }
.progress .seg { flex: 1; height: 4px; border-radius: 4px; background: var(--border); transition: background 0.2s; }
.progress .seg.done, .progress .seg.active { background: var(--green); }

/* Tabs */
.tabs {
  display: flex;
  gap: 8px;
  background: #f7f7f8;
  padding: 4px;
  border-radius: 10px;
  margin-bottom: 18px;
}

.tabs .tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  background: transparent;
  padding: 9px 8px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
}

.tabs .tab.active {
  background: var(--card-bg);
  color: var(--text);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.tabs .tab[data-tab="products"].active {
  background: var(--accent);
  color: #fff;
}

.tab-label-live { display: none; }

/* Views / steps */
.view { display: none; }
.view.active { display: block; }
.step { display: none; }
.step.active { display: block; animation: fadeIn 0.15s ease; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* Segmented (Texto/Áudio) */
.segmented {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.seg-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.seg-btn.active {
  border-color: var(--green);
  color: var(--green-dark);
  background: var(--green-light);
}

/* Fields */
.field-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 16px 0 6px;
}

label[for="messageInput"] {
  padding-top: 4px;
}

.opt-tag {
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: #9ca3af;
  font-size: 11px;
}

textarea, input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  resize: none;
}

textarea:focus, input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-light);
}

.char-count { text-align: right; font-size: 11px; color: #9ca3af; margin-top: 4px; }

.hint { font-size: 12px; color: var(--muted); margin: 6px 0 0; }
.hint.center { text-align: center; }

/* Audio recorder */
.audio-recorder { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }

.record-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px dashed var(--green);
  background: var(--green-light);
  color: var(--green-dark);
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.record-btn.recording { border-color: var(--danger); background: var(--danger-light); color: var(--danger); }

.audio-recorder audio { width: 100%; }

.link-btn {
  background: none;
  border: none;
  color: var(--muted);
  text-decoration: underline;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
}

/* Amounts */
.amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.amount-btn {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 10px 4px;
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
}

.amount-btn.active { border-color: var(--green); background: var(--green-light); color: var(--green-dark); }

.custom-amount {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 12px;
  margin-top: 10px;
}

.custom-amount .prefix { color: var(--muted); font-weight: 600; font-size: 14px; margin-right: 6px; }
.custom-amount input { border: none; padding: 11px 0; }
.custom-amount input:focus { box-shadow: none; }
.custom-amount:focus-within { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-light); }

/* Buttons */
.btn-primary {
  width: 100%;
  margin-top: 20px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.btn-primary:hover { background: var(--green-dark); }
.btn-primary:disabled { background: #a7d9c7; cursor: not-allowed; }

.btn-back {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  padding: 0;
  margin-bottom: 14px;
  cursor: pointer;
}

.btn-back:hover { color: var(--text); }

/* Summary box */
.summary-box, .product-summary {
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--text);
}

.summary-box .amount, .product-summary .price { color: var(--green-dark); font-weight: 700; font-size: 15px; }
.summary-box .msg-preview { color: var(--muted); font-style: italic; margin-top: 4px; }

.product-summary { display: flex; gap: 12px; align-items: center; }
.product-summary .thumb {
  width: 44px; height: 44px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 600;
  background: #f1f5f9; color: var(--muted);
}
.product-summary .info { flex: 1; }
.product-summary .info .name { font-weight: 700; margin-bottom: 2px; }

/* Phone field */
.phone-field { display: flex; gap: 8px; }
.phone-field .phone-flag {
  display: flex; align-items: center; padding: 0 10px;
  border: 1px solid var(--border); border-radius: 10px; font-size: 13px; color: var(--muted);
  background: #f9fafb; white-space: nowrap;
}
.phone-field input { flex: 1; }

/* Pay methods */
.pay-methods { display: flex; gap: 10px; margin-top: 18px; }

.pay-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 10px;
  padding: 13px 10px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}

.pay-btn.pay-pix { background: var(--green); }
.pay-btn.pay-pix:hover { background: var(--green-dark); }
.pay-btn.pay-card { background: var(--accent); }
.pay-btn.pay-card:hover { background: #1e293b; }

/* Pix box */
.pix-box { text-align: center; }
.pix-status { font-weight: 700; color: var(--green-dark); margin: 4px 0 12px; }

.pix-qr {
  width: 220px;
  height: 220px;
  margin: 0 auto 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  object-fit: contain;
  background: #fff;
}

.pix-qr-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  background: repeating-linear-gradient(45deg, #f3f4f6, #f3f4f6 10px, #ffffff 10px, #ffffff 20px);
}

.demo-flag {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
  font-size: 12px;
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 12px;
  text-align: left;
}

.copy-field { display: flex; gap: 8px; }
.copy-field input { flex: 1; font-size: 12px; color: var(--muted); background: #f9fafb; }
.btn-copy {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  color: var(--text);
}
.btn-copy:hover { background: #f9fafb; }
.btn-copy.copied { border-color: var(--green); color: var(--green-dark); }

/* Info box (card / errors) */
.info-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
  border-radius: 10px;
  padding: 14px;
  font-size: 13px;
  text-align: center;
}

.error-banner {
  background: var(--danger-light);
  border: 1px solid #fecaca;
  color: var(--danger);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  margin-bottom: 14px;
}

/* Success */
.success-box { text-align: center; padding: 12px 0 4px; }
.success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-light); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 700; margin: 0 auto 14px;
}
.success-box h2 { font-size: 18px; margin: 0 0 6px; }
.success-box p { color: var(--muted); font-size: 13px; margin: 0 0 18px; }

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  text-align: left;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-card:hover { border-color: #94a3b8; box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08); }

.product-card .thumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  background: #f1f5f9;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
}

.product-card .name { font-size: 12px; font-weight: 700; line-height: 1.2; }
.product-card .desc { font-size: 10.5px; color: var(--muted); line-height: 1.3; min-height: 26px; }
.product-card .price-row { display: flex; align-items: baseline; justify-content: space-between; margin-top: 2px; }
.product-card .price { color: var(--green-dark); font-weight: 700; font-size: 13px; }
.product-card .remaining { color: #9ca3af; font-size: 10px; }

/* Footer */
.support-footer {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.support-footer p { margin: 0 0 8px; color: var(--muted); font-size: 12px; }

.support-links { display: flex; justify-content: center; gap: 18px; }
.support-links a {
  display: flex; align-items: center; gap: 5px;
  color: var(--muted); text-decoration: none; font-size: 12px; font-weight: 600;
}
.support-links a:hover { color: var(--green-dark); }

/* Live experience */
.live-mode {
  --accent: #b9ff66;
  --green: #b9ff66;
  --green-dark: #d8ffab;
  --green-light: rgba(185, 255, 102, .12);
  --text: #f8f7ff;
  --muted: #aaa4bd;
  --border: rgba(255, 255, 255, .11);
  --bg: #07050d;
  --card-bg: rgba(17, 13, 27, .94);
  --danger: #ff758f;
  --danger-light: rgba(255, 117, 143, .12);
  background:
    radial-gradient(circle at 15% 10%, rgba(173, 83, 255, .2), transparent 34rem),
    radial-gradient(circle at 90% 95%, rgba(185, 255, 102, .1), transparent 30rem),
    #07050d;
  color: var(--text);
  font-size: 16px;
}

.live-mode::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.live-mode .page { padding: 34px 18px; }

.live-mode .card {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 560px;
  padding: 34px 32px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(25, 19, 39, .97), rgba(11, 9, 18, .98));
  box-shadow: 0 34px 100px rgba(0, 0, 0, .58), inset 0 1px rgba(255, 255, 255, .08);
}

.live-mode .card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 260px;
  height: 260px;
  right: -140px;
  top: -145px;
  border-radius: 50%;
  background: #9d42ff;
  filter: blur(70px);
  opacity: .28;
}

.live-mode .brand { margin-bottom: 24px; }

.live-eyebrow {
  width: max-content;
  margin: 0 auto 16px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 117, 143, .34);
  border-radius: 999px;
  background: rgba(255, 117, 143, .08);
  color: #ff91a6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.live-eyebrow span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #ff5273;
  box-shadow: 0 0 0 5px rgba(255, 82, 115, .13), 0 0 16px #ff5273;
  animation: livePulse 1.7s ease-in-out infinite;
}

@keyframes livePulse { 50% { opacity: .45; transform: scale(.78); } }

.live-mode .logo-badge {
  width: 66px;
  height: 66px;
  border: 1px solid rgba(185, 255, 102, .36);
  border-radius: 22px;
  background: linear-gradient(145deg, #c8ff80, #83d729);
  color: #11150c;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 14px 38px rgba(132, 216, 44, .19), inset 0 1px rgba(255,255,255,.65);
  transform: rotate(-3deg);
}

.live-mode .brand h1 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -.035em;
}

.live-mode .brand .subtitle { color: var(--muted); font-size: 14px; }

.live-mode .progress .seg { height: 3px; background: rgba(255,255,255,.09); }
.live-mode .progress .seg.done,
.live-mode .progress .seg.active { background: linear-gradient(90deg, #9f4cff, #b9ff66); }

.live-mode .tabs {
  gap: 5px;
  padding: 5px;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}

.live-mode .tabs .tab {
  min-height: 43px;
  padding: 9px 7px;
  border-radius: 11px;
  color: #a9a3b9;
  font-size: 13px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.live-mode .tabs .tab:hover { color: #fff; }
.live-mode .tabs .tab:active { transform: scale(.98); }
.live-mode .tabs .tab.active,
.live-mode .tabs .tab[data-tab="products"].active {
  background: #f7f5fb;
  color: #120f19;
  box-shadow: 0 5px 22px rgba(0,0,0,.28);
}

.live-mode .tab-label-default { display: none; }
.live-mode .tab-label-live { display: inline; }

.live-mode textarea,
.live-mode input[type="text"],
.live-mode input[type="email"],
.live-mode input[type="tel"],
.live-mode .custom-amount,
.live-mode .seg-btn,
.live-mode .amount-btn,
.live-mode .btn-copy,
.live-mode .product-card {
  border-color: rgba(255,255,255,.11);
  background: rgba(255,255,255,.055);
  color: var(--text);
}

.live-mode textarea::placeholder,
.live-mode input::placeholder { color: #736d84; }

.live-mode textarea:focus,
.live-mode input:focus {
  border-color: rgba(185,255,102,.7);
  box-shadow: 0 0 0 3px rgba(185,255,102,.1);
}

.live-mode .seg-btn.active,
.live-mode .amount-btn.active {
  border-color: #b9ff66;
  background: rgba(185,255,102,.12);
  color: #d8ffab;
}

.live-mode .field-label { color: #aaa4bd; font-size: 12px; }
.live-mode .hint,
.live-mode .char-count { color: #898298; }

.live-mode .btn-primary,
.live-mode .pay-btn.pay-pix {
  background: linear-gradient(135deg, #c8ff80, #99eb42);
  color: #11150c;
  box-shadow: 0 12px 28px rgba(159,235,66,.14);
}

.live-mode .btn-primary:hover,
.live-mode .pay-btn.pay-pix:hover { background: linear-gradient(135deg, #d5ff9d, #afff58); }
.live-mode .pay-btn.pay-card { background: linear-gradient(135deg, #9845ef, #7230d6); }
.live-mode .pay-btn.pay-card:hover { background: linear-gradient(135deg, #a755ff, #813de4); }
.live-mode .summary-box,
.live-mode .product-summary,
.live-mode .info-box { background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.1); color: var(--text); }
.live-mode .demo-flag { background: rgba(255,196,66,.09); border-color: rgba(255,196,66,.24); color: #ffd777; }
.live-mode .pix-qr { border-color: rgba(255,255,255,.16); }
.live-mode .copy-field input { background: rgba(255,255,255,.055); color: #bbb5c8; }
.live-mode .product-card .thumb { background: rgba(255,255,255,.065); color: #c5bfce; }
.live-mode .product-card:hover { border-color: rgba(185,255,102,.55); box-shadow: 0 10px 26px rgba(0,0,0,.25); }
.live-mode .product-card .price { color: #ceff96; }

/* Polls */
.live-mode .polls-view { color: #f8f7ff; }

.polls-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin: 2px 0 18px;
}

.polls-heading h2 { margin: 3px 0 0; color: #ffffff; font-size: 27px; line-height: 1.05; letter-spacing: -.04em; }
.polls-kicker { color: #b9ff66; font-size: 11px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.polls-live-count {
  flex: none;
  margin-top: 5px;
  padding: 6px 9px;
  border: 1px solid rgba(185,255,102,.25);
  border-radius: 999px;
  background: rgba(185,255,102,.08);
  color: #cfff93;
  font-size: 11px;
  font-weight: 800;
}

.polls-list { display: grid; gap: 15px; }

.poll-card-live {
  position: relative;
  overflow: hidden;
  padding: 19px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  color: #f8f7ff;
}

.poll-card-live::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -65px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #8e3de3;
  filter: blur(45px);
  opacity: .18;
  pointer-events: none;
}

.poll-card-meta { display: flex; justify-content: space-between; gap: 12px; color: #8e879c; font-size: 12px; }
.poll-card-live h3 { margin: 8px 0 16px; color: #ffffff; font-size: 18px; line-height: 1.35; letter-spacing: -.02em; }
.poll-options-live { display: grid; gap: 9px; }

.poll-option-live {
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 48px;
  overflow: hidden;
  padding: 12px 13px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(7,5,13,.42);
  color: #e8e5ee;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  text-align: left;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.poll-option-live:hover { border-color: rgba(185,255,102,.43); transform: translateY(-1px); }
.poll-option-live.selected { border-color: #b9ff66; background: rgba(185,255,102,.095); color: #e4ffc4; }
.poll-option-live.voted { cursor: default; }
.poll-option-live:disabled {
  opacity: 1;
  color: #e8e5ee;
  -webkit-text-fill-color: #e8e5ee;
}
.poll-option-live.user-vote { border-color: rgba(185,255,102,.62); }
.poll-option-bar { position: absolute; z-index: -1; inset: 0 auto 0 0; width: 0; background: linear-gradient(90deg, rgba(149,61,227,.34), rgba(185,255,102,.12)); transition: width .55s ease; }
.poll-option-content { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.poll-option-percent { color: #c8ff80; font-size: 13px; font-weight: 800; }

.poll-vote-btn {
  width: 100%;
  margin-top: 12px;
  padding: 13px 16px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #bdff6e, #91df3c);
  color: #10140b;
  cursor: pointer;
  font-size: 14px;
  font-weight: 850;
}

.poll-vote-btn:disabled {
  background: rgba(255,255,255,.08);
  color: #aaa4bd;
  cursor: not-allowed;
  opacity: 1;
  -webkit-text-fill-color: #aaa4bd;
}
.poll-voted-note { margin: 12px 0 0; color: #a9a3b7; font-size: 12px; text-align: center; }
.polls-feedback { margin-bottom: 14px; padding: 11px 13px; border: 1px solid rgba(185,255,102,.22); border-radius: 12px; background: rgba(185,255,102,.08); color: #d9ffad; font-size: 13px; }
.polls-empty { padding: 34px 20px; border: 1px dashed rgba(255,255,255,.15); border-radius: 18px; color: #aaa4b8; text-align: center; }
.polls-empty strong { display: block; margin-bottom: 5px; color: #fff; font-size: 17px; }
.poll-skeleton { display: grid; gap: 11px; padding: 20px; border: 1px solid rgba(255,255,255,.09); border-radius: 18px; }
.poll-skeleton span { height: 44px; border-radius: 11px; background: linear-gradient(90deg, rgba(255,255,255,.045), rgba(255,255,255,.1), rgba(255,255,255,.045)); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
.poll-skeleton span:first-child { width: 65%; height: 20px; }
@keyframes shimmer { to { background-position: -200% 0; } }

.live-mode .support-footer { border-color: rgba(255,255,255,.08); }
.live-mode .support-links a:hover { color: #cfff93; }

@media (max-width: 420px) {
  .card { padding: 22px 16px 16px; border-radius: 0; box-shadow: none; }
  .page { padding: 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .live-mode .page { padding: 0; }
  .live-mode .card { min-height: 100vh; padding: 24px 17px 18px; border: 0; border-radius: 0; }
  .live-mode .brand { margin-bottom: 19px; }
  .live-mode .logo-badge { width: 58px; height: 58px; border-radius: 19px; }
  .live-mode .tabs .tab { gap: 5px; font-size: 12px; }
  .polls-heading h2 { font-size: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .live-eyebrow span,
  .poll-skeleton span { animation: none; }
  .poll-option-live { transition: none; }
}
