/* ============================================================
   PENNY PINCHER · Money Leak Quiz — App-shell layout
   Quiz/Gate screens: fits in 100dvh with options above the fold.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; height: 100%; }

:root {
  /* palette — pennypincher.com */
  --bg:           #ffffff;
  --surface:      #ffffff;
  --surface-soft: #f7faf8;
  --ink:          #0b1f1a;
  --text:         #0f2a23;
  --text-muted:   #4b5e57;
  --text-subtle:  #8a9c93;
  --border:       rgba(11, 31, 26, 0.10);
  --border-2:     rgba(11, 31, 26, 0.16);

  --primary:      #047857;
  --primary-2:    #059669;
  --primary-3:    #10b981;
  --primary-deep: #064e3b;
  --primary-ink:  #022c1f;
  --primary-fg:   #ffffff;
  --primary-50:   #ecfdf5;
  --primary-100:  #d1fae5;
  --teal:         #0d9488;
  --accent:       #f59e0b;

  --r-sm: 8px;
  --r:    10px;
  --r-lg: 14px;
  --r-xl: 22px;
  --r-pill: 999px;

  --shadow-1: 0 1px 2px rgba(11,31,26,.05);
  --shadow:   0 1px 2px rgba(11,31,26,.04), 0 6px 22px rgba(11,31,26,.07);
  --shadow-lg: 0 24px 60px -16px rgba(2, 44, 31, .22), 0 6px 18px -6px rgba(2,44,31,.10);
  --ring: 0 0 0 4px rgba(4, 120, 87, .22);

  --ease: cubic-bezier(.32,.72,0,1);
  --ease-out: cubic-bezier(.22,1,.36,1);

  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Instrument Serif', ui-serif, Georgia, 'Times New Roman', serif;

  /* chrome heights — must fit full brand lockup (icon 40 + 2-line text + spark) */
  --chrome-header-h: 72px;
  --chrome-progress-h: 4px;
  --chrome-h: calc(var(--chrome-header-h) + var(--chrome-progress-h));
}
@media (min-width: 768px) {
  :root { --chrome-header-h: 80px; }
}

body {
  font: 16px/1.55 var(--font-sans);
  color: var(--text);
  background: var(--bg);
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100dvh;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
button { font: inherit; color: inherit; }
img { max-width: 100%; display: block; }

.text-primary { color: var(--primary); }

/* ============================================================
   APP CHROME (fixed top, always visible)
   ============================================================ */
.app-chrome {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.site-header {
  min-height: var(--chrome-header-h);
  padding: 10px 16px;
  display: flex; align-items: center;
  overflow: visible;
}
.site-header-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

/* When in app mode (quiz/gate), brand centers between symmetric side slots */
body[data-mode="quiz"] .site-header-inner,
body[data-mode="gate"] .site-header-inner {
  grid-template-columns: 1fr auto 1fr;
}
body[data-mode="quiz"] .brand,
body[data-mode="gate"] .brand {
  grid-column: 2;
  justify-self: center;
}
body[data-mode="quiz"] .chrome-back,
body[data-mode="gate"] .chrome-back {
  grid-column: 1;
  justify-self: start;
}
body[data-mode="quiz"] .chrome-step,
body[data-mode="gate"] .chrome-step {
  grid-column: 3;
  justify-self: end;
}

/* When in intro/result mode, brand sits left */
body[data-mode="intro"] .brand,
body[data-mode="result"] .brand {
  justify-self: start;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  transition: transform .2s var(--ease);
}
.brand:hover { text-decoration: none; transform: scale(1.02); }
.brand-mark {
  position: relative;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-2) 0%, var(--primary) 100%);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 6px 14px -4px rgba(4,120,87,.45);
  transition: all .2s var(--ease);
  flex-shrink: 0;
}
.brand-mark > svg { width: 20px; height: 20px; }
@media (min-width: 768px) {
  .brand-mark { width: 40px; height: 40px; border-radius: 12px; }
  .brand-mark > svg { width: 22px; height: 22px; }
}
.brand:hover .brand-mark { transform: scale(1.05); }
.brand-spark {
  position: absolute;
  bottom: -3px; right: -3px;
  width: 14px; height: 14px;
  background: var(--primary-3);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
  color: #fff;
}
.brand-spark svg { width: 9px; height: 9px; }
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -0.025em;
  background: linear-gradient(90deg, var(--primary-2) 0%, var(--primary) 50%, var(--teal) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (min-width: 768px) { .brand-name { font-size: 20px; } }
.brand-sub {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--ink);
  margin-top: 3px;
  margin-left: 0;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: .7;
}
@media (min-width: 768px) { .brand-sub { font-size: 11.5px; } }
/* keep side controls vertically centered on the same axis as the brand */
.chrome-back, .chrome-step { align-self: center; }

