:root {
  --accent: #2563a8;
  --accent-ink: #ffffff;
  --ink: #15181d;
  --muted: #5a636e;
  --line: #e7e9ee;
  --bg: #ffffff;
  --soft: #f6f8fb;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 8px 24px rgba(16, 24, 40, 0.06);
  --maxw: 760px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 30px 0; }

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 1.08rem; letter-spacing: -0.01em; }
.brand .mark {
  width: 30px; height: 30px; border-radius: 8px;
  display: grid; place-items: center; font-size: 16px;
  background: color-mix(in srgb, var(--accent) 14%, white);
}
.nav .navcta {
  font-size: 0.92rem; font-weight: 600; text-decoration: none;
  color: var(--accent); padding: 8px 14px; border-radius: 9px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, white);
}
.nav .navcta:hover { background: color-mix(in srgb, var(--accent) 8%, white); }

/* ---- Hero ---- */
.hero {
  padding: 60px 0 44px;
  background:
    radial-gradient(1100px 460px at 78% -8%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 60%),
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 4%, white), var(--bg));
}
.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, white);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 18px;
}
h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.2rem);
  line-height: 1.08; letter-spacing: -0.03em; margin: 0 0 18px; font-weight: 800;
}
.sub { font-size: 1.18rem; line-height: 1.55; color: var(--muted); margin: 0 0 26px; max-width: 38em; }

