@font-face {
  font-family: Manrope;
  src: url("/assets/fonts/manrope.ttf") format("truetype");
  font-weight: 400 800;
  font-display: swap;
}
@font-face {
  font-family: Editorial;
  src: url("/assets/fonts/editorial.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Editorial;
  src: url("/assets/fonts/editorial-italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
:root {
  --ink: #111816;
  --deep: #0b1212;
  --paper: #efe9dd;
  --white: #f7f3e9;
  --muted: #a5b0a8;
  --orange: #ef9d65;
  --line: rgba(239, 233, 221, 0.17);
  --serif: Editorial, Georgia, serif;
  --sans: Manrope, Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: clip;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
h1,
h2 {
  font-family: var(--serif);
  line-height: 1.04;
  letter-spacing: -0.025em;
}
h1 {
  font-size: clamp(5rem, 9vw, 9.25rem);
}
h2 {
  font-size: clamp(3.3rem, 5.9vw, 6rem);
}
h3 {
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1.15;
}
em {
  font-weight: 400;
  color: var(--orange);
}
p {
  color: var(--muted);
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 6px;
}
::selection {
  background: var(--orange);
  color: var(--ink);
}
.shell {
  width: min(1320px, calc(100% - 112px));
  margin-inline: auto;
}
.section-pad {
  padding-block: 120px;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.6;
  color: var(--orange);
}
.muted {
  color: var(--muted);
}
.skip {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  padding: 10px 20px;
  background: var(--paper);
  color: var(--ink);
}
.skip:focus {
  transform: none;
}
.reading-progress {
  height: 2px;
  background: var(--orange);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: scaleX(0);
  transform-origin: left;
  z-index: 50;
}
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  gap: 30px;
}
.brand {
  display: inline-block;
  flex-shrink: 0;
}
.brand img {
  width: 146px;
  height: auto;
}
.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
}
.nav-links > a:not(.nav-cta) {
  position: relative;
}
.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  height: 1px;
  background: var(--orange);
  left: 0;
  right: 0;
  bottom: -7px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.nav-links > a:hover::after,
.nav-links > a[aria-current]::after {
  transform: scaleX(1);
}
.nav-cta {
  border: 1px solid #657168;
  border-radius: 4px;
  padding: 12px 21px;
  display: flex;
  align-items: center;
  gap: 26px;
  transition:
    background 0.25s,
    color 0.25s;
}
.nav-cta:hover {
  background: var(--paper);
  color: var(--ink);
}
.menu-toggle {
  display: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 58px;
  padding: 14px 25px;
  border-radius: 3px;
  font-size: 0.875rem;
  font-weight: 700;
  transition:
    transform 0.3s,
    background 0.3s;
  line-height: 1.4;
}
.button span {
  font-size: 1.3rem;
}
.button:hover {
  transform: translateY(-3px);
}
.button.primary {
  background: var(--orange);
  color: #1b241e;
}
.button.primary:hover {
  background: #ffc190;
}
.text-link {
  display: inline-block;
  border-bottom: 1px solid #738177;
  padding-block: 6px;
  font-size: 0.875rem;
  line-height: 1.7;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.text-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}
.hero {
  position: relative;
  min-height: 850px;
  height: 100svh;
  max-height: 1120px;
  background: #071014;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-visual {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: translate3d(var(--hero-x, 0px), var(--hero-y, 0px), 0) scale(1.045);
  will-change: transform;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(7, 16, 20, 0.62),
      rgba(7, 16, 20, 0.24) 37%,
      transparent 65%
    ),
    linear-gradient(
      0deg,
      #111816 0%,
      transparent 22%,
      transparent 80%,
      rgba(7, 16, 20, 0.2)
    );
}
.hero-copy {
  padding-top: 105px;
  padding-bottom: 60px;
}
.hero h1 {
  font-size: clamp(6rem, 9.5vw, 9.6rem);
  line-height: 0.94;
  letter-spacing: -0.024em;
  margin: 25px 0 28px;
  max-width: 660px;
}
.hero h1 em {
  display: inline-block;
}
.hero-description {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #c4ccc5;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
.hero-explore {
  font-size: 0.8rem;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: #dddcd0;
}
.hero-explore span {
  font-size: 1.15rem;
}
.hero-caption {
  position: absolute;
  right: 4%;
  top: 66%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-shadow: 0 2px 14px #000;
}
.hero-caption p {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.8;
  color: var(--white);
}
.caption-rule {
  height: 1px;
  width: 50px;
  background: var(--orange);
  margin-top: 10px;
}
.hero-bottom {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #bbc2b9;
}
.hero-bottom a {
  display: flex;
  gap: 24px;
  align-items: center;
}
.hero-bottom a span {
  font-size: 1.1rem;
  color: var(--orange);
}
.entrance {
  animation: enter 1.15s var(--ease) both;
}
.entrance:nth-child(2) {
  animation-delay: 0.1s;
}
.entrance:nth-child(3) {
  animation-delay: 0.2s;
}
.entrance:nth-child(4) {
  animation-delay: 0.3s;
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal-pending {
  opacity: 0;
  transform: translateY(30px);
}
.opening {
  padding-top: 128px;
  padding-bottom: 130px;
}
.opening-statement {
  font-size: clamp(2.7rem, 4.5vw, 4.55rem);
  line-height: 1.18;
  margin-top: 32px;
  color: #728277;
}
.opening-statement span {
  color: var(--paper);
}
.opening-bottom {
  display: flex;
  gap: 50px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 45px;
}
.opening-bottom p {
  max-width: 460px;
  font-size: 0.9375rem;
}
.little-star {
  font-size: 3.2rem;
  color: var(--orange);
  line-height: 1;
}
.worlds-section {
  background: #17211c;
  border-block: 1px solid var(--line);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
}
.section-heading .eyebrow {
  margin-bottom: 22px;
}
.section-heading > p {
  font-size: 0.9375rem;
  padding-bottom: 6px;
  max-width: 380px;
}
.world-tabs {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 58px;
  margin-bottom: 28px;
}
.world-tab {
  background: none;
  border: 0;
  position: relative;
  padding: 20px 7px;
  color: #a7b0a7;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.world-tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  height: 2px;
  background: var(--orange);
  left: 0;
  right: 0;
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.world-tab.active {
  color: var(--white);
}
.world-tab.active::after {
  transform: scaleX(1);
}
.world-tab:hover {
  color: var(--white);
}
.tab-num {
  font-size: 0.75rem;
  color: #809083;
}
.world-tab.active .tab-num {
  color: var(--orange);
}
.world-art {
  background-repeat: no-repeat;
  background-size: 200% 200%;
  aspect-ratio: 1;
  background-color: #15201c;
}
.world-art[data-world="movies"],
.world-art[data-world="series"],
.world-art[data-world="anime"],
.world-art[data-world="manga"] {
  background-image: url("/assets/worlds-atlas-a.webp");
}
.world-art[data-world="games"],
.world-art[data-world="touring"],
.world-art[data-world="books"],
.world-art[data-world="events"] {
  background-image: url("/assets/worlds-atlas-b.webp");
}
.world-art[data-world="movies"],
.world-art[data-world="games"] {
  background-position: 0% 0%;
}
.world-art[data-world="series"],
.world-art[data-world="touring"] {
  background-position: 100% 0%;
}
.world-art[data-world="anime"],
.world-art[data-world="books"] {
  background-position: 0% 100%;
}
.world-art[data-world="manga"],
.world-art[data-world="events"] {
  background-position: 100% 100%;
}
.world-panel {
  position: relative;
  min-height: 560px;
  background: #0c1411;
  overflow: hidden;
  border: 1px solid #405044;
  border-radius: 5px;
  isolation: isolate;
}
.world-panel-art {
  width: 65%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -3;
  transition: opacity 0.25s;
}
.world-panel-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      #0c1411 0%,
      rgba(12, 20, 17, 0.97) 23%,
      rgba(12, 20, 17, 0.8) 40%,
      transparent 70%
    ),
    linear-gradient(0deg, rgba(12, 20, 17, 0.6), transparent 30%);
  z-index: -2;
}
.world-panel-copy {
  padding: 56px 52px 112px;
  width: 58%;
}
.world-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: #d2bd9a;
  display: flex;
  gap: 12px;
}
.world-kicker #world-number {
  color: var(--orange);
}
.world-panel h3 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.2vw, 4.6rem);
  line-height: 1.07;
  margin: 38px 0 24px;
}
.world-panel-copy > p:not(.world-kicker) {
  max-width: 345px;
  color: #c7cdc4;
  font-size: 0.9375rem;
}
.world-panel .text-link {
  margin-top: 30px;
}
.world-controls {
  position: absolute;
  left: 52px;
  right: 34px;
  bottom: 27px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.world-controls > span {
  margin-right: auto;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}
.circle-button {
  border: 1px solid #687168;
  background: #0c141170;
  backdrop-filter: blur(8px);
  height: 44px;
  width: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}
.circle-button:hover {
  background: var(--paper);
  color: var(--ink);
}
.world-panel.changing .world-panel-art {
  animation: world-in 0.65s var(--ease);
}
@keyframes world-in {
  from {
    opacity: 0.2;
    transform: translateY(-50%) scale(1.05);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}
.chapter-section {
  background: var(--paper);
  color: var(--ink);
  padding-block: 150px;
  overflow: hidden;
}
.chapter-section .eyebrow {
  color: #82502d;
}
.chapter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.chapter-copy h2 {
  font-size: clamp(3.5rem, 5.4vw, 5.7rem);
  margin-top: 25px;
}
.chapter-copy h2 em {
  color: #99603d;
}
.chapter-copy > p:not(.eyebrow) {
  color: #5e665c;
  max-width: 445px;
  margin-top: 30px;
  font-size: 0.9375rem;
}
.story-steps {
  margin-top: 38px;
  border-top: 1px solid #c1c6b6;
}
.story-step {
  background: transparent;
  color: #6a7267;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #c1c6b6;
  display: flex;
  text-align: left;
  align-items: flex-start;
  gap: 18px;
  padding: 19px 0;
  transition: color 0.25s;
}
.story-step > span:first-child {
  font-size: 0.75rem;
  padding-top: 2px;
}
.story-step div {
  flex: 1;
}
.story-step strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
}
.story-step small {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 0.8125rem;
  line-height: 1.7;
  transition:
    opacity 0.3s,
    max-height 0.3s;
  color: #5e665c;
}
.story-step.active {
  color: #874a28;
}
.story-step.active small {
  max-height: 50px;
  opacity: 1;
  margin-top: 5px;
}
.story-step > span:last-child {
  color: #956548;
}
.journal-stage {
  position: relative;
  padding: 35px 16px 45px;
  perspective: 1200px;
}
.journal-orbit {
  position: absolute;
  inset: 8% -8%;
  border: 1px solid #c5c4b3;
  border-radius: 50%;
  transform: rotate(-22deg);
  pointer-events: none;
}
.journal-demo {
  position: relative;
  max-width: 410px;
  margin: auto;
  background: #faf6ee;
  color: var(--ink);
  border-radius: 7px;
  box-shadow: 0 35px 60px -28px #25332150;
  border: 1px solid #d0cabb;
  transform: rotate(4deg);
  transition: transform 0.7s var(--ease);
  overflow: hidden;
}
.journal-stage:hover .journal-demo {
  transform: rotate(0);
}
.journal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 22px;
}
.journal-header img {
  width: 93px;
  height: auto;
}
.journal-header > span {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: #647265;
}
.journal-art {
  position: relative;
  width: calc(100% - 32px);
  margin-inline: 16px;
  border-radius: 3px;
  overflow: hidden;
}
.journal-tag {
  position: absolute;
  bottom: 13px;
  left: 13px;
  background: #13221fca;
  backdrop-filter: blur(6px);
  border: 1px solid #f4f1dc52;
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 2px;
}
.journal-body {
  padding: 22px 24px;
}
.journal-entry-meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #647265;
}
.journal-entry-meta span:first-child {
  color: #96603a;
}
.journal-body h3 {
  font-size: 2.1rem;
  margin-top: 12px;
}
.journal-state {
  min-height: 126px;
}
.journal-thought {
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.3;
  color: #586152;
  margin-top: 16px;
}
.journal-statuses {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.journal-statuses span {
  font-size: 0.7rem;
  border: 1px solid #bac3b4;
  padding: 4px 10px;
  border-radius: 3px;
  color: #53604e;
}
.journal-statuses .selected {
  background: #e2ebdf;
  color: #334b31;
  border-color: #bccab6;
}
.journal-stars {
  font-size: 1.4rem;
  letter-spacing: 4px;
  color: #9b582c;
  margin-top: 13px;
}
.journal-audience {
  font-size: 0.75rem;
  color: #57705b;
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.journal-audience::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #637e5b;
  border-radius: 50%;
}
.journal-footer {
  border-top: 1px solid #d6d6c5;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  letter-spacing: 0.11em;
  color: #71816f;
}
.journal-footer > span:last-child {
  font-size: 1.1rem;
  line-height: 1;
}
.journal-margin-note {
  position: absolute;
  right: -14px;
  bottom: -18px;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #6c705e;
  transform: rotate(-7deg);
}
.journal-margin-note em {
  font-size: 1.65rem;
  font-family: var(--serif);
  color: #985d37;
}
.together-section {
  background: #20332a;
  padding-block: 140px;
}
.together-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 110px;
  align-items: center;
}
.together-art {
  position: relative;
  min-height: 570px;
}
.memory-pair {
  display: flex;
  align-items: center;
  height: 400px;
  position: relative;
}
.memory-image {
  width: 62%;
  border: 8px solid #ddd5c2;
  box-shadow: 0 15px 30px #08191050;
  transform: rotate(-10deg);
  margin-left: -4px;
}
.memory-image:nth-child(2) {
  position: absolute;
  right: 0;
  top: 120px;
  transform: rotate(10deg);
  width: 57%;
  z-index: 2;
}
.conversation-note {
  position: absolute;
  bottom: 4px;
  left: 27px;
  z-index: 3;
}
.conversation-note .eyebrow {
  font-size: 0.75rem;
}
.conversation-note p {
  font-family: var(--serif);
  font-size: 4.5rem;
  color: var(--white);
  line-height: 1.02;
  margin-top: 16px;
}
.conversation-note > span:last-child {
  display: block;
  font-size: 0.75rem;
  margin-top: 16px;
  color: #bec9bd;
}
.together-copy .eyebrow {
  margin-bottom: 26px;
}
.together-copy > p:not(.eyebrow) {
  margin-top: 32px;
  font-size: 0.9375rem;
  max-width: 385px;
  color: #c0cbbf;
}
.together-copy .text-link {
  margin-top: 25px;
}
.closing {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  padding-block: 155px;
  background: #0b1414;
}
.closing-art {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.closing-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  opacity: 0.38;
}
.closing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0b1414c9, #0b141480, #0b1414c9);
  z-index: -1;
}
.closing h2 {
  font-size: clamp(4rem, 7.8vw, 8rem);
  margin-top: 28px;
}
.closing-content > p:not(.eyebrow) {
  color: #c1c6bb;
  margin-top: 26px;
}
.closing .button {
  margin-top: 30px;
  min-width: 200px;
}
.platform-note {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: #a3b1a5;
  margin-top: 18px;
}
.site-footer {
  padding: 55px 0 25px;
  background: #101713;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: flex;
  gap: 50px;
  align-items: center;
  padding-bottom: 52px;
}
.footer-top .brand img {
  width: 162px;
}
.footer-top p {
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.2;
  color: #b9c1b1;
}
.back-top {
  margin-left: auto;
  font-size: 0.75rem;
  display: flex;
  gap: 22px;
  align-items: center;
}
.back-top span {
  height: 40px;
  width: 40px;
  border: 1px solid #5a675c;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #b0bdad;
  font-size: 0.75rem;
}
.footer-bottom > span a {
  color: var(--white);
}
.footer-bottom nav {
  display: flex;
  gap: 25px;
}
.footer-bottom a:hover {
  color: var(--orange);
}
.page-heading {
  padding-top: 190px;
  padding-bottom: 80px;
}
.page-heading h1 {
  margin-top: 26px;
  max-width: 960px;
}
.page-heading-bottom {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
.page-heading-bottom p {
  font-size: 1rem;
}
.feature-banner {
  position: relative;
  min-height: 480px;
  isolation: isolate;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #3b4d41;
}
.banner-art {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.banner-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 45%;
}
.feature-banner::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(0deg, #0b1915e8, transparent 90%);
  z-index: -1;
}
.banner-copy {
  position: absolute;
  bottom: 42px;
  left: 48px;
  right: 48px;
}
.banner-copy h2 {
  font-size: 3.7rem;
  margin-top: 18px;
}
.world-catalog {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px 24px;
}
.catalog-image {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.catalog-image .world-art {
  transition: transform 0.7s var(--ease);
}
.catalog-image:hover .world-art {
  transform: scale(1.06);
}
.catalog-index {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #0b1a1680;
  backdrop-filter: blur(8px);
  padding: 2px 9px;
  font-size: 0.75rem;
  border: 1px solid #ffffff45;
  border-radius: 2px;
}
.catalog-arrow {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--ink);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: transform 0.3s;
}
.catalog-image:hover .catalog-arrow {
  transform: rotate(45deg);
}
.catalog-copy h2 {
  font-size: 2.1rem;
  margin-top: 21px;
}
.catalog-copy p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 12px;
}
.feature-notes {
  background: var(--paper);
  color: var(--ink);
}
.feature-notes .eyebrow {
  color: #835536;
}
.feature-notes h2 em,
.simple-closing h2 em {
  color: var(--orange);
}
.feature-notes h2 em {
  color: #965835;
}
.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 65px;
}
.feature-note {
  border-top: 1px solid #b7bfaf;
  padding-top: 25px;
}
.note-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: #875d3e;
}
.feature-note h3 {
  margin-top: 32px;
}
.feature-note p {
  margin-top: 20px;
  color: #5f695b;
  font-size: 0.9375rem;
}
.feature-note .text-link {
  margin-top: 20px;
}
.simple-closing {
  text-align: center;
}
.simple-closing h2 {
  margin: 28px 0 35px;
}
.download-scene {
  position: relative;
  isolation: isolate;
  min-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0b1617;
  padding: 180px 0 100px;
}
.download-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.download-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  object-position: 60% center;
}
.download-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #0b1617 0%,
    #0b1617dd 25%,
    #0b161744 75%,
    #0b161777
  );
  z-index: -1;
}
.download-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 70px;
  align-items: center;
}
.download-copy h1 {
  margin-top: 26px;
}
.download-copy > p:not(.eyebrow) {
  color: #bdc7bc;
  margin-top: 27px;
}
.store-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
  width: 285px;
  max-width: 100%;
}
.store-button {
  display: flex;
  align-items: center;
  gap: 17px;
  border: 1px solid #9ba79366;
  border-radius: 5px;
  background: #0c1717b3;
  padding: 12px 20px;
  backdrop-filter: blur(8px);
  transition:
    background 0.3s,
    transform 0.3s;
}
.store-button:hover {
  background: #274133;
  transform: translateX(5px);
}
.store-platform {
  font-size: 1.25rem;
  min-width: 38px;
  font-weight: 700;
}
.store-button > span:nth-child(2) {
  flex: 1;
}
.store-button small {
  display: block;
  font-size: 0.75rem;
  color: #bcc6b8;
  line-height: 1.5;
}
.store-button strong {
  font-size: 1.2rem;
  font-weight: 600;
}
.download-copy p.download-footnote {
  font-size: 0.8125rem;
}
.download-footnote a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.app-keepsake {
  border: 1px solid #75817077;
  background: linear-gradient(145deg, #efe8dcb8, #c5d3bbda);
  color: #203428;
  backdrop-filter: blur(16px);
  padding: 44px 35px 30px;
  max-width: 340px;
  justify-self: center;
  text-align: center;
  border-radius: 8px;
  transform: rotate(7deg);
  box-shadow: 0 35px 80px #0006;
}
.app-keepsake img {
  width: 145px;
  border-radius: 30px;
  margin: 0 auto 27px;
  box-shadow: 0 12px 35px #0b291732;
}
.app-keepsake > span {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  font-weight: 700;
}
.app-keepsake p {
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 1.04;
  margin-top: 22px;
  color: #203428;
}
.app-keepsake .keepsake-bottom {
  display: block;
  border-top: 1px solid #54684455;
  margin-top: 45px;
  padding-top: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.download-after {
  display: flex;
  gap: 30px;
  align-items: center;
  padding-block: 45px;
  font-size: 0.8125rem;
}
.download-after .eyebrow {
  font-size: 0.75rem;
}
.download-after p {
  margin-right: auto;
}
.download-after a {
  border-bottom: 1px solid #839080;
}
.support-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 90px;
  margin-bottom: 130px;
}
.support-contact {
  padding: 40px 0 55px;
  border-top: 1px solid var(--line);
}
.support-contact h2 {
  font-size: 4.2rem;
  margin-top: 22px;
}
.support-contact p:not(.eyebrow) {
  margin-top: 26px;
  max-width: 520px;
}
.support-contact .button {
  margin-top: 28px;
}
.support-side {
  align-self: start;
  background: #1e2c22;
  border: 1px solid #435641;
}
.support-side-copy {
  padding: 32px;
}
.support-side-copy h3 {
  margin: 20px 0;
}
.support-side-copy p {
  font-size: 0.875rem;
}
.support-side-copy .text-link {
  margin-top: 18px;
  display: table;
  overflow-wrap: anywhere;
}
.support-faq {
  margin-top: 25px;
}
.support-faq > h2 {
  font-size: 2.7rem;
  margin-bottom: 25px;
}
.support-faq details {
  border-top: 1px solid var(--line);
  padding: 19px 0;
}
.support-faq details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
.support-faq summary {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
}
.support-faq summary > span {
  color: var(--orange);
  font-size: 1.3rem;
  line-height: 1.2;
  transition: transform 0.2s;
}
.support-faq details[open] summary > span {
  transform: rotate(45deg);
}
.support-faq details p {
  margin-top: 15px;
  font-size: 0.875rem;
  padding-right: 25px;
}
.support-faq a {
  color: var(--paper);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal-heading {
  padding-bottom: 70px;
}
.legal-heading h1 {
  font-size: clamp(4.5rem, 7.5vw, 7.5rem);
}
.legal-meta {
  display: flex;
  gap: 28px;
  margin-top: 34px;
  font-size: 0.8125rem;
  color: #a7b7a8;
}
.legal-meta span:first-child {
  color: var(--paper);
}
.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 90px;
  align-items: start;
  padding-bottom: 120px;
}
.legal-aside {
  position: sticky;
  top: 30px;
}
.legal-aside details {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.legal-aside summary {
  font-size: 0.8125rem;
  padding-block: 18px;
  display: flex;
  justify-content: space-between;
}
.legal-aside nav {
  display: flex;
  flex-direction: column;
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 12px;
  padding-bottom: 24px;
  gap: 9px;
  scrollbar-width: thin;
  scrollbar-color: #55694f transparent;
}
.legal-aside nav a {
  font-size: 0.75rem;
  line-height: 1.6;
  color: #9fac9d;
  padding: 3px 0;
}
.legal-aside nav a:hover,
.legal-aside nav a.active {
  color: var(--orange);
}
.legal-contact {
  display: block;
  margin-top: 25px;
  font-size: 0.8125rem;
  color: #a8b9a8;
}
.legal-contact strong {
  font-weight: 500;
  color: var(--paper);
}
.legal-document {
  max-width: 850px;
  color: #c3cec1;
  font-size: 1rem;
  line-height: 1.85;
  min-width: 0;
}
.legal-document p {
  color: inherit;
  margin-bottom: 18px;
}
.legal-document h2 {
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--paper);
  margin: 48px 0 25px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 30px;
}
.legal-document h2:first-of-type {
  margin-top: 32px;
}
.legal-document h3 {
  margin: 25px 0 18px;
  font-size: 1.9rem;
  color: var(--paper);
}
.legal-document a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}
.legal-document ul,
.legal-document ol {
  padding-left: 22px;
  margin: 15px 0 24px;
}
.legal-document li {
  padding-left: 6px;
  margin-bottom: 12px;
}
.legal-document strong {
  color: var(--white);
  font-weight: 600;
}
.legal-document em {
  color: inherit;
}
.legal-document .section {
  margin-bottom: 28px;
}
.legal-document .intro,
.legal-document > .section:first-child {
  padding: 25px 28px;
  background: #1e2c23;
  border-left: 2px solid var(--orange);
}
.legal-document .intro p:last-child,
.legal-document > .section:first-child p:last-child {
  margin-bottom: 0;
}
.legal-crosslink {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  margin-top: 50px;
}
.legal-crosslink p {
  margin-bottom: 8px;
}
.not-found {
  padding-block: 15vh;
}
.not-found h1 {
  margin-block: 30px;
}
.not-found p {
  margin-block: 25px;
}
.not-found .button {
  margin-top: 15px;
}
@media (min-width: 1600px) {
  .hero-copy {
    padding-top: 80px;
  }
  .hero-visual img {
    object-position: 60% 58%;
  }
  .hero-caption {
    right: 8%;
  }
  .world-panel {
    min-height: 600px;
  }
}
@media (max-width: 1100px) {
  .shell {
    width: calc(100% - 64px);
  }
  .hero {
    min-height: 800px;
  }
  .hero h1 {
    font-size: 7.5rem;
  }
  .hero-caption {
    display: none;
  }
  .nav-links {
    gap: 24px;
  }
  .chapter-grid {
    gap: 45px;
  }
  .chapter-copy h2 {
    font-size: 4.4rem;
  }
  .journal-demo {
    max-width: 340px;
  }
  .journal-art {
    font-size: 0.8125rem;
  }
  .tab-num {
    font-size: 0.75rem;
  }
  .world-panel-copy {
    padding-left: 38px;
    width: 62%;
  }
  .world-controls {
    left: 38px;
  }
  .world-panel {
    min-height: 530px;
  }
  .world-panel-art {
    width: 72%;
  }
  .world-catalog {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 30px;
  }
  .catalog-copy p {
    max-width: 360px;
  }
  .support-layout {
    gap: 50px;
  }
  .legal-layout {
    gap: 50px;
    grid-template-columns: 220px 1fr;
  }
  .download-layout {
    gap: 35px;
  }
  .download-after {
    flex-wrap: wrap;
  }
  .together-art {
    min-height: 510px;
  }
  .conversation-note p {
    font-size: 3.8rem;
  }
  .notes-grid {
    gap: 30px;
  }
  .hero-bottom {
    font-size: 0.75rem;
  }
}
@media (max-width: 800px) {
  .section-pad {
    padding-block: 85px;
  }
  .shell {
    width: calc(100% - 44px);
  }
  .nav-wrap {
    min-height: 85px;
  }
  .brand img {
    width: 125px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    background: none;
    border: 1px solid #637366;
    height: 42px;
    width: 44px;
    border-radius: 3px;
    padding: 10px;
    z-index: 25;
  }
  .menu-toggle span {
    height: 1px;
    width: 100%;
    background: var(--paper);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: #111d17f5;
    backdrop-filter: blur(20px);
    padding: 28px 25px 35px;
    border-bottom: 1px solid #6b7858;
    box-shadow: 0 15px 20px #0003;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links > a {
    padding: 14px;
  }
  .nav-links > a:not(.nav-cta)::after {
    display: none;
  }
  .nav-cta {
    margin-top: 8px;
  }
  .hero {
    height: 950px;
    min-height: 0;
    max-height: none;
    align-items: flex-start;
  }
  .hero-copy {
    padding-top: 145px;
    padding-bottom: 0;
  }
  .hero h1 {
    font-size: 6.7rem;
    max-width: 440px;
    margin-top: 22px;
  }
  .hero-description {
    font-size: 0.875rem;
    max-width: 300px;
  }
  .hero-visual {
    left: -15%;
    right: -15%;
    top: 22%;
    bottom: -3%;
  }
  .hero-visual img {
    object-position: 76% center;
    opacity: 0.8;
  }
  .hero-shade {
    background:
      linear-gradient(
        180deg,
        #071014 0%,
        #071014bb 23%,
        #07101411 55%,
        #111816 100%
      ),
      linear-gradient(90deg, #071014bb, transparent 95%);
  }
  .hero-actions {
    gap: 22px;
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-explore {
    background: #0a171464;
    padding: 4px 0;
  }
  .hero-bottom > span:last-child {
    display: none;
  }
  .hero-bottom {
    bottom: 24px;
  }
  .hero-bottom a {
    gap: 12px;
    font-size: 0.75rem;
  }
  .hero-bottom > span {
    font-size: 0.75rem;
  }
  .opening-statement {
    font-size: 2.8rem;
    line-height: 1.23;
  }
  .opening-bottom {
    gap: 25px;
    margin-top: 35px;
  }
  .opening-bottom p {
    max-width: 380px;
    font-size: 0.875rem;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 32px;
  }
  .section-heading > p {
    font-size: 0.875rem;
  }
  .section-heading h2 {
    font-size: 4.2rem;
  }
  .world-tabs {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    margin-top: 32px;
    scrollbar-width: thin;
    scrollbar-color: #9ba58e transparent;
  }
  .world-tab {
    padding: 17px 4px;
    gap: 8px;
    font-size: 0.875rem;
    flex-shrink: 0;
  }
  .world-panel {
    min-height: 640px;
  }
  .world-panel-art {
    width: 100%;
    top: 0;
    transform: none;
  }
  .world-panel-shade {
    background: linear-gradient(
      0deg,
      #0c1411 0%,
      #0c1411f5 27%,
      #0c141177 65%,
      transparent 100%
    );
  }
  .world-panel-copy {
    width: 100%;
    padding: 295px 28px 100px;
  }
  .world-panel h3 {
    font-size: 3.6rem;
    margin: 22px 0 19px;
  }
  .world-panel-copy > p:not(.world-kicker) {
    max-width: 400px;
  }
  .world-panel .text-link {
    margin-top: 20px;
  }
  .world-controls {
    left: 28px;
    right: 25px;
    bottom: 23px;
  }
  .world-kicker {
    font-size: 0.75rem;
  }
  .world-panel.changing .world-panel-art {
    animation: world-mobile 0.65s var(--ease);
  }
  @keyframes world-mobile {
    from {
      opacity: 0.25;
      transform: scale(1.05);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  .chapter-grid,
  .together-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .chapter-copy h2 {
    font-size: 4.1rem;
  }
  .chapter-copy > p:not(.eyebrow) {
    max-width: 500px;
  }
  .journal-stage {
    width: min(470px, 100%);
    margin: auto;
    padding: 25px 16px 40px;
  }
  .journal-demo {
    max-width: 355px;
  }
  .journal-art {
    width: min(470px, 100%);
    margin: auto;
  }
  .together-copy {
    grid-row: 1;
  }
  .together-copy h2 {
    font-size: 4.2rem;
  }
  .together-copy h2 br:nth-child(2) {
    display: none;
  }
  .together-copy > p:not(.eyebrow) {
    max-width: 500px;
  }
  .memory-pair {
    height: 350px;
  }
  .memory-image:nth-child(2) {
    top: 95px;
  }
  .conversation-note {
    left: 10px;
    bottom: 0;
  }
  .conversation-note p {
    font-size: 3.8rem;
  }
  .closing {
    padding-block: 100px;
  }
  .closing h2 {
    font-size: 4.9rem;
  }
  .closing-art img {
    object-position: 75% center;
  }
  .footer-top {
    gap: 30px;
    flex-wrap: wrap;
    padding-bottom: 35px;
  }
  .footer-top p {
    font-size: 1.45rem;
  }
  .back-top {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 22px;
    line-height: 1.8;
  }
  .footer-bottom nav {
    flex-wrap: wrap;
    gap: 25px;
  }
  .page-heading {
    padding-top: 145px;
    padding-bottom: 55px;
  }
  .page-heading h1 {
    font-size: 5.5rem;
  }
  .page-heading-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
    gap: 25px;
  }
  .feature-banner {
    min-height: 450px;
  }
  .banner-copy {
    left: 25px;
    right: 25px;
    bottom: 30px;
  }
  .banner-copy h2 {
    font-size: 3rem;
  }
  .notes-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 45px;
  }
  .feature-note h3 {
    margin-top: 18px;
  }
  .feature-note p {
    max-width: 540px;
  }
  .world-catalog {
    gap: 38px 20px;
  }
  .catalog-copy h2 {
    font-size: 2.1rem;
  }
  .catalog-copy p {
    font-size: 0.875rem;
  }
  .download-scene {
    padding-top: 145px;
    min-height: 1000px;
    padding-bottom: 75px;
  }
  .download-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }
  .download-copy h1 {
    font-size: 6rem;
  }
  .download-copy > p:not(.eyebrow) {
    font-size: 0.9375rem;
  }
  .download-backdrop img {
    object-position: 70% center;
  }
  .download-scene::after {
    background:
      linear-gradient(90deg, #0b1617ef, #0b161780),
      linear-gradient(0deg, #0b161788, transparent);
  }
  .app-keepsake {
    justify-self: end;
    max-width: 230px;
    margin-right: 20px;
    padding: 25px 20px 20px;
    transform: rotate(5deg);
  }
  .app-keepsake img {
    width: 85px;
    border-radius: 19px;
    margin-bottom: 18px;
  }
  .app-keepsake p {
    font-size: 2.35rem;
    margin-top: 15px;
  }
  .app-keepsake .keepsake-bottom {
    margin-top: 25px;
    padding-top: 15px;
    font-size: 0.75rem;
  }
  .download-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding-block: 35px;
  }
  .download-after .eyebrow,
  .download-after p {
    grid-column: 1/-1;
  }
  .download-after a {
    justify-self: start;
  }
  .support-layout {
    grid-template-columns: 1fr;
    gap: 55px;
    margin-bottom: 80px;
  }
  .support-contact {
    padding-top: 32px;
  }
  .support-contact h2 {
    font-size: 3.5rem;
  }
  .support-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .support-side-copy {
    padding: 25px;
  }
  .support-side-copy h3 {
    font-size: 2rem;
  }
  .support-side-copy .text-link {
    font-size: 0.8rem;
  }
  .legal-heading h1 {
    font-size: 4.7rem;
  }
  .legal-meta {
    flex-direction: column;
    gap: 8px;
    margin-top: 30px;
  }
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 75px;
  }
  .legal-aside {
    position: static;
  }
  .legal-aside nav {
    max-height: 220px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
  }
  .legal-aside nav a {
    font-size: 0.8125rem;
  }
  .legal-contact {
    display: none;
  }
  .legal-document h2 {
    font-size: 2.5rem;
  }
  .legal-document {
    font-size: 1rem;
    line-height: 1.85;
  }
  .legal-document .intro,
  .legal-document > .section:first-child {
    padding: 22px;
  }
  .not-found h1 {
    font-size: 5rem;
  }
}
@media (max-width: 450px) {
  .hero {
    height: 930px;
  }
  .hero h1 {
    font-size: 6rem;
  }
  .hero-copy {
    padding-top: 135px;
  }
  .hero-visual {
    top: 25%;
    left: -62%;
    right: -30%;
  }
  .hero-shade {
    background:
      linear-gradient(
        180deg,
        #071014 0%,
        #071014ae 36%,
        #07101422 60%,
        #111816 100%
      ),
      linear-gradient(90deg, #07101477, transparent);
  }
  .hero-description {
    font-size: 0.875rem;
  }
  .hero-actions {
    margin-top: 25px;
  }
  .hero .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
  }
  .hero-bottom a {
    font-size: 0.75rem;
  }
  .hero-bottom > span {
    font-size: 0.75rem;
  }
  .opening-statement {
    font-size: 2.35rem;
  }
  .opening-statement br {
    display: none;
  }
  .opening-statement span {
    display: block;
    margin-top: 12px;
  }
  .opening-bottom {
    align-items: flex-start;
  }
  .little-star {
    font-size: 2.3rem;
  }
  .section-heading h2,
  .chapter-copy h2,
  .together-copy h2 {
    font-size: 3.65rem;
  }
  .world-panel {
    min-height: 645px;
  }
  .world-panel-copy {
    padding: 270px 23px 100px;
  }
  .world-panel h3 {
    font-size: 3.15rem;
  }
  .world-panel-copy > p:not(.world-kicker) {
    font-size: 0.875rem;
  }
  .world-panel .text-link {
    font-size: 0.8125rem;
  }
  .world-controls {
    left: 23px;
  }
  .journal-stage {
    padding-inline: 6px;
  }
  .journal-demo {
    max-width: 300px;
  }
  .journal-header > span {
    font-size: 0.75rem;
  }
  .journal-art {
    bottom: -2px;
  }
  .together-art {
    min-height: 410px;
  }
  .memory-image {
    border-width: 6px;
  }
  .memory-image:nth-child(2) {
    top: 80px;
  }
  .conversation-note p {
    font-size: 3.2rem;
  }
  .conversation-note > span:last-child {
    font-size: 0.75rem;
  }
  .closing h2 {
    font-size: 4rem;
  }
  .page-heading h1 {
    font-size: 4.5rem;
  }
  .world-catalog {
    grid-template-columns: 1fr 1fr;
    gap: 35px 14px;
  }
  .catalog-copy h2 {
    font-size: 1.9rem;
  }
  .catalog-copy p {
    font-size: 0.8125rem;
  }
  .catalog-index {
    top: 10px;
    left: 10px;
  }
  .catalog-arrow {
    right: 10px;
    bottom: 10px;
    width: 29px;
    height: 29px;
  }
  .banner-copy h2 {
    font-size: 2.65rem;
  }
  .support-side {
    display: block;
  }
  .support-scene {
    max-height: none;
  }
  .support-side-copy {
    padding: 28px;
  }
  .legal-aside nav {
    grid-template-columns: 1fr;
  }
  .legal-document h2 {
    font-size: 2.2rem;
  }
  .legal-heading h1 {
    font-size: 4.1rem;
  }
  .store-links {
    width: 280px;
  }
  .app-keepsake {
    margin-top: -8px;
  }
  .footer-top .brand img {
    width: 138px;
  }
  .footer-top p {
    font-size: 1.35rem;
  }
  .eyebrow {
    font-size: 0.75rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal-pending {
    opacity: 1;
    transform: none;
  }
  .hero-visual img {
    transform: none !important;
  }
  .journal-demo,
  .app-keepsake {
    transform: none;
  }
  .journal-stage:hover .journal-demo {
    transform: none;
  }
}

.rating-preview {
  display: flex;
  gap: 2px;
  margin-top: 12px;
}
.rating-star {
  border: 0;
  background: none;
  padding: 4px 2px;
  color: #b4b9ab;
  font-size: 1.7rem;
  line-height: 1.2;
}
.rating-star.filled {
  color: #9b582c;
}
.rating-star:hover {
  color: #794021;
}
.rating-label {
  font-size: 0.75rem;
  color: #677561;
  margin-top: 9px;
}
.journal-share-note {
  margin-top: 15px;
  font-size: 0.75rem;
  color: #5e7259;
}
.hero-description,
.opening-bottom p,
.section-heading > p,
.world-panel-copy > p:not(.world-kicker),
.chapter-copy > p:not(.eyebrow),
.together-copy > p:not(.eyebrow),
.catalog-copy p,
.feature-note p,
.support-side-copy p,
.support-faq details p {
  font-size: 1rem;
}

.feature-expansion {
  border-top: 1px solid var(--line);
  padding-top: 70px;
  margin-top: 70px;
}
.feature-expansion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}
.feature-expansion h3 {
  margin-bottom: 20px;
}
.feature-expansion p {
  font-size: 1rem;
}
.feature-expansion .text-link {
  margin-top: 15px;
}
@media (max-width: 800px) {
  .feature-expansion-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