.brand-dark .brand-mark { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.10); box-shadow: none; color: #6ee7b7; }
.brand-dark .brand-name { background: linear-gradient(90deg, #ffffff 0%, #d1fae5 60%, #6ee7b7 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-dark .brand-sub { color: rgba(255,255,255,.55); }
.brand-dark .brand-spark { background: #fbbf24; }

/* chrome back button (only visible in quiz mode) */
.chrome-back {
  display: inline-flex; align-items: center; gap: 4px;
  background: transparent; border: 0;
  height: 40px; padding: 0 8px 0 4px;
  color: var(--text-muted);
  font-weight: 700; font-size: 14px;
  cursor: pointer; border-radius: 10px;
  transition: all .15s var(--ease);
  justify-self: start;
  grid-column: 1;
}
.chrome-back:hover { background: var(--surface-soft); color: var(--ink); }
.chrome-back svg { width: 18px; height: 18px; }
.chrome-back[disabled] { opacity: 0; pointer-events: none; }
.chrome-back span { display: none; }
@media (min-width: 480px) { .chrome-back span { display: inline; } }

.chrome-step {
  display: inline-flex; align-items: baseline; gap: 2px;
  justify-self: end;
  grid-column: 3;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  padding: 6px 10px;
  background: var(--surface-soft);
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
}
.chrome-step b { color: var(--primary); font-weight: 800; font-size: 14px; }
.chrome-step-sep { color: var(--text-subtle); margin: 0 2px; }
@media (min-width: 768px) { .chrome-step { font-size: 14px; padding: 7px 14px; } }

/* in-chrome thin progress bar */
.chrome-progress {
  height: var(--chrome-progress-h);
  background: rgba(11,31,26,.08);
  overflow: hidden;
  opacity: 0;
  transition: opacity .25s var(--ease);
}
.chrome-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-3) 100%);
  transition: width .55s var(--ease-out);
  border-radius: 0 999px 999px 0;
}
body[data-mode="quiz"] .chrome-progress,
body[data-mode="gate"] .chrome-progress { opacity: 1; }

/* hide step counter + back when not in quiz mode */
body[data-mode="intro"] .chrome-back,
body[data-mode="intro"] .chrome-step,
body[data-mode="result"] .chrome-back,
body[data-mode="result"] .chrome-step,
body[data-mode="gate"] .chrome-back,
body[data-mode="gate"] .chrome-step { display: none !important; }
body[data-mode="quiz"] .chrome-back { display: inline-flex !important; }
body[data-mode="quiz"] .chrome-step { display: inline-flex !important; }

/* ============================================================
   HERO BAND — only on intro + result
   ============================================================ */
