/* v2/styles.css — quiz skin for the NEW Atlas site UI (atlas-funded-site.vercel.app).
   Same markup/classes as the root quiz app (app.js), completely restyled:
   Inter, charcoal dark sections (#0C0C0C) with soft radial glow, dark surfaces,
   teal selected states, lime-pill CTAs with glow, teal statement hero on the result. */

:root {
  /* Dark system (new site) */
  --base: #0C0C0C;
  --surface: #161616;
  --chip: #1C1C1C;
  --border: #2A2A2A;
  --body-dim: #9A9A9A;
  --fine: #5E5E5E;
  --white: #FFFFFF;
  /* Teal brand */
  --teal: #06403C;
  --teal-card: #0E423A;
  --teal-sel: #14302B;
  --teal-border: #2F5C4F;
  --teal-glow: #3E8C7D;
  /* Lime accent (the ONLY accent) */
  --lime: #E1FFA0;
  --lime-ink: #1A3C2E;
  /* Light system */
  --light: #F5F5F3;
  --light-2: #EFEFED;
  --light-border: #E2E2DF;
  --ink: #141414;
  --muted-ink: #6E6E6E;
  --danger: #B00020;

  --radius-card: 22px;
  --shadow-card: 0 24px 70px rgba(0, 0, 0, 0.45);
  --shadow-light: 0 10px 30px rgba(20, 20, 20, 0.07);
  --glow-lime: 0 0 0 1.5px rgba(225, 255, 160, 0.5), 0 0 44px rgba(225, 255, 160, 0.18);

  --font: 'Inter', -apple-system, system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.25;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---- Full-screen stage ---------------------------------------------------- */
#quiz-root { position: fixed; inset: 0; display: flex; flex-direction: column; overflow: hidden; }

/* Quiz + analyzing: new-site dark statement background (charcoal + soft top glow). */
#quiz-root.theme-dark {
  background:
    radial-gradient(72% 60% at 50% 6%, #2E2D2B 0%, rgba(26, 26, 25, 0.55) 38%, rgba(14, 14, 14, 0) 72%),
    var(--base);
}
/* Result: new-site light section. */
#quiz-root.theme-light { background: var(--light); }

.stage {
  flex: 1; display: flex; flex-direction: column;
  padding: 20px; overflow-y: auto; -webkit-overflow-scrolling: touch;
}

/* ---- Top bar: progress + close ------------------------------------------- */
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 44px; margin-bottom: 10px; }

.progress { flex: 1; }
.segs { display: flex; gap: 6px; }
.seg {
  flex: 1; height: 4px; border-radius: 999px;
  background: var(--border);
  transition: background 300ms var(--ease), box-shadow 300ms var(--ease);
}
.theme-light .seg { background: var(--light-border); }
.seg.done { background: var(--lime); }
.seg.active { background: var(--lime); box-shadow: 0 0 12px rgba(225, 255, 160, 0.5); }
.progress-label {
  margin-top: 8px; font-size: 11.5px; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--fine);
}
.theme-light .progress-label { color: var(--muted-ink); }

.close-btn {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 999px; cursor: pointer;
  background: rgba(255, 255, 255, 0.06); color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font-size: 20px; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: background 150ms var(--ease);
}
.close-btn:hover { background: rgba(255, 255, 255, 0.14); }
.theme-light .close-btn { background: var(--light-2); color: var(--ink); border-color: var(--light-border); }
.theme-light .close-btn:hover { background: var(--light-border); }

/* ---- Quiz framing header --------------------------------------------------- */
.quiz-wrap { margin: auto; width: 100%; max-width: 560px; display: flex; flex-direction: column; }
.quiz-wrap .card { margin: 0; }
.quiz-header { text-align: center; margin-bottom: 22px; padding: 0 8px; }
.quiz-title { font-size: 28px; font-weight: 500; letter-spacing: -0.03em; line-height: 1.1; }
.quiz-title .lead { color: rgba(255, 255, 255, 0.92); }
.quiz-title .emph {
  background: linear-gradient(90deg, var(--lime) 0%, #F4FFD1 60%, var(--lime) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 500;
}
.quiz-sub { color: var(--body-dim); font-size: 15px; line-height: 1.4; margin-top: 9px; }

/* ---- Card (dark surface, new-site style) ----------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 30px 24px; width: 100%; max-width: 560px; margin: auto; position: relative;
  color: var(--white);
}
.card.enter-fwd  { animation: enterFwd 420ms var(--ease-out) both; }
.card.enter-back { animation: enterBack 420ms var(--ease-out) both; }
@keyframes enterFwd  { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: none; } }
@keyframes enterBack { from { opacity: 0; transform: translateX(-24px); } to { opacity: 1; transform: none; } }

.watermark {
  position: absolute; top: 10px; right: 18px;
  font-size: 96px; font-weight: 600; letter-spacing: -0.04em;
  color: var(--chip); line-height: 1; pointer-events: none; user-select: none;
}

/* Profiling pill / eyebrow (new-site chip-label style) */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--chip); border: 1px solid var(--border);
  color: var(--body-dim);
  font-size: 13px; font-weight: 500; letter-spacing: -0.01em;
}
.pill::before {
  content: ""; width: 7px; height: 7px; border-radius: 999px;
  background: var(--lime); box-shadow: 0 0 8px rgba(225, 255, 160, 0.6);
}

