@charset "UTF-8";

/* 作者：搭客佬
官网：https://www.wltcs.cn/ */

:root {
  --plum: #5a0d50;
  --violet: #220c34;
  --violet-deep: #14071f;
  --blue: #3da9df;
  --gold: #ffb52e;
  --ivory: #fff9ef;
  --paper: #f8f0e7;
  --rose: #a13a78;
  --ink: #201426;
  --muted: #756779;
  --line: #d9c8d8;
  --white: #ffffff;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font: 16px/1.7 "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header-shell,
.hero-shell,
.content-shell,
.footer-shell {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(20, 7, 31, .98);
  border-bottom: 1px solid rgba(255, 181, 46, .42);
}

.header-shell {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 34px;
}

.site-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.site-brand img,
.footer-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-copy,
.footer-brand > span {
  display: grid;
  min-width: 0;
  line-height: 1.2;
}

.brand-copy strong,
.footer-brand strong {
  color: var(--ivory);
  font-size: 20px;
}

.brand-copy span,
.footer-brand span span {
  margin-top: 4px;
  color: #bcacc2;
  font-size: 12px;
  white-space: nowrap;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  display: block;
  padding: 26px 0 23px;
  color: #f1e8f4;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.mobile-controls {
  display: none;
  align-items: center;
  gap: 8px;
}

.mobile-download {
  min-width: 88px;
  padding: 10px 12px;
  color: var(--violet-deep);
  background: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.menu-button {
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid #aa94b2;
  cursor: pointer;
}

.menu-button i {
  position: absolute;
  left: 10px;
  width: 20px;
  height: 2px;
  background: var(--ivory);
}

.menu-button i:nth-child(1) {
  top: 12px;
}

.menu-button i:nth-child(2) {
  top: 19px;
}

.menu-button i:nth-child(3) {
  top: 26px;
}

main {
  padding-top: var(--header-height);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--ivory);
  background: radial-gradient(circle at 80% 36%, #47105a 0, var(--violet) 36%, var(--violet-deep) 72%);
}

.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stars-one {
  opacity: .38;
  background-image: radial-gradient(circle, var(--gold) 1px, transparent 1.5px);
  background-size: 53px 53px;
}

.stars-two {
  opacity: .2;
  background-image: radial-gradient(circle, var(--blue) 1px, transparent 1.5px);
  background-position: 18px 28px;
  background-size: 89px 89px;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 590px;
  align-items: center;
  gap: 50px;
  min-height: 690px;
}

.overline,
.section-title p,
.pass-copy > p {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .17em;
}

.hero-copy h1 {
  margin-top: 12px;
  color: var(--gold);
  font-size: clamp(68px, 7vw, 106px);
  line-height: .98;
  letter-spacing: -.055em;
  white-space: nowrap;
}

.hero-copy h2 {
  margin-top: 30px;
  font-size: 33px;
  line-height: 1.3;
}

.hero-text {
  max-width: 550px;
  margin-top: 20px;
  color: #d9cade;
}

.hero-action {
  display: grid;
  justify-items: start;
  gap: 10px;
  margin-top: 30px;
}

.hero-action > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 218px;
  padding: 16px 20px;
  color: var(--violet-deep);
  background: var(--gold);
  border: 1px solid #ffd87c;
  box-shadow: 0 8px 26px rgba(255, 181, 46, .22);
  font-weight: 800;
}

.age-label {
  color: #bfaec5;
  font-size: 13px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 28px;
}

.hero-points li {
  position: relative;
  padding-left: 17px;
  color: #efe4f1;
  font-size: 13px;
  font-weight: 700;
}

.hero-points li::before {
  position: absolute;
  left: 0;
  color: var(--blue);
  content: "✦";
  font-size: 12px;
}

.oracle-stage {
  position: relative;
  min-height: 590px;
}

.oracle-stage::before {
  position: absolute;
  inset: 50px 0 0 30px;
  border: 1px solid rgba(255, 181, 46, .28);
  border-radius: 50%;
  content: "";
}

.question-panel {
  position: absolute;
  z-index: 8;
  top: 12px;
  left: 50%;
  width: 280px;
  padding: 16px 20px;
  text-align: center;
  background: rgba(20, 7, 31, .9);
  border: 1px solid var(--gold);
  transform: translateX(-50%);
}

.question-panel span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.question-panel strong {
  display: block;
  margin-top: 5px;
  font-size: 15px;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 181, 46, .7);
  border-radius: 50%;
  transform: translate(-50%, -45%);
}