/* ---- Capture form ---- */
.capture { display: flex; gap: 9px; flex-wrap: wrap; max-width: 480px; }
.capture input[type="email"] {
  flex: 1 1 230px; padding: 14px 15px; font-size: 1rem; color: var(--ink);
  border: 1px solid #cfd5de; border-radius: 11px; background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.capture input[type="email"]:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, white);
}
.capture button {
  padding: 14px 22px; font-size: 1rem; font-weight: 650; font-family: inherit;
  color: var(--accent-ink); background: var(--accent); border: 0; border-radius: 11px;
  cursor: pointer; white-space: nowrap; transition: transform .04s, filter .15s;
}
.capture button:hover { filter: brightness(1.07); }
.capture button:active { transform: translateY(1px); }
.capture button:disabled { opacity: .6; cursor: default; }
.trial-cta {
  display: inline-block; padding: 15px 28px; font-size: 1.05rem; font-weight: 650;
  font-family: inherit; color: var(--accent-ink); background: var(--accent);
  border: 0; border-radius: 11px; cursor: pointer; transition: transform .04s, filter .15s;
}
.trial-cta:hover { filter: brightness(1.07); }
.trial-cta:active { transform: translateY(1px); }
.trial-cta:disabled { opacity: .6; cursor: default; }
.micro { font-size: 0.9rem; color: var(--muted); margin: 11px 0 0; }
.msg { font-size: 0.96rem; margin: 10px 0 0; min-height: 1.2em; font-weight: 550; }
.msg.ok { color: #157347; }
.msg.err { color: #c0392b; }

/* ---- Stat band ---- */
.stats {
  background: color-mix(in srgb, var(--accent) 7%, white);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stats .row { display: flex; flex-wrap: wrap; gap: 12px; padding: 26px 0; }
.stat { flex: 1 1 140px; }
.stat .big { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em; color: var(--accent); }
.stat .label { font-size: 0.92rem; color: var(--muted); margin-top: 2px; }

/* ---- Problem ---- */
.problem p {
  font-size: 1.12rem; color: #2c333c; margin: 0;
  border-left: 3px solid var(--accent); padding-left: 18px;
}

/* ---- Steps ---- */
.how h2, .faq h2 { font-size: 1.45rem; letter-spacing: -0.015em; margin: 0 0 20px; font-weight: 750; }
.steps { display: grid; gap: 14px; }
.step {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 18px;
}
.step .n {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 8px;
  display: grid; place-items: center; font-weight: 700; font-size: 0.95rem;
  color: var(--accent-ink); background: var(--accent);
}
.step p { margin: 3px 0 0; }

/* ---- FAQ ---- */
.faq details {
  border: 1px solid var(--line); border-radius: 12px; padding: 4px 18px; margin-bottom: 10px;
  background: #fff;
}
.faq summary {
  cursor: pointer; font-weight: 600; padding: 13px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.3rem; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 14px; color: var(--muted); }

/* ---- Final CTA ---- */
.final {
  background: color-mix(in srgb, var(--accent) 9%, white);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, white);
  border-radius: 18px; padding: 34px 28px; text-align: center; margin: 16px 0 8px;
}
.final h2 { margin: 0 0 8px; font-size: 1.5rem; letter-spacing: -0.015em; }
.final .sub { margin: 0 auto 20px; }
.final .capture { margin: 0 auto; justify-content: center; }

/* ---- Footer ---- */
footer { border-top: 1px solid var(--line); margin-top: 16px; }
footer .wrap { padding: 26px 22px 50px; }
.trust { font-size: 0.85rem; color: var(--muted); margin: 0 0 6px; }
.legal { font-size: 0.85rem; margin: 0 0 6px; }
.legal a { color: var(--muted); text-decoration: none; }
.legal a:hover { color: var(--accent); text-decoration: underline; }
.copyright { font-size: 0.82rem; color: #9aa2ad; }
.about h2 { font-size: 1.25rem; margin: 0 0 10px; }
.about p { color: var(--muted); margin: 0; }
.legaldoc { padding: 40px 22px 70px; }
.legaldoc h1 { font-size: 1.9rem; margin: 0 0 16px; }
.legaldoc h2 { font-size: 1.15rem; margin: 26px 0 8px; }
.legaldoc p, .legaldoc li { color: #3a424d; }
.legaldoc a { color: var(--accent); }

/* ---- Index ---- */
.grid { display: grid; gap: 14px; grid-template-columns: 1fr; margin: 22px 0; }
@media (min-width: 620px) { .grid { grid-template-columns: 1fr 1fr; } }
.card {
  display: block; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 16px 18px; text-decoration: none; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.card strong { display: block; margin: 6px 0 4px; }
.card em { color: var(--muted); font-style: normal; font-size: 0.9rem; }
.badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700; color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, white); padding: 2px 9px; border-radius: 999px;
}

/* ---- Skip link / hidden ---- */
.hidden { display: none; }
.skip { color: var(--muted); text-decoration: none; }
.skip:hover { color: var(--accent); text-decoration: underline; }

/* ---- Logo mark ---- */
.mark-logo { background: none !important; color: var(--accent); width: auto; height: auto; }
.mark-logo svg { width: 26px; height: 21px; display: block; }

/* ---- Dark theme (nav + hero) ---- */
body.dark .nav { background: rgba(10, 20, 15, 0.82); border-bottom-color: rgba(255, 255, 255, 0.08); }
body.dark .nav .brand { color: #fff; }
body.dark .mark-logo { color: #4ade80; }
body.dark .nav .navcta { color: #fff; border-color: rgba(255, 255, 255, 0.28); }
body.dark .nav .navcta:hover { background: rgba(255, 255, 255, 0.08); }
body.dark .hero {
  background:
    radial-gradient(900px 460px at 82% -10%, rgba(34, 197, 94, 0.22), transparent 62%),
    linear-gradient(180deg, #0a1a12 0%, #0c211636 100%), #0a160f;
}
body.dark .hero h1 { color: #fff; }
body.dark .hero .sub { color: rgba(255, 255, 255, 0.72); }
body.dark .hero .micro { color: rgba(255, 255, 255, 0.58); }
body.dark .hero .micro a, body.dark .hero .skip { color: rgba(255, 255, 255, 0.75); }
body.dark .phone { box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 60px -10px rgba(34, 197, 94, 0.25); }

/* ---- Integrations logo cloud ---- */
.integ-sec { background: var(--soft); }
.sec-head.center { max-width: 42em; margin-left: auto; margin-right: auto; text-align: center; }
.integ-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 26px; }
@media (max-width: 780px) { .integ-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px) { .integ-grid { grid-template-columns: repeat(2, 1fr); } }
.integ-cell {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px;
  text-align: center; padding: 20px 10px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  font-weight: 700; font-size: 0.92rem; letter-spacing: -0.015em; color: #5b6672;
  min-height: 92px; transition: transform .15s ease, box-shadow .15s ease, color .15s ease;
}
.integ-cell:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--ink); }
.integ-ico { color: #97a1ad; transition: color .15s ease; }
.integ-ico svg { width: 28px; height: 28px; display: block; }
.integ-cell:hover .integ-ico { color: var(--accent); }
.integ-name { line-height: 1.15; }

/* ---- Logo in mockup header + founder avatar ---- */
.scr-brand { display: inline-flex; align-items: center; gap: 6px; }
.scr-logo { color: var(--accent); display: inline-flex; }
.scr-logo svg { width: 17px; height: 14px; display: block; }
.founder-avatar-logo { color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, white) !important; }
.founder-avatar-logo svg { width: 26px; height: 21px; }

/* ---- Pull quote ---- */
.quote-sec { background: #0a160f; }
.pullquote { max-width: 40em; margin: 0 auto; text-align: center; }
.pullquote blockquote {
  font-size: clamp(1.35rem, 3vw, 1.95rem); line-height: 1.32; font-weight: 700;
  letter-spacing: -0.02em; color: #fff; margin: 0 0 16px;
}
.pullquote figcaption { color: #6ee7a0; font-weight: 600; font-size: 0.95rem; }

/* ---- Split hero + device ---- */
.hero-split { padding-top: 40px; }
.hero-split .wrap { max-width: 1120px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-copy { min-width: 0; }
.hero-visual { display: flex; justify-content: center; }
@media (max-width: 860px) {
  .hero-split .wrap { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { order: 2; }
}

/* ---- Device mockup ---- */
.phone {
  width: 300px; max-width: 84vw; background: #0d1116; border-radius: 38px; padding: 12px;
  box-shadow: 0 30px 60px -20px rgba(16,24,40,.35), 0 0 0 1px rgba(0,0,0,.06); position: relative;
}
.phone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 120px; height: 22px; background: #0d1116; border-radius: 0 0 14px 14px; z-index: 2; }
.phone-screen { background: linear-gradient(180deg, #f7faf8 0%, #fff 40%); border-radius: 28px; padding: 30px 18px 20px; }
.scr-head { display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.scr-day { color: var(--muted); font-weight: 600; }
.ring { position: relative; width: 128px; height: 128px; margin: 4px auto 18px; }
.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: #e6ebe8; stroke-width: 9; }
.ring-fg { fill: none; stroke: var(--accent); stroke-width: 9; stroke-linecap: round; }
.ring-num { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; line-height: 1; }
.ring-num b { font-size: 2.3rem; font-weight: 800; letter-spacing: -0.02em; }
.ring-num span { display: block; font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 3px; }
.scr-rows { display: grid; gap: 2px; }
.scr-row { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 11px 0; border-bottom: 1px solid #eef1ef; }
.scr-row:last-of-type { border-bottom: 0; }
.scr-t { font-weight: 650; font-size: 0.88rem; }
.scr-s { color: var(--muted); font-size: 0.76rem; margin-top: 1px; }
.pill { font-size: 0.95rem; line-height: 1; padding: 5px 8px; border-radius: 999px; white-space: nowrap; }
.pill-good { background: #e7f6ee; }
.pill-bad { background: #fdeaea; }
.pill-warn { background: #fdf3e0; }
.pill-accent { background: color-mix(in srgb, var(--accent) 12%, white); }
.scr-foot { margin-top: 14px; padding-top: 12px; border-top: 1px solid #eef1ef; color: var(--muted); font-size: 0.78rem; text-align: center; }

/* ---- "Ask your data" chips ---- */
.sec-head { max-width: 40em; margin: 0 0 22px; }
.sec-head h2 { font-size: 1.6rem; letter-spacing: -0.02em; margin: 0 0 8px; }
.sec-head p { color: var(--muted); margin: 0; font-size: 1.05rem; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chips-label { text-align: center; color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; margin: 28px 0 12px; }
.chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 11px 16px; font-size: 0.95rem; color: #2c333c; box-shadow: var(--shadow); }
.chip::before { content: "?"; display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 14%, white); color: var(--accent); font-weight: 800; font-size: 0.8rem; }

/* ---- Hero checklist ---- */
.hero-points { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 7px; }
.hero-points li { padding-left: 24px; position: relative; color: var(--muted); font-size: 1rem; }
.hero-points li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
body.dark .hero-points li { color: rgba(255, 255, 255, 0.74); }
body.dark .hero-points li::before { color: #4ade80; }

/* ---- Ask chat panel ---- */
.ask-sec { background: var(--soft); }
.chat { max-width: 660px; margin: 0 auto; display: grid; gap: 12px; }
.chat-q { justify-self: end; max-width: 85%; background: var(--accent); color: #fff; padding: 12px 16px; border-radius: 16px 16px 4px 16px; font-weight: 600; font-size: 0.95rem; }
.chat-a { justify-self: start; max-width: 92%; display: flex; gap: 10px; background: #fff; border: 1px solid var(--line); padding: 14px 16px; border-radius: 16px 16px 16px 4px; box-shadow: var(--shadow); }
.chat-a .chat-mark { color: var(--accent); flex: 0 0 auto; display: inline-flex; }
.chat-a .chat-mark svg { width: 20px; height: 16px; }
.chat-a p { margin: 0; color: #2c333c; font-size: 0.95rem; line-height: 1.5; }

/* ---- "Biggest opportunity" card ---- */
.opp-sec { background: var(--soft); }
.opp-card { margin: 0 auto; }
.opp-impact { display: inline-block; background: #fdeaea; color: #b3261e; font-weight: 700; font-size: 0.85rem; padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.opp-cta { text-align: center; margin-top: 26px; }
.opp-cta .micro { color: var(--muted); margin-top: 10px; }
.q-anchor { color: var(--muted); font-size: 0.85rem; margin-top: 12px; }
.opp-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px; box-shadow: var(--shadow); max-width: 640px; }
.opp-label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.opp-focus { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.opp-row { display: grid; grid-template-columns: 150px 1fr; gap: 14px; padding: 12px 0; border-top: 1px solid #eef1ef; }
.opp-row span { font-size: 0.8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.opp-row p { margin: 0; color: #2c333c; }
.opp-avoid p { color: #b3261e; }
@media (max-width: 560px) { .opp-row { grid-template-columns: 1fr; gap: 4px; } }

/* ---- Founder note ---- */
.founder-card { display: flex; gap: 16px; align-items: flex-start; background: var(--soft); border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.founder-avatar { font-size: 1.7rem; width: 54px; height: 54px; border-radius: 50%; background: #fff; display: grid; place-items: center; border: 1px solid var(--line); flex: 0 0 auto; }
.founder-note { margin: 0 0 6px; color: #2c333c; }
.founder-sign { margin: 0; color: var(--muted); font-size: 0.9rem; }
.founder-sign a { color: var(--muted); }

/* ---- Quiz ---- */
.quiz-modal { position: fixed; inset: 0; z-index: 200; background: rgba(8, 15, 11, 0.62); display: grid; place-items: center; padding: 20px; overflow-y: auto; }
.quiz-modal.hidden { display: none; }
body.quiz-lock { overflow: hidden; }
.quiz-card { position: relative; width: 100%; max-width: 520px; background: #fff; border-radius: 18px; padding: 34px 26px 28px; box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5); max-height: 90vh; overflow-y: auto; }
.quiz-close { position: absolute; top: 12px; right: 14px; width: 34px; height: 34px; border: 0; background: #f1f3f5; color: #5b6672; border-radius: 50%; font-size: 1.3rem; line-height: 1; cursor: pointer; transition: background 0.12s; z-index: 2; }
.quiz-close:hover { background: #e4e7eb; }

/* ---- Signal Report (assessment payoff) ---- */
.report { text-align: left; background: linear-gradient(180deg, #f6faf8, #fff); border: 1px solid var(--line); border-radius: 14px; padding: 20px; margin-bottom: 18px; }
.report-top { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.report-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: var(--accent); padding: 5px 11px; border-radius: 999px; }
.report-preview { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.report-title { font-size: 1.2rem; margin: 0 0 3px; letter-spacing: -0.01em; }
.report-profile { color: var(--muted); font-size: 0.85rem; margin: 0 0 14px; }
.report-opp { background: var(--accent); color: #fff; border-radius: 12px; padding: 15px 16px; margin-bottom: 6px; }
.report-klabel { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; opacity: 0.88; margin-bottom: 4px; }
.report-focus { font-size: 1.18rem; font-weight: 800; letter-spacing: -0.01em; line-height: 1.2; }
.report-impact { font-size: 0.88rem; opacity: 0.92; margin-top: 3px; }
.report-aha { background: color-mix(in srgb, var(--accent) 7%, white); border-radius: 8px; padding-left: 12px; padding-right: 12px; }
.report-aha span { color: var(--accent); }
.report-ask { margin-top: 14px; padding: 13px 15px; background: #0a160f; border-radius: 10px; }
.report-ask span { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; color: #6ee7a0; font-weight: 700; margin-bottom: 5px; }
.report-ask p { margin: 0; color: #fff; font-size: 0.95rem; font-style: italic; line-height: 1.4; }
.report-row { display: grid; grid-template-columns: 104px 1fr; gap: 12px; padding: 11px 0; border-top: 1px solid #eef1ef; }
.report-row span { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
.report-row p { margin: 0; font-size: 0.9rem; color: #2c333c; line-height: 1.45; }
.report-plan { padding: 12px 0; border-top: 1px solid #eef1ef; }
.report-plan > span { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
.report-plan ul { list-style: none; padding: 0; margin: 11px 0 0; display: grid; gap: 9px; }
.report-plan li { display: flex; gap: 10px; font-size: 0.9rem; color: #2c333c; line-height: 1.4; }
.report-plan li span { flex: 0 0 22px; height: 22px; display: grid; place-items: center; background: color-mix(in srgb, var(--accent) 14%, white); color: var(--accent); font-weight: 800; border-radius: 50%; font-size: 0.78rem; }
.report-proj { margin-top: 13px; padding: 12px 14px; background: color-mix(in srgb, var(--accent) 8%, white); border-radius: 10px; font-size: 0.9rem; color: #2c333c; line-height: 1.4; }
.report-proj b { color: var(--accent); }
.report-note { font-size: 0.77rem; color: var(--muted); margin: 14px 0 0; line-height: 1.45; }
.report-capture { text-align: center; }
.report-cap-h { font-weight: 700; margin: 0 0 11px; font-size: 0.98rem; }
.report-capture .capture { justify-content: center; }
.q-prog { height: 6px; background: #e4e7eb; border-radius: 99px; overflow: hidden; margin-bottom: 16px; }
.q-prog-bar { height: 100%; background: var(--accent); transition: width 0.3s; }
.q-count { color: var(--muted); font-size: 0.85rem; margin: 0 0 6px; }
.q-q { font-size: 1.4rem; margin: 0 0 18px; letter-spacing: -0.01em; }
.q-opts { display: grid; gap: 10px; }
.q-opt { text-align: left; padding: 15px 18px; font-size: 1rem; font-family: inherit; color: var(--ink); background: #fff; border: 1px solid #cfd5de; border-radius: 11px; cursor: pointer; transition: border-color 0.12s, background 0.12s; }
.q-opt:hover { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 6%, white); }
.q-result { text-align: center; padding: 8px 0; }
.q-badge { display: inline-block; font-weight: 700; color: #157347; background: #e7f6ee; padding: 6px 14px; border-radius: 99px; margin-bottom: 14px; }
.q-res-text { font-size: 1.1rem; color: #333; max-width: 36em; margin: 0 auto 18px; }
.q-result .capture { justify-content: center; }