.hero-band {
  position: relative;
  background: linear-gradient(135deg, var(--primary-2) 0%, var(--primary) 50%, var(--primary-deep) 100%);
  padding: clamp(20px, 4vw, 48px) 16px;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
body[data-mode="quiz"] .hero-band,
body[data-mode="gate"] .hero-band { display: none; }

.hero-pattern {
  position: absolute; inset: 0;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-title {
  position: relative;
  margin: 0 auto;
  max-width: 920px;
  font-weight: 700;
  font-size: clamp(1.1rem, 4.2vw, 2rem);
  line-height: 1.18;
  letter-spacing: -0.015em;
  text-shadow: 0 1px 2px rgba(0,0,0,.08);
}
.hero-title .hero-find-out {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 5vw, 2.5rem);
  margin-top: 2px;
  color: #d1fae5;
  letter-spacing: -0.015em;
}

/* ============================================================
   APP STAGE
   ============================================================ */
.app-stage { background: #fff; }

/* default screen fade */
.screen { animation: scrFade .3s var(--ease-out) both; }
@keyframes scrFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

/* INTRO + RESULT: normal flow scrollable container */
.form-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px clamp(16px, 4vw, 24px) 80px;
}
@media (min-width: 768px) {
  .form-container { padding-top: 32px; }
}

/* QUIZ/GATE: app-mode stage that fills the viewport below the chrome */
.quiz-stage {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 14px clamp(16px, 4vw, 24px) max(14px, env(safe-area-inset-bottom));
  min-height: calc(100dvh - var(--chrome-h));
}
@media (min-width: 768px) {
  .quiz-stage { padding-top: 28px; padding-bottom: 32px; }
}

/* hide footer in quiz/gate mode (app feel) */
body[data-mode="quiz"] .site-foot,
body[data-mode="gate"] .site-foot { display: none; }

/* eyebrow */
.q-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  font-weight: 800;
  text-align: center;
  margin: 0 0 8px;
}
@media (min-width: 768px) { .q-eyebrow { font-size: 12px; margin: 0 0 10px; } }

/* question-label — tighter on mobile to keep options above the fold */
.question-label {
  margin: 0 0 14px;
  text-align: center;
  font-size: clamp(1.2rem, 4.6vw, 1.875rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}
@media (min-width: 768px) {
  .question-label { margin-bottom: 24px; font-size: clamp(1.5rem, 2.6vw, 1.875rem); }
}
.q-tight { margin-bottom: 8px; }

.intro-lede {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 24px;
  text-align: center;
}
@media (min-width: 768px) { .intro-lede { text-align: left; margin-bottom: 28px; } }
.intro-lede b { color: var(--ink); font-weight: 700; }
.gate-lede { text-align: center; margin-bottom: 18px; font-size: 14.5px; }
@media (min-width: 768px) { .gate-lede { font-size: 16px; margin-bottom: 24px; } }

.intro-bullets {
  list-style: none; padding: 0;
  margin: 0 0 28px;
  display: grid; gap: 10px;
}
.intro-bullets li {
  display: flex; align-items: center; gap: 12px;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
}
.intro-bullets svg {
  width: 22px; height: 22px;
  padding: 4px;
  color: var(--primary);
  background: var(--primary-100);
  border-radius: 50%;
  flex-shrink: 0;
}

.start-row {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; margin-bottom: 32px;
}
@media (min-width: 768px) {
  .start-row { flex-direction: row; gap: 20px; }
}
.start-meta { font-size: 13px; color: var(--text-subtle); font-weight: 500; }

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 2vw, 24px);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.intro-stats > div { display: flex; flex-direction: column; gap: 2px; text-align: center; }
.intro-stats b {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.intro-stats span { font-size: 11px; color: var(--text-muted); line-height: 1.3; }
@media (min-width: 640px) { .intro-stats span { font-size: 12.5px; } }

/* About this quiz — Meta compliance educational disclosure */
.about-quiz {
  margin-top: 32px;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface-soft);
}
.about-quiz .about-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.about-quiz p {
  margin: 0 0 10px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
}
.about-quiz p:last-child { margin-bottom: 0; }
.about-quiz b { color: var(--ink); font-weight: 700; }

/* Email-gate consent paragraph */
.gate-consent {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-subtle);
  max-width: 44ch;
  margin: 14px auto 0;
}
.gate-consent a { color: var(--text-muted); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* Giveaway fine print (sweepstakes compliance) */
.giveaway-fine {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(180, 83, 9, 0.18);
  font-size: 10.5px;
  line-height: 1.5;
  color: #78350f;
  opacity: .85;
}
.giveaway-fine a { color: #78350f; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

.micro {
  font-size: 12.5px;
  color: var(--text-subtle);
  margin: 10px 0 0;
  letter-spacing: 0.005em;
}
.micro-center { text-align: center; }
.micro a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }

/* ============================================================
   QUIZ BODY — the stage layout
   - eyebrow + question on top
   - options grow to fill remaining space (above the fold)
   - foot meta pinned to bottom
   ============================================================ */
.quiz-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.quiz-foot {
  padding-top: 16px;
  display: flex; justify-content: center;
}
.quiz-foot-meta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px;
  color: var(--text-subtle);
  letter-spacing: 0.01em;
  font-weight: 500;
}
.quiz-foot-meta svg { width: 13px; height: 13px; }
@media (max-width: 480px) { .quiz-foot { padding-top: 10px; } }