.orbit::before,
.orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  background: rgba(61, 169, 223, .42);
  transform: translate(-50%, -50%);
}

.orbit::before {
  width: 100%;
  height: 1px;
}

.orbit::after {
  width: 1px;
  height: 100%;
}

.orbit-outer {
  width: 500px;
  height: 500px;
  box-shadow: 0 0 36px rgba(255, 181, 46, .13), inset 0 0 24px rgba(61, 169, 223, .08);
}

.orbit-middle {
  width: 385px;
  height: 385px;
  border-color: rgba(61, 169, 223, .8);
}

.orbit-inner {
  width: 230px;
  height: 230px;
  border-color: rgba(255, 181, 46, .75);
  box-shadow: 0 0 40px rgba(255, 181, 46, .2);
}

.genie-mark {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255,181,46,.5), rgba(90,13,80,.5) 62%, transparent 63%);
  border-radius: 50%;
  transform: translate(-50%, -40%);
}

.genie-head {
  position: absolute;
  top: 29px;
  left: 57px;
  width: 48px;
  height: 50px;
  background: var(--violet-deep);
  border-radius: 50% 50% 44% 44%;
}

.genie-body {
  position: absolute;
  left: 37px;
  bottom: 26px;
  width: 88px;
  height: 62px;
  background: var(--violet-deep);
  border-radius: 48% 48% 16% 16%;
}

.answer-node {
  position: absolute;
  z-index: 7;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  padding: 7px;
  color: var(--ivory);
  background: var(--plum);
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 181, 46, .26);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.answer-node.is-selected {
  color: var(--violet-deep);
  background: var(--gold);
}

.node-yes {
  left: 24px;
  top: 230px;
}

.node-no {
  right: 2px;
  top: 230px;
}

.node-maybe {
  left: 92px;
  bottom: 66px;
}

.node-maybe-no {
  right: 67px;
  bottom: 66px;
}

.node-unknown {
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
}

.section {
  padding: 96px 0;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  align-items: end;
  gap: 48px;
  margin-bottom: 46px;
}

.section-title h2 {
  margin-top: 5px;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.08;
}

.section-title > span {
  color: var(--muted);
}

.orbit-section {
  background: var(--paper);
}

.orbit-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding-top: 38px;
}

.orbit-route::before {
  position: absolute;
  top: 61px;
  right: 9%;
  left: 9%;
  height: 4px;
  background: linear-gradient(90deg, var(--rose), var(--blue), #31bfa8, #885bd2, var(--gold));
  content: "";
}

.route-card {
  position: relative;
  min-height: 260px;
  padding: 58px 20px 24px;
  background: rgba(255, 255, 255, .62);
  border: 1px solid var(--line);
  border-right: 0;
}

.route-card:last-child {
  border-right: 1px solid var(--line);
}

.route-card > span {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 20px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--rose);
  border: 5px solid var(--paper);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.route-two > span {
  background: var(--blue);
}

.route-three > span {
  background: #31a891;
}

.route-four > span {
  background: #8050c2;
}

.route-five > span {
  color: var(--ink);
  background: var(--gold);
}

.route-card h3 {
  font-size: 21px;
}

.route-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.route-card i {
  position: absolute;
  right: 20px;
  bottom: 22px;
  width: 32px;
  height: 32px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .3;
}

.path-section {
  color: var(--ivory);
  background: var(--violet-deep);
}

.section-title-light > span {
  color: #c1b1c8;
}

.path-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: 30px;
}

