  /* ── Layout ── */
  body.explore-page { background: var(--bg); }

  .explore-stage {
    max-width: var(--chart-max);
    margin: 0 auto;
    padding: 32px var(--gutter) 160px;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .explore-stage::before {
    content: "";
    position: fixed;
    bottom: -150px; right: 0;
    width: 840px; height: 1260px;
    background: url(lighthouse/lighthouse.svg) center / contain no-repeat;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
  }
  @media (max-width: 600px) {
    .explore-stage::before { right: -380px; }
  }
  html[data-theme="dark"] .explore-stage::before { filter: invert(1); opacity: 0.07; }
  @media (prefers-color-scheme: dark) {
    html:not([data-theme="light"]) .explore-stage::before { filter: invert(1); opacity: 0.07; }
  }
  .explore-stage > * { position: relative; z-index: 1; }


  /* ── Landing (first visit / "back to all") ── */
  .explore-landing {
    display: none;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 0 40px;
  }
  .explore-stage:not(.has-topic) .explore-landing { display: block; }
  .explore-landing-head {
    text-align: center;
    padding: 40px 0 28px;
  }
  .explore-landing-head h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--text);
    margin: 0 0 8px;
    line-height: 1.25;
  }
  .explore-landing-head p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
  }

  /* ── Featured question (first-visit onboarding) ──
     Q1 cloned inline with answers visible. Shown only when the visitor
     has zero picks; JS toggles .visible. Sits between the hero and the
     votes-strip so the first action is obvious above the fold. */
  .featured-question {
    display: none;
    /* Break out of .explore-landing's 640px cap so the three answer cards
       share the same width as the in-question screens (~856px on desktop).
       Without this, the featured cards squeeze to ~190px each and the
       layout visibly shifts when the visitor dives in. break-out is half
       the difference between the stage content width and the landing cap,
       clamped to 0 on viewports narrower than the cap. */
    --break-out: max(0px, (min(100vw, var(--chart-max)) - 2 * var(--gutter) - 640px) / 2);
    margin: 0 calc(var(--break-out) * -1) 32px;
    padding: 20px 20px 16px;
    border: 1.5px solid var(--c-teal);
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--c-teal) 4%, var(--surface));
  }
  .featured-question.visible { display: block; }
  .featured-question-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--c-teal);
    margin: 0 0 10px;
  }
  .featured-question .question-block h1 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
    margin: 0 0 8px;
  }
  .featured-question .question-context {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0 0 16px;
  }
  .featured-question .featured-answers {
    margin-bottom: 20px;
  }
  .featured-answers-prompt {
    margin: 0;
  }
  /* Scroll-margin so smooth-scrolling to an evidence panel (from the
     featured-question tap handler) clears the sticky site nav. Matches
     the h2[id] { scroll-margin-top: 68px } rule in site.css. */
  .evidence { scroll-margin-top: 68px; }

  .explore-question-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .explore-question-card {
    display: grid;
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto auto;
    gap: 0 12px;
    position: relative;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: left;
    font: inherit;
    color: var(--text);
  }
  .explore-question-card:hover {
    border-color: var(--c-navy);
    box-shadow: var(--shadow-sm);
  }
  .explore-question-card.has-pick {
    border-color: var(--c-teal);
  }

  /* ── Mini position indicators (bottom of each card) ── */
  .explore-card-positions {
    display: flex;
    gap: 5px;
    margin-top: 12px;
    grid-column: 1 / -1;
  }
  .explore-mini-pos {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: var(--border);
    transition: all 0.2s ease;
  }
  .explore-question-card.has-pick .explore-mini-pos {
    background: color-mix(in srgb, var(--border) 60%, transparent);
  }
  .explore-mini-pos.picked[data-pos="a"] { background: var(--c-teal); box-shadow: 0 0 6px color-mix(in srgb, var(--c-teal) 40%, transparent); }
  .explore-mini-pos.picked[data-pos="b"] { background: var(--c-brass); box-shadow: 0 0 6px color-mix(in srgb, var(--c-brass) 40%, transparent); }
  .explore-mini-pos.picked[data-pos="c"] { background: var(--c-buoy); box-shadow: 0 0 6px color-mix(in srgb, var(--c-buoy) 40%, transparent); }
  .explore-mini-pos.picked[data-pos="u"] { background: var(--text-faint); box-shadow: 0 0 6px color-mix(in srgb, var(--text-faint) 40%, transparent); }

  /* Community split bar on landing cards (visible only after picking) */
  .explore-card-dist {
    display: none;
    grid-column: 1 / -1;
    margin-top: 6px;
  }
  .explore-question-card.has-pick .explore-card-dist { display: block; }
  .explore-card-dist-bar {
    display: flex;
    height: 4px;
    border-radius: 2px;
    overflow: hidden;
    background: var(--border);
  }
  .explore-card-dist-bar span {
    min-width: 0;
    transition: width 0.4s ease-out;
  }
  .explore-card-dist-bar .cd-a { background: var(--c-teal); }
  .explore-card-dist-bar .cd-b { background: var(--c-brass); }
  .explore-card-dist-bar .cd-c { background: var(--c-buoy); }
  .explore-card-dist-bar .cd-u { background: var(--text-faint); }
  .explore-card-dist-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    margin-top: 5px;
    font-size: 0.5625rem;
    color: var(--text-muted);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
  }
  .explore-card-dist-legend span {
    display: flex;
    align-items: center;
    gap: 3px;
  }
  .explore-card-dist-legend .cd-count {
    font-weight: 400;
    color: var(--text-subtle);
  }
  .explore-card-dist-legend .cd-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .explore-card-dist-legend .cd-total {
    margin-left: auto;
    color: var(--text-subtle);
    font-weight: 400;
  }
  .cd-dot-a { background: var(--c-teal); }
  .cd-dot-b { background: var(--c-brass); }
  .cd-dot-c { background: var(--c-buoy); }
  .cd-dot-u { background: var(--text-faint); }

  /* Icon */
  .explore-card-icon {
    grid-column: 1;
    grid-row: 1 / -1;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: color-mix(in srgb, var(--c-navy) 10%, transparent);
    color: var(--c-navy);
    flex-shrink: 0;
    align-self: start;
    margin-top: 1px;
  }
  .explore-card-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .explore-question-card.has-pick .explore-card-icon {
    background: color-mix(in srgb, var(--c-teal) 12%, transparent);
    color: var(--c-teal);
  }

  /* Title */
  .explore-card-title {
    grid-column: 2;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.1px;
  }

  /* Context subtitle */
  .explore-card-context {
    grid-column: 2;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.45;
    margin-top: 3px;
  }

  /* ── Tools row on landing ── */
  .explore-tools {
    margin: 20px 0;
    padding-top: 16px;
    border-top: 1px solid var(--divider);
  }
  .explore-tools-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-subtle);
    margin: 0 0 10px;
    text-align: center;
  }
  .explore-tools-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .explore-tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 16px 14px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    color: var(--text);
  }
  .explore-tool-card:hover {
    border-color: var(--c-teal);
    box-shadow: var(--shadow-sm);
  }
  .explore-tool-icon {
    width: 22px;
    height: 22px;
    color: var(--c-teal);
    flex-shrink: 0;
  }
  .explore-tool-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
  }
  .explore-tool-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
  }
  @media (max-width: 400px) {
    .explore-tools-row { grid-template-columns: 1fr; }
  }
  .explore-section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-subtle);
    text-align: center;
    margin: 0 0 10px;
    padding-top: 16px;
    border-top: 1px solid var(--divider);
  }

  /* ── Recent meetings ── */
  .explore-meetings {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--divider);
  }
  .explore-meetings-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-subtle);
    margin: 0 0 10px;
    text-align: center;
  }
  .explore-meetings-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .meeting-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text);
    transition: all 0.15s ease;
  }
  .meeting-card:hover {
    border-color: var(--c-teal);
    box-shadow: var(--shadow-sm);
  }
  .meeting-board-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: var(--c-navy);
    border-radius: 4px;
    padding: 2px 7px;
    white-space: nowrap;
  }
  .meeting-board-badge[data-board="Finance Committee"] { background: var(--c-teal); }
  .meeting-board-badge[data-board="Board of Health"] { background: var(--c-sage); }
  .meeting-board-badge[data-board="School Committee"] { background: var(--c-plum); }
  .meeting-board-badge[data-board="Town Meeting"] { background: var(--c-buoy); }
  .meeting-info {
    min-width: 0;
  }
  .meeting-date {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
  }
  .meeting-duration {
    font-size: 11px;
    color: var(--text-muted);
  }
  .meeting-summary {
    display: block;
    font-size: 12px;
    line-height: 1.4;
    color: var(--text-muted);
    margin-top: 4px;
  }
  .meeting-card:has(.meeting-summary) {
    align-items: start;
  }
  .meeting-play-icon {
    width: 18px;
    height: 18px;
    color: var(--c-teal);
    flex-shrink: 0;
  }
  .explore-meetings-more {
    display: block;
    margin: 10px auto 0;
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    color: var(--c-teal);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
  }
  .explore-meetings-more:hover { text-decoration: underline; }
  .explore-meetings-empty {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    padding: 16px;
  }

  /* Share strip on landing */
  .explore-share-strip {
    display: none;
    text-align: center;
    padding: 20px 0 4px;
  }
  .explore-share-strip.visible { display: block; }
  .explore-copy-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.15s ease;
  }
  .explore-copy-link:hover {
    border-color: var(--c-navy);
    color: var(--c-navy);
  }
  .explore-copy-link.copied {
    border-color: var(--c-teal);
    color: var(--c-teal);
  }
  .explore-copy-link svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }
  .explore-copy-link .icon-copied { display: none; }
  .explore-copy-link.copied .icon-link { display: none; }
  .explore-copy-link.copied .icon-copied { display: inline; }

  /* Inline copy-link variant (inside stats detail row) */
  .explore-copy-link--inline {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-faint);
    background: none;
    border: none;
    border-radius: 0;
    padding: 2px 0;
    text-decoration: underline;
    text-underline-offset: 2px;
    gap: 4px;
  }
  .explore-copy-link--inline:hover {
    color: var(--text-muted);
    border-color: transparent;
  }
  .explore-copy-link--inline.copied {
    color: var(--c-teal);
    border-color: transparent;
  }
  .explore-copy-link--inline svg {
    width: 11px;
    height: 11px;
  }
  .explore-stats-detail-right {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
  }
  .explore-share-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .explore-stats-sep {
    width: 1px;
    height: 12px;
    background: var(--divider);
  }

  /* Shared-positions view */
  .explore-shared-banner {
    display: none;
    text-align: center;
    padding: 12px 20px;
    margin: 0 0 12px;
    background: var(--surface);
    border: 1.5px solid var(--c-teal);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
  }
  .explore-shared-banner.visible { display: block; }
  .explore-shared-fresh {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-teal);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 0 0;
  }
  .explore-shared-fresh:hover { text-decoration: underline; }

  /* Hide landing once a topic is active */
  .explore-stage.has-topic .explore-landing { display: none; }
  /* Hide question header in landing state */
  .explore-stage:not(.has-topic) .question-nav { display: none; }
  /* Hide all question screens by default; JS shows the active one */
  .question-screen { display: none; }

  /* ── Question nav (replaces pill bar) ── */
  .question-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
    padding: 10px 0;
    border-bottom: 1px solid var(--divider);
  }
  .question-nav-back {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    padding: 0;
    white-space: nowrap;
  }
  .question-nav-back:hover { color: var(--text); }
  .question-nav-progress {
    display: flex;
    gap: 5px;
    align-items: center;
  }
  .progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.15s;
    cursor: pointer;
    border: none;
    padding: 0;
  }
  .progress-dot:hover { background: var(--text-muted); }
  .progress-dot.active {
    background: var(--c-navy);
    transform: scale(1.25);
  }
  .progress-dot.picked {
    background: var(--c-teal);
  }
  .progress-dot.active.picked {
    background: var(--c-navy);
  }

  /* ── Your position banner ── */
  .your-position { display: none; }

  /* ── Next question button ── */
  .next-question {
    display: none;
    margin: 14px 0 4px;
    text-align: center;
  }
  .next-question.visible { display: block; }
  .next-question-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--c-navy);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s;
    box-shadow: var(--shadow-sm);
  }
  .next-question-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }
  .next-question-label {
    font-size: 11px;
    color: var(--text-faint);
    margin-top: 6px;
  }

  /* ── Related questions ── */
  .related-questions {
    display: none;
    padding: 20px 0 0;
    border-top: 1px solid var(--divider);
    margin-top: 24px;
  }
  .related-questions.visible { display: block; }
  .related-questions-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-faint);
    margin-bottom: 8px;
  }
  .related-questions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .related-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 5px 12px;
    cursor: pointer;
    transition: all 0.15s;
    font: inherit;
    font-size: 13px;
    font-weight: 500;
  }
  .related-link:hover {
    border-color: var(--c-navy);
    color: var(--text);
  }

  /* ── Explore footer links (below questions) ── */
  .explore-meta {
    text-align: center;
    padding: 24px 0 0;
    font-size: 13px;
    color: var(--text-subtle);
  }
  .explore-meta a {
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .explore-meta a:hover { color: var(--text); }
  .explore-meta-btn {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    font-size: inherit;
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
    padding: 0;
  }
  .explore-meta-btn:hover { color: var(--text); }
  .explore-stage:not(.has-topic) .explore-meta { display: none; }

  /* ── Landing trust signal ── */
  .explore-trust {
    text-align: center;
    margin-top: 28px;
    font-size: 12px;
    color: var(--text-subtle);
    line-height: 1.5;
  }
  .explore-trust a {
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  /* ── Question ── */
  .question-block {
    text-align: center;
    margin-bottom: 32px;
  }
  .question-block h1 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--text);
    margin: 0 0 8px;
    line-height: 1.3;
  }
  .question-block .question-context {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
    max-width: 560px;
    margin: 0 auto;
  }

  /* ── Answer cards ── */
  .answers {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }
  .answer-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
  }
  /* :hover styles are gated on (hover: hover) so touch devices don't get
     stuck in a pseudo-selected state from a stray scroll-start tap. The
     hover look is visually identical to .viewing, which on iOS would
     persist until another element was tapped. */
  @media (hover: hover) {
    .answer-card:hover {
      border-color: var(--c-navy);
      box-shadow: var(--shadow-sm);
    }
    .answer-card.dimmed:hover {
      opacity: 0.8;
    }
  }
  .answer-card.selected {
    border-color: var(--c-teal);
    box-shadow: 0 0 0 1px var(--c-teal), var(--shadow-md);
  }
  .answer-card.viewing {
    border-color: var(--c-navy);
    box-shadow: var(--shadow-sm);
  }
  .answer-card.dimmed {
    opacity: 0.5;
  }

  /* Checkmark button on cards */
  .answer-check {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--surface);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: transparent;
    transition: all 0.15s;
    z-index: 1;
  }
  @media (hover: hover) {
    .answer-check:hover {
      border-color: var(--c-teal);
      color: var(--c-teal);
    }
  }
  .answer-card.selected .answer-check {
    border-color: var(--c-teal);
    background: var(--c-teal);
    color: #fff;
  }

  /* Hint on answer cards */
  .answer-hint {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-faint);
    margin-top: 10px;
    transition: opacity 0.2s;
  }
  @media (hover: hover) {
    .answer-card:hover .answer-hint {
      color: var(--c-teal);
    }
  }
  .answer-card.selected .answer-hint,
  .answer-card.dimmed .answer-hint {
    display: none;
  }


  .answer-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
  }
  .answer-card[data-answer="a"] .answer-label { color: var(--c-teal); }
  .answer-card[data-answer="b"] .answer-label { color: var(--c-brass); }
  .answer-card[data-answer="c"] .answer-label { color: var(--c-buoy); }

  .answer-card h2 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 4px;
    line-height: 1.35;
  }
  .answer-card .answer-summary {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
  }

  /* ── "Not sure yet" pill directly under the answer cards ── */
  .unsure-row {
    margin: 16px 0 20px;
    text-align: center;
  }
  .unsure-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: color-mix(in srgb, var(--text-faint) 10%, transparent);
    border: 1.5px solid color-mix(in srgb, var(--text-faint) 45%, var(--border));
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    transition: background 0.15s, border-color 0.15s;
  }
  .unsure-btn::before {
    content: '?';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--text-faint) 30%, transparent);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
  }
  .unsure-btn:hover {
    background: color-mix(in srgb, var(--text-faint) 18%, transparent);
    border-color: var(--text-muted);
  }
  .unsure-btn.selected {
    background: color-mix(in srgb, var(--text-faint) 22%, transparent);
    border-color: var(--text-muted);
  }
  .unsure-btn.selected::before {
    content: '\2713';
    background: var(--text-faint);
    color: var(--surface);
  }

  /* ── Pick distribution bar ── */
  .pick-distribution {
    margin: 10px 0 18px;
    animation: evidence-in 0.25s ease;
  }
  .pick-dist-bar {
    display: flex;
    height: 20px;
    border-radius: 3px;
    overflow: hidden;
    background: var(--border);
  }
  .pick-dist-seg {
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    color: #fff;
    min-width: 0;
    transition: width 0.4s ease-out;
  }
  .pick-dist-a { background: var(--c-teal); }
  .pick-dist-b { background: var(--c-brass); }
  .pick-dist-c { background: var(--c-buoy); }
  .pick-dist-u { background: var(--text-faint); }
  /* Legend: flat flex row where each answer is a tight dot+letter+pct+
     count group, with generous breathing room between groups. Tuned
     up from the pre-#435 original: font 11->12px and column gap 14->20
     so the category groups don't blend into each other. Keep the
     HTML structure flat so the letter and its percentage stay next to
     each other visually -- the #436 grid layout pushed each percentage
     to the right of its cell, which made the number look associated
     with the *next* letter. */
  .pick-dist-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
    margin-top: 10px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
  }
  .pick-dist-key {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
  }
  .pick-dist-count {
    font-weight: 400;
    color: var(--text-subtle);
  }
  .pick-dist-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .pick-dist-dot-a { background: var(--c-teal); }
  .pick-dist-dot-b { background: var(--c-brass); }
  .pick-dist-dot-c { background: var(--c-buoy); }
  .pick-dist-dot-u { background: var(--text-faint); }
  .pick-dist-total {
    margin-left: auto;
    font-weight: 400;
    color: var(--text-subtle);
  }
  /* "X readers changed their pick after reading the evidence" line,
     shown under the legend when the move-vote counter is non-zero. */
  .pick-dist-moves {
    margin-top: 6px;
    font-size: 0.6875rem;
    color: var(--text-subtle);
    font-variant-numeric: tabular-nums;
  }
  .pick-dist-moves strong {
    color: var(--text-muted);
    font-weight: 600;
  }
  /* Verified branch bar — smaller, below the community bar */
  .pick-dist-verified {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
  }
  .pick-dist-verified-label {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--c-teal);
    margin-bottom: 4px;
  }
  .pick-dist-bar-verified {
    height: 14px;
    opacity: 0.85;
    display: flex;
    border-radius: 3px;
    overflow: hidden;
    background: var(--border);
  }
  .pick-dist-bar-verified .pick-dist-seg {
    font-size: 0;
    line-height: 14px;
  }

  /* ── Evidence panel ── */
  .evidence {
    display: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 22px;
    margin-bottom: 24px;
    animation: evidence-in 0.25s ease;
  }
  .evidence.open { display: block; }

  @keyframes evidence-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .evidence-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--divider);
  }
  .evidence-header h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-subtle);
    margin: 0;
  }
  .evidence-close {
    font-size: 12px;
    color: var(--text-subtle);
    cursor: pointer;
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 10px;
    transition: all 0.15s;
  }
  .evidence-close:hover {
    border-color: var(--c-navy);
    color: var(--text);
  }

  .evidence-point {
    margin-bottom: 18px;
  }
  .evidence-point:last-child { margin-bottom: 0; }

  .evidence-point h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 6px;
  }
  .evidence-point p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 8px;
  }
  .evidence-point p:last-child { margin-bottom: 0; }

  .evidence-chart-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--link);
    text-decoration: none;
    padding: 4px 0;
  }
  .evidence-chart-link:hover { text-decoration: underline; }
  .evidence-chart-link::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background: var(--link);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Crect x='1' y='10' width='3' height='5' rx='0.5'/%3E%3Crect x='6' y='6' width='3' height='9' rx='0.5'/%3E%3Crect x='11' y='2' width='3' height='13' rx='0.5'/%3E%3C/svg%3E") center/contain no-repeat;
  }

  /* ── Nugget: highlighted number + short context ── */
  .evidence-nugget {
    display: flex;
    align-items: center;
    gap: 12px;
    background: color-mix(in srgb, var(--c-navy) 6%, var(--surface));
    border: 1px solid var(--divider);
    border-radius: 10px;
    padding: 12px 16px;
    margin: 10px 0 8px;
  }
  .evidence-nugget-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    line-height: 1.3;
    padding-top: 1px;
  }
  .evidence-nugget-label {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.45;
    padding-top: 5px;
  }
  @media (max-width: 600px) {
    .evidence-nugget { flex-direction: column; gap: 4px; padding: 10px 14px; }
    .evidence-nugget-value { font-size: 19px; }
  }

  /* ── Evidence lists ── */
  .evidence-point ul {
    margin: 8px 0;
    padding-left: 20px;
    list-style: disc;
  }
  .evidence-point li {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 4px;
  }
  .evidence-point li:last-child { margin-bottom: 0; }
  .evidence-point li strong { color: var(--text); }

  /* ── Mini override calculator (injected into every question) ── */
  .mini-calc {
    background: color-mix(in srgb, var(--c-navy) 5%, var(--surface));
    border: 1px solid var(--divider);
    border-radius: 12px;
    padding: 14px 18px 16px;
    margin: 24px 0 8px;
  }
  .mini-calc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }
  .mini-calc-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-subtle);
  }
  .mini-calc-input {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .mini-calc-input label {
    font-size: 11px;
    color: var(--text-subtle);
    white-space: nowrap;
  }
  .mini-calc-input input {
    width: 130px;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-variant-numeric: tabular-nums;
    font-family: var(--font-sans);
  }
  .mini-calc-input input:focus {
    outline: none;
    border-color: var(--link);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--link) 20%, transparent);
  }
  .mini-calc-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .mini-calc-tier {
    text-align: center;
    padding: 8px 6px;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--divider);
  }
  .mini-calc-tier-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-subtle);
    margin-bottom: 4px;
  }
  .mini-calc-tier-cost {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
  }
  .mini-calc-tier-unit {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-subtle);
  }
  .mini-calc-tier-annual {
    font-size: 11px;
    color: var(--text-subtle);
    font-variant-numeric: tabular-nums;
    margin-top: 2px;
  }
  .mini-calc-link {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--link);
    margin-top: 10px;
  }
  @media (max-width: 600px) {
    .mini-calc { padding: 12px 14px 14px; }
    .mini-calc-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .mini-calc-tiers { grid-template-columns: 1fr; gap: 6px; }
    .mini-calc-tier { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; text-align: left; }
    .mini-calc-tier-label { margin-bottom: 0; }
    .mini-calc-tier-cost { font-size: 16px; }
  }

  .evidence-caveat {
    font-size: 12px;
    color: var(--text-subtle);
    font-style: italic;
    border-left: 2px solid var(--divider);
    padding-left: 12px;
    margin-top: 10px;
  }

  /* ── Counter-argument (steelman of the opposing view, preview-fade) ── */
  .counter-argument {
    margin-top: 22px;
    padding: 14px 16px 16px;
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--text-subtle) 8%, var(--surface));
    border-left: 3px solid var(--border);
  }
  .counter-argument > summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    user-select: none;
    padding: 0;
  }
  .counter-argument > summary::-webkit-details-marker { display: none; }
  .counter-argument > summary::marker { content: ''; }
  .counter-argument > summary::before {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1.5px solid var(--text-subtle);
    border-radius: 50%;
    color: var(--text-subtle);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
  }
  .counter-argument:not(.ca-collapsed) > summary::before {
    content: "\2212";
  }
  .counter-argument-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-subtle);
  }
  .counter-argument-teaser {
    display: none;
  }
  /* Preview-fade: JS adds [open] + .ca-collapsed on load so the body
     is rendered by the browser but clipped with a gradient. Clicking
     the summary toggles .ca-collapsed via JS. */
  .counter-argument-body {
    padding: 10px 0 0 30px;
    position: relative;
  }
  .ca-collapsed .counter-argument-body {
    max-height: 3.6em;
    overflow: hidden;
  }
  .ca-collapsed .counter-argument-body::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2.4em;
    background: linear-gradient(to bottom, transparent, color-mix(in srgb, var(--text-subtle) 8%, var(--surface)));
    pointer-events: none;
  }
  .counter-argument-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 8px;
  }
  .counter-argument-body p:last-child { margin-bottom: 0; }
  @media (max-width: 600px) {
    .counter-argument-body { padding-left: 0; }
  }

  /* ── Notes pill (bottom-right) ── */
  .notes-pill {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    display: none;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--c-navy);
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all 0.2s ease;
  }
  /* Hidden until we see organic demand — re-enable by uncommenting */
  /* .notes-pill.visible { display: inline-flex; } */
  .notes-pill:hover { transform: scale(1.05); }
  .notes-pill.pulse {
    animation: pill-pulse 0.4s ease;
  }
  @keyframes pill-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
  }
  .notes-pill-count {
    background: rgba(255,255,255,0.25);
    border-radius: 10px;
    padding: 1px 7px;
    font-size: 12px;
  }

  /* ── Notes panel backdrop (mobile only) ── */
  .notes-backdrop {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(15,42,61,0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }
  .notes-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
  }

  /* ── Notes panel (expanded) ── */
  .notes-panel {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 380px;
    max-width: 100vw;
    max-height: 70vh;
    z-index: 101;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: 0 -8px 40px rgba(15,42,61,0.12);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overscroll-behavior: contain;
  }
  .notes-panel.open { transform: translateY(0); }
  /* While the finger is dragging, disable the ease so the sheet tracks touch. */
  .notes-panel.dragging { transition: none; }

  /* Drag grip (mobile only). Tap target for swipe-to-dismiss. */
  .notes-panel-grip {
    display: none;
    width: 100%;
    padding: 8px 0 4px;
    background: none;
    border: 0;
    cursor: grab;
    touch-action: none;
  }
  .notes-panel-grip::before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    margin: 0 auto;
    border-radius: 2px;
    background: var(--border);
  }
  .notes-panel-grip:active { cursor: grabbing; }

  .notes-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px 10px;
    border-bottom: 1px solid var(--divider);
    flex-shrink: 0;
  }
  .notes-panel-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-subtle);
  }
  .notes-panel-actions {
    display: flex;
    gap: 8px;
  }
  .notes-panel-btn {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.15s;
  }
  .notes-panel-btn:hover {
    border-color: var(--c-navy);
    color: var(--text);
  }

  .notes-panel-body {
    overflow-y: auto;
    padding: 12px 18px 18px;
    flex: 1;
  }

  .notes-entry {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--divider);
  }
  .notes-entry:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  /* Clickable header: jumps back to the question. */
  .notes-entry-head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    padding: 8px 10px;
    margin: -8px -10px 0;
    background: none;
    border: 0;
    border-radius: var(--radius-sm);
    text-align: left;
    cursor: pointer;
    transition: background 0.15s;
  }
  .notes-entry-head:hover,
  .notes-entry-head:focus-visible {
    background: var(--bg);
    outline: none;
  }
  .notes-entry-head-text {
    display: block;
    flex: 1;
    min-width: 0;
  }
  .notes-entry-head-text .notes-entry-topic,
  .notes-entry-head-text .notes-entry-position {
    display: block;
  }
  .notes-entry-chevron {
    flex-shrink: 0;
    margin-top: 4px;
    font-size: 16px;
    line-height: 1;
    color: var(--text-faint);
    transition: transform 0.15s, color 0.15s;
  }
  .notes-entry-head:hover .notes-entry-chevron,
  .notes-entry-head:focus-visible .notes-entry-chevron {
    color: var(--c-teal);
    transform: translateX(2px);
  }
  .notes-entry-topic {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-faint);
    margin-bottom: 2px;
  }
  .notes-entry-position {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0;
    line-height: 1.35;
  }
  .notes-entry-note {
    margin-top: 8px;
  }
  .notes-entry-note-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 0;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    background: none;
    border: 0;
    cursor: pointer;
  }
  .notes-entry-note-toggle:hover { color: var(--c-teal); }
  .notes-entry-note-toggle::before {
    content: "+";
    display: inline-block;
    width: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--text-faint);
  }
  .notes-entry-note-toggle[aria-expanded="true"]::before { content: "−"; }
  .notes-entry-note-toggle[data-has-note="true"] { color: var(--c-teal); }
  .notes-entry-note-body {
    margin-top: 6px;
  }
  .notes-entry-note-body[hidden] { display: none; }
  .notes-entry-textarea {
    width: 100%;
    min-height: 52px;
    max-height: 140px;
    padding: 8px 10px;
    font-family: var(--font-sans);
    font-size: 13px;
    line-height: 1.5;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    resize: vertical;
    outline: none;
  }
  .notes-entry-textarea:focus {
    border-color: var(--c-teal);
  }
  .notes-entry-textarea::placeholder {
    color: var(--text-faint);
  }
  .notes-entry-note-privacy {
    margin: 4px 2px 0;
    font-size: 11px;
    line-height: 1.4;
    color: var(--text-faint);
  }

  .notes-empty {
    font-size: 13px;
    color: var(--text-faint);
    text-align: center;
    padding: 20px 0;
  }

  /* Note indicator on answer cards */
  .answer-note-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--c-teal);
    margin-top: 8px;
  }
  .answer-note-badge::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--c-teal);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 3h12v8H5l-3 3V3z'/%3E%3C/svg%3E") center/contain no-repeat;
  }

  @media (max-width: 599px) {
    .notes-panel {
      width: 100vw;
      max-height: 82vh;
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    .notes-panel-grip { display: block; }
    .notes-panel-header { padding-top: 4px; }
    .notes-pill { bottom: 16px; right: 16px; }
  }

  /* Scroll lock while the notes panel is the modal in focus (mobile). */
  body.notes-panel-locked { overflow: hidden; }

  /* ── "You'll vote on this twice" procedural strip (landing only) ── */
  .votes-strip {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-left: 3px solid var(--c-teal);
    border-radius: var(--radius-md);
    padding: 14px 18px 12px;
    margin: 0 0 20px;
  }
  .votes-strip-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: var(--c-teal);
    margin: 0 0 10px;
  }
  .votes-strip-steps {
    display: flex;
    align-items: stretch;
    gap: 14px;
  }
  .votes-strip-step {
    flex: 1;
    min-width: 0;
  }
  .votes-strip-step--past .votes-strip-step-what {
    color: var(--text-muted);
  }
  .votes-strip-step--current {
    border-left: 2px solid var(--c-teal);
    padding-left: 10px;
  }
  .votes-strip-result {
    display: inline-block;
    font-weight: 700;
    color: var(--text);
    font-size: 12px;
    margin-right: 4px;
  }
  .votes-strip-step-when {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-subtle);
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
  }
  .votes-strip-countdown {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: none;
    color: var(--c-teal);
    background: color-mix(in srgb, var(--c-teal) 10%, transparent);
    border-radius: 3px;
    padding: 1px 5px;
    white-space: nowrap;
  }
  .votes-strip-countdown:empty { display: none; }
  .votes-strip-countdown.past {
    color: var(--text-subtle);
    background: color-mix(in srgb, var(--text-subtle) 10%, transparent);
  }
  .votes-strip-step-what {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 4px;
  }
  .votes-strip-step-where {
    font-size: 12px;
    line-height: 1.4;
    color: var(--text-subtle);
    margin: 0;
  }
  .votes-strip-arrow {
    font-size: 18px;
    color: var(--text-subtle);
    align-self: center;
    flex-shrink: 0;
    line-height: 1;
  }
  .votes-strip-note {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 10px 0 0;
    text-align: center;
  }
  .votes-strip-link {
    font-weight: 600;
    color: var(--c-teal);
    text-decoration: none;
    white-space: nowrap;
  }
  .votes-strip-link:hover { text-decoration: underline; }
  @media (max-width: 540px) {
    .votes-strip-steps {
      flex-direction: column;
      gap: 12px;
    }
    .votes-strip-arrow {
      transform: rotate(90deg);
      align-self: flex-start;
      margin-left: 2px;
    }
  }

  /* ── Personal stats strip ── */
  .explore-stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0 0 16px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  /* Row 1: progress */
  .explore-stats-progress-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
  }
  .explore-stats-decided {
    font-size: 22px;
    font-weight: 800;
    color: var(--c-teal);
    letter-spacing: -0.5px;
    line-height: 1;
  }
  .explore-stats-decided small {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0;
  }
  .explore-stats-progress {
    flex: 1;
    height: 8px;
    background: color-mix(in srgb, var(--text-muted) 20%, transparent);
    border-radius: 4px;
    overflow: hidden;
    min-width: 60px;
  }
  .explore-stats-bar {
    display: block;
    height: 100%;
    min-width: 8px;
    background: var(--c-teal);
    border-radius: 4px;
    transition: width 0.4s ease;
    box-shadow: 0 0 6px color-mix(in srgb, var(--c-teal) 40%, transparent);
  }
  .explore-stats-msg {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
  }
  .explore-stats-msg--complete {
    color: var(--c-teal);
  }
  .explore-stats-next {
    font: inherit;
    font-size: 11px;
    font-weight: 700;
    color: var(--c-teal);
    background: none;
    border: 1px solid var(--c-teal);
    border-radius: 12px;
    padding: 2px 10px;
    cursor: pointer;
    white-space: nowrap;
    margin-left: 4px;
    vertical-align: middle;
  }
  .explore-stats-next:hover {
    background: var(--c-teal);
    color: #fff;
  }
  /* Row 2: engagement + reset */
  .explore-stats-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 16px;
    border-top: 1px solid var(--divider);
    font-size: 11px;
    color: var(--text-subtle);
  }
  .explore-stats-detail-left {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .explore-stats-detail span {
    white-space: nowrap;
  }
  .explore-stats-detail strong {
    font-weight: 700;
    color: var(--text-muted);
  }
  .explore-stats-reset {
    font: inherit;
    font-size: 11px;
    color: var(--text-faint);
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px 0;
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
  }
  .explore-stats-reset:hover {
    color: var(--text-muted);
  }

  /* ── First-time tutorial banner ── */
  .explore-tutorial {
    display: none;
    padding: 14px 18px;
    margin: -8px 0 16px;
    background: color-mix(in srgb, var(--c-navy) 6%, var(--surface));
    border: 1.5px solid var(--c-navy);
    border-radius: var(--radius-md);
    font-size: 13px;
    line-height: 1.55;
    color: var(--text);
    animation: evidence-in 0.3s ease;
  }
  .explore-tutorial.visible { display: block; }
  .explore-tutorial-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--c-navy);
    margin: 0 0 8px;
  }
  .explore-tutorial ul {
    margin: 0 0 10px;
    padding-left: 18px;
  }
  .explore-tutorial li {
    margin-bottom: 4px;
    color: var(--text-muted);
  }
  .explore-tutorial-dismiss {
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 14px;
    border: 1.5px solid var(--c-navy);
    background: var(--c-navy);
    color: #fff;
    cursor: pointer;
  }
  .explore-tutorial-dismiss:hover {
    background: color-mix(in srgb, var(--c-navy) 85%, black);
  }

  /* ── Question social proof bar ── */
  .question-social {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: -12px 0 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    font-size: 12px;
    color: var(--text-muted);
  }
  .question-social-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 16px;
    flex-wrap: wrap;
  }
  .question-social-row + .question-social-row {
    border-top: 1px solid var(--divider);
    padding: 6px 16px;
    font-size: 11px;
    color: var(--text-subtle);
  }
  .question-social-stat {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
  }
  .question-social-num {
    font-weight: 700;
    color: var(--c-teal);
  }
  .question-social-label {
    font-weight: 600;
    color: var(--text-faint);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.5px;
  }
  .question-social-share {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: var(--c-navy);
    border: none;
    border-radius: 16px;
    padding: 5px 14px;
    cursor: pointer;
    transition: all 0.15s;
    margin-left: auto;
  }
  .question-social-share:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-sm);
  }
  @media (max-width: 599px) {
    .question-social-row { gap: 10px; padding: 6px 12px; }
    .question-social-row + .question-social-row { font-size: 10px; }
    .question-social-share { font-size: 11px; padding: 5px 12px; }
  }

  /* ── Pick prompt (shown below answers until first pick) ── */
  .answers-prompt {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin: -8px 0 20px;
    padding: 10px 16px;
    border: 1px dashed var(--border);
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--c-teal) 5%, transparent);
    line-height: 1.5;
    animation: evidence-in 0.3s ease;
  }
  .answers-prompt.hidden { display: none; }

  /* ── Evidence action buttons (resonates / not for me) ── */
  .evidence-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--divider);
  }
  .evidence-action {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.15s;
    text-align: center;
  }
  .evidence-action--yes {
    background: var(--surface);
    color: var(--c-teal);
    border: 1.5px solid var(--c-teal);
  }
  .evidence-action--yes:hover {
    background: var(--c-teal);
    color: #fff;
  }
  .evidence-action--no {
    background: var(--surface);
    color: var(--text-muted);
    border: 1.5px solid var(--border);
  }
  .evidence-action--no:hover {
    border-color: var(--text-muted);
    color: var(--text);
  }

  /* ── Browsing hint (persistent after first pick) ── */
  .explore-browse-hint {
    display: none;
    text-align: center;
    font-size: 12px;
    color: var(--text-faint);
    margin: -8px 0 16px;
    font-style: italic;
  }
  .explore-browse-hint.visible { display: block; }

  /* ── Responsive ── */
  @media (min-width: 600px) {
    .explore-landing-head h1 { font-size: 34px; }
    .explore-question-card { padding: 18px 24px; }
    .explore-card-title { font-size: 17px; }
    .question-block h1 { font-size: 32px; }
    .answers {
      flex-direction: row;
    }
    .answer-card { flex: 1; }
  }

  @media (max-width: 599px) {
    .explore-stage { padding-top: 20px; }
    .explore-landing-head { padding: 24px 0 20px; }
    .explore-landing-head h1 { font-size: 24px; }
    .explore-question-card { padding: 14px 16px; grid-template-columns: 30px 1fr; gap: 0 10px; }
    .explore-card-icon { width: 30px; height: 30px; border-radius: 6px; }
    .explore-card-icon svg { width: 16px; height: 16px; }
    .explore-card-title { font-size: 15px; }
    .explore-card-context { font-size: 12px; }
    .question-block h1 { font-size: 22px; }
    .answer-card { padding: 14px 16px; }
    .question-nav { gap: 8px; }
    .related-link { font-size: 12px; padding: 4px 10px; }
    .explore-stats-progress-row { padding: 10px 12px; gap: 8px; }
    .explore-stats-decided { font-size: 18px; }
    .explore-stats-decided small { font-size: 12px; }
    .explore-stats-detail { padding: 6px 12px; gap: 8px; font-size: 10px; }
    .explore-stats-detail-left { gap: 10px; }
    .explore-tutorial { font-size: 12px; padding: 12px 14px; }
  }

  /* ─── Evidence-block cross-link to a related question ──────────── */
  .evidence-cross-link {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--c-border);
  }
  .evidence-cross-link p {
    margin: 0;
    font-size: 13.5px;
    color: var(--c-text-mid);
  }
  .evidence-cross-link a {
    color: var(--c-teal);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
  }

  /* ─── One-time reset notice on the landing head ────────────────── */
  .explore-reset-notice {
    margin: 12px 0 0;
    padding: 10px 14px;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--c-text);
    background: var(--c-fog);
    border: 1px solid var(--c-border);
    border-radius: 6px;
  }

  /* ─── "Where you landed" synthesis panel ──────────────────────────
     Shown inside .explore-landing once the reader has picked >= 3
     answers. Pure readback: themed list of picked answers, still-open
     list, vote-date reminder. Neutral styling on purpose -- no
     yes/no color cues. */
  .where-you-landed {
    margin: 24px 0 8px;
    padding: 20px 22px;
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  }
  .where-you-landed[hidden] { display: none; }
  .wyl-head { margin-bottom: 16px; }
  .wyl-title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 600;
    color: var(--c-text);
  }
  .wyl-sub {
    margin: 0 0 4px;
    font-size: 14px;
    color: var(--c-text-mid);
    line-height: 1.5;
  }
  .wyl-progress {
    margin: 0;
    font-size: 13px;
    color: var(--c-text-sub);
    font-variant-numeric: tabular-nums;
  }
  .wyl-themes { display: flex; flex-direction: column; gap: 22px; }
  .wyl-theme { padding-top: 18px; border-top: 1px solid var(--c-border); }
  .wyl-theme:first-child { border-top: 0; padding-top: 0; }
  .wyl-theme-title {
    margin: 0 0 8px;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--c-text-mid);
  }
  .wyl-theme-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .wyl-theme-item { margin: 0; }
  .wyl-topic-link {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 12px;
    align-items: baseline;
    width: 100%;
    padding: 10px 10px;
    margin: 0;
    background: transparent;
    border: 0;
    border-radius: 6px;
    text-align: left;
    font: inherit;
    color: inherit;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.12s ease;
  }
  .wyl-topic-link:hover { background: var(--c-fog); }
  .wyl-topic-link:focus-visible {
    background: var(--c-fog);
    outline: 2px solid var(--c-teal);
    outline-offset: -2px;
  }
  .wyl-topic-link:active { background: var(--c-divider); }
  .wyl-topic-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--c-text);
    line-height: 1.3;
  }
  .wyl-topic-chev {
    color: var(--c-text-faint);
    font-size: 18px;
    line-height: 1;
    transition: color 0.12s ease, transform 0.12s ease;
  }
  .wyl-topic-link:hover .wyl-topic-chev,
  .wyl-topic-link:focus-visible .wyl-topic-chev {
    color: var(--c-teal);
    transform: translateX(2px);
  }
  .wyl-topic-detail {
    grid-column: 1 / -1;
    padding-left: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--c-text-mid);
  }
  .wyl-topic-detail--unsure { font-style: italic; color: var(--c-text-sub); }
  .wyl-open {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--c-border);
  }
  .wyl-open[hidden] { display: none; }
  .wyl-open-title {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-text);
  }
  .wyl-open-sub {
    margin: 0 0 8px;
    font-size: 13px;
    color: var(--c-text-mid);
  }
  .wyl-open-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
  }
  .wyl-topic-link--open {
    display: inline-flex;
    padding: 6px 10px;
    background: var(--c-fog);
    border: 1px solid var(--c-border);
    font-size: 13px;
    color: var(--c-text);
    width: auto;
  }
  .wyl-topic-link--open:hover,
  .wyl-topic-link--open:focus-visible {
    background: var(--c-surface);
    border-color: var(--c-text-mid);
  }
  .wyl-next {
    margin-top: 16px;
    padding: 12px 14px;
    background: var(--c-fog);
    border-radius: 8px;
  }
  .wyl-next-title {
    margin: 0 0 4px;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--c-text-mid);
  }
  .wyl-next-body {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--c-text);
  }
  .wyl-next-body a { color: var(--c-teal); }
  .wyl-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
  }
  .wyl-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid var(--c-border);
    background: var(--c-surface);
    color: var(--c-text);
    font: inherit;
    font-size: 13px;
    cursor: pointer;
  }
  .wyl-action:hover,
  .wyl-action:focus-visible {
    background: var(--c-fog);
    outline: none;
  }
  .wyl-action--primary {
    background: var(--c-navy);
    color: #fff;
    border-color: var(--c-navy);
  }
  .wyl-action--primary:hover,
  .wyl-action--primary:focus-visible {
    background: var(--c-teal);
    border-color: var(--c-teal);
  }
  .wyl-action--primary .icon-copied,
  .wyl-action--primary.copied .icon-link { display: none; }
  .wyl-action--primary .icon-link,
  .wyl-action--primary.copied .icon-copied { display: inline-block; }
  .wyl-action--primary svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .wyl-action--ghost { background: transparent; }

  .explore-landing.shared-mode .wyl-action--ghost { display: none; }

  @media (max-width: 599px) {
    .where-you-landed { padding: 16px 14px; }
    .wyl-title { font-size: 18px; }
    .wyl-topic-label { font-size: 14.5px; }
    .wyl-topic-detail { font-size: 13.5px; }
  }