.q-hint-wrap { text-align: center; margin-bottom: 14px; }
.q-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--primary-100);
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary-deep);
  max-width: 100%;
}
.q-hint svg { width: 16px; height: 16px; color: var(--primary-deep); flex-shrink: 0; }
@media (min-width: 768px) {
  .q-hint { font-size: 13.5px; padding: 9px 16px; }
  .q-hint svg { width: 18px; height: 18px; }
}

/* OPTIONS — the meat. On mobile these grow to fill the remaining space. */
.opts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  flex: 1;
  align-content: stretch;
  min-height: 0;
}
@media (min-width: 640px) {
  .opts { grid-template-columns: 1fr 1fr; gap: 12px; flex: 0 0 auto; align-content: start; }
}

/* OPT BUTTON — sized for mobile-first */
.opt-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  min-height: 56px;
  padding: 10px 14px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: clamp(0.95rem, 3.6vw, 1.0625rem);
  line-height: 1.25;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color .15s var(--ease), color .15s var(--ease), transform .12s var(--ease), box-shadow .2s var(--ease);
  -webkit-user-select: none; user-select: none;
  text-wrap: balance;
}
@media (min-width: 768px) {
  .opt-btn {
    min-height: 64px;
    padding: 14px 18px;
    font-size: 1.0625rem;
  }
}
.opt-btn:hover {
  background: color-mix(in srgb, var(--primary) 8%, white);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -8px rgba(4,120,87,.45);
}
.opt-btn:active { transform: translateY(0); }
.opt-btn:focus-visible { outline: none; box-shadow: var(--ring); }
.opt-btn[aria-pressed="true"] {
  background: var(--primary);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 1px 2px rgba(2,44,31,.25),
    0 8px 20px -8px rgba(4,120,87,.55);
  animation: optPick .35s var(--ease-out);
}
@keyframes optPick {
  0% { transform: scale(1); }
  35% { transform: scale(.97); }
  100% { transform: scale(1); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --size: 3rem;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  height: var(--size);
  padding: 0 1.25rem;
  border-radius: 0.5rem;
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform .12s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), opacity .2s;
  text-decoration: none;
  -webkit-user-select: none; user-select: none;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-xl { --size: 3.25rem; font-size: 1.0625rem; padding: 0 1.5rem; }
@media (min-width: 768px) { .btn-xl { --size: 3.5rem; font-size: 1.125rem; padding: 0 1.75rem; } }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(180deg, var(--primary-2) 0%, var(--primary) 100%);
  border-color: var(--primary);
  color: var(--primary-fg);
  box-shadow:
    0 1px 0 rgba(255,255,255,.20) inset,
    0 1px 2px rgba(2,44,31,.25),
    0 10px 24px -8px rgba(4,120,87,.55);
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-deep) 100%);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.20) inset,
    0 2px 4px rgba(2,44,31,.25),
    0 16px 32px -8px rgba(4,120,87,.6);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible { outline: none; box-shadow: var(--ring), 0 10px 24px -8px rgba(4,120,87,.55); }
.btn-primary[disabled], .btn-primary[aria-busy="true"] { opacity: .6; cursor: not-allowed; transform: none; }

/* ============================================================
   GATE
   ============================================================ */