.path-steps {
  counter-reset: path-step;
  border-top: 1px solid rgba(255,255,255,.2);
}

.path-steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.path-steps li > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--violet-deep);
  background: var(--gold);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.path-steps h3 {
  font-size: 20px;
}

.path-steps p {
  margin-top: 4px;
  color: #c4b4ca;
  font-size: 14px;
}

.result-console {
  display: grid;
  grid-template-columns: 210px 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 22px 28px;
  padding: 30px;
  background: #251132;
  border: 1px solid #74476f;
}

.console-head {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid #74476f;
}

.console-head span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
}

.console-head strong {
  font-size: 14px;
}

.radar {
  position: relative;
  align-self: center;
  width: 190px;
  height: 190px;
  background: repeating-radial-gradient(circle, transparent 0 28px, rgba(61,169,223,.35) 29px 30px);
  border: 1px solid rgba(61,169,223,.45);
  border-radius: 50%;
}

.radar i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 92%;
  height: 1px;
  background: rgba(61,169,223,.32);
  transform-origin: left;
}

.radar i:nth-child(1) {
  transform: rotate(0);
}

.radar i:nth-child(2) {
  transform: rotate(60deg);
}

.radar i:nth-child(3) {
  transform: rotate(120deg);
}

.radar span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 28px var(--gold);
  transform: translate(-50%, -50%);
}

.result-console ul {
  align-self: center;
}

.result-console li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 20px;
  padding: 13px 0;
  border-bottom: 1px solid #51334e;
}

.result-console li span,
.result-console li strong {
  font-size: 13px;
}

.result-console li strong {
  color: #b8a7be;
}

.result-console li i {
  grid-column: 1 / -1;
  width: 38%;
  height: 5px;
  background: var(--blue);
}

.result-console li.is-leading i {
  width: 88%;
  background: var(--gold);
}

.result-console > p {
  grid-column: 1 / -1;
  padding: 12px 14px;
  color: #cbbbd0;
  background: #180921;
  font-size: 13px;
  text-align: center;
}

.scene-section,
.faq-section {
  background: var(--ivory);
}

.scene-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.scene-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.scene-card > div {
  aspect-ratio: 9 / 16;
  background: #efe7ee;
}

.scene-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.scene-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}

.scene-card figcaption span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
}

.scene-card figcaption strong {
  font-size: 16px;
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-item {
  background: rgba(255,255,255,.72);
  border-bottom: 1px solid var(--line);
}

.faq-item > button {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 20px;
  align-items: center;
  width: 100%;
  min-height: 74px;
  padding: 15px 22px;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.faq-item > button span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
}

.faq-item > button strong {
  font-size: 16px;
}

.faq-item > button i,
.official-site summary i {
  position: relative;
  width: 16px;
  height: 16px;
}

.faq-item > button i::before,
.faq-item > button i::after,
.official-site summary i::before,
.official-site summary i::after {
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 1px;
  background: currentColor;
  content: "";
}

.faq-item > button i::after,
.official-site summary i::after {
  transform: rotate(90deg);
}

.faq-item > button[aria-expanded="true"] i::after,
.official-site[open] summary i::after {
  transform: rotate(0);
}

.faq-answer {
  padding: 0 62px 22px 76px;
  color: var(--muted);
}

.official-site {
  margin-top: 28px;
  color: var(--ivory);
  background: var(--violet);
  border: 1px solid var(--violet);
}

.official-site summary {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 20px;
  align-items: center;
  min-height: 74px;
  padding: 15px 22px;
  cursor: pointer;
  list-style: none;
}

.official-site summary::-webkit-details-marker {
  display: none;
}

.official-site summary > span {
  color: var(--gold);
  font-size: 21px;
}

.official-site > div {
  padding: 0 76px 22px;
}

.official-site a {
  color: var(--gold);
  word-break: break-all;
}

.review-section {
  color: var(--ivory);
  background: var(--violet);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review-card {
  min-height: 250px;
  padding: 25px;
  background: #32143e;
  border: 1px solid #71466d;
  border-top: 3px solid var(--gold);
}

.review-card:nth-child(3n+2) {
  border-top-color: var(--blue);
}

.review-card:nth-child(3n+3) {
  border-top-color: #c055a3;
}

.review-card header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.review-card header > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ivory);
  background: var(--rose);
  border-radius: 50%;
  font-weight: 800;
}

