/* Shared visual theme for custom modules used across EchoSim Insights articles. */

/* the-cognitive-load-crisis */
.burnout-loop {
      margin: 2rem 0 2.25rem;
      padding: clamp(1.25rem, 4vw, 2rem);
      border: 1px solid var(--outline);
      border-radius: 18px;
      background: var(--bg-card);
      box-shadow: 0 16px 44px rgba(36, 24, 41, 0.08);
    }
    .burnout-loop-kicker {
      margin: 0 0 0.4rem !important;
      color: var(--primary) !important;
      font-size: 0.75rem !important;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .burnout-loop h3 {
      margin: 0 0 0.55rem;
      font-family: var(--serif);
      font-size: clamp(1.45rem, 3vw, 1.9rem);
      line-height: 1.25;
    }
    .burnout-loop-intro { margin: 0 0 1.4rem !important; color: var(--text-muted); }
    .burnout-loop-track {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.5rem;
      counter-reset: loop-step;
    }
    .burnout-loop-step {
      position: relative;
      min-height: 150px;
      padding: 1rem;
      border: 1px solid var(--outline);
      border-radius: 14px;
      background: var(--bg);
      counter-increment: loop-step;
    }
    .burnout-loop-step::before {
      content: counter(loop-step);
      display: grid;
      width: 30px;
      height: 30px;
      margin-bottom: 0.8rem;
      place-items: center;
      border-radius: 50%;
      background: color-mix(in srgb, var(--primary) 13%, var(--bg));
      color: var(--primary);
      font-family: var(--sans);
      font-size: 0.8rem;
      font-weight: 700;
    }
    .burnout-loop-step:not(:last-child)::after {
      content: "→";
      position: absolute;
      top: 50%;
      right: -1.2rem;
      color: var(--primary);
      font-family: var(--sans);
      font-size: 1.2rem;
      font-weight: 700;
      transform: translateY(-50%);
    }
    .burnout-loop-step h4 {
      margin: 0 0 0.35rem;
      color: var(--text);
      font-family: var(--sans);
      font-size: 0.9rem;
      line-height: 1.35;
    }
    .burnout-loop-step p { margin: 0 !important; color: var(--text-muted); font-size: 0.8rem !important; line-height: 1.5; }
    .burnout-loop-stat { color: var(--primary); font-size: 1.35rem; font-weight: 700; }
    .burnout-loop-return {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.65rem;
      margin: 1rem 0 0 !important;
      padding: 0.7rem 1rem;
      border-radius: 999px;
      background: var(--bg-alt);
      color: var(--text-muted);
      font-size: 0.82rem !important;
      text-align: center;
    }
    .burnout-loop-return strong { color: var(--primary); }
    .burnout-loop figcaption {
      margin-top: 0.85rem;
      color: var(--text-faint);
      font-size: 0.74rem;
      line-height: 1.45;
    }
    @media (max-width: 760px) {
      .burnout-loop-track { grid-template-columns: 1fr; gap: 1.35rem; }
      .burnout-loop-step { min-height: 0; }
      .burnout-loop-step:not(:last-child)::after {
        top: auto;
        right: 50%;
        bottom: -1.25rem;
        transform: translateX(50%) rotate(90deg);
      }
      .burnout-loop-return { border-radius: 12px; }
    }

/* dating-profiles-cant-predict-chemistry */
.chemistry-evidence {
      margin: 2rem 0 2.25rem;
      padding: clamp(1.25rem, 4vw, 2rem);
      border: 1px solid var(--outline);
      border-radius: 18px;
      background: var(--bg-card);
      box-shadow: 0 16px 44px rgba(36, 24, 41, 0.08);
    }
    .chemistry-evidence-kicker {
      margin: 0 0 0.4rem !important;
      color: var(--primary) !important;
      font-size: 0.75rem !important;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .chemistry-evidence h3 {
      margin: 0 0 0.55rem;
      font-family: var(--serif);
      font-size: clamp(1.45rem, 3vw, 1.9rem);
      line-height: 1.25;
    }
    .chemistry-evidence-intro { margin: 0 0 1.35rem !important; color: var(--text-muted); }
    .prediction-answer {
      margin: 0 0 1rem !important;
      padding: 0.9rem 1rem;
      border-left: 3px solid var(--primary);
      border-radius: 0 10px 10px 0;
      background: var(--bg-alt);
      color: var(--text-muted);
      font-size: 0.9rem !important;
      line-height: 1.5;
    }
    .prediction-answer strong { color: var(--primary); }
    .prediction-path {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
      gap: 1rem;
      align-items: stretch;
    }
    .prediction-stage {
      display: flex;
      flex-direction: column;
      padding: 1.1rem;
      border: 1px solid var(--outline);
      border-radius: 14px;
      background: var(--bg);
    }
    .prediction-stage-label {
      display: block;
      margin-bottom: 0.45rem;
      color: var(--primary);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .prediction-stage h4 {
      margin: 0 0 0.75rem;
      color: var(--text);
      font-family: var(--sans);
      font-size: 1rem;
    }
    .prediction-stage ul {
      margin: 0 0 1rem;
      padding-left: 1.1rem;
    }
    .prediction-stage li {
      margin-bottom: 0.35rem;
      color: var(--text-muted);
      font-size: 0.82rem;
      line-height: 1.4;
    }
    .prediction-question {
      margin: auto 0 0 !important;
      padding-top: 0.75rem;
      border-top: 1px solid var(--outline);
      color: var(--text-muted);
      font-size: 0.78rem !important;
      line-height: 1.4;
    }
    .prediction-question strong { display: block; margin-top: 0.2rem; color: var(--text); }
    .prediction-bridge {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      color: var(--primary);
      font-size: 1.3rem;
      font-weight: 700;
    }
    .prediction-bridge span {
      max-width: 70px;
      color: var(--text-faint);
      font-size: 0.7rem;
      font-weight: 600;
      line-height: 1.3;
      text-align: center;
    }
    .prediction-confidence {
      position: relative;
      height: 8px;
      margin-top: 1.15rem;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--outline), color-mix(in srgb, var(--primary) 70%, var(--bg)));
    }
    .prediction-confidence-labels {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      margin-top: 0.45rem;
      color: var(--text-faint);
      font-size: 0.7rem;
      line-height: 1.35;
    }
    .prediction-confidence-labels span:last-child { text-align: right; }
    .prediction-rule {
      margin: 1rem 0 0 !important;
      color: var(--text);
      font-family: var(--serif);
      font-size: 1rem !important;
      font-weight: 600;
      text-align: center;
    }
    .chemistry-evidence figcaption {
      margin-top: 0.85rem;
      color: var(--text-faint);
      font-size: 0.74rem;
      line-height: 1.45;
    }
    @media (max-width: 700px) {
      .prediction-path { grid-template-columns: 1fr; }
      .prediction-bridge { flex-direction: row; }
      .prediction-bridge b { transform: rotate(90deg); }
      .prediction-bridge span { max-width: none; }
    }

/* texting-anxiety-early-dating */
.reply-checker {
      margin: 2rem 0 2.25rem;
      padding: clamp(1.25rem, 4vw, 2rem);
      border: 1px solid var(--outline);
      border-radius: 18px;
      background: var(--bg-card);
      box-shadow: 0 16px 44px rgba(36, 24, 41, 0.08);
    }
    .reply-checker .reply-checker-kicker {
      margin: 0 0 0.45rem;
      color: var(--primary);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .reply-checker .reply-checker-title {
      margin: 0 0 0.65rem;
      font-family: var(--serif);
      font-size: clamp(1.45rem, 3vw, 1.9rem);
      line-height: 1.25;
    }
    .reply-checker .reply-checker-intro { margin-bottom: 1.25rem; }
    .reply-checker-result {
      padding: 1.15rem 1.2rem;
      border: 1px solid var(--outline);
      border-radius: 14px;
      background: var(--bg-alt);
    }
    .reply-checker-result h3 { margin: 0 0 0.45rem; color: var(--primary); }
    .reply-checker-result p { margin: 0; font-size: 0.95rem; }
    .reply-checker-meter {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      height: 9px;
      margin: 1.15rem 0 0.55rem;
      border-radius: 999px;
      background: linear-gradient(90deg,
        color-mix(in srgb, var(--primary) 24%, var(--bg)) 0 33%,
        color-mix(in srgb, var(--primary) 48%, var(--bg)) 33% 66%,
        color-mix(in srgb, var(--primary) 78%, var(--bg)) 66% 100%);
    }
    .reply-checker-marker {
      position: absolute;
      top: 50%;
      left: var(--marker, 25%);
      width: 18px;
      height: 18px;
      border: 3px solid var(--bg-card);
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 2px 9px rgba(36, 24, 41, 0.22);
      transform: translate(-50%, -50%);
      transition: left 0.2s ease;
    }
    .reply-checker-scale {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem;
      color: var(--text-faint);
      font-size: 0.72rem;
      line-height: 1.3;
    }
    .reply-checker-scale span:nth-child(2) { text-align: center; }
    .reply-checker-scale span:last-child { text-align: right; }
    .reply-checker-controls {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 1.5rem;
    }
    .reply-signal {
      padding: 1rem;
      border: 1px solid var(--outline);
      border-radius: 13px;
      background: var(--bg);
    }
    .reply-signal-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }
    .reply-signal label {
      color: var(--text);
      font-family: var(--sans);
      font-size: 0.9rem;
      font-weight: 700;
    }
    .reply-signal-output {
      color: var(--primary);
      font-family: var(--sans);
      font-size: 0.78rem;
      font-weight: 700;
      text-align: right;
    }
    .reply-signal input[type="range"] {
      width: 100%;
      height: 8px;
      margin: 0;
      border-radius: 999px;
      background: linear-gradient(90deg,
        var(--primary) 0 var(--fill, 25%),
        var(--outline) var(--fill, 25%) 100%);
      cursor: grab;
      accent-color: var(--primary);
      appearance: none;
    }
    .reply-signal input[type="range"]:active { cursor: grabbing; }
    .reply-signal input[type="range"]::-webkit-slider-thumb {
      width: 20px;
      height: 20px;
      border: 3px solid var(--bg-card);
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 2px 8px rgba(36, 24, 41, 0.2);
      appearance: none;
    }
    .reply-signal input[type="range"]::-moz-range-thumb {
      width: 14px;
      height: 14px;
      border: 3px solid var(--bg-card);
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 2px 8px rgba(36, 24, 41, 0.2);
    }
    .reply-signal-ends {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      margin-top: 0.5rem;
      color: var(--text-faint);
      font-size: 0.7rem;
      line-height: 1.3;
    }
    .reply-signal-ends span:last-child { text-align: right; }
    .reply-checker-definitions {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.65rem;
      margin: 1rem 0 0;
    }
    .reply-checker-definitions div {
      padding: 0.75rem;
      border: 1px solid var(--outline);
      border-radius: 10px;
      background: var(--bg-alt);
    }
    .reply-checker-definitions dt {
      margin-bottom: 0.25rem;
      color: var(--text);
      font-family: var(--sans);
      font-size: 0.78rem;
      font-weight: 700;
    }
    .reply-checker-definitions dd {
      margin: 0;
      color: var(--text-muted);
      font-size: 0.72rem;
      line-height: 1.4;
    }
    .reply-checker-privacy {
      margin: 1rem 0 0 !important;
      color: var(--text-faint) !important;
      font-size: 0.78rem !important;
    }
    @media (max-width: 680px) {
      .reply-checker-controls { grid-template-columns: 1fr; }
      .reply-signal { padding: 0.9rem; }
      .reply-checker-definitions { grid-template-columns: 1fr; }
    }

/* left-on-read-psychology */
.receipt-gap {
      margin: 2rem 0 2.25rem;
      padding: clamp(1.25rem, 4vw, 2rem);
      border: 1px solid var(--outline);
      border-radius: 18px;
      background: var(--bg-card);
      box-shadow: 0 16px 44px rgba(36, 24, 41, 0.08);
    }
    .receipt-gap .receipt-gap-kicker {
      margin: 0 0 0.45rem;
      color: var(--primary);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .receipt-gap .receipt-gap-title {
      margin: 0 0 0.65rem;
      font-family: var(--serif);
      font-size: clamp(1.45rem, 3vw, 1.9rem);
      line-height: 1.25;
    }
    .receipt-gap .receipt-gap-intro { margin-bottom: 1.25rem; }
    .receipt-status {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.9rem 1rem;
      border: 1px solid rgba(142, 75, 110, 0.24);
      border-radius: 13px;
      background: linear-gradient(135deg, rgba(142, 75, 110, 0.1), rgba(126, 109, 149, 0.08));
    }
    .receipt-message {
      color: var(--text);
      font-family: var(--sans);
      font-size: 0.92rem;
      font-weight: 600;
    }
    .receipt-seen {
      color: var(--primary);
      font-family: var(--sans);
      font-size: 0.76rem;
      font-weight: 700;
      white-space: nowrap;
    }
    .receipt-scenes {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.6rem;
      margin-top: 0.75rem;
    }
    .scene-button {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      min-height: 92px;
      padding: 0.65rem 0.4rem;
      border: 1px solid var(--outline);
      border-radius: 12px;
      color: var(--text-muted);
      background: var(--bg);
      font: 700 0.72rem/1.25 var(--sans);
      text-align: center;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
    }
    .scene-button:hover,
    .scene-button:focus-visible { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }
    .scene-button[aria-pressed="true"] {
      border-color: var(--primary);
      color: var(--primary);
      background: rgba(142, 75, 110, 0.1);
    }
    .scene-icon {
      position: relative;
      display: block;
      width: 52px;
      height: 36px;
    }
    .scene-icon i { position: absolute; display: block; }
    .scene-icon--busy i {
      width: 15px;
      height: 15px;
      border-radius: 4px;
      background: currentColor;
      opacity: 0.75;
    }
    .scene-icon--busy i:nth-child(1) { left: 2px; top: 2px; }
    .scene-icon--busy i:nth-child(2) { left: 19px; top: 11px; opacity: 0.42; }
    .scene-icon--busy i:nth-child(3) { right: 1px; top: 19px; opacity: 0.2; }
    .scene-icon--drafting {
      border: 1px solid currentColor;
      border-radius: 8px;
      opacity: 0.8;
    }
    .scene-icon--drafting i {
      left: 8px;
      height: 3px;
      border-radius: 999px;
      background: currentColor;
    }
    .scene-icon--drafting i:nth-child(1) { top: 8px; width: 34px; }
    .scene-icon--drafting i:nth-child(2) { top: 16px; width: 25px; opacity: 0.6; }
    .scene-icon--drafting i:nth-child(3) { top: 25px; width: 5px; box-shadow: 9px 0 currentColor, 18px 0 currentColor; }
    .scene-icon--away i {
      width: 28px;
      height: 18px;
      border: 2px solid currentColor;
      border-radius: 9px;
    }
    .scene-icon--away i::after {
      content: "";
      position: absolute;
      bottom: -5px;
      width: 7px;
      height: 7px;
      border-bottom: 2px solid currentColor;
      transform: skewY(-35deg);
    }
    .scene-icon--away i:first-child { left: 1px; top: 2px; }
    .scene-icon--away i:first-child::after { left: 4px; }
    .scene-icon--away i:last-child { right: 1px; bottom: 1px; opacity: 0.22; }
    .scene-icon--away i:last-child::after { right: 4px; transform: skewY(35deg); }
    .world-stage {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      min-height: 208px;
      margin-top: 0.75rem;
      padding: 1.25rem 1rem 1rem;
      overflow: hidden;
      border: 1px solid var(--outline);
      border-radius: 14px;
      background:
        radial-gradient(circle at 50% 18%, rgba(142, 75, 110, 0.12), transparent 40%),
        var(--bg-alt);
    }
    .world-art {
      position: relative;
      display: none;
      width: min(230px, 76%);
      height: 112px;
      animation: world-in 0.3s ease both;
    }
    .world-stage[data-scene="busy"] .world-art--busy,
    .world-stage[data-scene="drafting"] .world-art--drafting,
    .world-stage[data-scene="away"] .world-art--away { display: block; }
    @keyframes world-in {
      from { opacity: 0; transform: translateY(6px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .busy-grid {
      position: absolute;
      inset: 5px 20px 10px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 7px;
      transform: rotate(-4deg);
    }
    .busy-grid i {
      border-radius: 8px;
      background: rgba(142, 75, 110, 0.2);
      border: 1px solid rgba(142, 75, 110, 0.16);
    }
    .busy-grid i:nth-child(2),
    .busy-grid i:nth-child(4) { background: rgba(126, 109, 149, 0.28); }
    .busy-grid i:nth-child(5) { background: rgba(142, 75, 110, 0.42); }
    .busy-message {
      position: absolute;
      right: 2px;
      bottom: 0;
      width: 52px;
      height: 31px;
      border-radius: 16px 16px 4px 16px;
      background: var(--primary);
      box-shadow: 0 8px 24px rgba(142, 75, 110, 0.22);
    }
    .busy-message::before {
      content: "";
      position: absolute;
      inset: 10px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.7);
    }
    .draft-sheet {
      position: absolute;
      inset: 4px 24px 5px;
      padding: 22px 20px;
      border: 1px solid rgba(142, 75, 110, 0.2);
      border-radius: 14px;
      background: var(--bg-card);
      box-shadow: 0 12px 30px rgba(36, 24, 41, 0.08);
    }
    .draft-sheet > i {
      display: block;
      height: 6px;
      margin-bottom: 10px;
      border-radius: 999px;
      background: rgba(142, 75, 110, 0.22);
    }
    .draft-sheet > i:nth-child(2) { width: 72%; }
    .draft-dots { display: flex; gap: 6px; margin-top: 16px; }
    .draft-dots b {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--primary);
      animation: draft-dot 1.2s ease-in-out infinite;
    }
    .draft-dots b:nth-child(2) { animation-delay: 0.15s; }
    .draft-dots b:nth-child(3) { animation-delay: 0.3s; }
    @keyframes draft-dot { 50% { opacity: 0.25; transform: translateY(-2px); } }
    .world-bubble {
      position: absolute;
      width: 112px;
      height: 48px;
      border-radius: 22px;
    }
    .world-bubble::after {
      content: "";
      position: absolute;
      top: 16px;
      width: 58%;
      height: 6px;
      border-radius: 999px;
    }
    .world-bubble--sent {
      left: 3px;
      top: 9px;
      background: var(--primary);
      border-bottom-left-radius: 5px;
    }
    .world-bubble--sent::after { left: 18px; background: rgba(255, 255, 255, 0.7); }
    .world-bubble--reply {
      right: 3px;
      bottom: 7px;
      background: rgba(126, 109, 149, 0.12);
      border: 1px dashed rgba(126, 109, 149, 0.32);
      border-bottom-right-radius: 5px;
      opacity: 0.42;
    }
    .world-bubble--reply::after { right: 18px; background: rgba(126, 109, 149, 0.35); }
    .world-caption { text-align: center; }
    .world-caption h4 {
      margin: 0 0 0.2rem;
      color: var(--text);
      font-family: var(--sans);
      font-size: 0.92rem;
    }
    .world-caption p { margin: 0; color: var(--text-muted); font-size: 0.76rem; }
    .scene-takeaway {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 0.8rem;
      align-items: center;
      margin-top: 0.75rem;
      padding: 0.7rem 0.9rem;
      border-radius: 11px;
      color: var(--primary);
      background: rgba(142, 75, 110, 0.09);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-align: center;
      text-transform: uppercase;
    }
    .scene-takeaway strong { font: 600 1.3rem/1 var(--serif); }
    .receipt-survey {
      margin: 1.75rem 0 2rem;
      padding: clamp(1.2rem, 4vw, 1.75rem);
      border: 1px solid var(--outline);
      border-radius: 18px;
      background: var(--bg-card);
      box-shadow: 0 14px 38px rgba(36, 24, 41, 0.07);
    }
    .receipt-survey .survey-kicker {
      margin: 0 0 0.4rem;
      color: var(--primary);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .receipt-survey .survey-title {
      margin: 0 0 1.2rem;
      font-family: var(--serif);
      font-size: clamp(1.3rem, 3vw, 1.65rem);
      line-height: 1.3;
    }
    .survey-group-label {
      display: block;
      margin-bottom: 0.75rem;
      color: var(--text-muted);
      font-size: 0.78rem;
      font-weight: 700;
    }
    .survey-bars { display: grid; gap: 0.8rem; }
    .survey-bar-row {
      display: grid;
      grid-template-columns: 3rem minmax(0, 1fr);
      gap: 0.75rem;
      align-items: center;
    }
    .survey-percent {
      color: var(--primary);
      font-family: var(--serif);
      font-size: 1.05rem;
      font-weight: 600;
      text-align: right;
    }
    .survey-bar-label {
      display: block;
      margin-bottom: 0.3rem;
      color: var(--text);
      font-size: 0.75rem;
      font-weight: 600;
      line-height: 1.35;
    }
    .survey-bar-track {
      display: block;
      height: 9px;
      overflow: hidden;
      border-radius: 999px;
      background: var(--bg-alt);
    }
    .survey-bar-fill {
      display: block;
      width: var(--value);
      min-width: 3px;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--primary), var(--primary-light));
    }
    .survey-delivered {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1rem;
      align-items: center;
      margin-top: 1.25rem;
      padding: 1rem 1.1rem;
      border-radius: 12px;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
    }
    .survey-delivered strong {
      font-family: var(--serif);
      font-size: 2rem;
      line-height: 1;
    }
    .survey-delivered span { font-size: 0.78rem; line-height: 1.45; }
    .receipt-survey figcaption {
      margin-top: 0.85rem;
      color: var(--text-faint);
      font-size: 0.72rem;
      line-height: 1.5;
    }
    .receipt-survey figcaption a { color: var(--primary); }
    @media (max-width: 620px) {
      .receipt-status { align-items: flex-start; }
      .receipt-scenes { gap: 0.4rem; }
      .scene-button { min-height: 80px; padding: 0.5rem 0.2rem; font-size: 0.65rem; }
      .scene-icon { width: 44px; transform: scale(0.86); }
      .world-stage { min-height: 178px; padding-top: 1rem; }
      .world-art { width: min(210px, 88%); height: 96px; }
      .scene-takeaway { gap: 0.35rem; padding-inline: 0.55rem; font-size: 0.62rem; }
      .survey-delivered { align-items: start; grid-template-columns: 1fr; gap: 0.45rem; }
    }
    @media (prefers-reduced-motion: reduce) {
      .world-art,
      .draft-dots b { animation: none; }
    }