.gate-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  text-align: center;
}
.gate-icon {
  width: 64px; height: 64px;
  margin: 12px auto 14px;
  color: var(--primary);
  background: var(--primary-100);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.gate-icon svg { width: 36px; height: 36px; }
@media (min-width: 768px) {
  .gate-icon { width: 76px; height: 76px; margin-top: 24px; }
  .gate-icon svg { width: 44px; height: 44px; }
}

.gate-form { margin-top: 4px; display: grid; gap: 12px; flex: 1; align-content: start; }
.field { display: grid; gap: 6px; }
.field-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: left;
}
.input-wrap { position: relative; display: flex; align-items: center; }
.input-wrap .input-ok {
  position: absolute; right: 16px;
  width: 22px; height: 22px;
  color: var(--primary);
  opacity: 0; transform: scale(.6);
  transition: all .2s var(--ease);
  pointer-events: none;
}
.input-wrap.is-valid .input-ok { opacity: 1; transform: scale(1); }

.form-input {
  width: 100%;
  height: 3.25rem;
  padding: 0 48px 0 18px;
  border: 2px solid var(--primary);
  border-radius: 0.5rem;
  background: #fff;
  font: inherit;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink);
  outline: none;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
  text-align: left;
}
@media (min-width: 768px) {
  .form-input { height: 3.5rem; font-size: 1.1875rem; }
}
.form-input::placeholder { color: var(--text-subtle); font-weight: 400; }
.form-input:focus { box-shadow: var(--ring); }
.input-wrap.is-error .form-input { border-color: #dc2626; box-shadow: 0 0 0 4px rgba(220,38,38,.14); }
.field-err { font-size: 12.5px; color: #dc2626; font-weight: 700; margin-top: 2px; text-align: left; }

/* Phone input with +1 prefix */
.input-wrap-phone .input-prefix {
  position: absolute;
  left: 18px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-muted);
  pointer-events: none;
  z-index: 1;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .input-wrap-phone .input-prefix { font-size: 1.1875rem; }
}
.form-input-phone {
  padding-left: 46px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

/* TCPA consent checkbox row */
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--border-2);
  border-radius: 10px;
  background: var(--surface-soft);
  cursor: pointer;
  transition: border-color .15s var(--ease), background-color .15s var(--ease);
  text-align: left;
}
.consent-row:hover { border-color: var(--border-3); }
.consent-row:has(input:checked) {
  border-color: var(--primary);
  background: color-mix(in srgb, var(--primary) 5%, white);
}
.consent-row input[type="checkbox"] {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  accent-color: var(--primary);
  cursor: pointer;
}
.consent-text {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--text-muted);
  letter-spacing: 0;
}
.consent-text a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.consent-headline {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .consent-text { font-size: 12.5px; }
  .consent-headline { font-size: 16px; }
}