.q-heading { margin: 20px 0 22px; font-size: 30px; font-weight: 500; letter-spacing: -0.03em; line-height: 1.08; }
.q-heading .lead { color: var(--body-dim); display: block; }
.q-heading .emph { color: var(--white); font-weight: 500; }

/* Intro */
.intro-sub { color: var(--body-dim); font-size: 17px; line-height: 1.45; margin: 0 0 26px; }

/* ---- Options (dark chips, teal selected) ------------------------------------ */
.options { display: flex; flex-direction: column; gap: 10px; border: 0; }
.option {
  display: flex; align-items: center; gap: 14px; min-height: 56px; padding: 0 18px;
  border: 1px solid var(--border); border-radius: 14px; background: var(--chip); cursor: pointer;
  font-size: 16.5px; font-weight: 500; letter-spacing: -0.01em; color: #E8E8E8;
  transition: border-color 150ms var(--ease), background 150ms var(--ease), transform 120ms var(--ease), box-shadow 150ms var(--ease);
  animation: optRise 420ms var(--ease-out) both; animation-delay: calc(var(--i, 0) * 55ms + 120ms);
}
@keyframes optRise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.option:hover { border-color: var(--teal-glow); transform: translateY(-1px); }
.option:active { transform: scale(0.99); }
.option input { position: absolute; opacity: 0; width: 0; height: 0; }
.option .radio {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 999px;
  border: 2px solid var(--fine); position: relative; transition: all 150ms var(--ease);
}
.option .radio::after {
  content: ""; position: absolute; inset: 5px; border-radius: 999px; background: var(--lime);
  transform: scale(0); transition: transform 180ms var(--ease-out);
}
.option.selected {
  border-color: var(--teal-glow); background: var(--teal-sel); color: var(--white);
  box-shadow: 0 0 0 3px rgba(62, 140, 125, 0.22), 0 0 24px rgba(225, 255, 160, 0.08);
}
.option.selected .radio { border-color: var(--lime); background: transparent; }
.option.selected .radio::after { transform: scale(1); }
.option:focus-within { outline: 3px solid rgba(225, 255, 160, 0.55); outline-offset: 2px; }

/* ---- Buttons (new-site lime pill w/ glow) ----------------------------------- */
.nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 24px; }
.btn {
  border: none; cursor: pointer; border-radius: 999px; font-family: var(--font);
  font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em; padding: 16px 30px; min-height: 52px;
  transition: transform 100ms var(--ease), opacity 150ms var(--ease), background 150ms var(--ease), box-shadow 150ms var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--lime); color: var(--lime-ink); flex: 1;
  box-shadow: 0 0 0 6px rgba(225, 255, 160, 0.14), 0 6px 24px rgba(225, 255, 160, 0.18);
}
.btn-primary:hover { box-shadow: 0 0 0 6px rgba(225, 255, 160, 0.22), 0 8px 30px rgba(225, 255, 160, 0.3); }
.btn-primary:disabled { opacity: 0.3; cursor: not-allowed; box-shadow: none; }
.btn-accent {
  background: var(--lime); color: var(--lime-ink);
  box-shadow: 0 0 0 6px rgba(225, 255, 160, 0.14), 0 6px 24px rgba(225, 255, 160, 0.18);
}
.btn-accent:hover { box-shadow: 0 0 0 6px rgba(225, 255, 160, 0.22), 0 8px 30px rgba(225, 255, 160, 0.3); }
.btn-ghost { background: transparent; color: var(--body-dim); padding: 15px 20px; border: 1px solid transparent; }
.btn-ghost:hover { color: var(--white); }
.theme-light .btn-ghost:hover { color: var(--ink); }
.btn-ghost[hidden] { visibility: hidden; }
.btn:focus-visible, .close-btn:focus-visible { outline: 3px solid rgba(225, 255, 160, 0.55); outline-offset: 2px; }