.review-card header strong {
  font-size: 14px;
}

.review-card time {
  color: #baa9c0;
  font-size: 12px;
}

.review-card p {
  margin-top: 27px;
  color: #e2d6e5;
  font-size: 14px;
}

.download-section {
  padding: 76px 0;
  background: #081c3d;
}

.star-pass {
  position: relative;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 230px;
  align-items: stretch;
  min-height: 210px;
  overflow: hidden;
  color: var(--ivory);
  background: linear-gradient(115deg, #143f77, #0f2e68 52%, #29145d);
  border: 1px solid var(--gold);
}

.star-pass::before,
.star-pass::after {
  position: absolute;
  z-index: 3;
  top: -12px;
  width: 24px;
  height: 24px;
  background: #081c3d;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.star-pass::before {
  left: 208px;
}

.star-pass::after {
  right: 218px;
}

.pass-art {
  position: relative;
  display: grid;
  place-items: center;
  border-right: 1px dashed rgba(255,255,255,.38);
  background: rgba(255,255,255,.05);
}

.pass-orbit {
  width: 128px;
  height: 128px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: inset 0 0 0 22px rgba(61,169,223,.1);
}

.pass-orbit::before,
.pass-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255,181,46,.55);
  content: "";
  transform: translate(-50%, -50%);
}

.pass-orbit::before {
  width: 160px;
  height: 1px;
}

.pass-orbit::after {
  width: 1px;
  height: 160px;
}

.pass-star {
  position: absolute;
  color: var(--gold);
  font-size: 38px;
}

.pass-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 38px;
}

.pass-copy h2 {
  margin-top: 6px;
  font-size: 31px;
  line-height: 1.25;
}

.pass-copy > span {
  margin-top: 10px;
  color: #c9d7ee;
}

.pass-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: center;
  width: calc(100% - 46px);
  padding: 18px 20px;
  color: var(--violet-deep);
  background: var(--gold);
  font-weight: 800;
}

.ticket-edge {
  position: absolute;
  right: 14px;
  top: 20px;
  bottom: 20px;
  width: 18px;
  opacity: .55;
  background: repeating-linear-gradient(0deg, var(--gold) 0 2px, transparent 2px 7px);
}

.site-footer {
  color: var(--ivory);
  background: var(--violet-deep);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 42px 0 30px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 25px;
}

.footer-nav a {
  color: #ddcfe1;
  font-size: 13px;
}

.footer-bottom {
  padding: 18px 0 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.45);
}

