:root {
  --bg: #f4f2ea;
  --panel: rgba(252, 250, 244, 0.88);
  --ink: #20241d;
  --muted: #596158;
  --line: rgba(38, 44, 36, 0.12);
  --accent: #2b5f45;
  --accent-dark: #1f4734;
  --bg-blur: 2.6px;

  --answer-dark-red: #9d4e4d;
  --answer-light-red: #d9bfbe;
  --answer-gray: #d8d8d2;
  --answer-light-green: #baceb0;
  --answer-dark-green: #5d8256;
  --answer-unknown: #ddd9f5;

  --red-upper: #be7777;
  --green-upper: #86ad79;
  --red-lower: #e2c4bf;
  --green-lower: #cedfb5;
  --red-apocalypse: #8f4747;
  --green-utopia: #6b9558;
  --red-low-extreme: #cbabaa;
  --green-low-extreme: #b8d2ad;
  --neutral-top: #dcd9c2;
  --neutral-bottom: #ddd7d1;
  --red-mid: #e0c9b4;
  --green-mid: #d4ddb4;
  --unknown: #dbd7c4;
}
* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}
body::before {
  background: url("ai-futures-mural.jpg") center center / cover no-repeat;
  filter: blur(var(--bg-blur)) saturate(.95);
  transform: scale(1.02);
  transition: filter .45s ease;
}
body::after {
  z-index: -1;
  background: rgba(20, 22, 20, .08);
}
body.wallpaper-focus { --bg-blur: 0px; }
button, input { font: inherit; }

