:root {
  --canvas: #0d0914;
  --deep: #15101f;
  --surface: #20172e;
  --surface-2: #171121;
  --line: #3a2b4a;
  --lavender: #b99aff;
  --purple: #8d5af4;
  --violet: #5c318f;
  --yellow: #ffd166;
  --pink: #ff729f;
  --mint: #62d9c5;
  --text: #fff9ef;
  --muted: #b9aec4;
  --scroll: 0px;
  --display: "Nunito", "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; background: var(--canvas); }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, #3b1d573d, transparent 25rem),
    var(--canvas);
  color: var(--text);
  font: 400 15px/1.6 "DM Sans", system-ui, sans-serif;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; }
.skip-link {
  position: fixed;
  z-index: 100;
  left: 20px;
  top: -60px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--yellow);
  color: #231329;
  font-weight: 700;
}
.skip-link:focus { top: 15px; }

.ambient { position: fixed; z-index: 0; inset: 0; pointer-events: none; overflow: hidden; }
.ambient-orb { position: absolute; border-radius: 50%; filter: blur(130px); opacity: .15; }
.orb-one { width: 650px; height: 650px; left: -360px; top: 20vh; background: var(--purple); }
.orb-two { width: 580px; height: 580px; right: -360px; top: 110vh; background: var(--pink); opacity: .07; }
main, footer { position: relative; z-index: 1; }
.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 50%;
  width: min(1240px, calc(100% - 48px));
  height: 94px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff0d;
}
.site-header:after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b99aff45, transparent);
}
.brand { display: flex; align-items: center; }
.site-header .brand { width: 188px; height: 58px; overflow: hidden; }
.site-header .brand img { display: block; width: 188px; height: 62px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 5px; }
.nav a {
  padding: 11px 15px;
  border-radius: 999px;
  color: #d5cadc;
  font-size: 12px;
  font-weight: 700;
}
.nav a:hover, .nav a:focus-visible { background: #ffffff0a; color: #fff; outline: none; }
.nav .nav-download {
  margin-left: 8px;
  padding: 11px 19px;
  border: 1px solid #c19dff;
  background: linear-gradient(180deg, #9869f9, #7041ca);
  color: #fff;
  box-shadow: 0 5px 0 #44236f, 0 15px 30px #5f34a33d;
}
.nav .nav-download:hover { transform: translateY(-1px); box-shadow: 0 6px 0 #44236f, 0 17px 34px #5f34a34d; }
.nav .nav-discord { display: inline-flex; align-items: center; gap: 7px; color: #e3ddff; }
.nav .nav-discord img { width: 22px; height: 22px; object-fit: contain; }
.nav .nav-discord:hover, .nav .nav-discord:focus-visible { color: #fff; }

.hero {
  position: relative;
  min-height: 940px;
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 92px);
  padding: 160px max(5vw, 28px) 120px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 35%, #4e286044, transparent 28rem),
    radial-gradient(circle at 8% 60%, #2a183a70, transparent 26rem);
}
.hero:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(transparent, var(--canvas));
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 650px;
  justify-self: end;
  transform: translateY(calc(var(--scroll) * .025));
}
.hero-kicker, .eyebrow {
  color: var(--yellow);
  font: 800 11px/1 var(--display);
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.hero-kicker span {
  width: 27px;
  height: 9px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 12px -7px 0 -2px var(--pink);
  transform: rotate(-10deg);
}
.hero h1 {
  font: 900 clamp(58px, 6.1vw, 94px)/.92 var(--display);
  letter-spacing: -.06em;
  text-wrap: balance;
}
.hero h1 em {
  position: relative;
  font-style: normal;
  color: var(--lavender);
  text-shadow: 0 5px 0 #4a286d;
}
.hero h1 em:after {
  content: "";
  position: absolute;
  left: 3%;
  right: 0;
  bottom: -8px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--pink), var(--yellow));
  transform: rotate(-1.2deg);
  opacity: .85;
}
.hero-lede {
  max-width: 590px;
  margin-top: 32px;
  color: #cec2d5;
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); outline: none; }
.button.primary {
  border-color: #c6a8ff;
  background: linear-gradient(180deg, #9b6bff, #7441d0);
  box-shadow: 0 6px 0 #48246f, 0 18px 35px #6037a75c;
}
.button.primary:hover { box-shadow: 0 8px 0 #48246f, 0 22px 40px #6037a76b; }
.button.primary span { color: var(--yellow); }
.site-icon { display: block; width: 1.25em; height: 1.25em; object-fit: contain; flex: 0 0 auto; }
.icon-white { filter: brightness(0) invert(1); }
.icon-black { filter: brightness(0); }
.icon-arrow-down { transform: rotate(180deg); }
.icon-chevron-down { transform: rotate(90deg); }
.button.secondary { border-color: #4c3c59; background: #1b1425c9; color: #ddd2e2; }
.button.secondary span { display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; background: var(--yellow); color: #301a39; font-size: 8px; }
.button.secondary:hover { border-color: var(--pink); }

.trust-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.trust-row > span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px 8px 8px;
  border: 1px solid #463650;
  border-radius: 999px;
  background: #17101fb8;
  color: #d8cfdd;
  font-size: 11px;
}
.trust-row b { font-weight: 700; }
.trust-row .site-icon { width: 20px; height: 20px; filter: brightness(0) invert(1); }

.story-path {
  position: absolute;
  pointer-events: none;
  border: 4px solid #9f75e626;
  border-left-color: transparent;
  border-radius: 48% 52% 45% 55%;
}
.path-one {
  width: 980px;
  height: 430px;
  right: -80px;
  top: 230px;
  transform: translateY(calc(var(--scroll) * -.025)) rotate(-8deg);
}
.path-two {
  width: 680px;
  height: 320px;
  right: 80px;
  top: 330px;
  border-color: #ff729f17;
  border-right-color: transparent;
  transform: translateY(calc(var(--scroll) * .018)) rotate(12deg);
}
.path-node { position: absolute; width: 18px; height: 18px; border: 5px solid var(--canvas); border-radius: 50%; box-shadow: 0 0 0 3px currentColor; }
.node-watch { left: 5%; top: 34%; color: var(--pink); background: var(--pink); }
.node-play { right: 27%; top: -8px; color: var(--yellow); background: var(--yellow); }
.node-finish { right: 4%; bottom: 25%; color: var(--mint); background: var(--mint); }

.product-scene {
  position: relative;
  z-index: 6;
  width: min(730px, 52vw);
  margin-top: 80px;
  perspective: 1800px;
  transform: translateY(calc(var(--scroll) * -.018));
}
.product-window {
  position: relative;
  overflow: hidden;
  border: 2px solid #6b4b7c;
  border-radius: 26px;
  background: linear-gradient(145deg, #21172d, #100c17);
  box-shadow: 0 34px 0 -18px #382048, 0 70px 110px #000b, 0 0 80px #8d5af42e;
  transform: rotate(1.5deg);
}
.window-bar {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid #382a45;
  background: #181120;
}
.mini-brand { width: 116px; height: 38px; overflow: hidden; }
.mini-brand img { display: block; width: 112px; height: 37px; object-fit: contain; }
.window-actions { display: flex; gap: 7px; }
.window-actions i { width: 9px; height: 9px; border-radius: 50%; background: #513a5d; }
.window-actions i:first-child { background: var(--pink); }
.window-actions i:nth-child(2) { background: var(--yellow); }
.window-actions i:last-child { background: var(--mint); }
.app-layout { display: grid; grid-template-columns: 148px 1fr; min-height: 430px; }
.app-rail {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 21px 12px;
  border-right: 1px solid #382a45;
  background: #130e1a;
}
.app-rail button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #91849a;
  font-size: 11px;
  text-align: left;
  cursor: pointer;
  transition: background .18s, color .18s, transform .18s;
}
.app-rail button:hover, .app-rail button:focus-visible { background: #271a32; color: #fff; outline: 2px solid #6f4b8a; }
.app-rail button:active { transform: scale(.97); }
.app-rail button.active { background: linear-gradient(90deg, #39224f, #25182f); color: #fff; box-shadow: inset 3px 0 var(--yellow); }
.rail-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  object-fit: contain;
}
.app-rail button.active .rail-icon { filter: brightness(0) invert(1); }
.app-rail b { font-weight: 600; }
.app-content { padding: 28px; transition: opacity .15s, transform .15s; }
.app-content.is-changing { opacity: .12; transform: translateY(5px); }
.app-heading { display: flex; justify-content: space-between; align-items: end; }
.app-heading small, .continue-label { color: var(--yellow); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.app-heading strong { display: block; margin-top: 7px; font: 800 25px var(--display); }
.app-heading p { margin-top: 3px; color: var(--muted); font-size: 10px; }
.app-heading button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #b590ff;
  border-radius: 11px;
  background: linear-gradient(#9462ef, #6d3cbe);
  padding: 9px 12px;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  box-shadow: 0 3px 0 #42215f;
}
.app-heading button .site-icon { width: 12px; height: 12px; }
.continue-label { margin: 28px 0 11px; color: #eee6f1; font-size: 11px; letter-spacing: 0; }
.media-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.media-preview {
  position: relative;
  height: 177px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 13px;
  overflow: hidden;
  border: 1px solid #483653;
  border-radius: 15px;
  background: #1a1321;
  box-shadow: 0 12px 25px #0004;
}
.media-preview:before { content: ""; position: absolute; inset: 0; opacity: .8; }
.media-preview.violet:before { background: radial-gradient(circle at 70% 15%, #a072df, #39204f 46%, #111019 82%); }
.media-preview.blue:before { background: radial-gradient(circle at 70% 15%, #557fa3, #22354b 44%, #111019 82%); }
.media-preview.amber:before { background: radial-gradient(circle at 70% 15%, #ca8b54, #523020 44%, #111019 82%); }
.media-preview.teal:before { background: radial-gradient(circle at 70% 15%, #4caa9d, #1d504e 44%, #111019 82%); }
.media-preview.rose:before { background: radial-gradient(circle at 70% 15%, #c66b8a, #512538 44%, #111019 82%); }
.media-preview.indigo:before { background: radial-gradient(circle at 70% 15%, #6d7cd1, #303665 44%, #111019 82%); }
.media-preview > * { position: relative; }
.media-preview span { color: #ebe2ee; font-size: 7px; letter-spacing: .07em; }
.media-preview b { margin: 4px 0 11px; font: 800 13px var(--display); }
.media-preview > i { height: 5px; border-radius: 999px; background: #ffffff24; overflow: hidden; }
.media-preview em { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--pink), var(--yellow)); }
.progress-45 { width: 45%; }
.progress-60 { width: 60%; }
.progress-72 { width: 72%; }
.progress-90 { width: 90%; }
.progress-100 { width: 100%; }
.demo-discover .continue-label { color: var(--mint); }
.float-card {
  position: absolute;
  z-index: 8;
  border: 1px solid #664b74;
  border-radius: 17px;
  background: #21172ded;
  box-shadow: 0 15px 0 -9px #3a2149, 0 24px 45px #0008;
  backdrop-filter: blur(15px);
}
.float-library { left: -42px; bottom: -42px; width: 165px; padding: 16px; transform: translateY(calc(var(--scroll) * -.08)) rotate(-3deg); }
.float-library small { color: var(--yellow); font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.float-library strong { display: block; margin: 4px 0 2px; font: 900 32px var(--display); }
.float-library span { color: #c5b9ca; font-size: 8px; }
.float-library i { display: inline-block; width: 7px; height: 7px; margin-right: 4px; border-radius: 50%; background: var(--mint); }
.float-private { right: -28px; top: 86px; display: flex; align-items: center; gap: 10px; padding: 12px 14px; transform: translateY(calc(var(--scroll) * .07)) rotate(2deg); }
.shield { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 12px; background: var(--yellow); color: #33203d; font-weight: 900; }
.shield .site-icon { width: 20px; height: 20px; filter: brightness(0); }
.float-private strong, .float-private small { display: block; }
.float-private strong { font: 800 11px var(--display); }
.float-private small { margin-top: 1px; color: #b8abbf; font-size: 8px; }
.mascot-perch { position: absolute; z-index: 10; right: 36px; top: -101px; width: 145px; filter: drop-shadow(0 24px 26px #0008); }
.mascot-perch img { display: block; width: 132px; height: 132px; object-fit: contain; }
.mascot-wobble { animation: mascot-float 3.4s ease-in-out infinite; }
.mascot-note {
  position: absolute;
  right: 112px;
  top: -8px;
  width: max-content;
  padding: 8px 12px;
  border: 2px solid #694879;
  border-radius: 14px 14px 3px 14px;
  background: #fff7e9;
  color: #35203d;
  font: 800 10px var(--display);
  transform: rotate(-3deg);
}
@keyframes mascot-float {
  0%, 100% { transform: translateY(0) rotate(calc(var(--mascot-rest-angle, 0deg) + 1deg)); }
  50% { transform: translateY(-5px) rotate(calc(var(--mascot-rest-angle, 0deg) - 1deg)); }
}
.scroll-hint { position: absolute; z-index: 7; left: max(5vw, 28px); bottom: 38px; color: #978a9e; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.scroll-hint { display: inline-flex; align-items: center; gap: 8px; }
.scroll-hint .site-icon { width: 13px; height: 13px; }

.story-section {
  min-height: 780px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 7vw;
  padding: 96px max(6vw, 28px);
}
.story-sticky { max-width: 560px; }
.eyebrow { color: var(--yellow); }
.story-sticky h2, .section-heading h2, .faq-heading h2, .download-heading h2 {
  margin: 20px 0;
  font: 900 clamp(45px, 5vw, 72px)/.98 var(--display);
  letter-spacing: -.05em;
}
.story-sticky h2 em { color: var(--lavender); font-style: normal; }
.story-sticky > p:last-child, .section-heading > p, .faq-heading > p:last-child { max-width: 470px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.story-worlds { position: relative; min-height: 610px; max-width: 650px; }
.story-worlds:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 30px;
  width: 6px;
  border-radius: 9px;
  background: linear-gradient(var(--pink), var(--yellow), var(--mint));
  opacity: .22;
  transform: rotate(10deg);
}
.world-card {
  position: absolute;
  width: min(370px, 68%);
  min-height: 180px;
  padding: 24px;
  border: 2px solid #523861;
  border-radius: 27px;
  background: linear-gradient(145deg, #281a34, #17101f);
  box-shadow: 0 18px 0 -11px #3d234d, 0 30px 50px #0007;
}
.world-card small { display: block; max-width: calc(100% - 54px); color: var(--yellow); font-size: 8px; font-weight: 800; letter-spacing: .13em; }
.world-card strong { display: block; margin: 12px 0 3px; font: 900 24px var(--display); }
.world-card p { color: var(--muted); font-size: 11px; }
.world-card > i { display: block; height: 7px; margin-top: 21px; overflow: hidden; border-radius: 999px; background: #ffffff18; }
.world-card > i b { display: block; height: 100%; border-radius: inherit; background: currentColor; }
.world-icon { position: absolute; right: 21px; top: 21px; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 15px; font: 900 14px var(--display); }
.world-icon .site-icon { width: 24px; height: 24px; }
.movie-world { left: 1%; top: 35px; color: var(--pink); transform: rotate(-4deg); }
.movie-world .world-icon { background: #49243b; color: var(--pink); }
.tv-world { right: 0; top: 225px; color: var(--yellow); transform: rotate(3deg); }
.tv-world .world-icon { background: #4a3a22; color: var(--yellow); }
.game-world { left: 7%; top: 418px; color: var(--mint); transform: rotate(-2deg); }
.game-world .world-icon { background: #1d403d; color: var(--mint); }
.story-guide { position: absolute; z-index: 5; width: 118px; height: 118px; right: 12%; bottom: 5px; object-fit: contain; filter: drop-shadow(0 18px 18px #0008); }

.feature-section { padding: 108px max(4vw, 20px); background: linear-gradient(180deg, transparent, #150d1d 35%, #0d0914); }
.section-heading { max-width: 1280px; margin: 0 auto 55px; display: flex; justify-content: space-between; align-items: end; gap: 50px; }
.section-heading h2 { max-width: 760px; }
.section-heading > p { margin-bottom: 11px; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 1280px; margin: auto; }
.feature-card {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 32px;
  border: 2px solid #3f2d49;
  border-radius: 30px;
  background: linear-gradient(145deg, #21172b, #15101c);
  box-shadow: 0 18px 0 -12px #2e1a38;
}
.feature-card > div:last-child { position: relative; z-index: 2; }
.feature-card h3 { margin-bottom: 9px; font: 900 26px var(--display); }
.feature-card p { max-width: 470px; color: var(--muted); line-height: 1.7; }
.feature-number { position: absolute; left: 28px; top: 24px; color: var(--yellow); font: 900 12px var(--display); letter-spacing: .1em; }
.wide-card { grid-column: 1 / -1; min-height: 360px; }
.privacy-visual { position: absolute; left: 50%; top: 3px; width: 310px; height: 310px; transform: translateX(-50%); border: 3px dashed #8d5af434; border-radius: 48% 52% 45% 55%; }
.privacy-ring { position: absolute; inset: 67px; display: grid; place-items: center; border-radius: 40% 60% 55% 45%; background: #39244b; box-shadow: 0 0 0 18px #8d5af412; transform: rotate(-8deg); }
.privacy-ring img { --mascot-rest-angle: 8deg; width: 132px; height: 132px; object-fit: contain; transform: rotate(8deg); filter: drop-shadow(0 12px 18px #130b1b80); }
.privacy-visual > i, .privacy-visual > b { position: absolute; width: 13px; height: 13px; border: 4px solid #150f1c; border-radius: 50%; }
.privacy-visual > i { left: 24px; top: 160px; background: var(--pink); }
.privacy-visual > b { right: 44px; bottom: 21px; background: var(--yellow); }
.status-stack { position: absolute; left: 11%; right: 11%; top: 86px; display: grid; gap: 9px; }
.status-stack span { display: grid; grid-template-columns: 14px 1fr auto; align-items: center; padding: 15px 16px; border: 1px solid #513b5c; border-radius: 15px; background: #1a1222; color: #d8cfdd; font-size: 11px; box-shadow: 0 9px 0 -5px #34203e, 0 18px 28px #0004; }
.status-stack i { width: 9px; height: 9px; border-radius: 50%; }
.violet-dot { background: var(--purple); }
.teal-dot { background: var(--mint); }
.warm-dot { background: var(--yellow); }
.status-stack b { font: 900 16px var(--display); }
.discovery-visual { position: absolute; right: 4%; top: 50%; width: 52%; padding: 27px; display: flex; align-items: center; justify-content: space-between; transform: translateY(-50%) rotate(1deg); border: 2px solid #533c61; border-radius: 22px; background: radial-gradient(circle at 90% 10%, #44294d, #1c1324 62%); box-shadow: 0 14px 0 -8px #382043, 0 24px 48px #0005; }
.discovery-visual small { color: var(--yellow); font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.discovery-visual strong { display: block; margin: 8px 0; font: 900 24px var(--display); }
.discovery-visual p { margin: 0; font-size: 12px; }
.discovery-visual > span { display: grid; place-items: center; width: 62px; height: 62px; overflow: hidden; border-radius: 22px; background: var(--purple); transform: rotate(5deg); }
.discovery-visual > span img { width: 58px; height: 58px; object-fit: contain; filter: drop-shadow(0 7px 8px #130b1b66); }
.wide-card > div:last-child { max-width: 39%; margin-top: auto; }

.faq-section {
  padding: 116px max(6vw, 28px);
  scroll-margin-top: 24px;
  background:
    radial-gradient(circle at 15% 30%, #8d5af41f, transparent 28rem),
    linear-gradient(180deg, #0d0914, #15101f 48%, #0d0914);
}
.faq-shell { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(480px, 1.2fr); gap: clamp(45px, 8vw, 120px); max-width: 1280px; margin: auto; }
.faq-heading { position: sticky; top: 140px; align-self: start; }
.faq-heading h2 { font-size: clamp(42px, 4.6vw, 66px); }
.faq-list { display: grid; gap: 12px; }
.faq-list details {
  overflow: hidden;
  border: 1px solid #4c3958;
  border-radius: 20px;
  background: linear-gradient(145deg, #21162b, #17101f);
  box-shadow: 0 10px 0 -7px #392143;
}
.faq-list summary {
  position: relative;
  padding: 21px 58px 21px 23px;
  color: #fff9ef;
  font: 800 18px/1.35 var(--display);
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:after {
  content: "+";
  position: absolute;
  right: 21px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  transform: translateY(-50%);
  border-radius: 10px;
  background: #39244b;
  color: var(--yellow);
  font: 900 20px/1 var(--display);
}
.faq-list details[open] summary:after { content: "−"; }
.faq-list summary:hover { color: var(--yellow); }
.faq-list summary:focus-visible { outline: 3px solid var(--yellow); outline-offset: -3px; }
.faq-list details p { padding: 0 23px 23px; color: var(--muted); font-size: 14px; line-height: 1.75; }

.discord-section { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(520px, 1.22fr); align-items: center; gap: clamp(42px, 8vw, 120px); padding: 116px max(6vw, 28px); overflow: hidden; scroll-margin-top: 24px; background: radial-gradient(circle at 72% 50%, #5865f429, transparent 34rem), linear-gradient(180deg, #0d0914, #15101f 45%, #0d0914); }
.discord-copy { max-width: 520px; justify-self: end; }
.discord-copy h2 { margin: 20px 0; font: 900 clamp(45px, 5vw, 72px)/.98 var(--display); letter-spacing: -.05em; }
.discord-copy h2 em { color: #aeb6ff; font-style: normal; }
.discord-copy > p:not(.eyebrow) { color: var(--muted); font-size: 16px; line-height: 1.75; }
.discord-button { margin-top: 31px; border-color: #8993ff; background: linear-gradient(180deg, #6975ed, #4b55c7); box-shadow: 0 6px 0 #323a91, 0 18px 35px #5865f43d; }
.discord-button img { width: 25px; height: 25px; object-fit: contain; }
.discord-button:hover, .discord-button:focus-visible { box-shadow: 0 8px 0 #323a91, 0 22px 40px #5865f454; }
.discord-note { margin-top: 20px; color: #9187a0 !important; font-size: 12px !important; }
.discord-preview { position: relative; width: min(720px, 100%); padding: 18px; border: 2px solid #514978; border-radius: 29px; background: linear-gradient(145deg, #27213b, #15121f); box-shadow: 0 20px 0 -11px #27203b, 0 32px 65px #0008; transform: rotate(1.5deg); }
.discord-window-bar { display: flex; align-items: center; gap: 13px; height: 38px; padding: 0 8px 12px; color: #f2efff; font: 800 12px var(--display); }
.discord-window-bar > span { display: flex; gap: 5px; }
.discord-window-bar i { width: 8px; height: 8px; border-radius: 50%; background: #ff729f; }
.discord-window-bar i:nth-child(2) { background: var(--yellow); }.discord-window-bar i:nth-child(3) { background: var(--mint); }
.discord-window-bar b { margin-left: auto; color: #62d9c5; font-size: 13px; }
.discord-window-body { display: grid; grid-template-columns: 185px 1fr; min-height: 370px; overflow: hidden; border: 1px solid #3c3657; border-radius: 17px; background: #16131f; }
.discord-sidebar { padding: 17px 8px; background: #1c1829; }
.discord-sidebar p { margin: 13px 9px 5px; color: #857e97; font-size: 8px; font-weight: 800; letter-spacing: .11em; }
.discord-sidebar p:first-child { margin-top: 0; }
.discord-sidebar a { display: flex; align-items: center; gap: 8px; min-height: 25px; padding: 4px 9px; border-radius: 8px; color: #aaa4b7; font-size: 10px; font-weight: 700; }
.discord-sidebar a:hover, .discord-sidebar a:focus-visible, .discord-sidebar a.active { background: #5865f433; color: #fff; outline: none; }
.channel-icon { display: block; flex: 0 0 auto; width: 14px; height: 14px; object-fit: contain; }
.discord-chat { display: flex; flex-direction: column; padding: 0 19px 15px; background: #211d2d; }
.discord-chat-heading { display: flex; flex-direction: column; justify-content: center; min-height: 61px; border-bottom: 1px solid #363143; }.discord-chat-heading span { color: #fff; font: 900 17px var(--display); }.discord-chat-heading small { margin-top: 1px; color: #9892a4; font-size: 9px; }
.chat-message { display: flex; gap: 10px; margin-top: 16px; }.chat-avatar { display: grid; place-items: center; flex: 0 0 29px; width: 29px; height: 29px; border-radius: 10px; color: #271f38; font: 900 14px var(--display); }.violet-avatar { background: var(--lavender); }.yellow-avatar { background: var(--yellow); }.pink-avatar { background: var(--pink); }.chat-message p { color: #d9d3e0; font-size: 10px; line-height: 1.55; }.chat-message b { color: #fff; font-size: 11px; }.chat-message small { margin-left: 7px; color: #90899d; font-size: 8px; }.chat-compose { margin-top: auto; padding: 10px 12px; border-radius: 8px; background: #16131f; color: #787186; font-size: 10px; }
.bot-message { align-items: flex-start; }
.bot-avatar { overflow: visible; background: transparent; }
.bot-avatar img { width: 36px; height: 36px; object-fit: contain; filter: drop-shadow(0 4px 5px #0006); transform: translate(-3px, -3px); }
.bot-message p { color: #fff; }
.chat-meta { display: flex; align-items: center; gap: 5px; min-height: 16px; }
.chat-meta b { color: #bd7cff; }
.chat-meta small { margin-left: 0; }
.bot-badge { padding: 1px 4px; border-radius: 3px; background: #5865f2; color: #fff; font-size: 7px; font-weight: 900; line-height: 1.25; }
.discord-mascot { position: absolute; z-index: 3; right: -46px; bottom: -65px; width: 134px; height: 134px; object-fit: contain; filter: drop-shadow(0 15px 20px #0008); }

.downloads { padding: 112px max(4vw, 20px) 75px; background: radial-gradient(circle at 50% 15%, #3c1e523f, transparent 30rem), #0d0914; }
.download-heading { max-width: 850px; margin: 0 auto 60px; text-align: center; }
.download-heading img { width: 110px; height: 110px; object-fit: contain; margin-bottom: 8px; filter: drop-shadow(0 15px 20px #0006); }
.download-heading .eyebrow { display: block; }
.download-heading > p:last-child { color: var(--muted); }
.download-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; max-width: 1280px; margin: auto; }
.release-archive { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 9px; margin: 32px auto 0; color: #bcaec4; font-size: 13px; text-align: center; }
.release-archive a { color: var(--yellow); font-weight: 800; text-decoration: none; text-underline-offset: 4px; }
.release-archive a:hover, .release-archive a:focus-visible { color: #fff2a5; text-decoration: underline; outline: none; }
.download-panel { position: relative; min-height: 610px; display: flex; overflow: hidden; padding: 48px; border: 2px solid #45314f; border-radius: 32px; background: #1b1324; box-shadow: 0 18px 0 -12px #2f1c39; }
.desktop-panel { background: radial-gradient(circle at 90% 15%, #513267, #1b1324 50%); }
.mobile-panel { background: radial-gradient(circle at 90% 10%, #244e4a, #151b21 48%); }
.panel-copy { position: relative; z-index: 3; max-width: 330px; display: flex; flex-direction: column; align-items: flex-start; }
.platform-label { padding: 7px 11px; border-radius: 999px; background: #352148; color: var(--lavender); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.mobile-panel .platform-label { background: #183b38; color: var(--mint); }
.panel-copy h3 { margin: 22px 0 12px; font: 900 clamp(36px, 4vw, 54px)/1 var(--display); letter-spacing: -.05em; }
.panel-copy > p { color: #bcaec4; font-size: 13px; line-height: 1.7; }
.store-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 32px; }
.store-links a { display: flex; align-items: center; gap: 10px; min-width: 150px; padding: 11px 14px; border: 1px solid #9c78c2; border-radius: 15px; background: #130e1bcf; box-shadow: 0 5px 0 #382149; transition: .18s; }
.store-links a:hover, .store-links a:focus-visible { border-color: var(--yellow); transform: translateY(-2px); outline: none; box-shadow: 0 7px 0 #382149; }
.store-links small { display: block; color: #96899d; font-size: 7px; }
.store-links a > span:last-child { font-size: 12px; font-weight: 700; }
.store-icon { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 11px; background: var(--purple); color: #fff; font: 900 16px var(--display); }
.mobile-panel .store-icon { background: var(--mint); color: #17302e; }
.store-icon .site-icon { width: 20px; height: 20px; }
.desktop-device { position: absolute; width: 520px; right: -135px; bottom: 48px; transform: rotate(-4deg) translateZ(0); backface-visibility: hidden; }
.desktop-screen { aspect-ratio: 16 / 9; overflow: hidden; border: 9px solid #100b16; border-radius: 18px; background: #080d18; box-shadow: 0 30px 60px #000a; }
.desktop-screen img { display: block; width: 100%; height: 100%; object-fit: cover; backface-visibility: hidden; }
.desktop-base { width: 210px; height: 24px; margin: auto; background: linear-gradient(#37273f, #110c17); clip-path: polygon(25% 0, 75% 0, 100% 100%, 0 100%); }
.mobile-device { position: absolute; right: 38px; bottom: -92px; width: 277px; height: 466px; overflow: hidden; border: 8px solid #100b16; border-radius: 42px 42px 0 0; background: #0c1020; box-shadow: 0 35px 70px #000b; transform: rotate(5deg) translateZ(0); backface-visibility: hidden; }
.phone-speaker { position: absolute; z-index: 2; top: 10px; left: 50%; width: 48px; height: 5px; transform: translateX(-50%); border-radius: 6px; background: #47354f; box-shadow: 0 0 0 3px #100b16; }
.mobile-screen { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; backface-visibility: hidden; }
.download-dialog { width: min(590px, calc(100vw - 34px)); max-height: min(760px, calc(100vh - 34px)); padding: 0; overflow: auto; border: 2px solid #6b4d7a; border-radius: 28px; background: #1b1324; color: #f8f1fa; box-shadow: 0 26px 80px #000b; }
.download-dialog::backdrop { background: #08050dcc; backdrop-filter: blur(5px); }
.download-dialog-content { position: relative; padding: 42px 42px 38px; text-align: center; }
.download-dialog-mascot { width: 92px; height: 92px; object-fit: contain; filter: drop-shadow(0 12px 17px #0007); }
.download-dialog h2 { margin: 10px 0 16px; font: 900 clamp(34px, 6vw, 48px)/1 var(--display); letter-spacing: -.05em; }
.download-dialog p { max-width: 470px; margin: 0 auto 13px; color: #d0c3d6; font-size: 15px; line-height: 1.6; }
.download-dialog .download-dialog-help { color: var(--yellow); font-size: 13px; }
.dialog-close { position: absolute; top: 15px; right: 17px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: #352148; color: #fff; font: 700 28px/1 sans-serif; cursor: pointer; }
.dialog-close:hover, .dialog-close:focus-visible { background: var(--purple); outline: 2px solid var(--yellow); outline-offset: 2px; }
.download-dialog-actions { display: flex; justify-content: center; gap: 12px; margin-top: 25px; }
.download-dialog .button { justify-content: center; min-width: 160px; cursor: pointer; }
.download-dialog .secondary { border: 1px solid #86689a; background: transparent; color: #f8f1fa; box-shadow: none; }
.download-dialog .secondary:hover, .download-dialog .secondary:focus-visible { border-color: var(--yellow); background: #352148; outline: none; }

footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; padding: 36px max(6vw, 24px); border-top: 1px solid #37283f; background: #0b0811; color: #968b9c; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
footer .brand { display: block; width: 138px; height: 46px; overflow: hidden; }
footer .brand img { display: block; width: 138px; height: 46px; object-fit: contain; }
footer p { text-align: center; }
footer p span { color: var(--yellow); }
footer > div { display: flex; justify-content: flex-end; gap: 20px; }
footer > div a { display: inline-flex; align-items: center; gap: 6px; }
footer > div a .site-icon { width: 13px; height: 13px; }
footer > div a:hover, footer > div a:focus-visible { color: var(--pink); outline: none; }

@media (max-width: 1060px) {
  .hero { grid-template-columns: 1fr; gap: 120px; padding-top: 170px; }
  .hero-copy { justify-self: center; text-align: center; }
  .hero-kicker, .hero-actions, .trust-row { justify-content: center; }
  .product-scene { width: min(760px, 88vw); margin: 0 auto; }
  .path-one { top: 510px; right: -20%; }
  .path-two { top: 600px; }
  .scroll-hint { display: none; }
  .story-section { grid-template-columns: 1fr; }
  .story-sticky { margin: auto; text-align: center; }
  .story-sticky .eyebrow { text-align: center; }
  .story-sticky > p:last-child { margin: auto; }
  .story-worlds { width: min(650px, 95vw); margin: auto; }
  .faq-shell { grid-template-columns: 1fr; }
  .faq-heading { position: static; max-width: 700px; text-align: center; justify-self: center; }
  .faq-heading > p:last-child { margin: auto; }
  .discord-section { grid-template-columns: 1fr; padding-top: 95px; }
  .discord-copy { justify-self: center; text-align: center; }
}
@media (max-width: 900px) {
  .download-grid { grid-template-columns: 1fr; }
  .download-panel { min-height: 560px; }
  .panel-copy { min-height: 460px; }
  .desktop-device { right: -70px; }
  .mobile-device { right: 8%; }
}
@media (max-width: 700px) {
  .site-header { width: calc(100% - 28px); height: 76px; }
  .site-header .brand { width: 145px; height: 47px; }
  .site-header .brand img { width: 145px; height: 48px; }
  .nav a:not(.nav-discord) { display: none; }
  .nav .nav-discord { padding: 9px 11px; background: #5865f429; }
  .nav .nav-discord span { font-size: 10px; }
  .hero { min-height: 1020px; gap: 88px; padding: 132px 17px 72px; }
  .hero-copy { width: 100%; min-width: 0; max-width: 100%; }
  .hero h1 { max-width: 100%; font-size: clamp(44px, 12.8vw, 60px); }
  .hero-lede { font-size: 15px; }
  .hero-actions { width: 100%; flex-direction: column; align-items: stretch; }
  .button { width: 100%; max-width: 100%; }
  .trust-row { gap: 7px; }
  .trust-row > span { padding-right: 9px; font-size: 9px; }
  .path-node { display: none; }
  .product-scene { width: min(92vw, 400px); }
  .product-window { border-radius: 18px; transform: rotate(.5deg); }
  .mascot-perch { right: 15px; top: -85px; width: 116px; }
  .mascot-perch img { width: 108px; height: 108px; }
  .mascot-note { right: 88px; top: -3px; font-size: 8px; }
  .window-bar { height: 45px; }
  .app-layout { display: block; min-height: 390px; }
  .app-rail { display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px; padding: 7px; border: 0; border-bottom: 1px solid #382a45; }
  .app-rail button { justify-content: center; padding: 7px 3px; }
  .app-rail b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .rail-icon { width: 25px; height: 25px; flex-basis: 25px; filter: brightness(0) invert(1); }
  .app-content { padding: 16px; }
  .app-heading strong { font-size: 18px; }
  .app-heading button { display: none; }
  .continue-label { margin-top: 20px; }
  .media-row { gap: 6px; }
  .media-preview { height: 145px; padding: 9px; }
  .media-preview b { font-size: 9px; }
  .float-card { display: none; }
  .story-section { min-height: auto; padding: 78px 17px 60px; }
  .story-sticky h2, .section-heading h2, .faq-heading h2, .download-heading h2 { font-size: 44px; }
  .story-worlds { min-height: 550px; }
  .world-card { width: 78%; min-height: 160px; padding: 20px; }
  .movie-world { left: 0; }
  .tv-world { top: 205px; }
  .game-world { top: 375px; }
  .world-card strong { font-size: 20px; }
  .story-guide { width: 90px; height: 90px; right: 1%; bottom: 4px; }
  .feature-section { padding: 78px 17px 72px; }
  .section-heading { display: block; margin-bottom: 42px; }
  .section-heading > p { margin-top: 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .wide-card { grid-column: auto; min-height: 420px; }
  .feature-card { min-height: 400px; padding: 24px; }
  .status-card { min-height: 470px; }
  .status-card .status-stack { top: 78px; }
  .discovery-visual { left: 22px; right: 22px; top: 80px; width: auto; }
  .wide-card > div:last-child { max-width: none; }
  .faq-section { padding: 78px 17px; }
  .faq-shell { gap: 38px; }
  .faq-list summary { padding: 18px 54px 18px 18px; font-size: 16px; }
  .faq-list summary:after { right: 17px; }
  .faq-list details p { padding: 0 18px 20px; font-size: 13px; }
  .discord-section { gap: 45px; padding: 78px 17px; }
  .discord-copy h2 { font-size: 44px; }
  .discord-button { width: auto; }
  .discord-preview { padding: 10px; border-radius: 20px; transform: none; }
  .discord-window-body { grid-template-columns: 116px 1fr; min-height: 330px; }
  .discord-sidebar { padding: 11px 4px; }
  .discord-sidebar p { margin: 11px 6px 4px; font-size: 6px; }
  .discord-sidebar a { gap: 4px; min-height: 25px; padding: 4px 5px; font-size: 8px; }
  .channel-icon { width: 11px; height: 11px; }
  .discord-chat { padding: 0 10px 10px; }
  .discord-chat-heading { min-height: 53px; }.discord-chat-heading span { font-size: 14px; }.discord-chat-heading small { font-size: 7px; }
  .chat-message { gap: 6px; margin-top: 12px; }.chat-avatar { flex: 0 0 23px; width: 23px; height: 23px; border-radius: 8px; font-size: 11px; }.chat-message p { min-width: 0; font-size: 8px; }.chat-message b { font-size: 9px; }.chat-message small { margin-left: 3px; font-size: 6px; }
  .bot-avatar img { width: 29px; height: 29px; }
  .chat-meta { gap: 3px; min-height: 13px; }
  .chat-meta small { margin-left: 0; }
  .bot-badge { padding: 1px 3px; font-size: 5px; }
  .discord-mascot { right: -25px; bottom: -49px; width: 92px; height: 92px; }
  .downloads { padding: 90px 17px 60px; }
  .download-heading { margin-bottom: 46px; }
  .download-panel { min-height: 650px; padding: 30px 24px; }
  .panel-copy { min-height: 580px; }
  .desktop-device { width: 430px; right: -145px; bottom: 120px; }
  .mobile-device { right: -38px; bottom: -100px; width: 257px; height: 431px; }
  .store-links { position: relative; z-index: 5; }
  .download-dialog-content { padding: 36px 23px 28px; }
  .download-dialog-actions { flex-direction: column-reverse; }
  .download-dialog .button { width: 100%; }
  footer { grid-template-columns: 1fr; justify-items: start; }
  footer p { text-align: left; }
  footer > div { justify-content: flex-start; flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *[data-parallax] { transform: none !important; }
  .mascot-wobble { animation: none; }
  .button, .store-links a { transition: none; }
}
