:root {
  color-scheme: light;
  --paper: #f5f1e8;
  --ink: #444b3b;
  --muted: #74776a;
  --line: #dcded0;
  --accent: #a26047;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    14px/1.5 "Helvetica Neue",
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Cpath fill='%23000' filter='url(%23n)' opacity='.6' d='M0 0h180v180H0z'/%3E%3C/svg%3E");
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  min-height: 44px;
  padding: 8px 12px;
  transition:
    color 0.15s,
    background 0.15s,
    transform 0.15s;
}
button:hover {
  color: var(--accent);
}
button:active {
  transform: scale(0.96);
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
header {
  max-width: 1440px;
  margin: auto;
  padding: 30px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wordmark {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 1.5px;
  line-height: 1.5;
}
.seal {
  display: flex;
  gap: 1px;
  border: 1px solid #9ba08b;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font: italic 30px Georgia;
}
.seal span {
  font: 15px Georgia;
}
nav {
  display: flex;
  gap: 28px;
  font-size: 12px;
}
nav button span {
  margin-left: 12px;
}
.notebook {
  border: 1px solid #c8cbbb;
  border-radius: 5px;
  padding: 8px 16px;
}
.notebook span {
  font: 11px monospace;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.intro {
  text-align: center;
  padding: 48px 20px 0;
}
.eyebrow {
  font: 9px/1.6 monospace;
  letter-spacing: 1.6px;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}
.dot {
  width: 5px;
  height: 5px;
  background: #8a9877;
  border-radius: 50%;
}
h1 {
  font:
    normal clamp(52px, 6.1vw, 86px)/1.1 Georgia,
    "Times New Roman",
    serif;
  letter-spacing: -3.5px;
  margin: 22px 0 18px;
}
h1,
h2 {
  text-wrap: balance;
}
.intro p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}
.garden {
  max-width: 1200px;
  margin: -22px auto -44px;
}
.scene-wrap {
  position: relative;
}
#scene {
  width: 100%;
  height: auto;
  display: block;
}
.map-note {
  position: absolute;
  bottom: 8%;
  right: 11%;
  font: 9px Georgia;
  font-style: italic;
  color: var(--muted);
}
#hotspots {
  position: absolute;
  inset: 0;
}
.hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 0;
  border-radius: 45%;
  min-width: 44px;
  min-height: 44px;
}
.hotspot:active {
  transform: translate(-50%, -50%) scale(0.96);
}
.hotspot:after {
  content: attr(data-label);
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: #f8f5ec;
  color: var(--ink);
  padding: 5px 10px;
  border-radius: 3px;
  box-shadow: 0 2px 10px #444b3b12;
  font-size: 11px;
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
}
.hotspot:hover:after,
.hotspot:focus-visible:after {
  opacity: 1;
}
.hotspot.hinted {
  outline: 1px dashed var(--accent);
  background: #f8f5ec33;
}
.hotspot.found:before {
  content: "✦";
  position: absolute;
  right: 5%;
  bottom: 5%;
  color: #89563f;
  font-size: 13px;
}
.garden-tools {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-size: 11px;
}
.explore-hint {
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 9px;
}
.spark {
  font-size: 21px;
  color: #8d9877;
}
.garden-tools button {
  font-size: 11px;
  padding: 8px 0;
  border-bottom: 1px solid #c9ccbd;
  min-height: 32px;
}
.garden-tools button span {
  margin-left: 8px;
}
.status-line {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  padding: 29px 20px 34px;
  margin-top: 25px;
}
.status-line > span {
  font: 8px monospace;
  letter-spacing: 1.4px;
  color: var(--muted);
}
.status-line p {
  font: italic 14px Georgia;
  margin: 0;
}
.status-line button {
  font-size: 19px;
}
footer {
  border-top: 1px solid var(--line);
  margin: 0 5%;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: var(--muted);
}
footer button {
  font-size: 10px;
}
.footer-divider {
  padding: 0 12px;
  color: #a1a48f;
}
dialog {
  background: #f8f5ec;
  color: var(--ink);
  border: 1px solid #d5d4c4;
  border-radius: 6px;
  padding: 44px;
  width: min(540px, calc(100% - 32px));
  max-height: 85dvh;
  box-shadow: 0 20px 90px #343d3926;
}
dialog::backdrop {
  background: #414c3945;
  backdrop-filter: blur(5px);
}
#close {
  position: absolute;
  right: 10px;
  top: 8px;
  font-size: 25px;
  color: var(--muted);
}
dialog h2 {
  font: normal 36px/1.15 Georgia;
  letter-spacing: -1px;
  margin: 12px 0 20px;
}
dialog p {
  color: #666e5d;
  font-size: 14px;
  line-height: 1.8;
}
dialog .eyebrow {
  justify-content: flex-start;
  color: var(--accent);
  font-size: 9px;
  letter-spacing: 1px;
}
.paper-link {
  display: inline-block;
  padding: 12px 19px;
  margin-top: 14px;
  background: var(--ink);
  color: #f8f5ec;
  text-decoration: none;
  border-radius: 3px;
  font-size: 12px;
}
.paper-meta {
  font: 11px monospace;
  color: var(--muted);
  margin-bottom: 24px;
}
.discovery {
  font: italic 15px Georgia !important;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.entries {
  padding: 0;
  list-style: none;
}
.entries li {
  border-top: 1px solid var(--line);
  padding: 13px 0;
}
.entries button {
  display: block;
  text-align: left;
  width: 100%;
  padding: 0;
  font-family: Georgia;
  font-size: 18px;
}
.entries small {
  font: 10px monospace;
  color: var(--muted);
}
.locked {
  opacity: 0.7;
  font: italic 15px Georgia;
}
.text-link {
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}
#toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--paper);
  padding: 12px 22px;
  border-radius: 4px;
  box-shadow: 0 4px 20px #3332;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 30;
  max-width: 90%;
  width: max-content;
}
#toast.visible {
  opacity: 1;
}
.skip {
  position: absolute;
  top: -100px;
}
.skip:focus {
  top: 10px;
  left: 10px;
  z-index: 30;
  padding: 10px;
  background: var(--paper);
}
#duck {
  animation: drift 9s ease-in-out infinite;
}
.racer {
  animation: race 24s ease-in-out infinite alternate;
}
@keyframes drift {
  50% {
    translate: 9px -2px;
  }
}
@keyframes race {
  to {
    translate: 36px 0;
  }
}
.paused #duck,
.paused .racer {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  #duck,
  .racer {
    animation: none;
  }
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
@media (min-width: 1500px) {
  .intro {
    padding-top: 65px;
  }
  .garden {
    max-width: 1320px;
  }
}
@media (max-width: 700px) {
  header {
    padding: 20px 5%;
  }
  nav {
    gap: 5px;
  }
  nav #about {
    font-size: 0;
  }
  nav #about span {
    font-size: 18px;
    margin: 0;
  }
  nav .notebook {
    padding: 6px 9px;
    font-size: 11px;
  }
  nav .notebook span {
    margin-left: 4px;
  }
  .wordmark {
    font-size: 8px;
    letter-spacing: 1px;
    gap: 8px;
  }
  .seal {
    width: 33px;
    height: 33px;
    font-size: 24px;
  }
  .intro {
    padding-top: 35px;
  }
  .eyebrow {
    font-size: 7px;
    letter-spacing: 1px;
  }
  h1 {
    letter-spacing: -2px;
    margin-top: 19px;
    font-size: 53px;
  }
  .intro p {
    font-size: 12px;
  }
  .garden {
    margin: 16px 0 -2px;
    overflow: hidden;
  }
  .scene-wrap {
    width: 125%;
    margin-left: -12.5%;
  }
  .map-note {
    bottom: 4%;
    right: 22%;
    font-size: 8px;
  }
  .garden-tools {
    gap: 20px;
    flex-wrap: wrap;
    padding: 12px 15px;
  }
  .explore-hint {
    flex-basis: 100%;
    justify-content: center;
  }
  .status-line {
    flex-wrap: wrap;
    gap: 9px;
    padding: 22px 18px;
    margin-top: 14px;
  }
  .status-line > span {
    flex-basis: 100%;
    text-align: center;
  }
  .status-line p {
    font-size: 13px;
  }
  footer {
    font-size: 9px;
    gap: 10px;
    align-items: flex-start;
  }
  footer > span {
    max-width: 185px;
  }
  footer button {
    min-height: 28px;
    padding: 0;
    font-size: 9px;
  }
  .footer-divider {
    padding: 0 4px;
  }
  dialog {
    padding: 38px 25px;
  }
  dialog h2 {
    font-size: 30px;
  }
}