.shell { width: min(1160px, calc(100% - 28px)); margin: 0 auto; padding: 26px 0 48px; }
.top-controls { display: flex; justify-content: flex-end; margin-bottom: 10px; }
.lang-switch {
  display: inline-flex; gap: 6px; padding: 6px; border-radius: 999px; background: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.45);
  backdrop-filter: blur(8px);
}
.lang-button {
  border: 0; background: transparent; color: var(--muted); padding: 8px 14px; border-radius: 999px; font-weight: 800; cursor: pointer;
}
.lang-button.active { background: #fff; color: var(--ink); box-shadow: 0 2px 10px rgba(0,0,0,.08); }

.panel {
  background: var(--panel); border: 1px solid rgba(255,255,255,.4); border-radius: 24px; box-shadow: 0 22px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: clamp(20px, 4vw, 50px);
}
.hero { max-width: 790px; margin: 0 auto 30px; text-align: center; }
.hero.compact { margin-bottom: 20px; }
.eyebrow { margin: 0 0 8px; color: var(--accent); font-size: .76rem; font-weight: 800; letter-spacing: .16em; }
.eyebrow.small { margin-bottom: 5px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { margin-bottom: 12px; letter-spacing: -.035em; line-height: 1.05; }
h1 { font-size: clamp(2.35rem, 7vw, 4.7rem); }
h2 { font-size: clamp(2rem, 5vw, 3.7rem); }
h3 { font-size: 1rem; letter-spacing: .02em; }
.lede { margin-bottom: 0; color: var(--muted); font-size: clamp(1rem, 2vw, 1.18rem); }
.intro-copy {
  max-width: 700px; margin: 18px auto 0; padding-top: 16px; border-top: 1px solid rgba(50,55,48,.11); color: #555b52; font-size: .95rem; line-height: 1.55;
}
.progress-wrap {
  position: sticky; z-index: 10; top: 8px; max-width: 900px; margin: 0 auto 24px; padding: 10px 12px 11px; border-radius: 13px;
  border: 1px solid rgba(210,210,203,.88); background: rgba(255,253,248,.92); box-shadow: 0 7px 18px rgba(0,0,0,.06); backdrop-filter: blur(8px);
}
.progress-copy { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 8px; color: var(--muted); font-size: .86rem; font-weight: 650; }
.progress-track { height: 7px; overflow: hidden; border-radius: 999px; background: #e6e4de; }
.progress-bar { width: 0; height: 100%; background: var(--accent); transition: width .25s ease; }
.questions { max-width: 900px; margin: 0 auto; }
.question-card { margin: 0 0 18px; padding: 18px 18px 20px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.question-title { display: flex; align-items: flex-start; gap: 12px; font-size: 1.14rem; font-weight: 760; line-height: 1.38; }
.question-number {
  display: inline-grid; width: 32px; height: 32px; flex: 0 0 32px; place-items: center; border-radius: 50%; background: #edf2f5; color: var(--accent-dark); font-size: .88rem;
}
.question-text { display: block; padding-top: 2px; }
.scale {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); grid-template-rows: 48px 48px; gap: 8px; margin-top: 18px; align-items: center;
}
.choice {
  position: relative; display: flex; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 9px;
  padding: 10px 8px; border: 1px solid rgba(31,35,30,.16); border-radius: 13px; color: #272b25; text-align: center; font-size: .78rem; font-weight: 700; line-height: 1.18;
  transition: border-color .16s ease, filter .16s ease, transform .16s ease, box-shadow .16s ease;
}
.choice-tall { height: 86px; min-height: 86px; grid-row: 1 / span 2; align-self: center; }
.choice-short { height: 48px; min-height: 48px; }
.slot-1 { grid-column: 1; }
.slot-2 { grid-column: 2; }
.slot-middle { grid-column: 3; grid-row: 1; }
.slot-4 { grid-column: 4; }
.slot-5 { grid-column: 5; }
.slot-idk { grid-column: 3; grid-row: 2; }
.choice-negative-strong { background: var(--answer-dark-red); color: #fff; }
.choice-negative { background: var(--answer-light-red); }
.choice-neutral { background: var(--answer-gray); }
.choice-positive { background: var(--answer-light-green); }
.choice-positive-strong { background: var(--answer-dark-green); color: #fff; }
.choice-unknown { background: var(--answer-unknown); }
.choice-custom { background: #edf1f3; color: #202723; }
.choice-negative-soft { background: #e9cdcb; }
.choice:hover { transform: translateY(-1px); filter: brightness(.98); border-color: rgba(24,28,23,.36); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice-dot { width: 20px; height: 20px; flex: 0 0 20px; border: 2px solid rgba(31,35,30,.45); border-radius: 50%; background: rgba(255,255,255,.95); box-shadow: inset 0 0 0 4px rgba(255,255,255,.95); }
.choice-negative-strong .choice-dot, .choice-positive-strong .choice-dot { border-color: rgba(255,255,255,.85); }
.choice:has(input:checked) { border-color: #1f2920; box-shadow: 0 0 0 3px rgba(23,25,20,.13), inset 0 0 0 1px rgba(255,255,255,.25); }
.choice:has(input:checked) .choice-dot { border-color: #fff; background: #1b211b; box-shadow: inset 0 0 0 4px #fff; }
.primary-button, .secondary-button { display: inline-flex; min-height: 48px; cursor: pointer; align-items: center; justify-content: center; border-radius: 999px; padding: 0 22px; font-weight: 800; transition: transform .15s ease, background .15s ease, opacity .15s ease; }
.primary-button { width: 100%; margin-top: 8px; border: 0; background: var(--accent); color: white; }
.primary-button:hover:not(:disabled) { background: var(--accent-dark); transform: translateY(-1px); }
.primary-button:disabled { cursor: not-allowed; opacity: .42; }
.secondary-button { width: 100%; border: 1px solid #bac0b9; background: transparent; color: var(--ink); }
.secondary-button:hover { background: #f1f1ec; }
.secondary-button.small { min-height: 42px; }
.form-message { min-height: 1.2em; margin: 10px 0 0; color: #8a3030; text-align: center; font-size: .88rem; }

.result-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(22px, 4vw, 42px); align-items: start; }
.left-results-column { min-width: 0; }
.side-panel { display: grid; gap: 18px; align-content: start; }
.compass-wrap { position: relative; width: min(100%, 760px); margin: 8px auto 12px; padding: 42px 86px 64px; }
.compass { position: relative; width: 100%; aspect-ratio: 1; border: 2px solid #191c17; background: white; box-shadow: 0 16px 32px rgba(20,25,18,.1); overflow: visible; }
.quadrant { position: absolute; z-index: 0; width: 50%; height: 50%; }
.quadrant-tl { inset: 0 auto auto 0; background: var(--red-upper); }
.quadrant-tr { inset: 0 0 auto auto; background: var(--green-upper); }
.quadrant-bl { inset: auto auto 0 0; background: var(--red-lower); }
.quadrant-br { inset: auto 0 0 auto; background: var(--green-lower); }
.special-zone { position: absolute; z-index: 1; }
.zone-corner-tl { left: 0; top: 0; width: 12.5%; height: 12.5%; background: var(--red-apocalypse); }
.zone-corner-tr { right: 0; top: 0; width: 12.5%; height: 12.5%; background: var(--green-utopia); }
.zone-corner-bl { left: 0; bottom: 0; width: 12.5%; height: 12.5%; background: var(--red-low-extreme); }
.zone-corner-br { right: 0; bottom: 0; width: 12.5%; height: 12.5%; background: var(--green-low-extreme); }
.zone-mid-top { left: 37.5%; top: 0; width: 25%; height: 12.5%; background: var(--neutral-top); }
.zone-mid-bottom { left: 37.5%; bottom: 0; width: 25%; height: 12.5%; background: var(--neutral-bottom); }
.zone-mid-left { left: 0; top: 37.5%; width: 12.5%; height: 25%; background: var(--red-mid); }
.zone-mid-right { right: 0; top: 37.5%; width: 12.5%; height: 25%; background: var(--green-mid); }
.zone-center { left: 37.5%; top: 37.5%; width: 25%; height: 25%; background: var(--unknown); }
.uncertainty-overlay { position: absolute; z-index: 3; inset: 0; width: 100%; height: 100%; pointer-events: none; }
#uncertaintyRect {
  fill: rgba(248, 237, 120, .15);
  stroke: #8b7300;
  stroke-width: 2.4px;
  stroke-dasharray: 8px 6px;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.axis { position: absolute; z-index: 4; background: #191c17; }
.axis-x { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-1px); }
.axis-y { top: 0; left: 50%; width: 2px; height: 100%; transform: translateX(-1px); }
.tick { position: absolute; z-index: 5; padding: 2px 5px; border-radius: 5px; background: rgba(255,255,255,.78); font-size: .68rem; font-weight: 800; }
.tick-x-left { left: 5px; top: calc(50% + 4px); }
.tick-x-center { left: calc(50% + 4px); top: calc(50% + 4px); }
.tick-x-right { right: 5px; top: calc(50% + 4px); }
.tick-y-top { top: 4px; left: calc(50% + 4px); }
.tick-y-center { top: calc(50% - 22px); left: calc(50% + 4px); }
.tick-y-bottom { bottom: 4px; left: calc(50% + 4px); }
.result-point {
  position: absolute; z-index: 7; width: 24px; height: 24px; transform: translate(-50%, -50%); transition: left .45s cubic-bezier(.2,.8,.2,1), top .45s cubic-bezier(.2,.8,.2,1);
  border: 4px solid #fff; border-radius: 50%; background: #111; box-shadow: 0 0 0 2px #111, 0 6px 14px rgba(0,0,0,.28);
}
.result-point span { position: absolute; inset: 50% auto auto 50%; width: 4px; height: 4px; transform: translate(-50%,-50%); border-radius: 50%; background: white; }
.famous-points { position: absolute; z-index: 8; inset: 0; pointer-events: none; }
.famous-point { position: absolute; z-index: 8; width: 0; height: 0; transition: left .35s ease, top .35s ease; }
.famous-avatar-wrap {
  position: absolute; left: 0; top: 0; width: 40px; height: 40px; transform: translate(-50%, -50%);
  border: 3px solid #f0d349; border-radius: 50%; overflow: hidden; background: #2b2b27; box-shadow: 0 0 0 2px rgba(255,255,255,.94), 0 6px 15px rgba(0,0,0,.25);
}
.famous-avatar-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.famous-avatar-wrap img.image-failed { display: none; }
.famous-avatar-fallback { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: .7rem; font-weight: 900; }
.famous-point-label {
  position: absolute; left: 0; top: 25px; transform: translateX(-50%); width: max-content; max-width: 145px; padding: 4px 7px;
  border-radius: 9px; background: rgba(255,255,255,.96); color: #231f00; font-size: .68rem; font-weight: 850; line-height: 1.15; text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,.12); white-space: normal;
}

.famous-point-label::before { content: ''; position: absolute; width: 0; height: 0; opacity: .92; }
.famous-point-label.placement-right::before { left: -5px; top: 50%; transform: translateY(-50%); border-top: 4px solid transparent; border-bottom: 4px solid transparent; border-right: 5px solid rgba(255,255,255,.96); }
.famous-point-label.placement-left::before { right: -5px; top: 50%; transform: translateY(-50%); border-top: 4px solid transparent; border-bottom: 4px solid transparent; border-left: 5px solid rgba(255,255,255,.96); }
.famous-point-label.placement-above::before { left: 50%; bottom: -5px; transform: translateX(-50%); border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid rgba(255,255,255,.96); }
.famous-point-label.placement-below::before { left: 50%; top: -5px; transform: translateX(-50%); border-left: 4px solid transparent; border-right: 4px solid transparent; border-bottom: 5px solid rgba(255,255,255,.96); }
.famous-point-label.placement-below-left::before { right: 5px; top: -5px; border-left: 4px solid transparent; border-right: 4px solid transparent; border-bottom: 5px solid rgba(255,255,255,.96); }

.vertical-label, .horizontal-label { position: absolute; z-index: 9; color: #292c27; font-size: clamp(.76rem, 1.5vw, .95rem); font-weight: 760; line-height: 1.15; pointer-events: none; }
.top-label { top: -34px; left: 50%; transform: translateX(-50%); width: max-content; max-width: 92%; text-align: center; }
.bottom-label { bottom: -46px; left: 50%; transform: translateX(-50%); text-align: center; width: max-content; max-width: 92%; }
.horizontal-label { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; width: 72px; text-align: center; }
.left-label { left: -8px; top: 50%; transform: translate(-100%, -50%); }
.right-label { right: -8px; top: 50%; transform: translate(100%, -50%); }
.horizontal-label strong { font-size: 1.18rem; letter-spacing: .04em; }
.word-bad { color: #a83f3f; }
.word-good { color: #356d3a; }

.score-card, .promo-card { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.96); }
.score-row { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; padding: 12px 0; border-top: 1px solid #e8e8e2; }
.score-row span { color: var(--muted); font-size: .9rem; }
.score-row strong { font-size: 1.25rem; font-variant-numeric: tabular-nums; }
.region-name { margin: 18px 0 7px; font-size: .84rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; color: var(--accent); }
.result-summary, .promo-copy { margin: 0; color: var(--muted); font-size: .91rem; line-height: 1.5; }
.halo-explanation { margin: 16px 0 20px; color: var(--muted); font-size: .8rem; line-height: 1.45; }
.promo-kicker { margin-bottom: 6px; color: var(--accent); font-size: .76rem; font-weight: 800; letter-spacing: .12em; }
.promo-card h3, .famous-card h3 { margin-bottom: 10px; font-size: 1.08rem; }
.promo-link { display: block; margin-top: 14px; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 26px rgba(0,0,0,.16); }
.promo-link img { display: block; width: 100%; height: auto; }

.famous-toolbar { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 0 auto 8px; color: #4f574f; font-size: .84rem; font-weight: 700; text-align: center; }
.famous-toggle { border: 1px solid rgba(38,44,36,.22); background: rgba(255,255,255,.82); color: var(--ink); border-radius: 999px; padding: 5px 11px; font-size: .78rem; font-weight: 850; cursor: pointer; }
.famous-toggle[aria-pressed="true"] { background: #f4e477; border-color: #b7a230; }

.uncertainty-panel { width: min(100%, 760px); margin: 10px auto 0; padding: 22px 22px 24px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.92); }
.uncertainty-panel-head { display: flex; justify-content: space-between; gap: 18px; align-items: end; margin-bottom: 14px; }
.uncertainty-panel-head h3 { margin: 0; font-size: 1.22rem; }
.uncertainty-score-box { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; text-align: right; }
.uncertainty-score-box span { color: var(--muted); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.uncertainty-score-box strong { font-size: 1.34rem; font-variant-numeric: tabular-nums; }
.uncertainty-score-box em { color: var(--accent); font-size: .95rem; font-style: normal; font-weight: 800; }
.uncertainty-top-scale { display: grid; grid-template-columns: repeat(7, 1fr); margin: 0 0 8px; color: #4e554d; font-size: .78rem; font-weight: 700; }
.uncertainty-top-scale span { text-align: center; }
.uncertainty-top-scale span:first-child { text-align: left; }
.uncertainty-top-scale span:last-child { text-align: right; }
.uncertainty-meter { position: relative; display: grid; grid-template-columns: repeat(10, minmax(0, 1fr)); gap: 4px; align-items: end; min-height: 52px; }
.u-segment { border-radius: 4px 4px 0 0; background: #eceae3; border: 1px solid rgba(40,45,37,.12); opacity: .42; transition: opacity .25s ease, background .25s ease; }
.u-segment:nth-child(1) { height: 24px; }
.u-segment:nth-child(2) { height: 26px; }
.u-segment:nth-child(3) { height: 28px; }
.u-segment:nth-child(4) { height: 31px; }
.u-segment:nth-child(5) { height: 34px; }
.u-segment:nth-child(6) { height: 37px; }
.u-segment:nth-child(7) { height: 40px; }
.u-segment:nth-child(8) { height: 43px; }
.u-segment:nth-child(9) { height: 46px; }
.u-segment:nth-child(10) { height: 49px; }
.u-segment.active { opacity: 1; }
.u-segment:nth-child(1).active { background: #20a458; }
.u-segment:nth-child(2).active { background: #4bbb42; }
.u-segment:nth-child(3).active { background: #82ca39; }
.u-segment:nth-child(4).active { background: #b7d03b; }
.u-segment:nth-child(5).active { background: #d4c63a; }
.u-segment:nth-child(6).active { background: #ddad2f; }
.u-segment:nth-child(7).active { background: #e7881f; }
.u-segment:nth-child(8).active { background: #ea6118; }
.u-segment:nth-child(9).active { background: #eb3a12; }
.u-segment:nth-child(10).active { background: #df1717; }
.uncertainty-marker { position: absolute; left: 0; top: -9px; bottom: -6px; width: 3px; background: #121612; border-radius: 999px; box-shadow: 0 0 0 2px rgba(255,255,255,.86); transform: translateX(-50%); }
.uncertainty-marker::before { content: ""; position: absolute; top: -7px; left: 50%; width: 12px; height: 12px; transform: translateX(-50%) rotate(45deg); background: #121612; border-radius: 2px; }
.uncertainty-band-labels { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 6px; margin-top: 10px; color: #6f766d; font-size: .72rem; font-weight: 800; letter-spacing: .11em; text-align: center; }
.uncertainty-band-labels span:last-child { min-width: 74px; text-align: right; }

.art-reveal {
  min-height: 100vh; display: flex; align-items: flex-end; justify-content: center; padding: 40px 16px; text-align: center;
}
[hidden] { display: none !important; }

@media (max-width: 980px) {
  .result-layout { grid-template-columns: 1fr; }
  .side-panel { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
}
@media (max-width: 760px) {
  .scale { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: repeat(3, minmax(56px, auto)); }
  .slot-1, .slot-2, .slot-middle, .slot-4, .slot-5, .slot-idk, .choice-tall, .choice-short { grid-column: auto; grid-row: auto; min-height: 64px; height: auto; }
  .choice { min-height: 64px; }
  .compass-wrap { padding: 44px 64px 68px; }
  .horizontal-label { width: 54px; font-size: .7rem; }
  .horizontal-label strong { font-size: .95rem; }
  .left-label { left: -6px; }
  .right-label { right: -6px; }
  .top-label { top: -38px; max-width: 96%; font-size: .74rem; }
  .bottom-label { bottom: -49px; max-width: 96%; font-size: .7rem; }
  .famous-toolbar { flex-wrap: wrap; gap: 7px; }
  .uncertainty-panel-head { flex-direction: column; align-items: flex-start; }
  .uncertainty-score-box { align-items: flex-start; text-align: left; }
}
@media (max-width: 640px) {
  .shell { width: min(100% - 16px, 1160px); padding: 18px 0 36px; }
  .panel { padding: 22px 14px 26px; border-radius: 18px; }
  .progress-wrap { top: 4px; }
  .question-card { padding: 16px 12px 18px; }
  .question-title { font-size: 1rem; }
  .scale { grid-template-columns: 1fr; grid-template-rows: auto; }
  .choice,
  .slot-1, .slot-2, .slot-middle, .slot-4, .slot-5, .slot-idk,
  .choice-tall, .choice-short {
    min-height: 52px; height: auto; grid-column: auto; grid-row: auto; flex-direction: row; justify-content: flex-start; text-align: left; padding: 10px 14px;
  }

  /* On phones, ordinary Likert questions keep the four directional answers full-width,
     while Neutral and I don't know share one row. Custom questions remain unchanged. */
  .question-card[data-kind="likert"] .scale {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto auto auto auto;
  }
  .question-card[data-kind="likert"] .slot-1 { grid-column: 1 / -1; grid-row: 1; }
  .question-card[data-kind="likert"] .slot-2 { grid-column: 1 / -1; grid-row: 2; }
  .question-card[data-kind="likert"] .slot-middle { grid-column: 1; grid-row: 3; }
  .question-card[data-kind="likert"] .slot-idk { grid-column: 2; grid-row: 3; }
  .question-card[data-kind="likert"] .slot-4 { grid-column: 1 / -1; grid-row: 4; }
  .question-card[data-kind="likert"] .slot-5 { grid-column: 1 / -1; grid-row: 5; }
  .question-card[data-kind="likert"] .slot-middle,
  .question-card[data-kind="likert"] .slot-idk {
    justify-content: center; text-align: center; padding-left: 9px; padding-right: 9px;
  }

  .compass-wrap { padding: 48px 56px 72px; }
  .top-label { top: -41px; max-width: 96%; font-size: .66rem; line-height: 1.08; }
  .bottom-label { bottom: -52px; max-width: 96%; font-size: .65rem; }
  .horizontal-label { width: 46px; font-size: .6rem; }
  .horizontal-label strong { font-size: .8rem; }
  .left-label { left: -5px; }
  .right-label { right: -5px; }

  /* Keep every reference figure on its exact coordinate, but scale the whole marker/label
     cluster down around that coordinate so crowded phone layouts remain readable. */
  .famous-point { transform: scale(.72); transform-origin: 0 0; }
  .uncertainty-band-labels { font-size: .55rem; letter-spacing: .06em; }
}
@media (max-width: 430px) {
  .famous-point { transform: scale(.64); }
}