.btn-spin { display: none; animation: spin .8s linear infinite; }
.btn[aria-busy="true"] .btn-spin { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Skip link — bypasses the SMS opt-in */
.gate-skip {
  display: block;
  width: 100%;
  margin: 4px auto 0;
  padding: 12px 8px;
  background: transparent;
  border: 0;
  color: var(--text-muted);
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(11, 31, 26, 0.25);
  cursor: pointer;
  border-radius: 8px;
  transition: color .15s var(--ease), text-decoration-color .15s var(--ease);
}
.gate-skip:hover {
  color: var(--ink);
  text-decoration-color: var(--ink);
}
.gate-skip:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

/* ============================================================
   RESULT
   ============================================================ */
.result-shell {
  display: grid;
  gap: 16px;
  padding: 12px clamp(14px, 4vw, 24px) 48px;
  max-width: 880px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .result-shell { gap: 20px; padding-top: 20px; }
}

/* ============================================================
   GIVEAWAY HERO — leads the result page, above the fold on mobile
   ============================================================ */
.gw-hero {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(155deg, #f59e0b 0%, #d97706 45%, #b45309 100%);
  color: #fff;
  isolation: isolate;
}
.gw-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 320px at 100% -10%, rgba(254, 240, 138, 0.45), transparent 60%),
    radial-gradient(500px 280px at 0% 110%, rgba(180, 83, 9, 0.5), transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.gw-hero-content {
  position: relative;
  padding: 18px 18px 20px;
}
@media (min-width: 640px) {
  .gw-hero-content { padding: 28px 32px 32px; }
}

.gw-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 10px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.gw-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.25);
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot { 50% { box-shadow: 0 0 0 6px rgba(255,255,255,0); } }

.gw-prize {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 10px 0 6px;
  line-height: 1;
}
.gw-amount {
  font-family: var(--font-sans);
  font-size: clamp(44px, 11vw, 72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #ffffff 0%, #fef3c7 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  text-shadow: 0 2px 12px rgba(120, 53, 15, 0.2);
}
.gw-prize-label {
  font-size: clamp(15px, 3.6vw, 22px);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: rgba(255,255,255,.92);
}

.gw-deadline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.gw-deadline svg { width: 14px; height: 14px; }
.gw-deadline b { color: #fff; font-weight: 800; }
@media (min-width: 640px) { .gw-deadline { font-size: 13.5px; margin-bottom: 18px; } }

.gw-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.gw-stats > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.gw-stats b {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.gw-stats span {
  font-size: 11px;
  color: rgba(255,255,255,.78);
  line-height: 1.2;
  letter-spacing: 0.01em;
}
@media (min-width: 640px) {
  .gw-stats { gap: 12px; margin-bottom: 18px; }
  .gw-stats > div { padding: 12px 16px; }
  .gw-stats b { font-size: 24px; }
  .gw-stats span { font-size: 12px; }
}

.gw-cta-label {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  line-height: 1.4;
}
.gw-cta-label b { color: #fef3c7; font-weight: 800; }
@media (min-width: 640px) { .gw-cta-label { font-size: 14px; margin-bottom: 10px; } }

/* Link copy row — large, tappable, prominent */
.gw-link-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,.96);
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 10px;
  box-shadow: 0 8px 22px -8px rgba(120, 53, 15, 0.4);
}
.gw-link-row input {
  flex: 1; min-width: 0;
  border: 0; background: transparent;
  padding: 0 14px;
  height: 50px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  font-family: ui-monospace, SFMono-Regular, 'SF Mono', monospace;
  letter-spacing: -0.005em;
}
.gw-link-row input:focus { outline: none; }
.gw-link-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 50px;
  padding: 0 16px;
  background: var(--ink);
  border: 0;
  color: #fff;
  font: inherit;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background-color .15s var(--ease);
  flex-shrink: 0;
}
.gw-link-copy:hover { background: #000; }
.gw-link-copy .icon-copy { display: block; width: 16px; height: 16px; }
.gw-link-copy .icon-check { display: none; width: 16px; height: 16px; }
.gw-link-copy.copied { background: #15803d; }
.gw-link-copy.copied .icon-copy { display: none; }
.gw-link-copy.copied .icon-check { display: block; }
@media (min-width: 640px) {
  .gw-link-row input { height: 56px; font-size: 14px; padding: 0 18px; }
  .gw-link-copy { height: 56px; padding: 0 20px; font-size: 14.5px; }
}

/* Share buttons row */
.gw-share-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.gw-share-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  border-radius: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.20);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0;
  cursor: pointer;
  transition: all .15s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.gw-share-btn:hover {
  background: rgba(255,255,255,.22);
  text-decoration: none;
  transform: translateY(-1px);
}
.gw-share-btn svg { width: 18px; height: 18px; }
.gw-share-btn span { line-height: 1; }
@media (min-width: 640px) {
  .gw-share-row { gap: 8px; }
  .gw-share-btn { padding: 10px 6px; font-size: 12.5px; }
}

/* Bottom giveaway fine print */
.giveaway-fine-bottom {
  padding: 16px 18px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.55;
  margin: 0;
}
.giveaway-fine-bottom b { color: var(--ink); font-weight: 700; }
.giveaway-fine-bottom a { color: var(--primary); font-weight: 700; }

.result-hero {
  background: linear-gradient(140deg, var(--primary-ink) 0%, var(--primary-deep) 45%, var(--primary) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(22px, 4vw, 40px);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.result-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(500px 280px at 100% 0%, rgba(16,185,129,.35), transparent 60%),
    radial-gradient(400px 220px at 0% 110%, rgba(20,184,166,.22), transparent 60%);
  pointer-events: none;
}
.result-hero > * { position: relative; }
.result-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255,255,255,.78);
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.05);
}
.result-eyebrow svg { width: 14px; height: 14px; }
.result-code {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(64px, 14vw, 140px);
  line-height: .9;
  letter-spacing: -0.04em;
  margin: 12px 0 0;
  background: linear-gradient(180deg, #ffffff 0%, #a7f3d0 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
}
.result-name {
  font-weight: 800;
  font-size: clamp(24px, 5vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 6px 0 12px;
  color: #fff;
}
.result-name em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: #a7f3d0; }
.result-blurb {
  max-width: 56ch;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  color: rgba(255,255,255,.86);
  margin: 0;
}

.result-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow);
}
.section-eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 8px;
}
.section-title {
  font-weight: 800;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 14px;
}
.where-text { font-size: 15.5px; line-height: 1.55; color: var(--text-muted); margin: 0; }
.where-text b { color: var(--ink); font-weight: 700; }