/* Objects move out of the way; discoveries become real links. */
.movable {
  transition: translate 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transform-box: view-box;
}
.movable.dragging {
  transition: none;
}
.hotspot {
  cursor: grab;
  touch-action: pan-y;
}
.hotspot:active {
  cursor: grabbing;
}
.hotspot.revealed {
  pointer-events: none;
  visibility: hidden;
}
.hotspot.found:before {
  content: none;
}
#books {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hidden-book {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-12deg) scale(0.6);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  transition:
    opacity 0.3s,
    transform 0.4s;
  text-decoration: none;
}
.hidden-book.visible {
  pointer-events: auto;
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-12deg) scale(1);
}
.hidden-book:hover {
  transform: translate(-50%, -50%) rotate(0deg) scale(1.15);
}
.book-cover {
  width: 25px;
  height: 33px;
  background: var(--book-color, #a6634a);
  border-radius: 2px 4px 4px 2px;
  box-shadow:
    3px 4px 0 #666a4c30,
    inset 3px 0 #ffffff25,
    inset 0 -3px #ede3c4;
  border: 1px solid #5c634a55;
  position: relative;
  display: grid;
  place-items: center;
  color: #f7edce;
  font: 14px Georgia;
}
.book-cover:before {
  content: "";
  position: absolute;
  inset: 5px 4px 9px;
  border: 1px solid #f4e3b877;
}
.hidden-book:after {
  content: "Read paper ↗";
  position: absolute;
  top: 47px;
  left: 50%;
  transform: translateX(-50%) rotate(12deg);
  font: 10px Arial;
  white-space: nowrap;
  color: var(--ink);
  background: var(--paper);
  padding: 3px 6px;
  border-radius: 2px;
  opacity: 0;
}
.hidden-book:hover:after,
.hidden-book:focus-visible:after {
  opacity: 1;
}
.garden-tools .reset-garden {
  border-bottom: 0;
  color: var(--muted);
}
@media (prefers-reduced-motion: reduce) {
  .movable {
    transition: none;
  }
}
@media (max-width: 700px) {
  .book-cover {
    width: 20px;
    height: 27px;
  }
  .hidden-book {
    width: 44px;
    height: 44px;
  }
  .hotspot:after {
    font-size: 9px;
  }
}
#hotspots {
  pointer-events: none;
}
.hotspot {
  pointer-events: auto;
}
.hotspot.revealed {
  pointer-events: none;
}
.hidden-book {
  visibility: hidden;
}
.hidden-book.visible {
  visibility: visible;
}
/* A quiet frame around a full-size playground. */
header {
  max-width: none;
  padding: 12px 3%;
  height: 64px;
}
.wordmark {
  font-size: 8px;
  letter-spacing: 1px;
  gap: 8px;
}
.seal {
  height: 30px;
  width: 30px;
  font-size: 23px;
}
.seal span {
  font-size: 11px;
}
nav {
  gap: 18px;
  font-size: 10px;
}
.notebook {
  padding: 4px 12px;
  min-height: 34px;
}
nav .notebook span {
  font-size: 10px;
}
.intro {
  padding: 7px 20px 10px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  max-width: 1500px;
  margin: auto;
}
.intro .eyebrow {
  font-size: 7px;
  letter-spacing: 1px;
  justify-content: flex-end;
}
.intro h1 {
  font-size: 31px;
  letter-spacing: -1px;
  margin: 0;
  white-space: nowrap;
}
.intro p {
  font-size: 10px;
  line-height: 1.6;
  text-align: left;
}
.garden {
  max-width: none;
  width: 100%;
  margin: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #bbbda8 transparent;
}
.scene-wrap {
  width: 96%;
  min-width: 850px;
  aspect-ratio: 1000/460;
  margin: 0 auto;
}
#scene {
  width: 100%;
  height: 100%;
}
.map-note {
  bottom: 2%;
  right: 6%;
  font-size: 9px;
}
.garden-tools {
  max-width: none;
  gap: 24px;
  font-size: 10px;
  padding: 4px 20px;
  flex-wrap: wrap;
}
.garden-tools button {
  font-size: 10px;
  min-height: 30px;
}
.spark {
  font-size: 15px;
}
.status-line {
  padding: 7px 15px;
  margin: 0;
  gap: 14px;
}
.status-line > span {
  font-size: 7px;
}
.status-line p {
  font-size: 11px;
}
.status-line button {
  min-height: 28px;
  padding: 2px 6px;
  font-size: 16px;
}
footer {
  margin: 0 3%;
  padding: 8px 0;
  font-size: 9px;
}
footer button {
  font-size: 9px;
  min-height: 28px;
  padding: 0;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 25px;
}
.signature {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  text-decoration: none;
  font-size: 10px;
}
.signature:hover {
  color: var(--accent);
}
.hotspot:after,
.hotspot:before {
  display: none !important;
  content: none !important;
}
.hotspot {
  min-width: 34px;
  min-height: 34px;
  cursor: pointer;
  touch-action: manipulation;
}
.interaction-dpo,
.interaction-fewshot {
  cursor: grab;
  touch-action: none;
}
.interaction-dpo:active,
.interaction-fewshot:active {
  cursor: grabbing;
}
.interaction-attention {
  min-width: 30px;
  min-height: 36px;
}
.hotspot:active {
  transform: translate(-50%, -50%);
}
.hidden-book {
  width: clamp(40px, 3.7vw, 64px);
  height: clamp(44px, 4.5vw, 76px);
}
.book-cover {
  width: clamp(25px, 2.2vw, 39px);
  height: clamp(33px, 2.9vw, 51px);
  font-size: clamp(14px, 1.4vw, 22px);
}
.book-attention.visible {
  animation: book-out 0.5s ease-out;
}
.book-fewshot.visible,
.book-feedback.visible {
  animation: book-pop 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#library-spine {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  transition:
    transform 0.35s,
    opacity 0.25s;
}
#library-spine.wobble {
  animation: spine-wobble 0.6s ease-in-out infinite;
}
#library-spine.pulled {
  animation: none;
  transform: translate(-3px, -9px) rotate(-15deg) scale(1.35);
  opacity: 0;
}
#greenhouse-plant {
  transition: translate 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-box: view-box;
}
#greenhouse-plant.dragging {
  transition: none;
}
.plant-roots {
  opacity: 0;
  transition: opacity 0.2s;
}
.uprooted .plant-roots {
  opacity: 1;
}
.duck-wing {
  transform-box: fill-box;
  transform-origin: 10% 80%;
}
#duck {
  animation: none;
}
.panicking .near-wing {
  animation: flap 0.14s ease-in-out 5 alternate;
}
.panicking .far-wing {
  animation: flap 0.14s ease-in-out 5 alternate-reverse;
}
.panicking #duck {
  animation: duck-hop 0.35s ease-out 2;
}
@keyframes spine-wobble {
  0%,
  100% {
    transform: rotate(0);
  }
  30% {
    transform: rotate(-9deg) translateY(-1px);
  }
  65% {
    transform: rotate(7deg);
  }
}
@keyframes flap {
  from {
    transform: rotate(-65deg) scaleY(1.3);
  }
  to {
    transform: rotate(30deg) scaleY(0.6);
  }
}
@keyframes duck-hop {
  50% {
    translate: 0 -5px;
    rotate: -5deg;
  }
}
@keyframes book-out {
  from {
    opacity: 0;
    transform: translate(-50%, -150%) rotate(-4deg) scale(0.45);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-12deg) scale(1);
  }
}
@keyframes book-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, 10%) rotate(12deg) scale(0.5);
  }
  60% {
    opacity: 1;
    transform: translate(-50%, -90%) rotate(-18deg) scale(1.05);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-12deg) scale(1);
  }
}
dialog.telescope-view {
  width: min(900px, 96vw);
  height: min(900px, 94dvh);
  max-height: 94dvh;
  border: 1px solid #62787744;
  background: #0b1720;
  color: #d8e2d8;
  padding: 25px 30px;
  overflow: auto;
  box-shadow: 0 0 0 100vmax #07121bdd;
}
.telescope-view::backdrop {
  background: #07121bf2;
  backdrop-filter: blur(12px);
}
.telescope-view #close {
  color: #c1d3cd;
  z-index: 2;
}
.sky-header {
  text-align: center;
  position: relative;
  z-index: 1;
}
.sky-header > span {
  font: 8px monospace;
  letter-spacing: 2px;
  color: #8ca6aa;
}
.sky-header #dialog-title {
  font: normal 23px Georgia;
  margin: 9px 0 13px;
  letter-spacing: 0;
}
.telescope-lens {
  width: min(100%, calc(94dvh - 162px));
  aspect-ratio: 1;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 1px #7c91873b,
    0 0 0 9px #09121a,
    0 0 0 10px #7c91872b,
    0 0 80px #78988f0b;
}
.telescope-lens svg {
  display: block;
  width: 100%;
  height: 100%;
}
.telescope-view .sky-caption {
  text-align: center;
  font: italic 12px Georgia;
  color: #94a8a5;
  margin: 24px 0 0;
}
.book-constellation {
  opacity: 0.57;
  transition:
    opacity 0.3s,
    filter 0.3s;
}
#constellation-book {
  cursor: pointer;
}
#constellation-book:hover .book-constellation,
#constellation-book:focus-visible .book-constellation {
  opacity: 1;
  filter: drop-shadow(0 0 5px #d8cf9b66);
}
#constellation-book:focus-visible {
  outline: none;
}
#constellation-book:focus-visible .star-hit {
  stroke: #b3c7c2;
  stroke-dasharray: 3 7;
}
@media (min-width: 1700px) {
  .scene-wrap {
    width: min(96%, calc((100svh - 210px) * 2.174));
    min-width: 1200px;
  }
}
@media (max-width: 700px) {
  header {
    height: 57px;
    padding: 8px 4%;
  }
  nav {
    gap: 5px;
  }
  .intro {
    display: block;
    padding: 6px 20px 13px;
  }
  .intro .eyebrow {
    justify-content: center;
    font-size: 6px;
    letter-spacing: 0.7px;
  }
  .intro h1 {
    font-size: 28px;
    letter-spacing: -0.8px;
    margin: 5px 0;
  }
  .intro p {
    text-align: center;
    font-size: 9px;
    line-height: 1.5;
  }
  .intro p br {
    display: none;
  }
  .scene-wrap {
    width: 850px;
    min-width: 850px;
    margin: 0;
  }
  .garden {
    margin: 0;
  }
  .garden-tools {
    gap: 10px 19px;
    padding: 7px 15px;
  }
  .explore-hint {
    flex-basis: 100%;
    font-size: 9px;
  }
  .garden-tools button {
    font-size: 9px;
  }
  .status-line {
    padding: 9px 15px;
    gap: 4px 10px;
  }
  .status-line > span {
    flex-basis: auto;
    font-size: 6px;
    letter-spacing: 0.7px;
  }
  .status-line p {
    font-size: 10px;
  }
  footer {
    margin: 0 4%;
    font-size: 8px;
    align-items: center;
  }
  .footer-links {
    gap: 7px;
    flex-direction: column;
    align-items: flex-end;
  }
  footer > span {
    max-width: 160px;
  }
  .signature {
    font-size: 9px;
    min-height: 24px;
  }
  .map-note {
    font-size: 8px;
    right: 5%;
  }
  .telescope-view {
    padding: 36px 15px !important;
    height: auto !important;
  }
  .sky-header #dialog-title {
    font-size: 20px;
  }
  .telescope-lens {
    margin-top: 20px;
  }
  .telescope-view .sky-caption {
    font-size: 11px;
    margin-bottom: 8px;
  }
  .book-cover {
    width: 24px;
    height: 32px;
  }
  .hidden-book {
    width: 44px;
    height: 44px;
  }
}
@media (prefers-reduced-motion: reduce) {
  #library-spine.wobble,
  .panicking .duck-wing,
  .panicking #duck,
  .hidden-book.visible {
    animation: none;
  }
  #greenhouse-plant,
  #library-spine,
  .book-constellation {
    transition: none;
  }
}
#effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #756044;
  border-radius: 50%;
  animation: scatter 0.9s ease-out both;
}
.particle.straw {
  width: 9px;
  height: 1px;
  border-radius: 0;
  background: #b39c65;
}
.particle.splash {
  width: 2px;
  height: 4px;
  background: #c1d7d5;
}
.water-ring {
  position: absolute;
  width: 38px;
  height: 12px;
  border: 1px solid #c7dddd88;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 1s ease-out both;
}
.butterfly {
  animation: float-about 9s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: center;
}
.butterfly-two {
  animation-duration: 12s;
  animation-delay: -4s;
}
.paused .butterfly {
  animation-play-state: paused;
}
.shooting-star {
  animation: shoot 13s linear infinite;
  opacity: 0;
}
.telescope-lens {
  position: relative;
}
.telescope-lens:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: inset 0 0 45px 16px #030b1380;
}
.interaction-attention:focus-visible {
  outline-offset: 0;
}
@keyframes scatter {
  from {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  to {
    opacity: 0;
    transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy)))
      rotate(var(--turn));
  }
}
@keyframes ripple {
  from {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.4);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3);
  }
}
@keyframes float-about {
  0% {
    translate: 0 0;
    rotate: -7deg;
  }
  50% {
    translate: 14px -8px;
    rotate: 9deg;
  }
  100% {
    translate: 30px 3px;
    rotate: -3deg;
  }
}
@keyframes shoot {
  0%,
  86% {
    opacity: 0;
    translate: -30px -18px;
  }
  87% {
    opacity: 1;
  }
  93%,
  100% {
    opacity: 0;
    translate: 210px 126px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .butterfly,
  .shooting-star,
  .water-ring,
  .particle {
    animation: none;
  }
  .shooting-star {
    display: none;
  }
}
@media (min-width: 701px) {
  .scene-wrap {
    width: min(96%, calc((100svh - 210px) * 2.174));
    min-width: 850px;
  }
  header {
    height: 55px;
  }
  .intro {
    padding-top: 3px;
    padding-bottom: 5px;
  }
  .garden-tools {
    padding-top: 0;
    padding-bottom: 0;
  }
  .status-line {
    padding-top: 3px;
    padding-bottom: 3px;
  }
}
@media (min-width: 1700px) {
  .scene-wrap {
    min-width: 1100px;
  }
}