.footer-bottom p {
  color: #ad9ab4;
  font-size: 12px;
}

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  background: var(--gold);
  border: 1px solid var(--violet-deep);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top i {
  width: 18px;
  height: 18px;
  background: url("../icons/top.svg") center / contain no-repeat;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

@media (max-width: 1000px) {
  :root {
    --header-height: 66px;
  }

  .header-shell,
  .hero-shell,
  .content-shell,
  .footer-shell {
    width: min(100% - 28px, 1200px);
  }

  .site-brand {
    margin-right: auto;
  }

  .site-brand img {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .mobile-controls {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    margin: 0;
    padding: 10px 14px 18px;
    background: var(--violet-deep);
    border-top: 1px solid #51304f;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    display: grid;
    gap: 0;
  }

  .main-nav a {
    padding: 13px 6px;
    border-bottom: 1px solid #51304f;
  }

  .main-nav a::after {
    display: none;
  }

  .hero,
  .hero-shell {
    min-height: auto;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 68px 0;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1 {
    white-space: normal;
  }

  .hero-text {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-action {
    justify-items: center;
  }

  .hero-points {
    justify-content: center;
  }

  .oracle-stage {
    width: min(100%, 590px);
    margin: 0 auto;
  }

  .section {
    padding: 74px 0;
  }

  .section-title {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 34px;
  }

  .orbit-route {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding-top: 0;
  }

  .orbit-route::before {
    display: none;
  }

  .route-card,
  .route-card:last-child {
    border: 1px solid var(--line);
  }

  .route-card:last-child {
    grid-column: 1 / -1;
  }

  .path-layout {
    grid-template-columns: 1fr;
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .star-pass {
    grid-template-columns: 160px minmax(0, 1fr) 200px;
  }

  .star-pass::before {
    left: 148px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .header-shell,
  .hero-shell,
  .content-shell,
  .footer-shell {
    width: calc(100% - 24px);
  }

  .brand-copy span {
    max-width: none;
    overflow: visible;
    text-overflow: clip;
  }

  .mobile-download {
    min-width: 82px;
    padding: 9px 9px;
  }

  .hero-shell {
    padding: 52px 0 64px;
  }

  .hero-copy h1 {
    font-size: 58px;
  }

  .hero-copy h2 {
    margin-top: 22px;
    font-size: 25px;
  }

  .oracle-stage {
    min-height: 430px;
  }

  .question-panel {
    width: 236px;
    padding: 12px;
  }

  .orbit-outer {
    width: 360px;
    height: 360px;
  }

  .orbit-middle {
    width: 275px;
    height: 275px;
  }

  .orbit-inner {
    width: 165px;
    height: 165px;
  }

  .genie-mark {
    width: 126px;
    height: 126px;
  }

  .genie-head {
    top: 22px;
    left: 44px;
    width: 38px;
    height: 40px;
  }

  .genie-body {
    left: 29px;
    bottom: 20px;
    width: 70px;
    height: 50px;
  }

  .answer-node {
    width: 62px;
    height: 62px;
    font-size: 12px;
  }

  .node-yes {
    left: 0;
    top: 174px;
  }

  .node-no {
    right: 0;
    top: 174px;
  }

  .node-maybe {
    left: 42px;
    bottom: 38px;
  }

  .node-maybe-no {
    right: 42px;
    bottom: 38px;
  }

  .node-unknown {
    bottom: -20px;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .orbit-route {
    grid-template-columns: 1fr;
  }

  .route-card:last-child {
    grid-column: auto;
  }

  .route-card {
    min-height: 190px;
  }

  .result-console {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .radar {
    justify-self: center;
  }

  .scene-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .scene-card figcaption {
    min-height: 60px;
    gap: 8px;
    padding: 11px;
  }

  .scene-card figcaption strong {
    font-size: 13px;
  }

  .faq-item > button {
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    min-height: 68px;
    padding: 13px 12px;
  }

  .faq-item > button strong {
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 16px 18px 50px;
  }

  .official-site summary {
    grid-template-columns: 29px minmax(0, 1fr) 18px;
    padding: 13px;
  }

  .official-site > div {
    padding: 0 50px 20px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-height: 0;
    padding: 22px;
  }

  .review-card time {
    justify-self: end;
    text-align: right;
  }

  .star-pass {
    grid-template-columns: 1fr;
  }

  .star-pass::before,
  .star-pass::after {
    display: none;
  }

  .pass-art {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px dashed rgba(255,255,255,.38);
  }

  .pass-copy {
    padding: 26px 22px 18px;
    text-align: center;
  }

  .pass-copy h2 {
    font-size: 25px;
  }

  .pass-action {
    width: calc(100% - 44px);
    margin: 8px 22px 26px;
  }

  .ticket-edge {
    display: none;
  }

  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
    width: 46px;
    height: 46px;
  }
}

@media (hover: none) and (pointer: coarse) {
  a,
  button,
  summary {
    -webkit-tap-highlight-color: transparent;
    transition: none !important;
  }

  a:active,
  button:active,
  summary:active {
    opacity: 1;
    filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