/* Redirecting spinner (on the lime CTA, so the spinner is dark) */
.btn.is-loading { display: inline-flex; align-items: center; justify-content: center; gap: 10px; opacity: 0.9; }
.spinner {
  width: 18px; height: 18px; border-radius: 999px; flex: 0 0 auto;
  border: 2.5px solid rgba(26, 60, 46, 0.25); border-top-color: var(--lime-ink);
  animation: spin 700ms linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Analyzing screen -------------------------------------------------------- */
.analyzing { margin: auto; text-align: center; color: var(--white); max-width: 420px; padding: 20px; }
.analyzing.enter-fwd { animation: enterFwd 420ms var(--ease-out) both; }

.ring {
  position: relative; width: 132px; height: 132px; margin: 0 auto 30px;
  display: flex; align-items: center; justify-content: center;
}
.ring::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(var(--lime) calc(var(--p, 0) * 1%), rgba(225, 255, 160, 0.1) 0);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 10px), #000 calc(100% - 9px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 10px), #000 calc(100% - 9px));
  transition: background 120ms linear;
}
.ring::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  box-shadow: 0 0 42px rgba(225, 255, 160, 0.22); animation: breathe 2.1s var(--ease) infinite;
}
@keyframes breathe { 0%, 100% { opacity: 0.55; transform: scale(0.98); } 50% { opacity: 1; transform: scale(1.02); } }
.ring-pct { position: relative; font-size: 32px; font-weight: 500; letter-spacing: -0.02em; color: var(--white); }
.ring-pct span { font-size: 15px; color: var(--body-dim); margin-left: 2px; font-weight: 500; }

.analyzing h1 { font-size: 26px; font-weight: 500; letter-spacing: -0.025em; margin-bottom: 10px; }
[tabindex="-1"]:focus { outline: none; }
.analyzing .sub { color: var(--body-dim); font-size: 16px; min-height: 22px; }

