@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Libre+Caslon+Display&display=swap");
:root {
  color-scheme: dark;
  --bg: #14201e;
  --paper: #ece8d9;
  --muted: #a2aea4;
  --line: #35433b;
  --lime: #d4dfa1;
  --serif: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}
.filters,
.trail {
  scrollbar-width: none;
}
.filters::-webkit-scrollbar,
.trail::-webkit-scrollbar {
  display: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
}
button,
input,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
}
button:disabled {
  opacity: 0.5;
  cursor: wait;
}
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 5px;
}
button {
  color: inherit;
}
button:where(:not(.primary-button, .secondary-button)) {
  border: 0;
}
button {
  background: none;
}
input {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #1c2924;
  color: var(--paper);
  padding: 14px 16px;
}
input::placeholder {
  color: #a5afa4;
}
input:focus {
  outline: none;
  border-color: var(--lime);
}
[hidden] {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip-link {
  position: absolute;
  top: -80px;
  background: var(--lime);
  color: var(--bg);
  padding: 10px;
  z-index: 10;
}
.skip-link:focus {
  top: 5px;
}
.site-header {
  height: 102px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  padding: 0 56px;
}
.wordmark {
  font-family: var(--serif);
  text-decoration: none;
  font-size: 35px;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wordmark .zone {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.4px;
  align-self: flex-end;
  padding-bottom: 8px;
}
.brand-star {
  font-size: 25px;
  color: var(--lime);
  font-family: serif;
  margin: 0 3px;
}
.header-note,
.eyebrow,
.edition {
  font-size: 10px;
  letter-spacing: 1.8px;
  font-weight: 600;
}
.header-note {
  color: var(--muted);
}
.quiet-button {
  font-size: 12px;
  padding: 10px 0;
  color: var(--paper);
}
#savedCount {
  display: inline-flex;
  margin-left: 8px;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 23px;
  height: 23px;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.home {
  max-width: 1288px;
  padding: 52px 56px 24px;
  margin: auto;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  align-items: center;
}
.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  margin-right: 8px;
}
.edition {
  font-size: 9px;
}
.hero-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(66px, 7.7vw, 108px);
  line-height: 0.99;
  letter-spacing: -3px;
  margin: 36px 0 39px;
}
h1 em {
  font-weight: 400;
  color: var(--lime);
}
.hero-aside {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  width: 255px;
}
.tiny-constellation {
  width: 180px;
  height: 100px;
  position: relative;
  margin: 0 0 10px;
}
.tiny-constellation svg {
  width: 100%;
  height: 100%;
  stroke: #768773;
  fill: none;
  stroke-width: 1;
}
.tiny-constellation i {
  position: absolute;
  display: block;
  border: 1px solid #a9ba90;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: var(--bg);
}
.tiny-constellation i:nth-child(1) {
  left: 21px;
  top: 64px;
}
.tiny-constellation i:nth-child(2) {
  left: 73px;
  top: 14px;
  width: 14px;
  height: 14px;
  background: var(--lime);
}
.tiny-constellation i:nth-child(3) {
  left: 131px;
  top: 52px;
}
.tiny-constellation i:nth-child(4) {
  left: 95px;
  top: 84px;
}
.search-box {
  display: flex;
  align-items: center;
  border: 1px solid #768374;
  background: #1c2b25;
  border-radius: 7px;
  max-width: 770px;
  overflow: hidden;
  box-shadow: 0 12px 40px #0000000b;
}
.search-box > span {
  font-family: Arial;
  font-size: 29px;
  padding-left: 23px;
  color: var(--lime);
  line-height: 1;
}
.search-box input {
  background: transparent;
  border: 0;
  padding: 22px 18px;
  flex: 1;
  min-width: 0;
  font-size: 17px;
}
.search-box:focus-within {
  outline: 1px solid var(--lime);
}
.search-box button {
  background: var(--lime);
  color: var(--bg);
  border-radius: 5px;
  width: 44px;
  height: 44px;
  margin: 8px 12px;
  font-size: 25px;
}
.search-status {
  font-size: 12px;
  color: var(--muted);
  min-height: 27px;
  padding-top: 7px;
}
#searchForm {
  position: relative;
  max-width: 770px;
}
#searchResults {
  position: absolute;
  left: 0;
  right: 0;
  top: 72px;
  background: #eae8dd;
  color: #23342c;
  border-radius: 7px;
  padding: 8px;
  z-index: 4;
  box-shadow: 0 15px 50px #0007;
  max-height: 390px;
  overflow: auto;
}
.search-result {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  text-align: left;
  padding: 12px;
  border-radius: 4px;
  color: #20332b;
}
.search-result:hover,
.search-result[aria-selected="true"] {
  background: #d4dac6;
}
.search-result .search-info {
  flex: 1;
}
.search-result strong {
  font-size: 14px;
  display: block;
  font-weight: 500;
}
.search-result small {
  display: block;
  font-size: 11px;
  color: #637063;
}
.search-result .result-kind {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.search-new {
  border-top: 1px solid #c7cdbd !important;
  margin-top: 5px;
}
.starter-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 48px 0 18px;
}
.subtle {
  color: var(--muted);
  font-size: 11px;
}
.starters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.starter {
  border: 1px solid var(--line) !important;
  border-radius: 7px;
  padding: 0;
  text-align: left;
  overflow: hidden;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.starter:hover {
  transform: translateY(-5px);
  border-color: #8b9d7b !important;
}
.starter-top {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 13px 18px;
  color: #b2bbaa;
}
.starter-top > span {
  flex: 1;
  margin-left: 18px;
  font-size: 9px;
}
.starter-art {
  height: 195px;
  position: relative;
  overflow: hidden;
  margin: 0 9px;
  border-radius: 3px;
}
.film-art {
  background: #d8c89f;
  color: #3e4030;
  padding: 25px 26px;
}
.film-art > span {
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 0.95;
  letter-spacing: -2px;
  z-index: 1;
  position: relative;
  font-weight: bold;
}
.film-art i {
  color: #a64530;
  font-style: normal;
}
.film-lines {
  position: absolute;
  right: -36px;
  top: -55px;
  width: 210px;
  height: 300px;
  border: 18px double #59664a;
  transform: rotate(27deg);
  opacity: 0.35;
}
.record-art {
  background: #344f67;
  color: #e6e8ce;
  padding: 20px 25px;
}
.record-art > span {
  font-size: 32px;
  line-height: 1;
  font-family: var(--serif);
  position: absolute;
  right: 22px;
  bottom: 27px;
}
.record-art em {
  font-size: 43px;
}
.record {
  position: absolute;
  width: 178px;
  height: 178px;
  top: 10px;
  left: -24px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    #142838 0,
    #142838 3px,
    #2c4251 4px,
    #172b3b 5px
  );
  box-shadow: 9px 4px 15px #12242b55;
}
.record i {
  position: absolute;
  inset: 62px;
  border-radius: 50%;
  background: #c5bb8b;
  border: 17px solid #9f964e;
}
.object-art {
  background: #dfdccb;
  color: #413f33;
}
.object-art svg {
  width: 76%;
  height: 165px;
  position: absolute;
  right: -3px;
  top: -4px;
}
.object-art > span {
  position: absolute;
  left: 20px;
  bottom: 16px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.1;
}
.object-art em {
  font-style: normal;
}
.starter-bottom {
  display: block;
  padding: 16px 19px 19px;
}
.starter-bottom strong {
  display: block;
  font-weight: 500;
  font-size: 14px;
}
.starter-bottom small {
  font-size: 11px;
  color: var(--muted);
}
.home-footer {
  border-top: 1px solid var(--line);
  margin-top: 45px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.9px;
}
.explorer,
.shared-journey {
  max-width: 1230px;
  padding: 26px 56px 80px;
  margin: auto;
}
.explorer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pill-button {
  border: 1px solid #63735c !important;
  border-radius: 30px;
  padding: 10px 19px;
  font-size: 12px;
  color: var(--lime);
}
.trail {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: auto;
  margin: 17px 0 29px;
  padding: 8px 0 15px;
  border-bottom: 1px solid var(--line);
}
.trail button {
  white-space: nowrap;
  font-size: 11px;
  color: var(--muted);
  padding: 5px 10px 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trail button.current {
  color: var(--lime);
}
.trail .step-num {
  width: 21px;
  height: 21px;
  border: 1px solid #4c5e4e;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex: none;
}
.trail .crumb-arrow {
  color: #6f806b;
  margin: 0 13px 0 3px;
}
.current-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 33px;
  padding: 15px 0 36px;
  align-items: center;
}
.item-meta {
  color: var(--lime);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
h2 {
  font-family: var(--serif);
  font-size: 43px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin: 14px 0;
}
.current-item h1 {
  font-size: clamp(36px, 4.3vw, 61px);
  letter-spacing: -1px;
  line-height: 1.04;
  margin: 13px 0;
}
.current-item .creator {
  font-size: 14px;
  color: var(--muted);
  margin: 10px 0 19px;
}
.current-actions {
  display: flex;
  gap: 25px;
  font-size: 12px;
  align-items: center;
}
.current-actions a {
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
}
.current-actions button {
  font-size: 12px;
  color: var(--lime);
}
.object-tile {
  height: 170px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
  background: var(--tile-bg, #d7c9a9);
  color: var(--tile-fg, #423f32);
}
.object-tile::before {
  content: "";
  position: absolute;
  width: 135px;
  height: 135px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.17;
  right: -25px;
  top: -40px;
}
.object-tile::after {
  content: "";
  position: absolute;
  width: 135px;
  height: 135px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.17;
  left: -35px;
  bottom: -65px;
}
.object-tile .tile-glyph {
  font-family: var(--serif);
  font-size: 66px;
  line-height: 1;
  position: relative;
  z-index: 1;
  font-style: italic;
  letter-spacing: -6px;
}
.object-tile .tile-category {
  position: absolute;
  left: 13px;
  bottom: 12px;
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
}
.object-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.object-tile.is-cover {
  background: #24352b;
}
.current-item .object-tile {
  height: 180px;
}
.discovery-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.discovery-heading .eyebrow {
  color: var(--muted);
  font-size: 9px;
}
.discovery-heading h2 {
  margin: 9px 0 0;
  font-size: 38px;
}
.filters {
  display: flex;
  gap: 8px;
  overflow: auto;
  margin: 23px 0 20px;
  padding-bottom: 4px;
}
.filters button {
  white-space: nowrap;
  font-size: 10px;
  padding: 7px 13px;
  border-radius: 20px;
  border: 1px solid var(--line) !important;
  color: #c1cbbc;
}
.filters button[aria-pressed="true"] {
  background: var(--lime);
  border-color: var(--lime) !important;
  color: #23332b;
}
.status {
  color: var(--muted);
  font-size: 13px;
  margin: 10px 0;
}
.status:empty {
  display: none;
}
.discoveries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 19px;
}
.discovery-card {
  width: 100%;
  text-align: left;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  border-radius: 4px;
}
.discovery-card:hover .object-tile {
  transform: translateY(-4px);
}
.discovery-card .object-tile {
  width: 100%;
  height: 181px;
  transition: transform 0.2s;
}
.discovery-card h3 {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.12;
  font-weight: 400;
  margin: 14px 0 7px;
  padding-right: 12px;
}
.discovery-card .creator {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}
.discovery-card .card-footer {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 9px;
  color: #b6c6a4;
}
.card-footer .arrow {
  font-size: 18px;
}
.skeleton {
  height: 250px;
  background: linear-gradient(100deg, #22332b 25%, #304336 50%, #22332b 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 4px;
}
.branches {
  margin-top: 38px;
  font-size: 11px;
  color: var(--muted);
}
.branches details {
  border-top: 1px solid var(--line);
  padding-top: 15px;
}
.branches button {
  display: block;
  color: var(--lime);
  font-size: 12px;
  margin-top: 12px;
  text-align: left;
}
.primary-button,
.secondary-button {
  padding: 12px 18px;
  border-radius: 4px;
  font-size: 12px;
}
.primary-button {
  background: var(--lime);
  color: #20342a;
  border: 1px solid var(--lime);
}
.secondary-button {
  border: 1px solid #65745d;
  background: transparent;
  color: var(--paper);
}
.error-box {
  grid-column: 1/-1;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.error-box button {
  margin-top: 15px;
}
dialog {
  color: var(--paper);
  background: #192821;
  border: 1px solid #596851;
  border-radius: 9px;
  padding: 27px;
  max-width: 690px;
  width: calc(100% - 32px);
  max-height: 90dvh;
  box-shadow: 0 20px 100px #0009;
}
dialog::backdrop {
  background: #08110dcc;
  backdrop-filter: blur(6px);
}
.dialog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.dialog-top .eyebrow {
  font-size: 9px;
  color: var(--muted);
}
.icon-button {
  font-size: 25px;
  padding: 0 5px;
  line-height: 1;
}
.dialog-description {
  color: var(--muted);
  font-size: 13px;
}
.dialog-description + label {
  display: block;
  font-size: 12px;
  margin: 25px 0 8px;
}
#journeyTitle {
  width: 100%;
  font-size: 13px;
}
.share-preview {
  margin: 20px 0;
  max-height: 310px;
  overflow: auto;
  background: var(--paper);
  color: #23352b;
  border-radius: 3px;
  padding: 23px;
}
.share-preview h3 {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  margin: 0 0 22px;
  font-weight: 400;
}
.share-step {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 20px;
}
.share-step:last-child {
  padding-bottom: 0;
}
.share-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 12px;
  bottom: 0;
  width: 1px;
  background: #c0c8b5;
}
.share-step .step-number {
  width: 25px;
  height: 25px;
  flex: none;
  border-radius: 50%;
  background: #d1d8be;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.share-step strong {
  font-size: 14px;
  line-height: 1.3;
  display: block;
  font-weight: 500;
  padding-top: 2px;
}
.share-step small {
  font-size: 9px;
  color: #66715e;
}
.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.share-footnote {
  font-size: 10px;
  color: var(--muted);
  margin: 16px 0 0;
}
#shareStatus {
  font-size: 12px;
  color: var(--lime);
}
#publishedLink {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
#publishedLink input {
  width: 100%;
  font-size: 11px;
  margin-bottom: 10px;
}
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--bg);
  border-radius: 5px;
  padding: 12px 20px;
  font-size: 12px;
  z-index: 20;
  box-shadow: 0 10px 35px #0006;
}
.saved-items {
  display: grid;
  gap: 10px;
  margin-top: 25px;
}
.saved-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--line);
  padding: 15px 0;
}
.saved-row button:first-child {
  text-align: left;
  flex: 1;
  font-family: var(--serif);
  font-size: 24px;
}
.saved-row small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  color: var(--muted);
}
.saved-row button:last-child {
  font-size: 11px;
  color: var(--muted);
}
.shared-intro {
  max-width: 690px;
  margin: 40px auto 30px;
  text-align: center;
}
.shared-intro h1 {
  font-size: 65px;
  margin: 18px 0;
}
.shared-intro p {
  color: var(--muted);
  font-size: 13px;
}
.shared-path {
  max-width: 700px;
  margin: 30px auto;
}
.shared-stop {
  display: grid;
  grid-template-columns: 36px 95px 1fr;
  align-items: center;
  gap: 20px;
  position: relative;
  padding: 15px 0 24px;
}
.shared-stop:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 60px;
  bottom: -10px;
  width: 1px;
  background: var(--line);
}
.shared-stop > span {
  align-self: center;
  font-size: 11px;
  width: 32px;
  height: 32px;
  border: 1px solid #596b50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shared-stop .object-tile {
  height: 110px;
}
.shared-stop .tile-glyph {
  font-size: 46px;
}
.shared-stop h2 {
  font-size: 31px;
  margin: 0 0 5px;
}
.shared-stop p {
  font-size: 11px;
  color: var(--muted);
  margin: 5px 0 10px;
}
.shared-stop button {
  font-size: 11px;
  color: var(--lime);
  padding: 0;
}
.share-path-footer {
  text-align: center;
  margin: 40px 0;
}
.retry-button {
  margin-top: 15px;
}
.loading-copy {
  color: var(--muted);
  padding: 35px 0;
  font-family: var(--serif);
  font-size: 30px;
}
.object-tile img {
  position: absolute;
  inset: 0;
  object-fit: contain;
  background: var(--tile-bg);
}
body[data-view="explorer"] .site-header {
  height: 76px;
}
body[data-view="explorer"] .explorer {
  padding-top: 17px;
}
.current-item {
  padding-top: 0;
  padding-bottom: 24px;
}
.current-item .object-tile {
  height: 145px;
}
.trail {
  margin-top: 9px;
  margin-bottom: 21px;
  padding-bottom: 12px;
}
.discovery-heading {
  padding-top: 19px;
}
.discovery-card .object-tile {
  height: 162px;
}
@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}
@media (min-width: 1500px) {
  .home {
    padding-top: 65px;
  }
  h1 {
    font-size: 116px;
  }
  .starter-art {
    height: 220px;
  }
}
@media (max-width: 900px) {
  .site-header {
    padding: 0 30px;
    height: 83px;
  }
  .header-note {
    display: none;
  }
  .home,
  .explorer,
  .shared-journey {
    padding-left: 30px;
    padding-right: 30px;
  }
  .hero-aside {
    width: 210px;
    font-size: 12px;
  }
  .hero-heading {
    gap: 15px;
  }
  h1 {
    font-size: 80px;
  }
  .starters {
    gap: 12px;
  }
  .starter-art {
    height: 170px;
  }
  .film-art {
    padding: 22px 14px;
  }
  .film-art > span {
    font-size: 34px;
  }
  .record {
    left: -65px;
  }
  .record-art > span {
    right: 15px;
  }
  .starter-top {
    padding: 12px;
    font-size: 9px;
  }
  .starter-top > span {
    font-size: 8px;
    margin-left: 10px;
  }
  .starter-bottom {
    padding: 14px;
  }
  .discoveries {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-footer {
    gap: 20px;
    line-height: 1.8;
  }
}
@media (max-width: 600px) {
  .site-header {
    height: 76px;
    padding: 0 22px;
  }
  .wordmark {
    font-size: 31px;
  }
  .wordmark .zone {
    font-size: 12px;
  }
  .home {
    padding: 31px 22px 22px;
  }
  .hero-top .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .edition {
    display: none;
  }
  .hero-heading {
    display: block;
  }
  h1 {
    font-size: 72px;
    letter-spacing: -2.4px;
    margin: 32px 0 22px;
  }
  .hero-aside {
    width: auto;
    display: block;
  }
  .tiny-constellation {
    display: none;
  }
  .hero-aside p {
    margin: 0 0 27px;
    font-size: 12px;
    line-height: 1.8;
  }
  .hero-aside p br:first-child {
    display: none;
  }
  .hero-aside p br:nth-child(2) {
    display: none;
  }
  .search-box input {
    padding: 18px 12px;
    font-size: 14px;
  }
  .search-box > span {
    padding-left: 15px;
  }
  .search-box button {
    width: 36px;
    height: 36px;
    margin: 8px;
  }
  .starter-heading {
    margin: 34px 0 14px;
  }
  .starter-heading .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .starter-heading .subtle {
    display: none;
  }
  .starters {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .starter {
    display: grid;
    grid-template-columns: 128px 1fr;
    grid-template-rows: 36px auto;
    min-height: 143px;
  }
  .starter-top {
    grid-column: 2;
    grid-row: 1;
    padding: 13px 14px 0;
  }
  .starter-art {
    grid-column: 1;
    grid-row: 1/3;
    height: calc(100% - 14px);
    margin: 7px;
    width: 118px;
  }
  .starter-bottom {
    grid-column: 2;
    padding: 22px 14px 17px;
  }
  .starter-bottom strong {
    font-size: 16px;
  }
  .starter-bottom small {
    font-size: 11px;
  }
  .film-art {
    padding: 22px 11px;
  }
  .film-art > span {
    font-size: 27px;
  }
  .film-lines {
    right: -95px;
    border-width: 11px;
  }
  .record {
    width: 120px;
    height: 120px;
    top: 0;
    left: -63px;
  }
  .record i {
    inset: 42px;
    border-width: 12px;
  }
  .record-art > span {
    right: 10px;
    bottom: 20px;
    font-size: 25px;
  }
  .record-art em {
    font-size: 27px;
  }
  .object-art svg {
    width: 130%;
    right: -25px;
    top: -20px;
    height: 130px;
  }
  .object-art > span {
    font-size: 15px;
    left: 11px;
    bottom: 12px;
  }
  .home-footer {
    display: block;
    font-size: 8px;
    margin-top: 30px;
  }
  .home-footer span:last-child {
    display: block;
    margin-top: 10px;
  }
  .explorer,
  .shared-journey {
    padding: 17px 22px 60px;
  }
  .explorer-top .quiet-button {
    font-size: 10px;
  }
  .pill-button {
    font-size: 10px;
    padding: 9px 12px;
  }
  .trail {
    margin: 10px 0 20px;
  }
  .current-item {
    grid-template-columns: 92px 1fr;
    gap: 18px;
    padding: 7px 0 25px;
  }
  .current-item .object-tile {
    height: 122px;
  }
  .current-item .tile-glyph {
    font-size: 48px;
  }
  .current-item h1 {
    font-size: 35px;
    margin: 8px 0;
    line-height: 1.03;
    letter-spacing: -0.5px;
  }
  .current-item .creator {
    font-size: 11px;
    margin: 8px 0 14px;
  }
  .item-meta {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .current-actions {
    gap: 17px;
    font-size: 10px;
  }
  .current-actions button {
    font-size: 10px;
  }
  .discovery-heading {
    padding-top: 23px;
  }
  .discovery-heading h2 {
    font-size: 34px;
  }
  .discovery-heading .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .discovery-heading .quiet-button {
    font-size: 10px;
    text-align: right;
    max-width: 100px;
  }
  .filters {
    margin: 19px 0 16px;
  }
  .discoveries {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
  }
  .discovery-card .object-tile {
    height: 156px;
  }
  .discovery-card h3 {
    font-size: 22px;
  }
  .discovery-card .creator {
    font-size: 10px;
  }
  .discovery-card .card-footer {
    font-size: 8px;
    letter-spacing: 0.3px;
  }
  .object-tile .tile-category {
    font-size: 7px;
    left: 10px;
    bottom: 10px;
  }
  .object-tile .tile-glyph {
    font-size: 57px;
  }
  .share-actions button {
    width: 100%;
  }
  dialog {
    padding: 21px;
  }
  .dialog-top .eyebrow {
    font-size: 8px;
  }
  dialog h2 {
    font-size: 37px;
  }
  .share-preview {
    padding: 19px;
  }
  #savedDialog h2 {
    font-size: 36px;
  }
  .shared-intro h1 {
    font-size: 48px;
  }
  .shared-stop {
    grid-template-columns: 28px 66px 1fr;
    gap: 13px;
  }
  .shared-stop .object-tile {
    height: 90px;
  }
  .shared-stop h2 {
    font-size: 27px;
  }
  .shared-stop > span {
    width: 26px;
    height: 26px;
  }
  .shared-stop:not(:last-child)::after {
    left: 12px;
  }
  .shared-stop .tile-category {
    display: none;
  }
  .shared-stop .tile-glyph {
    font-size: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* A quiet star field, with a navigable orbit around the selected item. */
.starting-shelf {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.starting-shelf-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.starting-shelf-heading h2 {
  margin-bottom: 6px;
}
.starter-shelf-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.shelf-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 16px;
  border: 1px solid var(--line) !important;
  border-radius: 8px;
  text-align: left;
  min-width: 0;
}
.shelf-item:hover {
  border-color: #95aa7c !important;
  background: #a3b9840b;
}
.shelf-item .object-tile {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  box-shadow:
    0 0 0 4px #14201e,
    0 0 0 5px #95aa7c33;
}
.shelf-item .tile-glyph {
  font-size: 29px;
}
.shelf-item .tile-category {
  display: none;
}
.shelf-item > span:not(.shelf-arrow) {
  min-width: 0;
  flex: 1;
}
.shelf-item small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.shelf-item strong {
  display: block;
  font: 24px/1.08 var(--serif);
  margin: 6px 0;
  overflow-wrap: anywhere;
}
.shelf-creator {
  display: block;
  color: var(--muted);
  font-size: 10px;
}
.shelf-arrow {
  color: var(--lime);
  flex: none;
}
@media (max-width: 1050px) {
  .starter-shelf-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .starting-shelf {
    margin-top: 36px;
  }
  .starting-shelf-heading {
    align-items: flex-end;
  }
  .starting-shelf-heading h2 {
    font-size: 33px;
  }
  .starting-shelf-heading .quiet-button {
    max-width: 110px;
    text-align: right;
    font-size: 10px;
  }
  .starter-shelf-items {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .shelf-item {
    padding: 15px;
  }
  .shelf-item strong {
    font-size: 25px;
  }
}
body {
  background-image:
    radial-gradient(1px 1px at 17% 23%, #d4dfa155 80%, transparent),
    radial-gradient(1px 1px at 78% 64%, #d4dfa144 80%, transparent),
    radial-gradient(1px 1px at 45% 85%, #d4dfa133 80%, transparent);
  background-size:
    311px 367px,
    437px 431px,
    593px 557px;
}
.hero-orbit {
  width: 260px;
  max-width: 100%;
  margin: 0 0 5px -15px;
}
.hero-orbit svg {
  width: 100%;
  display: block;
  fill: none;
  stroke: #81977c;
  stroke-width: 1;
}
.hero-orbit .orbit-sun {
  fill: var(--lime);
  stroke: none;
  filter: drop-shadow(0 0 14px #d4dfa133);
}
.hero-orbit .orbit-planet {
  fill: var(--bg);
  stroke: var(--lime);
}
.hero-orbit .orbit-star {
  fill: #b2c7cf;
  stroke: none;
}
.discovery-controls {
  display: flex;
  align-items: center;
  gap: 25px;
}
.view-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 3px;
}
.view-switch button {
  font-size: 11px;
  border-radius: 24px;
  padding: 7px 14px;
  color: var(--muted);
}
.view-switch button[aria-pressed="true"] {
  background: var(--lime);
  color: var(--bg);
}
.orbit-sky {
  display: none;
  pointer-events: none;
}
.orbit-layout:has(.orbit-sky) {
  position: relative;
}
.orbit-layout .orbit-sky {
  display: block;
  position: absolute;
  inset: 0;
}
.orbit-sky svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #667e6155;
  stroke-width: 1;
}
.orbit-sky path {
  stroke-dasharray: 2 8;
  opacity: 0.5;
}
.orbit-sky circle {
  fill: var(--lime);
  stroke: none;
}
.orbit-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  min-height: 185px;
  padding: 30px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #adc18a55;
  border-radius: 50%;
  background: radial-gradient(ellipse, #26372d 0%, #14201ee8 70%);
  box-shadow: 0 0 70px #c3d3960c;
}
.orbit-center .eyebrow {
  font-size: 7px;
  letter-spacing: 1.4px;
  color: var(--lime);
}
.orbit-center strong {
  font: 30px/1.05 var(--serif);
  overflow-wrap: anywhere;
  margin: 12px 0;
}
.orbit-center > span:last-child {
  font-size: 10px;
  color: var(--muted);
}
.orbit-layout .discovery-card {
  text-align: center;
  z-index: 1;
}
.orbit-layout .discovery-card .object-tile {
  border-radius: 50%;
  border: 1px solid #c2d49666;
  box-shadow:
    0 0 0 6px #14201e,
    0 0 0 7px #81977c33;
  margin-inline: auto;
}
.orbit-layout .discovery-card .tile-category {
  display: none;
}
.orbit-layout .discovery-card h3 {
  font-size: 23px;
  line-height: 1.08;
  margin: 13px 0 5px;
  overflow-wrap: anywhere;
}
.orbit-layout .discovery-card .creator {
  font-size: 10px;
  margin: 5px 0;
}
.orbit-layout .discovery-card .card-footer {
  justify-content: center;
  font-size: 8px;
  border: 0;
  margin-top: 7px;
  padding-top: 0;
}
.orbit-layout .discovery-card .arrow {
  display: none;
}
.orbit-layout .discovery-card:hover .object-tile,
.orbit-layout .discovery-card:focus-visible .object-tile {
  border-color: var(--lime);
  box-shadow:
    0 0 0 6px #14201e,
    0 0 0 7px #c5d69d99,
    0 0 30px #c5d69d20;
}
@media (min-width: 1000px) {
  .orbit-layout:has(.orbit-sky) {
    display: block;
    height: 800px;
    margin: 12px 0 30px;
  }
  .orbit-layout .discovery-card {
    position: absolute;
    left: var(--orbit-x);
    top: var(--orbit-y);
    transform: translate(-50%, -50%);
    width: 170px;
    padding: 8px;
  }
  .orbit-layout .discovery-card .object-tile {
    width: 98px;
    height: 98px;
  }
  .orbit-layout .tile-glyph {
    font-size: 45px;
  }
  .orbit-layout .discovery-card h3 {
    font-size: 21px;
  }
}
@media (max-width: 999px) {
  .discovery-controls {
    gap: 8px;
    flex-direction: column;
    align-items: flex-end;
  }
  .view-switch button {
    padding: 5px 11px;
    font-size: 10px;
  }
  .orbit-layout:has(.orbit-sky) {
    padding-top: 200px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }
  .orbit-layout .orbit-sky {
    background: repeating-radial-gradient(
      ellipse at 50% 85px,
      transparent 0 119px,
      #81977c22 120px,
      transparent 121px 220px
    );
  }
  .orbit-sky svg {
    display: none;
  }
  .orbit-center {
    top: 85px;
    width: 210px;
    min-height: 145px;
    padding: 22px 18px;
  }
  .orbit-center strong {
    font-size: 26px;
  }
  .orbit-layout .discovery-card .object-tile {
    width: 100px;
    height: 100px;
  }
  .orbit-layout .discovery-card:nth-of-type(even) {
    transform: translateY(35px);
  }
  .orbit-layout .discovery-card {
    padding-bottom: 5px;
  }
  .orbit-layout .discovery-card h3 {
    font-size: 22px;
  }
  .orbit-layout .tile-glyph {
    font-size: 44px;
  }
}
@media (max-width: 600px) {
  .hero-heading {
    position: relative;
  }
  .hero-orbit {
    position: absolute;
    width: 150px;
    right: -9px;
    top: 22px;
    z-index: -1;
    opacity: 0.6;
  }
  .hero-heading {
    isolation: isolate;
  }
}
