@font-face {
  font-family: Nunito;
  src: url("/assets/fonts/nunito-sans-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Nunito;
  src: url("/assets/fonts/nunito-sans-latin-700-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Nunito;
  src: url("/assets/fonts/nunito-sans-latin-900-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: Nunito;
  src: url("/assets/fonts/nunito-sans-latin-ext-400-normal.woff2")
    format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Nunito;
  src: url("/assets/fonts/nunito-sans-latin-ext-700-normal.woff2")
    format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Nunito;
  src: url("/assets/fonts/nunito-sans-latin-ext-900-normal.woff2")
    format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
:root {
  --ink: #25243a;
  --muted: #606473;
  --paper: #fff;
  --lavender: #8d80ee;
  --purple: #5d49b4;
  --line: #d9d7eb;
  --mint: #edf6ec;
  --green: #326044;
  --yellow: #ffe396;
  --shadow: 0 4px 0 #25243a;
  --font: Nunito, "Hiragino Kaku Gothic ProN", "PingFang SC", "Microsoft YaHei",
    sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  color-scheme: light;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
figure,
p,
h1,
h2,
h3 {
  margin: 0;
}
button {
  color: inherit;
}
svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
button:disabled {
  cursor: wait;
  opacity: 0.6;
}
a,
button,
input {
  touch-action: manipulation;
}
:focus-visible {
  outline: 3px solid #b74417;
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
h2 {
  font-size: 42px;
  line-height: 1.14;
  font-weight: 900;
  text-wrap: balance;
}
h3 {
  font-size: 25px;
  line-height: 1.25;
  font-weight: 900;
  text-wrap: balance;
}
p {
  overflow-wrap: break-word;
}
button span {
  min-width: 0;
}
.container {
  width: min(1184px, calc(100% - 64px));
  margin-inline: auto;
}
.section {
  padding: 86px 0;
  position: relative;
  scroll-margin-top: 0;
}
.section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 46px;
}
.section-heading h2 {
  margin: 12px 0 17px;
}
.characters .section-heading h2 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}
.characters .section-heading .heading-text {
  grid-column: 2;
}
.heading-badge {
  grid-column: 3;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 7px 3px 5px;
  border: 2px solid var(--ink);
  border-radius: 2px;
  background: #eeeaff;
  box-shadow: 2px 2px 0 #8e80df;
  color: #5140b3;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
}
.heading-badge .icon {
  width: 13px;
  height: 13px;
}
@media (max-width: 700px) {
  .characters .section-heading h2 {
    display: block;
  }
  .characters .section-heading .heading-badge {
    position: absolute;
    top: -15px;
    right: 1px;
  }
}

/* Keep the world art and its story overlays in one shared coordinate system. */
.hero {
  container-type: size;
}
.hero-world-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100cqw, calc(100cqh * 1672 / 941));
  aspect-ratio: 1672 / 941;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.hero-world-stage .hero-art,
.hero-world-stage .island-stories,
.hero-world-stage .hero-encounters {
  position: absolute;
  inset: 0;
}
.hero-world-stage .hero-art {
  z-index: 0;
}
.hero-world-stage .hero-art img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
}
@media (max-width: 980px) {
  .hero-world-stage {
    left: 0;
    top: 250px;
    width: 100%;
    aspect-ratio: 1024 / 1536;
    transform: none;
  }
  .hero-world-stage .hero-art {
    inset: 0;
  }
}

/* Shared AI marker used anywhere the product calls out AI-assisted play. */
.ai-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 38px;
  min-height: 23px;
  padding: 3px 7px 3px 5px;
  border: 2px solid #000;
  border-radius: 2px;
  background: #eeeaff;
  box-shadow: 2px 2px 0 #8e80df;
  color: #5140b3;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.ai-label .icon {
  width: 13px !important;
  height: 13px !important;
}
.hero-ai-badge {
  position: absolute;
  top: 3px;
  right: -52px;
}
.transform-ai {
  position: static;
}
.heading-ai {
  margin-left: 8px;
  vertical-align: middle;
  transform: translateY(-2px);
}
@media (max-width: 700px) {
  .hero-ai-badge {
    top: 2px;
    right: -47px;
  }
  .heading-ai {
    min-width: 34px;
    min-height: 21px;
    margin-left: 6px;
  }
}
.section-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 700px;
  margin-inline: auto;
}
.eyebrow {
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--purple);
}
.section-copy .section-lede {
  margin: 22px 0 0;
}
.section-copy h2 {
  margin-top: 14px;
}
.small-label {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--purple);
}
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}
.fine-print,
.art-note,
.section-footnote {
  font-size: 12px;
  color: var(--muted);
}
.actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 49px;
  padding: 11px 20px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  box-shadow: 0 3px 0 var(--ink);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  text-align: center;
  max-width: 100%;
  text-wrap: balance;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 var(--ink);
}
.button:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 var(--ink);
}
.button.primary {
  background: var(--lavender);
  color: #1c1535;
}
.button.primary:hover {
  background: #a295fc;
}
.button.secondary {
  background: #fff;
}
.button.secondary:hover {
  background: #f0efff;
}
.button svg {
  fill: currentColor;
}
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  flex-shrink: 0;
}
.icon-button:hover {
  background: #edebfc;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
  border-bottom: 1px solid var(--purple);
  padding-bottom: 3px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 1000;
  background: #fff;
  border: 2px solid var(--ink);
  padding: 12px;
}
.skip-link:focus {
  top: 12px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.social-links {
  display: flex;
  gap: 9px;
  align-items: center;
}
.social-links a {
  width: 26px;
  height: 28px;
  display: grid;
  place-items: center;
}
.social-links svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
.social-links a:hover {
  color: var(--purple);
  transform: translateY(-1px);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffffed;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(1320px, calc(100% - 48px));
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand > img:first-child {
  width: 39px;
  height: 39px;
  border-radius: 9px;
}
.brand .wordmark {
  width: 112px;
  height: auto;
  flex-shrink: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 900;
}
.main-nav a {
  padding: 12px 0;
  position: relative;
}
.main-nav a:hover {
  color: var(--purple);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}
.site-header .social-links {
  gap: 4px;
}
.site-header .social-links a {
  width: 20px;
  height: 20px;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 4px #1c193027;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}
.site-header .social-links svg {
  width: 10px;
  height: 10px;
}
.site-header .social-links a:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px #1c193035;
}
.site-header .social-links a[aria-label="Facebook"] {
  background: #1877f2;
}
.site-header .social-links a[aria-label="Instagram"] {
  background: linear-gradient(135deg, #6354d9, #df2f88 52%, #f39a34);
}
.site-header .social-links a[aria-label="TikTok"] {
  background: #080808;
}
.site-header .social-links a[aria-label="YouTube"] {
  background: #f00;
}
.site-header .social-links a[aria-label="Xiaohongshu"] {
  background: #ff2442;
}
.site-header .social-links a[aria-label="Discord"] {
  background: #5865f2;
}
.language-picker {
  position: relative;
}
.language-trigger {
  gap: 5px;
  font-weight: 700;
  font-size: 11px;
  width: 58px;
}
.language-trigger .icon {
  width: 17px;
}
.language-menu {
  position: absolute;
  right: 0;
  top: 50px;
  min-width: 148px;
  background: #fff;
  border: 2px solid var(--ink);
  padding: 6px;
  box-shadow: 4px 4px 0 #ccc5ec;
  border-radius: 4px;
  z-index: 60;
}
.language-menu a {
  display: block;
  padding: 9px 12px;
  font-size: 14px;
  border-radius: 2px;
}
.language-menu a:hover,
.language-menu a.is-active {
  background: #ebe8ff;
}
.menu-button {
  display: none;
}
.hero {
  display: flex;
  flex-direction: column;
  height: calc(100svh - 155px);
  min-height: 650px;
  max-height: 1000px;
  background: #bef1fd;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 3px solid #e2e6dc;
}
.hero-art {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.hero-copy {
  flex-shrink: 0;
  position: relative;
  text-align: center;
  padding: 22px 24px 0;
  max-width: 850px;
  margin: auto;
}
.hero .eyebrow {
  color: #375c65;
  font-size: 11px;
}
.hero h1 {
  position: relative;
  margin: 9px auto 8px;
  width: 245px;
}
.hero h1 img {
  width: 100%;
  height: auto;
}
.hero-title {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.22;
  text-wrap: balance;
  max-width: 390px;
  margin-inline: auto;
}
.hero-body {
  font-size: 14px;
  margin: 8px auto 14px;
  max-width: 350px;
  line-height: 1.5;
  color: #374c53;
  text-wrap: balance;
}
.platform-note {
  font-size: 11px;
  color: #3c5660;
  font-weight: 700;
  margin-top: 10px;
}
.hero-phone {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 15px auto 30px;
  width: 100%;
}
.phone-device {
  position: relative;
  display: block;
  flex: 1;
  min-height: 0;
  height: 100%;
  max-height: 560px;
  width: auto;
  aspect-ratio: 827 / 1754;
  padding: 0;
  border: 6px solid #252532;
  border-radius: 27px;
  background: #252532;
  box-shadow: 0 0 0 2px #aab3bf, 0 13px 22px #2d656947;
  transition: transform 180ms ease, box-shadow 180ms ease;
  text-align: left;
  color: #fff;
}
.phone-device:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 2px #8d80ee, 0 16px 26px #2d656947;
}
.phone-screen {
  container-type: inline-size;
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 21px;
  background: #8ebc69;
  color: #fff;
  line-height: 1.3;
  font-weight: 700;
}
.phone-screen > .phone-scene {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.phone-notch {
  position: absolute;
  top: -1px;
  left: 34%;
  width: 32%;
  height: 13px;
  border-radius: 0 0 9px 9px;
  background: #252532;
}
.phone-enlarge {
  display: grid;
  place-items: center;
  position: absolute;
  right: 5px;
  bottom: 44%;
  width: 31px;
  height: 31px;
  border: 2px solid var(--ink);
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  box-shadow: 2px 2px 0 #aaa3d2;
}
.phone-enlarge .icon {
  width: 17px;
  height: 17px;
}
.hero-phone figcaption {
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 700;
  color: #375c65;
  margin-top: 8px;
}
.phone-hud {
  position: absolute;
  top: 5.5%;
  left: 4%;
  right: 4%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 3%;
  font-size: 4cqw;
}
.phone-profile {
  display: flex;
  gap: 2cqw;
  align-items: center;
  padding: 1.8cqw;
  background: #272535e8;
  border: 1px solid #efe8e5;
  border-radius: 3px;
}
.phone-profile > img {
  width: 13cqw;
  height: 15cqw;
  object-fit: cover;
  border: 1px solid #fbecbb;
  border-radius: 2px;
}
.phone-profile strong,
.phone-profile span {
  display: block;
}
.phone-profile strong {
  font-size: 4cqw;
  max-width: 31cqw;
}
.phone-profile span {
  font-size: 3.5cqw;
  margin-top: 1cqw;
}
.phone-profile i {
  display: block;
  width: 28cqw;
  height: 1.5cqw;
  background: #8cdf71;
  margin-top: 1.5cqw;
}
.phone-wallet {
  display: grid;
  gap: 2cqw;
}
.phone-wallet span {
  display: flex;
  gap: 2cqw;
  align-items: center;
  background: #272535e8;
  padding: 1cqw 2cqw;
  border-radius: 2px;
}
.phone-wallet .icon {
  width: 4.5cqw;
  height: 4.5cqw;
  filter: brightness(0) saturate(100%) invert(85%) sepia(30%) saturate(700%);
}
.phone-quest {
  position: absolute;
  top: 17%;
  left: 4%;
  max-width: 58%;
  font-size: 3.6cqw;
  border: 1px solid #302840;
  border-radius: 2px;
  background: #fffdf2;
  color: var(--ink);
}
.phone-quest strong {
  display: block;
  padding: 1.5cqw 2.5cqw;
  background: #7260bc;
  color: #fff;
}
.phone-quest span {
  display: flex;
  align-items: center;
  gap: 1.5cqw;
  padding: 2cqw 2.5cqw;
}
.phone-quest .icon {
  width: 4cqw;
  height: 4cqw;
}
.phone-tools {
  position: absolute;
  top: 30%;
  left: 4%;
  display: grid;
  gap: 4cqw;
}
.phone-tools .icon {
  width: 10cqw;
  height: 10cqw;
  padding: 2cqw;
  background: #fff3d8;
  border: 1px solid #766c49;
  border-radius: 3px;
  box-shadow: 1px 2px 0 #46372e;
}
.phone-speech {
  position: absolute;
  top: 22%;
  right: 3%;
  max-width: 38%;
  padding: 2cqw 2.5cqw;
  border: 1px solid var(--ink);
  border-radius: 3px;
  background: #fff;
  color: var(--ink);
  font-size: 3.8cqw;
  box-shadow: 1px 2px 0 #25243a;
}
.phone-speech::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 40%;
  width: 6px;
  height: 6px;
  background: white;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transform: rotate(45deg);
}
.phone-chat {
  position: absolute;
  bottom: 12%;
  left: 4%;
  right: 4%;
  background: #242335ed;
  border-left: 2px solid #b1a1ff;
  border-radius: 2px;
  padding: 2.5cqw 3cqw;
  font-size: 4.1cqw;
}
.phone-chat-label {
  display: block;
  color: #dbd2ff;
  font-size: 3.4cqw;
  margin-bottom: 2cqw;
}
.phone-chat p + p {
  margin-top: 1.5cqw;
}
.phone-chat b {
  color: #ffdd94;
}
.phone-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  min-height: 9%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 2cqw 1cqw 3cqw;
  background: #faf8ff;
  border-top: 2px solid #746588;
  color: #302a45;
  font-size: 3cqw;
  text-align: center;
}
.phone-nav > span {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 1cqw;
  min-width: 0;
}
.phone-nav img {
  width: 11cqw;
  height: 10cqw;
  object-fit: contain;
  image-rendering: pixelated;
  border-radius: 2px;
}
.phone-nav span span {
  overflow-wrap: anywhere;
}
.phone-dialog {
  width: min(390px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  background: #f8f7fe;
  border: 2px solid var(--ink);
  border-radius: 6px;
  overflow: auto;
  box-shadow: 6px 6px 0 #1c1539;
}
.phone-dialog .window-bar {
  position: sticky;
  top: 0;
  z-index: 2;
}
.phone-expanded {
  position: relative;
  height: min(670px, calc(100svh - 130px));
  aspect-ratio: 827 / 1754;
  margin: 12px auto 0;
  max-width: calc(100% - 28px);
  border: 4px solid var(--ink);
  border-radius: 12px;
  background: var(--ink);
}
.phone-expanded .phone-screen {
  border-radius: 8px;
}
.phone-dialog > p {
  text-align: center;
  margin: 8px 0 12px;
  font-size: 11px;
  color: var(--muted);
}
.hero-scroll {
  position: absolute;
  bottom: 25px;
  right: 30px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: #fff;
  border: 2px solid var(--ink);
  box-shadow: 0 3px 0 var(--ink);
  border-radius: 4px;
}
.hero-scroll:hover {
  background: var(--yellow);
}
.world-intro.section {
  padding: 26px 0 49px;
  background: #fff;
}
.world-intro h2 {
  font-size: 29px;
  margin-top: 0;
}
.world-intro .section-heading {
  margin-bottom: 27px;
}
.world-intro .section-heading h2 {
  margin-top: 0;
}
.world-intro .section-lede {
  font-size: 16px;
  max-width: 700px;
  margin-top: 15px;
}
.promise-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
}
.promise-row p {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
}
.promise-row .icon {
  width: 17px;
  height: 17px;
}
.grid-paper {
  background-color: #f8f7fe;
  background-image: linear-gradient(#bcb3e721 1px, transparent 1px),
    linear-gradient(90deg, #bcb3e721 1px, transparent 1px);
  background-size: 28px 28px;
  border-top: 1px solid #e4dfef;
  border-bottom: 1px solid #e4dfef;
}
.characters.section {
  padding-top: 24px;
}
.character-stage {
  display: grid;
  grid-template-columns: 190px 56px 190px 235px;
  gap: 32px;
  align-items: center;
  justify-content: center;
}
.photo-frame,
.character-frame {
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 #dcd6ef;
  background: #fff;
  padding: 9px;
  border-radius: 5px;
  transform: rotate(-3deg);
}
.photo-frame > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.character-frame {
  background: #ddd9f7;
  transform: rotate(3deg);
}
.character-frame > img {
  height: 169px;
  width: 100%;
  object-fit: contain;
  image-rendering: pixelated;
}
.photo-frame figcaption,
.character-frame figcaption {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  padding: 10px 0 2px;
  font-weight: 900;
  font-size: 12px;
}
.photo-frame figcaption .icon,
.character-frame figcaption .icon {
  width: 15px;
  height: 15px;
}
.transform-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.transform-arrow .icon:first-child {
  width: 23px;
  height: 23px;
}
.transform-arrow .icon:last-child {
  width: 42px;
  height: 42px;
}
.character-thought {
  padding-left: 12px;
}
.character-thought > p {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
  max-width: 225px;
}
.tiny-cast {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.tiny-cast img {
  width: 55px;
  height: 65px;
  object-fit: cover;
  object-position: top;
  border-radius: 3px;
  border: 1px solid #c7c0e1;
}
.characters > .container > .art-note {
  text-align: center;
  margin: 26px 0 0;
}
.life-heading {
  text-align: center;
  margin: 0 auto 27px;
  max-width: 670px;
}
.life-heading h3 {
  font-size: 28px;
  margin-top: 8px;
}
.life-heading p {
  margin-top: 12px;
  font-size: 15px;
  color: var(--muted);
}
.career-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 820px;
  margin: 0 auto 28px;
  background: #ece9fa;
  border: 1px solid #c9c1e5;
  border-radius: 5px;
  padding: 4px;
}
.career-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 3px;
  min-height: 46px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 900;
}
.career-tabs button[aria-selected="true"] {
  background: #fff;
  border-color: #3e355b;
  box-shadow: 0 2px 0 #c8c1df;
}
.career-tabs button:hover {
  background: #fff9;
}
.career-tabs button[aria-selected="true"]:hover {
  background: #fff;
}
.career-panels {
  min-height: 340px;
}
.career-panel {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 50px;
  max-width: 1040px;
  margin: auto;
}
.career-image .artwork {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 5px;
  box-shadow: 6px 6px 0 #dcd6ed;
  background: #dcd6ed;
}
.career-image .artwork > img {
  aspect-ratio: 1.68;
  object-fit: cover;
}
.career-copy {
  position: relative;
  padding-right: 10px;
}
.role-portrait {
  width: 75px;
  height: 90px;
  object-fit: cover;
  float: right;
  margin: 0 0 12px 12px;
  border-radius: 4px;
  image-rendering: pixelated;
}
.career-copy h3 {
  margin-top: 8px;
  max-width: 290px;
}
.career-copy p {
  margin-top: 14px;
  font-size: 15px;
  color: var(--muted);
}
.career-copy .text-link {
  margin-top: 24px;
}
.artwork {
  border: 0;
  background: transparent;
  padding: 0;
  display: block;
  position: relative;
  max-width: 100%;
  border-radius: 4px;
  overflow: hidden;
  text-align: left;
}
.artwork > img {
  width: 100%;
  height: auto;
  transition: filter 0.2s;
}
.artwork:hover > img {
  filter: brightness(1.04);
}
.zoom-cue {
  position: absolute;
  right: 11px;
  bottom: 11px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  background: #fff;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.artwork:hover .zoom-cue,
.artwork:focus-visible .zoom-cue {
  opacity: 1;
}
.zoom-cue .icon {
  width: 17px;
  height: 17px;
}
.adventure {
  background-color: #f8f7fe;
}
.adventure .eyebrow {
  color: var(--green);
}
.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 100px;
  align-items: center;
}
.quest-list {
  list-style: none;
  margin-top: 30px;
  display: grid;
  gap: 22px;
}
.quest-list li {
  display: flex;
  gap: 16px;
  align-items: start;
}
.quest-number {
  background: #dce8d8;
  border: 1px solid #a9bca2;
  color: #355342;
  font-weight: 900;
  font-size: 11px;
  min-width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  margin-top: 2px;
}
.quest-list h3 {
  font-size: 17px;
}
.quest-list p {
  font-size: 14px;
  color: #616d62;
  margin-top: 5px;
}
.adventure-visual {
  position: relative;
  min-width: 0;
  padding: 0 0 33px 70px;
}
.adventure-map {
  width: 345px;
  margin-left: auto;
  border: 3px solid #454c3d;
  border-radius: 8px;
  box-shadow: 10px 10px 0 #d7e3d3;
  max-height: 580px;
}
.adventure-map > img {
  width: 100%;
  height: auto;
}
.chapter-card {
  position: absolute;
  left: -25px;
  bottom: 30px;
  width: 285px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  padding: 8px;
  background: #fff;
  box-shadow: 4px 4px 0 #c6d1c3;
  transform: rotate(-5deg);
}
.chapter-card img {
  width: 100%;
  height: auto;
}
.chapter-card figcaption {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  padding: 9px 3px 1px;
}
.chapter-card figcaption .icon {
  width: 16px;
  height: 16px;
}
.workshop {
  background: #fff;
}
.workshop .eyebrow {
  color: #8d5739;
}
.career-future {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 28px 0 0;
  margin: 34px auto 0;
  border-top: 1px dashed #b3a9d8;
  max-width: 890px;
}
.future-symbols {
  display: flex;
  gap: 9px;
  flex-shrink: 0;
}
.future-symbols .icon {
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px dashed #b3a9d8;
  background: #eeebfa;
  border-radius: 6px;
}
.career-future .small-label {
  color: #7663be;
  font-size: 10px;
}
.career-future h3 {
  font-size: 21px;
  margin: 5px 0;
}
.career-future p:last-child {
  color: var(--muted);
  font-size: 14px;
  max-width: 630px;
}
.creation-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
  padding: 0;
  margin: 0;
}
.creation-steps > li {
  min-width: 0;
}
.build-world-connector {
  position: relative;
  height: 66px;
  margin: 12px 0 16px;
}
.build-world-connector::before {
  content: "";
  position: absolute;
  left: 50%;
  right: calc(12.5% - 9.375px);
  top: 0;
  height: 34px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  border-bottom-right-radius: 12px;
}
.build-world-connector > .icon {
  position: absolute;
  width: 30px;
  height: 34px;
  left: calc(50% - 15px);
  top: 27px;
}
.build-world-connector::after {
  display: none;
}
.worlds-showcase {
  scroll-margin-top: 110px;
}
.step-top {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 15px;
}
.step-top::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #d4cbe8;
}
.step-number {
  font-weight: 900;
  font-size: 27px;
  color: #7363c8;
}
.step-top .icon {
  width: 21px;
  height: 21px;
  opacity: 0.7;
}
.step-art {
  position: relative;
  aspect-ratio: 1.3;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 5px;
  overflow: hidden;
  background: #f2eefa;
  margin-bottom: 20px;
}
.step-art > .artwork {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.step-art .artwork > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.creation-steps > li:nth-child(3) .artwork > img {
  object-position: center top;
  object-fit: contain;
}
.step-sources {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1fr 1.5fr;
  gap: 3px;
  width: 100%;
  height: 100%;
  min-height: 0;
}
.step-sources img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}
.step-sources img:first-child {
  grid-column: 1;
}
.step-sources img:last-child {
  grid-column: 2;
  grid-row: 1 / 3;
  object-fit: contain;
}
.step-roles {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 7px 12px;
  padding: 10px;
  width: 100%;
  height: 100%;
}
.step-roles figure {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 20px;
  gap: 3px;
}
.step-roles img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
}
.step-roles figcaption {
  font-size: 10px;
  line-height: 1.1;
  font-weight: 700;
  text-align: center;
}
.compact-future {
  margin-top: 27px;
  padding-top: 22px;
  gap: 14px;
  max-width: none;
  justify-content: center;
}
.compact-future > .icon {
  width: 22px;
  height: 22px;
}
.compact-future p {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.compact-future strong {
  color: var(--purple);
}
.step-cast {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 6px;
  padding: 15px 10px;
}
.step-cast img {
  width: 30%;
  height: auto;
  border: 1px solid #b7a6d1;
  border-radius: 4px;
}
.step-cast img:nth-child(2) {
  transform: translateY(-14px);
}
.creation-steps h3 {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 9px;
}
.creation-steps p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.craft-recipe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 24px 0;
  margin-top: 30px;
  border-top: 1px solid #e3e0ec;
  border-bottom: 1px solid #e3e0ec;
}
.recipe-resources {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.recipe-resources .recipe-item,
.recipe-resources .recipe-result {
  width: 54px;
  height: auto;
  border: 1px solid #cfc2df;
  border-radius: 4px;
}
.recipe-resources .recipe-result {
  width: 64px;
}
.recipe-resources .icon {
  width: 17px;
  height: 17px;
}
.craft-recipe p {
  font-weight: 700;
  font-size: 14px;
  max-width: 390px;
  text-wrap: balance;
}
.build-possibilities {
  padding-top: 45px;
}
.build-possibilities h3 {
  font-size: 28px;
  line-height: 1.25;
  text-wrap: balance;
}
.build-possibilities .section-heading {
  margin-bottom: 27px;
}
.creation-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
}
.creation-gallery figure {
  min-width: 0;
}
.creation-gallery .artwork {
  width: 100%;
  border-radius: 4px;
  border: 2px solid #536775;
}
.creation-gallery .artwork > img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}
.creation-gallery figcaption {
  text-align: center;
  font-size: 15px;
  font-weight: 900;
  margin-top: 16px;
}
.build-possibilities .art-note {
  margin-top: 21px;
  text-align: center;
}
.collection-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 0 0 26px;
}
.story-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px;
  border: 1px solid #d4c9e6;
  border-radius: 6px;
  background: #eeebf8;
}
.story-filters button {
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  color: #625875;
  cursor: pointer;
}
.story-filters button[aria-pressed="true"] {
  color: var(--ink);
  border-color: #b1a2d0;
  background: #fff;
}
.story-filters button:hover {
  background: #fff;
}
.story-count {
  font-size: 12px;
  color: #75688c;
  white-space: nowrap;
  margin-left: auto;
}
.story-rail-controls {
  display: flex;
  gap: 7px;
}
.story-rail-controls .icon-button {
  border: 1px solid #b1a2d0;
  border-radius: 4px;
  background: #fff;
  width: 34px;
  height: 34px;
}
.story-rail-controls button:disabled {
  opacity: 0.35;
  cursor: default;
}
.story-rail-controls [data-story-scroll="-1"] .icon {
  transform: rotate(180deg);
}
.story-share {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  align-items: center;
  border-top: 2px solid #d9d1e9;
  padding-top: 48px;
  margin-top: 27px;
}
.community-preview {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 6px;
  box-shadow: 6px 6px 0 #cfc5e5;
  padding: 13px;
  max-width: 290px;
  width: 100%;
  margin: auto;
}
.community-post-header {
  display: flex;
  gap: 9px;
  align-items: center;
  padding-bottom: 13px;
  font-size: 12px;
  font-weight: 900;
}
.community-post-header > img:not(.icon) {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.community-post-header .icon {
  margin-left: auto;
  width: 16px;
  height: 16px;
}
.community-preview .artwork {
  width: 100%;
}
.community-preview .artwork > img {
  width: 100%;
  height: auto;
}
.community-preview figcaption {
  padding: 11px 0 2px;
}
.community-preview figcaption strong {
  font-size: 14px;
}
.community-preview figcaption p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
}
.community-copy h3 {
  font-size: 37px;
  line-height: 1.15;
  max-width: 520px;
  margin: 13px 0 17px;
  text-wrap: balance;
}
.community-copy .section-lede {
  max-width: 560px;
  font-size: 16px;
}
.community-copy .fine-print {
  margin-top: 13px;
}
.sharing-steps {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 17px;
  margin: 28px 0;
}
.sharing-steps li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 9px;
  flex: 1;
  position: relative;
  min-width: 0;
}
.sharing-steps li > .icon:first-child {
  width: 24px;
  height: 24px;
}
.sharing-steps li > span {
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  grid-column: 1 / -1;
  padding-right: 15px;
}
.sharing-steps li > .icon:last-child:not(:first-child) {
  width: 18px;
  height: 18px;
  grid-column: 2;
  grid-row: 1;
  margin-left: auto;
  opacity: 0.5;
}
.section-footnote {
  text-align: center;
}
.worlds {
  background: #f3f7f9;
  border-top: 1px solid #e0e9eb;
  border-bottom: 1px solid #e0e9eb;
}
.worlds .eyebrow {
  color: #376874;
}
.worlds .section-heading {
  max-width: 835px;
}
.world-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.world-gallery figure {
  min-width: 0;
}
.world-gallery .artwork {
  border: 2px solid var(--ink);
  border-radius: 5px;
  box-shadow: 4px 4px 0 #d0dfe3;
  width: 100%;
}
.world-gallery .artwork > img {
  height: auto;
  width: 100%;
  object-fit: contain;
}
.world-gallery figcaption {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 20px;
  font-size: 14px;
  font-weight: 900;
}
.worlds-showcase .world-gallery {
  gap: 24px;
}
.worlds-showcase .world-gallery .artwork {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c4eafa;
}
.worlds-showcase .world-gallery .artwork > img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.worlds-showcase .world-gallery figcaption {
  padding-top: 10px;
  justify-content: center;
  text-align: center;
  font-size: 13px;
}
.world-index {
  font-size: 11px;
  color: #6b8592;
}
.visit-loop {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid #dbe2e6;
}
.visit-loop > div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
}
.visit-loop .icon {
  width: 18px;
  height: 18px;
}
.pets {
  background: #f7f8f2;
}
.pets .eyebrow {
  color: #56713b;
}
.pet-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.pet-layout h2 {
  max-width: 510px;
}
.pet-layout .section-lede {
  max-width: 570px;
}
.pet-tags {
  display: flex;
  gap: 24px;
  margin-top: 27px;
}
.pet-tags span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
}
.pet-tags .icon {
  width: 18px;
  height: 18px;
}
.evolution-art {
  margin-top: 25px;
}
.evolution-art > img {
  mix-blend-mode: multiply;
  width: 100%;
  height: auto;
}
.evolution-art figcaption {
  margin-top: 7px;
  font-size: 10px;
}
.battle-art .artwork {
  border: 2px solid var(--ink);
  border-radius: 5px;
  box-shadow: 7px 7px 0 #d6dfcf;
}
.battle-art figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 900;
}
.battle-art figcaption .icon {
  width: 16px;
  height: 16px;
}
.story-collection {
  padding-top: 38px;
  margin-top: 38px;
  border-top: 1px solid #d4cbe8;
  scroll-margin-top: 100px;
}
.adventure .story-collection {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}
.story-collection > .section-heading h3 {
  font-size: 32px;
  margin: 12px auto 0;
  text-wrap: balance;
}
.story-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 60px) / 4);
  gap: 20px;
  min-width: 0;
  padding: 6px 5px 18px 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #b3a5df #ebe5f6;
}
.story-item {
  display: grid;
  grid-template-rows: 24px minmax(0, 1fr) 48px;
  align-items: start;
  height: 408px;
  scroll-snap-align: start;
  padding: 8px;
  border: 2px solid var(--ink);
  border-radius: 5px;
  box-shadow: 5px 5px 0 #cec7e2;
  background: #fff;
  min-width: 0;
  margin: 0 0 5px;
}
.story-tag {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 900;
  margin: 1px 0 9px;
  color: #6e5b89;
}
.story-tag .icon {
  width: 14px;
  height: 14px;
}
.story-tag span {
  margin-left: auto;
}
.story-item .artwork {
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background: #f4f0fa;
}
.story-item .artwork > img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.story-item figcaption {
  font-size: 13px;
  font-weight: 900;
  padding: 11px 3px 5px;
  text-wrap: balance;
}
.story-experiences {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 28px;
  padding-top: 0;
  margin-top: 0;
}
.story-paths {
  position: relative;
  height: 92px;
  margin-top: 34px;
}
.story-paths::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 29px;
  background: #000;
}
.story-paths::after {
  content: "";
  position: absolute;
  left: calc(100% / 6);
  right: calc(100% / 6);
  top: 28px;
  height: 2px;
  background: #000;
}
.story-paths > span {
  position: absolute;
  top: 28px;
  width: 2px;
  height: 42px;
  background: #000;
}
.story-paths > span:nth-child(1) {
  left: calc(100% / 6 - 1px);
}
.story-paths > span:nth-child(2) {
  left: calc(50% - 1px);
}
.story-paths > span:nth-child(3) {
  left: calc(100% * 5 / 6 - 1px);
}
.story-paths > span::after {
  display: none;
}
.story-paths > span > .icon {
  position: absolute;
  left: 50%;
  top: 37px;
  width: 24px;
  height: 24px;
  max-width: none;
  transform: translateX(-50%);
}
.story-experience {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.product-original.artwork {
  width: min(310px, 100%);
  margin: 0 auto;
  border-radius: 0;
}
.product-original.artwork > img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.experience-heading {
  text-align: center;
  max-width: 480px;
  min-height: 153px;
  margin: 0 auto 22px;
}
.experience-heading h3 {
  font-size: 26px;
  margin: 10px 0;
}
.experience-heading > p:last-child {
  color: var(--muted);
  font-size: 14px;
}
.product-window {
  width: 100%;
  max-width: 475px;
  margin: 0 auto;
  border: 2px solid var(--ink);
  border-radius: 5px;
  background: #fff;
  box-shadow: 5px 5px 0 #cdc5df;
  overflow: hidden;
  flex: 1;
}
.main-story-window {
  background: #faf1e3;
}
.reference-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 8px 16px;
  border-bottom: 2px solid var(--ink);
  background: #e2dbfa;
  font-size: 13px;
}
.reference-bar > span {
  margin-left: auto;
  font-size: 11px;
}
.reference-art.artwork {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 28px);
  height: 366px;
  margin: 14px auto 0;
  border-radius: 0;
}
.reference-art.artwork > img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}
.reference-content {
  padding: 17px 19px 20px;
}
.reference-content h4 {
  margin: 0 0 7px;
  font-size: 18px;
  font-weight: 900;
}
.reference-content > p {
  font-size: 13px;
  color: #65606a;
  min-height: 42px;
}
.cast-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 19px 0 9px;
  font-size: 12px;
}
.cast-heading .icon {
  width: 15px;
  height: 15px;
}
.story-cast {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}
.cast-member {
  position: relative;
  display: grid;
  grid-template-rows: 78px 29px;
  gap: 6px;
  min-width: 0;
  padding: 7px 4px 3px;
  border: 1px dashed #9b8791;
  border-radius: 3px;
  color: var(--ink);
  background: #fffbf4;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
}
.cast-member > img:not(.icon) {
  width: 100%;
  height: 78px;
  object-fit: contain;
}
.cast-member > .icon {
  position: absolute;
  right: 3px;
  top: 3px;
  width: 17px;
  height: 17px;
  background: #d5efbd;
  border-radius: 3px;
  padding: 2px;
  opacity: 0;
}
.cast-member[aria-pressed="true"] {
  border: 2px solid #7d65bc;
  padding: 6px 3px 2px;
  background: #ece5fa;
}
.cast-member[aria-pressed="true"] > .icon {
  opacity: 1;
}
.cast-member:hover {
  background: #e7dff4;
}
.post-avatar {
  width: 27px;
  height: 30px;
  object-fit: cover;
  border: 1px solid #d7cce7;
  border-radius: 3px;
}
.post-conversation {
  border-top: 1px solid #e0dbe7;
  margin-top: 17px;
  padding-top: 14px;
}
.post-comment {
  display: flex;
  align-items: start;
  gap: 9px;
  font-size: 13px;
}
.post-comment > div {
  flex: 1;
  min-width: 0;
}
.post-comment p {
  margin-top: 4px;
  line-height: 1.4;
}
.post-comment .icon {
  width: 13px;
  height: 13px;
  margin-top: 3px;
}
.post-reply {
  margin: 14px 0 0 33px;
}
.story-experience > .art-note {
  text-align: center;
  margin: 15px 0 0;
}
.community-invitation {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.community-invitation p {
  font-size: 16px;
  font-weight: 700;
  max-width: 470px;
}
.community-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid #d3cbe5;
  margin-top: 30px;
  padding-top: 29px;
}
.community-line p {
  font-weight: 900;
  font-size: 18px;
  max-width: 540px;
}
.community-line .button {
  flex-shrink: 0;
}
.final-cta {
  background: #ebe7ff;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid #d1c9e9;
  padding: 60px 0;
}
.cta-brand {
  width: 74px;
  margin: 0 auto 19px;
  transform: rotate(-7deg);
  border-radius: 17px;
  box-shadow: 5px 5px 0 #c7bfea;
}
.cta-brand img {
  border-radius: 17px;
}
.final-cta h2 {
  font-size: 43px;
  margin: 10px 0 16px;
}
.final-cta .section-lede {
  max-width: 590px;
  font-size: 16px;
}
.final-cta .actions {
  margin-top: 27px;
}
.final-cta .fine-print {
  margin-top: 20px;
}
.site-footer {
  background: #fff;
  padding: 30px 0 22px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 32px;
}
.footer-top > nav:not(.social-links) {
  margin: auto;
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: 12px;
  font-weight: 700;
}
.footer-top nav a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-top .brand .wordmark {
  width: 100px;
}
.footer-top .brand > img:first-child {
  width: 32px;
  height: 32px;
}
.footer-top .icon {
  width: 14px;
  height: 14px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #eceaf1;
  margin-top: 25px;
  padding-top: 18px;
  font-size: 10px;
  color: #767380;
}
.footer-bottom p:last-child {
  max-width: 400px;
  text-align: right;
}
dialog {
  padding: 0;
  color: var(--ink);
  font-family: var(--font);
}
dialog::backdrop {
  background: #15192c88;
  backdrop-filter: blur(5px);
}
.pixel-window {
  width: min(480px, calc(100% - 32px));
  border: 2px solid var(--ink);
  border-radius: 5px;
  box-shadow: 7px 7px 0 #19142d;
  max-height: calc(100svh - 40px);
  overflow: auto;
  background: #fbfaff;
}
.window-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  padding: 0 7px 0 18px;
  background: #a69af5;
  border-bottom: 2px solid var(--ink);
  font-size: 12px;
  font-weight: 900;
}
.window-bar .icon-button {
  width: 32px;
  height: 32px;
}
.waitlist-content {
  padding: 30px;
}
.dialog-mascot {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  margin-bottom: 20px;
}
.waitlist-content h2 {
  font-size: 30px;
  line-height: 1.2;
}
.waitlist-content p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}
.waitlist-content form {
  margin-top: 23px;
}
.waitlist-content form > label {
  font-size: 12px;
  font-weight: 900;
  display: block;
}
.waitlist-content input[type="email"] {
  width: 100%;
  min-height: 48px;
  border: 2px solid #b6acca;
  background: #fff;
  border-radius: 4px;
  padding: 11px 13px;
  margin-top: 7px;
  outline-offset: 2px;
}
.waitlist-content input[type="email"]:focus {
  border-color: var(--purple);
}
.waitlist-content .consent {
  display: flex;
  gap: 10px;
  align-items: start;
  font-weight: 400;
  font-size: 12px;
  margin-top: 17px;
  line-height: 1.5;
}
.consent input {
  margin: 3px 0 0;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--purple);
}
.privacy-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  margin: 9px 0 22px 26px;
  text-decoration: underline;
}
.privacy-link .icon {
  width: 13px;
  height: 13px;
}
.waitlist-content form > .button {
  width: 100%;
}
.waitlist-content p.form-status {
  color: #a33431;
  min-height: 22px;
  margin-top: 11px;
  font-size: 12px;
}
.waitlist-content p.fine-print {
  font-size: 10px;
  margin-top: 4px;
}
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.waitlist-success {
  text-align: center;
  padding: 12px 0 22px;
  outline: none;
}
.success-mark {
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  background: #e2efd9;
  border: 2px solid #49744d;
  border-radius: 8px;
  margin: 0 auto 24px;
}
.success-mark .icon {
  width: 32px;
  height: 32px;
}
.waitlist-success .button {
  margin-top: 28px;
}
.lightbox {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 5px;
  box-shadow: 6px 6px 0 #1c1539;
  max-width: calc(100vw - 40px);
  max-height: calc(100svh - 40px);
  overflow: auto;
}
.lightbox figure {
  padding: 40px 20px 15px;
}
.lightbox-image {
  max-height: calc(100svh - 150px);
  max-width: min(1060px, calc(100vw - 84px));
  width: auto;
  height: auto;
  object-fit: contain;
  margin: auto;
}
.lightbox figcaption {
  text-align: center;
  font-size: 13px;
  margin-top: 12px;
}
.lightbox-close {
  position: absolute;
  top: 3px;
  right: 3px;
  background: #fff;
  z-index: 1;
}
.modal-open {
  overflow: hidden;
}
.comic-intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 35px 24px;
  overflow: auto;
}
.comic-intro-bg {
  position: fixed;
  inset: 0;
  background: #15192ca6;
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.4s;
}
.comic-intro-panel {
  position: relative;
  flex-shrink: 0;
  width: min(940px, 100%);
  background: #faf9ff;
  border: 2px solid var(--ink);
  border-radius: 6px;
  box-shadow: 8px 8px 0 #1d1637;
  transform: translateY(calc(-100% - 100px));
  transition: transform 0.9s cubic-bezier(0.22, 0.78, 0.2, 1);
  padding: 0;
  max-height: calc(100svh - 70px);
  overflow: auto;
}
.intro-window-content {
  padding: 24px 40px 30px;
}
.intro-ready .comic-intro {
  visibility: visible;
  pointer-events: auto;
}
.intro-open {
  overflow: hidden;
}
.intro-open .comic-intro-panel {
  transform: translateY(0);
}
.intro-open .comic-intro-bg {
  opacity: 1;
}
.intro-window-bar {
  position: sticky;
  z-index: 3;
  left: 0;
  right: 0;
  top: 0;
  height: 41px;
  background: #a69af5;
  border-bottom: 2px solid var(--ink);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
}
.intro-window-bar span {
  width: 7px;
  height: 7px;
  border: 1px solid var(--ink);
  background: #d8d0ff;
}
.intro-close {
  position: absolute;
  right: 9px;
  top: 5px;
  width: 30px;
  height: 30px;
  border: 0;
  background: none;
  display: grid;
  place-items: center;
}
.intro-close:hover {
  background: #cec6ff;
}
.intro-language-switcher {
  position: absolute;
  top: 7px;
  right: 58px;
  display: flex;
  gap: 3px;
}
.intro-language-switcher button {
  font-size: 10px;
  padding: 4px 7px;
  border: 0;
  background: transparent;
  font-weight: 900;
}
.intro-language-switcher button.is-active {
  background: #e7e2ff;
}
.intro-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}
.intro-brand img:first-child {
  width: 32px;
  height: 32px;
  border-radius: 7px;
}
.intro-brand img:last-child {
  width: 105px;
  height: auto;
}
.intro-copy {
  text-align: center;
}
.intro-copy .intro-brand {
  justify-content: center;
}
.intro-copy h2 {
  font-size: 30px;
  margin: 7px 0 10px;
}
.intro-copy > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
}
.comic-uploader {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin-top: 27px;
}
.code-entry {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px 15px;
  grid-column: 1;
}
.code-copy .code-kicker {
  font-size: 9px;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 900;
}
.code-copy label {
  display: block;
  font-size: 18px;
  font-weight: 900;
}
.code-copy p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.code-field input {
  width: 122px;
  min-height: 47px;
  border: 2px solid #9f92bd;
  border-radius: 4px;
  background: #fff;
  text-align: center;
  font-size: 21px;
  font-weight: 900;
  text-transform: uppercase;
}
.code-status {
  grid-column: 1/-1;
  min-height: 20px;
  font-size: 11px;
  line-height: 1.4;
  color: #a13b31;
}
.code-status.unused,
.code-status.completed {
  color: #326044;
}
.upload-drop {
  position: relative;
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  min-height: 156px;
  border: 2px dashed #a69ac8;
  background: #f0ecff;
  border-radius: 5px;
  text-align: center;
  padding: 18px;
  cursor: pointer;
}
.upload-drop:hover {
  background: #e8e0ff;
}
.upload-drop:focus-within {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
}
.upload-drop input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.upload-icon > .icon {
  width: 30px;
  height: 30px;
}
.upload-kicker {
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--purple);
}
.upload-drop strong {
  font-size: 14px;
}
.upload-drop small {
  font-size: 10px;
  color: var(--muted);
}
.comic-preview {
  grid-column: 2;
  grid-row: 1/4;
  min-height: 280px;
  border: 1px solid #d7cfe9;
  background: #eeebf8;
  border-radius: 5px;
  display: grid;
  place-items: center;
  position: relative;
  padding: 10px;
  overflow: hidden;
}
.comic-preview [data-preview-empty] {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  max-width: 200px;
}
.comic-preview img {
  display: none;
  max-height: 360px;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.comic-preview.has-image img {
  display: block;
}
.upload-actions {
  grid-column: 1;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.upload-actions .button {
  flex: 1;
  font-size: 13px;
}
.upload-status {
  grid-column: 1/-1;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  min-height: 20px;
}
.intro-copy .eyebrow {
  font-size: 11px;
}
.policy-main {
  max-width: 1000px;
  margin: auto;
  padding: 70px 32px;
}
.policy-hero-grid {
  display: grid;
  grid-template-columns: 1fr 150px;
  align-items: center;
  gap: 50px;
}
.policy-hero h1 {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.2;
  margin: 12px 0 20px;
}
.policy-hero p:not(.eyebrow) {
  font-size: 17px;
  color: var(--muted);
}
.policy-art img {
  width: 136px;
  height: 136px;
  object-fit: contain;
}
.policy-art {
  margin: 0;
}
.policy-content {
  padding: 45px 0 0;
}
.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}
.policy-grid article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.policy-grid h2 {
  font-size: 22px;
}
.policy-grid p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 12px;
}
.policy-page .social-banner,
.policy-page > .site-header {
  display: none;
}
.policy-page .policy-content h2 + p {
  margin-top: 14px;
}
.policy-page .site-footer {
  padding-inline: 30px;
  font-size: 12px;
  border-top: 1px solid var(--line);
}
.brand.brand-combined .wordmark {
  width: 155px;
  height: auto;
  border-radius: 0;
}
.intro-brand img:last-child {
  width: 155px;
  height: auto;
  border-radius: 0;
}
.footer-top .brand.brand-combined .wordmark {
  width: 140px;
  height: auto;
  border-radius: 0;
}
.policy-page > .site-header {
  display: block;
}
.policy-return {
  margin-left: auto;
}
.policy-return .icon {
  transform: rotate(180deg);
}
.policy-contact {
  padding-top: 40px;
}
.policy-contact h2 {
  font-size: 25px;
}
.policy-contact p {
  margin-top: 15px;
  color: var(--muted);
}
@media (min-width: 1650px) {
  .hero-copy {
    padding-top: 37px;
  }
  .hero {
    max-height: 1000px;
  }
  .hero-art img {
    object-position: center bottom;
  }
}
@media (max-width: 1150px) {
  .main-nav {
    gap: 16px;
    font-size: 12px;
  }
  .header-inner {
    gap: 15px;
  }
  .header-actions {
    gap: 8px;
  }
  .brand .wordmark {
    width: 93px;
  }
  .header-waitlist {
    max-width: 185px;
  }
  .section {
    padding: 68px 0;
  }
  h2 {
    font-size: 36px;
  }
  .split-layout {
    gap: 55px;
  }
  .character-stage {
    grid-template-columns: 170px 45px 170px 190px;
    gap: 24px;
  }
  .character-frame > img {
    height: 149px;
  }
  .character-thought > p {
    font-size: 21px;
  }
  .build-layout {
    gap: 45px;
  }
  .pet-layout {
    gap: 40px;
  }
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-top > nav:not(.social-links) {
    margin-left: auto;
    margin-right: 0;
  }
  .footer-top > .social-links {
    margin-left: auto;
  }
  .footer-bottom {
    align-items: start;
  }
  .career-copy h3 {
    font-size: 23px;
  }
  .hero h1 {
    width: 250px;
  }
}
@media (max-width: 980px) {
  .build-world-connector::before {
    right: calc(25% - 5px);
  }
  .hero {
    background: #a8e9fc;
  }
  .hero-art {
    inset: 260px 0 0;
  }
  .hero-art img {
    object-fit: cover;
    object-position: center top;
  }
  .creation-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .story-gallery {
    grid-auto-columns: calc((100% - 40px) / 3);
  }
  .story-experiences {
    gap: 32px 25px;
  }
  .experience-heading {
    min-height: 173px;
  }
  .reference-art.artwork {
    height: 290px;
  }
  .story-share {
    gap: 35px;
  }
  .community-copy h3 {
    font-size: 30px;
  }
  .sharing-steps {
    gap: 10px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 2px solid var(--ink);
    padding: 16px 30px;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    font-size: 14px;
  }
  .main-nav.is-open {
    display: grid;
  }
  .main-nav a {
    padding: 10px;
  }
  .menu-button {
    display: flex;
  }
  .header-actions {
    margin-left: auto;
  }
  .header-waitlist {
    max-width: none;
  }
  .character-stage {
    grid-template-columns: 170px 35px 170px;
    gap: 27px;
  }
  .character-thought {
    display: none;
  }
  .career-panel {
    gap: 32px;
  }
  .adventure-visual {
    padding-left: 35px;
  }
  .chapter-card {
    width: 235px;
    left: -30px;
  }
  .adventure-map {
    width: 290px;
  }
  .quest-list {
    gap: 16px;
  }
  .build-world {
    height: 470px;
  }
  .world-gallery {
    gap: 17px;
  }
  .world-gallery figcaption {
    font-size: 12px;
  }
  .visit-loop {
    gap: 23px;
  }
  .visit-loop > div {
    font-size: 11px;
  }
  .pet-layout {
    gap: 30px;
    grid-template-columns: 1.2fr 1fr;
  }
  .pet-tags {
    gap: 17px;
  }
  .story-gallery {
    gap: 20px;
  }
  .community-line p {
    font-size: 16px;
  }
  .footer-top > .social-links {
    margin-left: 0;
  }
  .footer-top {
    gap: 24px;
  }
}
@media (max-width: 700px) {
  .career-future {
    gap: 18px;
    align-items: start;
  }
  .future-symbols {
    flex-direction: column;
    gap: 6px;
  }
  .future-symbols .icon {
    width: 34px;
    height: 34px;
    padding: 7px;
  }
  .career-future h3 {
    font-size: 19px;
  }
  .career-future p:last-child {
    font-size: 13px;
  }
  .creation-steps {
    gap: 27px 16px;
    margin-top: 0;
  }
  .build-world-connector::before {
    right: calc(25% - 4px);
  }
  .step-roles {
    padding: 6px;
    gap: 4px 7px;
  }
  .step-roles figure {
    grid-template-rows: minmax(0, 1fr) 20px;
    gap: 2px;
  }
  .step-roles figcaption {
    font-size: 8px;
  }
  .compact-future {
    align-items: start;
  }
  .compact-future p {
    display: grid;
    gap: 5px;
  }
  .story-experiences {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 30px;
    margin-top: 30px;
  }
  .story-paths {
    display: none;
  }
  .story-experience {
    position: relative;
    padding-top: 35px;
  }
  .story-experience::before {
    content: "";
    position: absolute;
    left: calc(50% - 1px);
    top: 0;
    width: 2px;
    height: 22px;
    background: #000;
  }
  .story-experience::after {
    content: "";
    position: absolute;
    left: calc(50% - 12px);
    top: 17px;
    width: 24px;
    height: 24px;
    background: url("/assets/icons/arrow-down.svg") center / contain no-repeat;
  }
  .experience-heading {
    min-height: 0;
    margin-bottom: 19px;
  }
  .experience-heading h3 {
    font-size: 25px;
  }
  .reference-art.artwork {
    height: auto;
  }
  .reference-art.artwork > img {
    width: 100%;
    max-height: none;
  }
  .reference-content {
    padding: 15px;
  }
  .reference-content > p {
    min-height: 0;
  }
  .reference-bar {
    padding: 8px 12px;
    font-size: 12px;
  }
  .reference-bar > span {
    font-size: 10px;
    max-width: 45%;
  }
  .cast-member {
    font-size: 10px;
  }
  .community-invitation {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .community-invitation p {
    font-size: 15px;
  }
  .story-collection {
    padding-top: 36px;
    margin-top: 34px;
  }
  .story-collection > .section-heading h3 {
    font-size: 25px;
  }
  .step-number {
    font-size: 24px;
  }
  .step-top {
    gap: 9px;
    margin-bottom: 10px;
  }
  .step-art {
    margin-bottom: 13px;
  }
  .step-cast {
    padding: 8px 6px;
    gap: 4px;
  }
  .step-cast img:nth-child(2) {
    transform: translateY(-7px);
  }
  .creation-steps h3 {
    font-size: 16px;
  }
  .creation-steps p {
    font-size: 12px;
  }
  .craft-recipe {
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
    text-align: center;
  }
  .craft-recipe p {
    font-size: 13px;
    max-width: 290px;
  }
  .build-possibilities {
    padding-top: 33px;
  }
  .build-possibilities h3 {
    font-size: 24px;
  }
  .creation-gallery {
    grid-template-columns: 1fr;
    gap: 23px;
    max-width: 420px;
    margin: auto;
  }
  .creation-gallery .artwork > img {
    aspect-ratio: auto;
  }
  .creation-gallery figcaption {
    margin-top: 10px;
    font-size: 14px;
  }
  .collection-toolbar {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .story-filters {
    width: 100%;
    justify-content: space-between;
    gap: 2px;
  }
  .story-filters button {
    padding: 8px 6px;
    font-size: 11px;
  }
  .story-count {
    text-align: left;
    font-size: 11px;
  }
  .story-share {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 32px;
    margin-top: 15px;
  }
  .community-copy {
    grid-row: 1;
    text-align: center;
  }
  .community-copy h3 {
    margin-inline: auto;
    font-size: 30px;
  }
  .community-copy .section-lede {
    font-size: 14px;
  }
  .sharing-steps {
    text-align: left;
    margin: 24px 0;
  }
  .sharing-steps li > span {
    font-size: 11px;
  }
  .community-preview {
    max-width: 275px;
  }
  :root {
    scroll-padding-top: 78px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .section {
    padding: 53px 0;
  }
  h2 {
    font-size: 31px;
  }
  h3 {
    font-size: 22px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .section-heading h2 {
    margin: 10px 0 15px;
  }
  .section-lede {
    font-size: 16px;
    line-height: 1.6;
  }
  .eyebrow {
    font-size: 10px;
  }
  .header-inner {
    width: calc(100% - 28px);
    min-height: 56px;
    gap: 8px;
  }
  .brand {
    gap: 7px;
  }
  .brand > img:first-child {
    width: 32px;
    height: 32px;
  }
  .brand .wordmark {
    width: 86px;
  }
  .site-header .brand.brand-combined .wordmark {
    width: 120px;
    height: auto;
  }
  .header-actions {
    gap: 5px;
  }
  .site-header .social-links {
    gap: 3px;
  }
  .site-header .social-links a {
    width: 16px;
    height: 16px;
  }
  .site-header .social-links svg {
    width: 8px;
    height: 8px;
  }
  .language-trigger {
    width: 46px;
    height: 32px;
  }
  .policy-page .header-inner {
    padding: 8px 0;
    flex-wrap: wrap;
  }
  .policy-page .header-actions {
    width: 100%;
    flex-basis: 100%;
    justify-content: center;
    order: 2;
  }
  .menu-button {
    width: 35px;
  }
  .main-nav {
    grid-template-columns: 1fr 1fr;
    padding: 15px 20px;
  }
  .hero {
    min-height: 590px;
    height: calc(100svh - 150px);
    max-height: 770px;
  }
  .hero-copy {
    padding: 18px 18px 0;
    max-width: 450px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .hero h1 {
    width: 205px;
    margin: 8px auto 9px;
  }
  .hero-title {
    font-size: 23px;
    max-width: 340px;
    margin: auto;
  }
  .hero-body {
    font-size: 13px;
    margin: 8px auto 12px;
    max-width: 315px;
  }
  .hero .actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    max-width: 360px;
    margin-inline: auto;
  }
  .hero .button {
    font-size: 12px;
    padding: 10px 13px;
    min-height: 44px;
    gap: 7px;
  }
  .hero .button .icon,
  .hero .button svg {
    width: 16px;
    height: 16px;
  }
  .hero .button > .icon:last-child {
    display: none;
  }
  .hero-art {
    inset: 250px 0 0;
  }
  .platform-note {
    font-size: 10px;
    margin-top: 9px;
  }
  .hero-art img {
    object-fit: cover;
    object-position: center top;
  }
  .hero-phone {
    margin: 13px auto 24px;
  }
  .phone-device {
    border-width: 5px;
    border-radius: 22px;
  }
  .phone-screen {
    border-radius: 17px;
  }
  .phone-notch {
    height: 10px;
  }
  .hero-phone figcaption {
    font-size: 9px;
    margin-top: 6px;
  }
  .hero-scroll {
    bottom: 16px;
    width: 34px;
    height: 34px;
    right: 16px;
  }
  .world-intro {
    padding: 38px 0;
  }
  .world-intro h2 {
    font-size: 26px;
  }
  .world-intro .section-lede {
    font-size: 15px;
  }
  .promise-row {
    gap: 15px;
    display: grid;
    justify-content: start;
    width: fit-content;
    margin: auto;
  }
  .promise-row p {
    font-size: 12px;
  }
  .characters .section-heading {
    max-width: 470px;
  }
  .character-stage {
    grid-template-columns: minmax(0, 145px) 26px minmax(0, 145px);
    gap: 14px;
    padding: 7px 3px 0;
  }
  .photo-frame,
  .character-frame {
    padding: 6px;
    box-shadow: 3px 3px 0 #dcd6ef;
  }
  .character-frame > img {
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
  }
  .photo-frame figcaption,
  .character-frame figcaption {
    font-size: 10px;
    gap: 4px;
  }
  .photo-frame figcaption .icon,
  .character-frame figcaption .icon {
    width: 12px;
    height: 12px;
  }
  .transform-arrow .icon:last-child {
    width: 27px;
    height: 27px;
  }
  .transform-arrow .icon:first-child {
    width: 18px;
    height: 18px;
  }
  .characters > .container > .art-note {
    font-size: 10px;
    margin-top: 20px;
  }
  .life-heading {
    margin: 0 auto 20px;
  }
  .life-heading h3 {
    font-size: 24px;
  }
  .life-heading p {
    font-size: 14px;
  }
  .career-tabs {
    margin-bottom: 21px;
  }
  .career-tabs button {
    font-size: 10px;
    flex-direction: column;
    gap: 5px;
    padding: 9px 3px;
    min-height: 65px;
    line-height: 1.25;
  }
  .career-tabs .icon {
    width: 19px;
    height: 19px;
  }
  .career-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .career-panels {
    min-height: 480px;
  }
  .career-copy {
    padding: 0 4px;
  }
  .career-copy h3 {
    font-size: 24px;
    max-width: 260px;
  }
  .career-copy p {
    font-size: 14px;
  }
  .role-portrait {
    height: 80px;
    width: 65px;
  }
  .career-copy .text-link {
    margin-top: 17px;
    font-size: 13px;
  }
  .split-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .quest-list {
    gap: 18px;
  }
  .quest-list h3 {
    font-size: 17px;
  }
  .quest-list p {
    font-size: 14px;
  }
  .adventure-visual {
    width: min(400px, 100%);
    margin: auto;
    padding: 0 6px 26px 65px;
  }
  .adventure-map {
    width: 265px;
    max-height: 430px;
  }
  .chapter-card {
    left: 2px;
    bottom: 13px;
    width: 215px;
    padding: 6px;
  }
  .chapter-card figcaption {
    font-size: 10px;
  }
  .build-layout {
    grid-template-columns: 1fr 1fr;
    gap: 19px;
    align-items: center;
  }
  .forge-shot {
    box-shadow: 3px 3px 0 #e1d9cc;
  }
  .build-world {
    height: 320px;
    box-shadow: 3px 3px 0 #d7e5d0;
  }
  .build-world .artwork > img {
    object-position: 50% 43%;
  }
  .world-label {
    font-size: 10px;
    gap: 6px;
    bottom: 8px;
    left: 7px;
    right: 7px;
    padding: 8px;
  }
  .world-label .icon {
    width: 15px;
    height: 15px;
  }
  .craft-equation {
    gap: 5px;
    margin-top: 14px;
  }
  .craft-equation > img:not(.icon) {
    width: 30px;
    height: 30px;
    border-width: 1px;
  }
  .craft-equation > img:last-child {
    width: 34px;
    height: 34px;
  }
  .craft-equation > .icon {
    width: 11px;
    height: 11px;
  }
  .build-steps {
    gap: 10px;
    justify-content: space-between;
    margin-top: 29px;
  }
  .build-steps li {
    flex-direction: column;
    font-size: 11px;
    gap: 7px;
    text-align: center;
    flex: 1;
  }
  .section-footnote {
    font-size: 11px;
    max-width: 280px;
    margin: auto;
  }
  .world-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
    max-width: 450px;
    margin: auto;
  }
  .world-gallery .artwork > img {
    aspect-ratio: auto;
  }
  .world-gallery figcaption {
    font-size: 14px;
    padding-top: 13px;
  }
  .worlds-showcase .world-gallery {
    gap: 21px 14px;
    max-width: none;
  }
  .worlds-showcase .world-gallery figcaption {
    font-size: 11px;
    line-height: 1.35;
  }
  .visit-loop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
    margin-top: 28px;
    padding-top: 23px;
  }
  .visit-loop > div {
    font-size: 11px;
    gap: 8px;
  }
  .pet-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pet-tags {
    gap: 23px;
  }
  .pets .section-copy h2 {
    max-width: 330px;
  }
  .pet-tags span {
    font-size: 12px;
  }
  .evolution-art {
    margin-top: 22px;
  }
  .battle-art {
    max-width: 400px;
    margin: auto;
    width: 100%;
  }
  .battle-art .artwork > img {
    width: 100%;
    height: auto;
  }
  .story-gallery {
    grid-auto-columns: calc((100% - 15px) / 2);
    gap: 15px;
    padding: 2px 4px 12px 0;
  }
  .story-item {
    height: 330px;
    grid-template-rows: 23px minmax(0, 1fr) 50px;
  }
  .story-rail-controls {
    margin-left: auto;
  }
  .collection-toolbar {
    flex-wrap: wrap;
    gap: 12px;
  }
  .story-count {
    margin-left: 0;
  }
  .story-tag {
    font-size: 8px;
    gap: 4px;
  }
  .story-item figcaption {
    font-size: 12px;
  }
  .story-item {
    padding: 5px;
    box-shadow: 3px 3px 0 #cec7e2;
    margin-bottom: 15px;
  }
  .story-tag .icon {
    display: none;
  }
  .community-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    margin-top: 25px;
    padding-top: 24px;
  }
  .community-line p {
    font-size: 17px;
    max-width: 350px;
  }
  .final-cta {
    padding: 45px 0;
  }
  .final-cta h2 {
    font-size: 33px;
  }
  .final-cta .section-lede {
    font-size: 15px;
  }
  .final-cta .actions {
    gap: 12px;
  }
  .final-cta .button {
    font-size: 12px;
    padding: 10px 13px;
  }
  .final-cta .button .icon,
  .final-cta .button svg {
    width: 16px;
    height: 16px;
  }
  .cta-brand {
    width: 62px;
    border-radius: 14px;
  }
  .cta-brand img {
    border-radius: 14px;
  }
  .fine-print {
    font-size: 11px;
  }
  .footer-top {
    justify-content: space-between;
    gap: 22px;
  }
  .footer-top > nav:not(.social-links) {
    order: 3;
    flex-basis: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 11px;
  }
  .footer-top .brand .wordmark {
    width: 85px;
  }
  .footer-top > .social-links {
    margin-left: auto;
  }
  .footer-bottom {
    display: block;
    font-size: 9px;
    line-height: 1.6;
  }
  .footer-bottom p:last-child {
    text-align: left;
    margin-top: 8px;
  }
  .waitlist-content {
    padding: 25px 23px;
  }
  .waitlist-content h2 {
    font-size: 27px;
  }
  .lightbox figure {
    padding: 40px 12px 14px;
  }
  .lightbox-image {
    max-width: calc(100vw - 68px);
  }
  .lightbox figcaption {
    font-size: 12px;
  }
  .comic-intro {
    padding: 12px;
  }
  .comic-intro-panel {
    padding: 0;
    max-height: calc(100svh - 24px);
    box-shadow: 4px 4px 0 #1d1637;
  }
  .intro-window-content {
    padding: 18px 19px 20px;
  }
  .intro-copy h2 {
    font-size: 24px;
  }
  .intro-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .intro-brand {
    margin-bottom: 12px;
  }
  .comic-uploader {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 21px;
  }
  .code-entry {
    grid-column: 1;
    grid-row: auto;
  }
  .comic-preview {
    grid-column: 1;
    grid-row: auto;
    min-height: 180px;
    max-height: 330px;
  }
  .comic-preview img {
    max-height: 307px;
    max-width: 100%;
  }
  .upload-drop {
    min-height: 120px;
    grid-row: 2;
  }
  .upload-actions {
    grid-row: 4;
  }
  .upload-status {
    grid-row: 5;
  }
  .code-copy label {
    font-size: 17px;
  }
  .code-field input {
    min-height: 45px;
    width: 115px;
  }
  .intro-language-switcher {
    right: 51px;
  }
  .intro-window-bar {
    padding-left: 12px;
  }
  .intro-copy .eyebrow {
    font-size: 10px;
  }
  .policy-main {
    padding: 45px 22px;
  }
  .policy-hero-grid {
    grid-template-columns: 1fr;
  }
  .policy-art {
    display: none;
  }
  .policy-hero h1 {
    font-size: 36px;
  }
  .policy-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 370px) {
  .hero {
    min-height: 545px;
  }
  .container {
    width: calc(100% - 32px);
  }
  .hero .button {
    font-size: 11px;
    padding: 10px 11px;
  }
  .hero h1 {
    width: 185px;
  }
  .hero-title {
    font-size: 21px;
  }
  .hero-body {
    font-size: 13px;
  }
  .hero-copy {
    padding-top: 15px;
  }
  .character-stage {
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) 22px minmax(0, 1fr);
  }
  .build-layout {
    gap: 13px;
  }
  .build-world {
    height: 290px;
  }
  .final-cta .button {
    font-size: 11px;
    padding: 11px;
  }
  .header-inner {
    width: calc(100% - 22px);
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
.section-flow-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  color: #000;
  overflow: hidden;
}
.section-flow-lines > path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#main {
  position: relative;
}
#pets .battle-art {
  width: min(350px, 100%);
  margin: auto;
}
#pets .battle-art .artwork > img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.island-stories {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.island-story.artwork {
  position: absolute;
  width: 135px;
  height: 180px;
  padding: 5px;
  background: #fff;
  border: 2px solid #29243f;
  border-radius: 5px;
  box-shadow: 4px 5px 0 #29243f38;
  pointer-events: auto;
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  animation: hero-story-card 18s infinite both;
  animation-delay: var(--encounter-delay);
}
.island-story.artwork::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  bottom: -8px;
  left: 24px;
  background: #fff;
  border-right: 2px solid #29243f;
  border-bottom: 2px solid #29243f;
  transform: rotate(45deg);
}
.island-story.artwork > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f5f2ff;
}
.island-story .zoom-cue {
  display: none;
}
.island-story-1 {
  --encounter-delay: 0s;
  --card-rotation: -7deg;
  left: 13%;
  top: 18%;
}
.island-story-2 {
  --encounter-delay: 6s;
  --card-rotation: 7deg;
  right: 18%;
  top: 32%;
}
.island-story-3 {
  --encounter-delay: 12s;
  --card-rotation: -5deg;
  right: 26%;
  top: 64%;
}
.hero-encounters {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-encounter {
  position: absolute;
  width: 104px;
  height: 70px;
  opacity: 0;
  animation: hero-encounter-stage 18s infinite both;
  animation-delay: var(--encounter-delay);
}
.hero-encounter-1 {
  --encounter-delay: 0s;
  left: 28%;
  top: 28%;
}
.hero-encounter-2 {
  --encounter-delay: 6s;
  right: 9%;
  top: 44%;
}
.hero-encounter-3 {
  --encounter-delay: 12s;
  right: 24%;
  top: 72%;
}
.hero-actor {
  position: absolute;
  bottom: 0;
  width: 42px;
  height: 56px;
  background-image: url("/assets/site/hero-actor-strip-pixel-v2.webp");
  background-repeat: no-repeat;
  background-size: 400% 100%;
  image-rendering: pixelated;
  filter: drop-shadow(0 2px 0 #29243f80);
}
.actor-farmer {
  background-position: 0 0;
}
.actor-chef {
  background-position: 33.333% 0;
}
.actor-engineer {
  background-position: 66.666% 0;
}
.actor-explorer {
  background-position: 100% 0;
}
.actor-npc {
  right: 0;
}
.actor-traveler {
  left: 0;
  animation: hero-traveler-walk 18s infinite both;
  animation-delay: var(--encounter-delay);
}
.encounter-spark {
  position: absolute;
  left: 3px;
  bottom: 18px;
  width: 30px;
  height: 30px;
  background: url("/assets/icons/sparkles.svg") center / contain no-repeat;
  filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 7px #8175ef);
  animation: hero-arrival-spark 18s infinite both;
  animation-delay: var(--encounter-delay);
}
@keyframes hero-encounter-stage {
  0%,
  33%,
  100% {
    opacity: 0;
  }
  3%,
  31% {
    opacity: 1;
  }
}
@keyframes hero-traveler-walk {
  0% {
    opacity: 0;
    transform: translateX(-18px) scale(0.35);
  }
  4% {
    opacity: 1;
    transform: translateX(-18px) scale(1.16);
  }
  8% {
    transform: translateX(-18px) scale(1);
  }
  12% {
    transform: translate(-10px, -2px);
  }
  16% {
    transform: translate(0, 1px);
  }
  20% {
    transform: translate(10px, -2px);
  }
  24%,
  31% {
    opacity: 1;
    transform: translate(20px, 0);
  }
  33%,
  100% {
    opacity: 0;
    transform: translate(20px, 0);
  }
}
@keyframes hero-arrival-spark {
  0%,
  1% {
    opacity: 0;
    transform: scale(0) rotate(0);
  }
  4% {
    opacity: 1;
    transform: scale(1.35) rotate(45deg);
  }
  8%,
  100% {
    opacity: 0;
    transform: scale(0.4) rotate(90deg);
  }
}
@keyframes hero-story-card {
  0%,
  21% {
    opacity: 0;
    visibility: hidden;
    transform: rotate(var(--card-rotation)) translateY(12px) scale(0.82);
  }
  23% {
    opacity: 1;
    visibility: visible;
    transform: rotate(var(--card-rotation)) translateY(0) scale(1.06);
  }
  26%,
  31% {
    opacity: 1;
    visibility: visible;
    transform: rotate(var(--card-rotation)) translateY(0) scale(1);
  }
  33%,
  100% {
    opacity: 0;
    visibility: hidden;
    transform: rotate(var(--card-rotation)) translateY(-7px) scale(0.96);
  }
}
@media (max-width: 980px) {
  .hero-encounters {
    display: none;
  }
  .island-story.artwork {
    width: 86px;
    height: 119px;
    padding: 3px;
    opacity: 1;
    visibility: visible;
    animation: none;
    transform: rotate(var(--card-rotation));
  }
  .island-story-1 {
    left: 3%;
    top: 53%;
  }
  .island-story-2 {
    right: 3%;
    top: 70%;
  }
  .island-story-3 {
    display: none;
  }
}
@media (max-width: 380px) {
  .island-story.artwork {
    width: 65px;
    height: 94px;
  }
  .island-story-1 {
    left: 2%;
  }
  .island-story-2 {
    right: 2%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-encounters {
    display: none;
  }
  .island-story.artwork {
    opacity: 1;
    visibility: visible;
    animation: none;
    transform: rotate(var(--card-rotation));
  }
}

.hero-copy,
.hero-phone {
  z-index: 3;
}
.hero-phone {
  pointer-events: none;
}
.hero-phone .phone-device {
  pointer-events: auto;
}
.hero .hero-body {
  display: grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  gap: 0;
  border: 3px solid #252033;
  border-radius: 2px;
  padding: 4px;
  background: #fff;
  color: #201c2d;
  box-shadow: 5px 5px 0 #8e80df;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.25;
  max-width: 620px;
  text-align: center;
}
.hero-body > a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  background: #fff5f3;
  transition: color 150ms ease, background 150ms ease;
}
.hero-body > a + a {
  border-left: 3px solid #252033;
}
.hero-body > a:nth-child(2) {
  color: #235e48;
  background: #ecfbf3;
}
.hero-body > a:last-child {
  color: #5140b3;
  background: #f0edff;
}
.hero-body > a:hover,
.hero-body > a:focus-visible {
  color: #fff;
  background: #5140b3;
  outline: 0;
}
.hero-title {
  position: relative;
}
.typewriter-text {
  display: none;
}
.is-typing .typewriter-reserve {
  visibility: hidden;
}
.is-typing .typewriter-text {
  display: block;
  position: absolute;
  inset: 0;
}
.is-typing .typewriter-text::after {
  content: "";
  border-right: 2px solid #000;
  margin-left: 2px;
}
img.icon[src*="arrow-"] {
  filter: brightness(0);
}

/* Arrow-free hero story sequence. Each encounter is anchored to its matching island. */
.island-story-1 {
  left: 21%;
  top: 1%;
}
.island-story-1.artwork::after {
  left: auto;
  right: 18px;
}
.island-story-2 {
  right: 10%;
  top: 14%;
}
.island-story-3 {
  right: 19%;
  top: 58%;
}
.island-story-4 {
  --card-rotation: -4deg;
  left: 0.5%;
  top: 26%;
}
.island-story-5 {
  --card-rotation: 4deg;
  left: 2.5%;
  top: 57%;
}
.island-story-4.artwork::after,
.island-story-5.artwork::after {
  left: auto;
  right: 18px;
}
.island-story-2.artwork::after {
  left: auto;
  right: 18px;
}
.island-story-4.artwork::after {
  top: -8px;
  bottom: auto;
  border: 0;
  border-left: 2px solid #29243f;
  border-top: 2px solid #29243f;
}
.hero-encounter {
  width: 76px;
  height: 48px;
}
.hero-encounter-1 {
  left: 26.5%;
  top: 27%;
  width: 40px;
  height: 62px;
}
.hero-encounter-2 {
  right: 9%;
  top: 38%;
  width: 64px;
}
.hero-encounter-3 {
  right: 25%;
  top: 84%;
}
.hero-encounter-4 {
  left: 8.5%;
  top: 18%;
  width: 62px;
}
.hero-encounter-5 {
  left: 11%;
  top: 87%;
  width: 62px;
}
.hero-actor {
  width: 32px;
  height: 34px;
  background-image: url("/assets/site/hero-actor-directions-v3.webp");
  background-size: 400% 400%;
  image-rendering: pixelated;
}
.actor-farmer {
  background-position-x: 0;
}
.actor-chef {
  background-position-x: 33.333%;
}
.actor-engineer {
  background-position-x: 66.666%;
}
.actor-explorer {
  background-position-x: 100%;
}
.hero-encounter-3 .hero-actor {
  background-position-y: 33.333%;
}
.hero-encounter-3 .actor-npc {
  transform: scaleX(-1);
}
.hero-encounter-1 .actor-traveler {
  left: 4px;
  bottom: 0;
  background-position-y: 100%;
  z-index: 2;
}
.hero-encounter-1 .actor-npc {
  left: 4px;
  right: auto;
  bottom: 28px;
  background-position-y: 0;
  transform: none;
  z-index: 1;
}
.hero-encounter-4 .hero-actor {
  background-position-y: 100%;
  transform: none;
}
.hero-encounter-5 .hero-actor {
  background-position-y: 33.333%;
  transform: scaleX(-1);
}
.hero-encounter-4 .actor-npc,
.hero-encounter-5 .actor-npc {
  right: 0;
}
.hero-encounter-2 .actor-traveler {
  background-position-y: 33.333%;
}
.hero-encounter-2 .actor-npc {
  background-position-y: 33.333%;
  transform: scaleX(-1);
}
.hero-encounter-1 .actor-traveler,
.hero-encounter-3 .actor-traveler {
  animation: none;
}
.hero-encounter-2 .actor-traveler {
  animation: none;
}
@keyframes hero-traveler-side {
  0% {
    opacity: 0;
    transform: translateX(-14px) scale(0.35);
    background-position-y: 33.333%;
  }
  4% {
    opacity: 1;
    transform: translateX(-14px) scale(1.15);
  }
  8% {
    transform: translateX(-14px) scale(1);
  }
  12% {
    transform: translate(-7px, -1px);
    background-position-y: 33.333%;
  }
  16% {
    transform: translate(0, 1px);
    background-position-y: 66.666%;
  }
  20% {
    transform: translate(8px, -1px);
    background-position-y: 33.333%;
  }
  24%,
  31% {
    opacity: 1;
    transform: translateX(15px);
    background-position-y: 66.666%;
  }
  33%,
  100% {
    opacity: 0;
    transform: translateX(15px);
  }
}
@keyframes hero-traveler-back {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.35);
  }
  4% {
    opacity: 1;
    transform: translateY(12px) scale(1.15);
  }
  8% {
    transform: translateY(12px) scale(1);
  }
  12% {
    transform: translate(-1px, 7px);
  }
  16% {
    transform: translate(1px, 2px);
  }
  20% {
    transform: translate(-1px, -3px);
  }
  24%,
  31% {
    opacity: 1;
    transform: translateY(-9px);
  }
  33%,
  100% {
    opacity: 0;
    transform: translateY(-9px);
  }
}
.story-rail-controls .icon-button {
  width: auto;
  min-width: 72px;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 900;
}

.island-story.artwork,
.hero-encounter {
  opacity: 1;
  visibility: visible;
  animation: none;
}
.actor-traveler,
.encounter-spark {
  animation: none;
}
@media (max-width: 980px) {
  .island-story-1 {
    left: 3%;
    top: 40%;
  }
  .island-story-2 {
    right: 3%;
    top: 42%;
  }
  .island-story-3 {
    display: none;
  }
  .island-story-4,
  .island-story-5 {
    display: none;
  }
}
@media (max-width: 700px) {
  .hero .hero-body {
    grid-template-columns: 1fr;
    padding: 4px;
    font-size: 14px;
    max-width: 315px;
  }
  .hero-body > a {
    min-height: 29px;
    padding: 0 10px;
  }
  .hero-body > a + a {
    border-left: 0;
    border-top: 2px solid #252033;
  }
}