/* ---- Email field (gate + inline) --------------------------------------------- */
.field { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 999px; padding: 4px 6px 4px 20px; background: var(--chip); }
.field:focus-within { border-color: var(--teal-glow); }
.field.err-input { border-color: var(--danger); }
.field input { flex: 1; min-width: 0; border: none; outline: none; font-family: var(--font); font-size: 16px; color: var(--white); background: transparent; padding: 14px 0; }
.field input::placeholder { color: var(--fine); }
.theme-light .field { background: var(--white); border-color: var(--light-border); }
.theme-light .field input { color: var(--ink); }
.err { color: #FF7A7A; font-size: 14px; min-height: 18px; margin-top: 6px; }
.theme-light .err { color: var(--danger); }

/* Gate (legacy A/B) */
.gate { text-align: center; }
.gate h1 { font-size: 26px; font-weight: 500; letter-spacing: -0.025em; margin-bottom: 8px; color: var(--white); }
.gate p { color: var(--body-dim); font-size: 16px; margin-bottom: 22px; }
.gate .err { text-align: left; }

/* ---- Result screen (light section, teal statement hero) ----------------------- */
.result { max-width: 640px; margin: 0 auto; width: 100%; padding-bottom: calc(120px + env(safe-area-inset-bottom)); }
.result.enter-fwd { animation: enterFwd 460ms var(--ease-out) both; }

.result-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(155deg, var(--teal) 0%, var(--teal-card) 55%, #14302B 100%);
  color: var(--white); border-radius: var(--radius-card); padding: 32px 28px;
  border: 1px solid var(--teal-border);
  box-shadow: 0 24px 70px rgba(6, 64, 60, 0.35);
  margin-bottom: 14px;
}
.result-hero::before {
  content: ""; position: absolute; top: -60%; right: -20%; width: 80%; height: 160%;
  background: radial-gradient(closest-side, rgba(225, 255, 160, 0.2), transparent 70%);
  pointer-events: none;
}
.result-hero .marker {
  position: relative; width: 56px; height: 56px; border-radius: 999px;
  border: 2px solid rgba(225, 255, 160, 0.35); display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.result-hero .marker .core {
  width: 34px; height: 34px; border-radius: 999px; background: var(--lime); color: var(--lime-ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px rgba(225, 255, 160, 0.4);
}
.result-hero h1 { position: relative; font-size: 34px; font-weight: 500; letter-spacing: -0.03em; line-height: 1.06; margin-bottom: 14px; }
.result-hero h1 .lead { color: #8FD8CC; }
.result-hero h1 .emph { color: var(--white); }
.route-chip {
  position: relative; display: inline-flex; align-items: center;
  padding: 7px 15px; border-radius: 999px; margin-bottom: 14px;
  border: 1px solid rgba(225, 255, 160, 0.5); color: var(--lime);
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  background: rgba(225, 255, 160, 0.06);
}
.result-hero .rline { position: relative; color: #CFDAD6; font-size: 17px; line-height: 1.45; }

/* Payout wedge (dark charcoal card, lime glow — new-site statement style) */
.payout-card {
  display: flex; align-items: center; gap: 16px;
  background:
    radial-gradient(80% 120% at 20% -20%, #2E2D2B 0%, rgba(22, 22, 22, 0) 60%),
    var(--base);
  border-radius: 18px; padding: 20px 22px;
  margin-bottom: 14px; box-shadow: var(--glow-lime);
}
.payout-mark {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 999px; background: rgba(225, 255, 160, 0.12);
  display: flex; align-items: center; justify-content: center; color: var(--lime);
}
.payout-text { color: var(--lime); font-size: 18px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.25; }

/* Tier table (white cards; recommended = dark teal card w/ glow) */
.tiers { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 22px 0 16px; }
.tier {
  position: relative; background: var(--white); border: 1px solid var(--light-border); border-radius: 16px;
  padding: 22px 20px; box-shadow: var(--shadow-light);
}
.tier:not(.recommended) { background: var(--white); }
.tier.recommended {
  background: linear-gradient(165deg, var(--teal-card) 0%, #14302B 100%);
  border: 1px solid var(--teal-glow);
  box-shadow: 0 0 0 1.5px rgba(62, 140, 125, 0.4), 0 0 44px rgba(225, 255, 160, 0.14), 0 24px 60px rgba(6, 64, 60, 0.3);
  order: -1; padding-top: 30px;
}
.tier-flag {
  position: absolute; top: -12px; left: 20px;
  font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  background: var(--lime); color: var(--lime-ink); padding: 5px 12px; border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.tier-head { margin-bottom: 12px; }
.tier-name { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.tier.recommended .tier-name { color: var(--white); }
.tier-row { display: flex; flex-direction: column; gap: 3px; padding: 11px 0; border-top: 1px solid var(--light-border); }
.tier.recommended .tier-row { border-top-color: rgba(255, 255, 255, 0.12); }
.tier-row .k { color: var(--muted-ink); font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.tier.recommended .tier-row .k { color: #8FD8CC; }
.tier-row .v { color: var(--ink); font-size: 15px; font-weight: 500; line-height: 1.35; }
.tier.recommended .tier-row .v { color: var(--white); }

.simulated { color: var(--muted-ink); font-size: 13px; line-height: 1.45; margin-top: 4px; text-align: center; }

/* Inline (non-blocking) email capture */
.inline-email {
  margin-top: 18px; background: var(--white); border: 1px solid var(--light-border);
  border-radius: 16px; padding: 18px 18px; box-shadow: var(--shadow-light);
}
.inline-email-label { display: block; font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.inline-email .field { padding-right: 4px; }
.inline-email-btn { min-height: 44px; padding: 11px 18px; font-size: 14.5px; white-space: nowrap; }
.inline-email.done {
  text-align: center; color: var(--lime-ink); font-weight: 600; font-size: 15px;
  background: var(--lime); border-color: var(--lime);
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, var(--light) 62%, rgba(245, 245, 243, 0.85) 82%, rgba(245, 245, 243, 0));
  z-index: 20;
}
.sticky-cta .btn-primary { width: 100%; }
.cta-subtext { text-align: center; color: var(--muted-ink); font-size: 13px; margin-top: 8px; }

/* ---- Conversion blocks (result) ---------------------------------------------- */
.proof-strip { position: relative; display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; }
.proof-item { display: inline-flex; align-items: center; gap: 6px; color: #CFDAD6; font-size: 14px; font-weight: 500; }
.proof-star { color: var(--lime); }

.trust-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 13px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--light-border); color: var(--ink);
  font-size: 13px; font-weight: 500; box-shadow: 0 4px 14px rgba(20, 20, 20, 0.05);
}
.tc-icon { color: var(--teal); }

.block-title { font-size: 20px; font-weight: 600; letter-spacing: -0.025em; color: var(--ink); margin-bottom: 14px; }

.entry-hook {
  display: block; background: var(--lime); color: var(--lime-ink); font-weight: 600; font-size: 16px;
  letter-spacing: -0.01em; padding: 13px 16px; border-radius: 12px; margin-bottom: 18px;
  box-shadow: 0 0 0 4px rgba(225, 255, 160, 0.16);
}
.promo-note {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 14px; padding: 7px 13px;
  border-radius: 999px; background: rgba(225, 255, 160, 0.08); border: 1px solid rgba(225, 255, 160, 0.45);
  color: var(--lime); font-size: 13px; font-weight: 600;
}

.reco-card { background: var(--white); border: 1px solid var(--light-border); border-radius: 18px; padding: 24px 22px; box-shadow: var(--shadow-light); margin-bottom: 16px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 20px; }
.feature-list li { position: relative; padding-left: 30px; font-size: 16px; color: var(--ink); line-height: 1.35; }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 999px;
  background: var(--lime);
  -webkit-mask: none; mask: none;
}
.feature-list li::after {
  content: ""; position: absolute; left: 5px; top: 5px; width: 10px; height: 10px;
  background: var(--lime-ink);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 12.5 10 18 19.5 6.5'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4.5 12.5 10 18 19.5 6.5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.reco-cta { margin-top: 4px; }
.reco-cta .btn-primary { width: 100%; }

.hiw { margin-bottom: 16px; }
.steps { display: flex; flex-direction: column; gap: 14px; }
.step { display: flex; gap: 14px; align-items: flex-start; }
.step-n {
  flex: 0 0 auto; width: 32px; height: 32px; border-radius: 999px;
  background: var(--teal-card); color: var(--lime); font-weight: 600; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.step-title { font-size: 16px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.step-desc { font-size: 15px; color: var(--muted-ink); line-height: 1.4; margin-top: 2px; }

.order-bump { display: flex; align-items: center; gap: 14px; background: var(--light-2); border: 1px dashed #CFCFCB; border-radius: 16px; padding: 16px 18px; margin-bottom: 16px; }
.ob-badge { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 999px; background: var(--lime); color: var(--lime-ink); display: flex; align-items: center; justify-content: center; }
.ob-title { font-size: 15px; font-weight: 600; color: var(--ink); }
.ob-desc { font-size: 14px; color: var(--muted-ink); line-height: 1.35; margin-top: 2px; }

.urgency {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px 14px;
  background: var(--base); color: var(--lime); border-radius: 14px; padding: 14px 18px; margin-bottom: 16px;
  box-shadow: var(--glow-lime);
}
.urgency-label { font-size: 14px; font-weight: 500; color: var(--body-dim); }
.countdown { font-size: 20px; font-weight: 600; letter-spacing: 0.02em; font-variant-numeric: tabular-nums; }
.urgency-code { font-size: 13px; color: var(--body-dim); }

.faq { margin-bottom: 16px; }
.faq-item { background: var(--white); border: 1px solid var(--light-border); border-radius: 12px; margin-bottom: 8px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 16px 18px; font-size: 16px; font-weight: 600; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--muted-ink); font-size: 22px; font-weight: 300; line-height: 1; transition: transform 200ms var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:focus-visible { outline: 3px solid rgba(225, 255, 160, 0.55); outline-offset: -3px; }
.faq-a { padding: 0 18px 16px; font-size: 15px; color: var(--muted-ink); line-height: 1.45; }

/* ---- Responsive ---------------------------------------------------------------- */
@media (min-width: 640px) {
  .stage { padding: 32px; }
  .quiz-title { font-size: 36px; }
  .q-heading { font-size: 34px; }
  .result-hero h1 { font-size: 42px; }
  .sticky-cta { position: static; padding: 0; background: none; max-width: 640px; margin: 0 auto 24px; }
  .result { padding-bottom: 0; }
}
@media (min-width: 820px) {
  .tiers { grid-template-columns: repeat(3, 1fr); align-items: start; gap: 16px; }
  .tier.recommended { order: 0; transform: scale(1.04); transform-origin: bottom center; z-index: 1; }
}

/* ---- Reduced motion -------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 60ms !important; }
  .tier.recommended { transform: none; }
  .option { opacity: 1; transform: none; }
}

/* ---- Inline SVG icons -------------------------------------------------------------- */
.svg-icon, .tc-icon, .pn-tag, .proof-star, .payout-icon, .marker-icon, .ob-icon, .wm-icon {
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
}
.svg-icon svg { width: 1em; height: 1em; display: block; }
.tc-icon svg { width: 14px; height: 14px; display: block; }
.pn-tag svg { width: 14px; height: 14px; display: block; }
.proof-star svg { width: 14px; height: 14px; display: block; }
.payout-icon svg { width: 22px; height: 22px; display: block; }
.marker-icon svg { width: 18px; height: 18px; display: block; }
.ob-icon svg { width: 18px; height: 18px; display: block; }
.watermark-icon svg { width: 64px; height: 64px; display: block; }
.trust-chip { gap: 7px; }
.promo-note { gap: 7px; }