.fix-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.fix-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface-soft);
  transition: border-color .15s var(--ease), background-color .15s var(--ease);
}
.fix-item:hover { border-color: var(--primary); background: #fff; }
.fix-num {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--primary);
  color: var(--primary-fg);
  display: grid; place-items: center;
  font-weight: 800; font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.fix-text { font-size: 15px; line-height: 1.55; color: var(--text); }
.fix-text b { color: var(--ink); font-weight: 700; }

.edge-card {
  display: flex; gap: 16px; align-items: center;
  padding: 18px;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
  border: 1px solid rgba(4,120,87,.16);
  border-radius: var(--r);
}
.edge-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-3) 100%);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 18px -4px rgba(4,120,87,.45);
}
.edge-icon svg { width: 22px; height: 22px; }
.edge-text { color: var(--ink); font-size: 14.5px; line-height: 1.5; }
.edge-text b { font-weight: 700; }

.ask-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 720px) { .ask-grid { grid-template-columns: 1fr 1fr; } }
.ask-card {
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.ask-card.refer { background: linear-gradient(160deg, #022c1f 0%, #064e3b 100%); color: #fff; border-color: transparent; }
.ask-card.refer::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 100% 0%, rgba(16,185,129,.35), transparent 60%);
  pointer-events: none;
}
.ask-card.refer > * { position: relative; }
.ask-card .ask-eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-flex; align-items: center; gap: 8px;
}
.ask-card.refer .ask-eyebrow { color: #6ee7b7; }
.ask-card.giveaway .ask-eyebrow { color: #b45309; }
.ask-card .ask-eyebrow svg { width: 14px; height: 14px; }
.ask-title { font-weight: 800; font-size: clamp(18px, 2.2vw, 22px); line-height: 1.2; letter-spacing: -0.025em; margin: 0 0 8px; }
.ask-card.refer .ask-title { color: #fff; }
.ask-blurb { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin: 0 0 16px; flex: 1; }
.ask-card.refer .ask-blurb { color: rgba(255,255,255,.78); }
.ask-card.giveaway { background: linear-gradient(160deg, #fffbeb 0%, #fef3c7 100%); border-color: rgba(245,158,11,.25); }
.ask-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

.share-row { display: flex; flex-wrap: wrap; gap: 8px; }
.share-btn {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  transition: all .15s var(--ease);
}
.share-btn:hover { background: rgba(255,255,255,.16); transform: translateY(-1px); }
.share-btn svg { width: 18px; height: 18px; }

.link-row {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 0.5rem;
  overflow: hidden;
  width: 100%;
  margin-bottom: 12px;
}
.link-row input {
  flex: 1; min-width: 0;
  border: 0; background: transparent;
  padding: 0 12px; height: 42px;
  color: rgba(255,255,255,.9);
  font-size: 12.5px;
  font-family: ui-monospace, SFMono-Regular, 'SF Mono', monospace;
}
.link-row input:focus { outline: none; }
.link-copy {
  height: 42px; padding: 0 14px;
  background: rgba(255,255,255,.12);
  border: 0; color: #fff;
  font-weight: 700; font-size: 12.5px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background-color .15s var(--ease);
}
.link-copy:hover { background: rgba(255,255,255,.22); }
.link-copy svg { width: 14px; height: 14px; }
.link-copy.copied { background: var(--primary-3); color: var(--primary-ink); }

.entries-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid rgba(245,158,11,.32);
  color: #92400e;
  font-weight: 800; font-size: 12.5px;
}
.entries-pill b { color: #b45309; font-variant-numeric: tabular-nums; }
.entries-pill svg { width: 14px; height: 14px; color: var(--accent); }

.btn-outline-dark {
  background: var(--surface);
  border: 2px solid var(--ink);
  color: var(--ink);
  --size: 2.6rem;
  font-size: .9375rem;
}
.btn-outline-dark:hover { background: var(--ink); color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-foot {
  margin-top: clamp(48px, 8vw, 96px);
  background: #0a0f0d;
  color: #cbd5cf;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
  padding-bottom: 32px;
}
.foot-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary-2) 0%, var(--primary-3) 50%, var(--teal) 100%);
}
.site-foot::before {
  content: ""; position: absolute;
  top: -120px; right: -120px; width: 320px; height: 320px;
  background: rgba(16,185,129,.10); border-radius: 50%; filter: blur(60px);
}
.site-foot::after {
  content: ""; position: absolute;
  top: 50%; left: -120px; width: 320px; height: 320px;
  background: rgba(4,120,87,.10); border-radius: 50%; filter: blur(60px);
}
.foot-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  position: relative; z-index: 1;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 48px);
  margin-bottom: 56px;
}
@media (max-width: 880px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

.foot-blurb { color: rgba(255,255,255,.55); font-size: 14.5px; line-height: 1.6; margin: 16px 0 20px; max-width: 380px; }
.foot-socials { display: flex; gap: 10px; }
.foot-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.55);
  display: grid; place-items: center;
  transition: all .2s var(--ease);
}
.foot-socials a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); border-color: transparent; }
.foot-socials svg { width: 18px; height: 18px; }

.foot-col h4 { color: #fff; font-size: 15px; font-weight: 800; margin: 0 0 18px; letter-spacing: -0.005em; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.foot-col a { color: rgba(255,255,255,.55); font-size: 14px; transition: color .15s var(--ease); }
.foot-col a:hover { color: #6ee7b7; text-decoration: none; }

.foot-fine {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px; flex-wrap: wrap;
}
.foot-fine-left p { margin: 0 0 4px; color: rgba(255,255,255,.4); font-size: 13px; }
.foot-addr { color: rgba(255,255,255,.32) !important; font-size: 12.5px !important; }
.foot-fine-right { display: flex; flex-wrap: wrap; gap: 22px; }
.foot-fine-right a { color: rgba(255,255,255,.5); font-size: 13px; transition: color .15s var(--ease); }
.foot-fine-right a:hover { color: #fff; text-decoration: none; }
.foot-disclaimer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.35);
  font-size: 12px;
  line-height: 1.6;
  max-width: 920px;
}
.foot-disclaimer a { color: rgba(255,255,255,.55); text-decoration: underline; text-underline-offset: 2px; }
.foot-disclaimer a:hover { color: #6ee7b7; }
.foot-disclaimer b { color: rgba(255,255,255,.55); font-weight: 700; }
.foot-disclaimer-meta { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.04); }

/* ============================================================
   SHORT-VIEWPORT TUNING (small phones in landscape, etc.)
   ============================================================ */
@media (max-height: 720px) and (max-width: 640px) {
  .question-label { font-size: clamp(1.05rem, 4.4vw, 1.4rem); margin-bottom: 10px; }
  .q-eyebrow { margin-bottom: 6px; }
  .q-hint { font-size: 11.5px; padding: 6px 12px; }
  .q-hint-wrap { margin-bottom: 10px; }
  .opts { gap: 8px; }
  .opt-btn { min-height: 50px; font-size: 0.95rem; padding: 8px 12px; }
  .quiz-foot-meta { font-size: 11px; }
}
@media (max-height: 600px) {
  .quiz-stage { padding-top: 8px; }
  .q-eyebrow { display: none; }
  .q-hint-wrap { display: none; }
  .question-label { margin-bottom: 8px; }
}

/* ============================================================
   MOTION REDUCE
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
