@charset "UTF-8";

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

:root {
  --ink: #19181c;
  --ink-soft: #4f4850;
  --paper: #fffaf7;
  --paper-deep: #f9edf0;
  --rose: #ed5f91;
  --rose-dark: #ad385f;
  --rose-soft: #ffd5e2;
  --wine: #653047;
  --line: #e7ccd5;
  --white: #ffffff;
  --success: #2aaa67;
  --container: 1200px;
  --header-height: 76px;
  --shadow: 0 22px 60px rgba(82, 38, 56, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary {
  font: inherit;
}

button {
  color: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(237, 95, 145, 0.32);
  outline-offset: 3px;
}

p,
h1,
h2,
h3,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

.container,
.header-inner,
.hero-inner {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 247, 0.98);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

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

.brand img {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  object-fit: cover;
}

.brand-copy,
.footer-brand > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.brand-copy strong,
.footer-brand strong {
  font-size: 20px;
  white-space: nowrap;
}

.brand-copy span,
.footer-brand small {
  overflow: hidden;
  margin-top: 4px;
  color: #766b71;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav ul,
.footer-nav ul,
.hero-capabilities {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav ul {
  gap: 36px;
}

.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--header-height);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--rose);
  content: "";
  opacity: 0;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--rose-dark);
}

.site-nav a.is-active::after {
  opacity: 1;
}

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

.mobile-download {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--rose);
  background: var(--rose);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--ink);
  background: var(--paper);
  place-items: center;
}

.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-menu { background-image: url("../icons/menu.svg"); }
.icon-chat { background-image: url("../icons/chat.svg"); }
.icon-story { background-image: url("../icons/book.svg"); }
.icon-heart { background-image: url("../icons/heart.svg"); }
.icon-person { background-image: url("../icons/person.svg"); }
.icon-memory { background-image: url("../icons/memory.svg"); }
.icon-feather { background-image: url("../icons/feather.svg"); }
.icon-star { background-image: url("../icons/star.svg"); }
.icon-switch { background-image: url("../icons/switch.svg"); }
.icon-globe { background-image: url("../icons/globe.svg"); }

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 34%, rgba(237, 95, 145, 0.13), transparent 28%),
    linear-gradient(110deg, #fffaf7 0%, #fffaf7 58%, #fbedf1 58%, #fff5f7 100%);
}

.hero::before {
  position: absolute;
  top: 110px;
  right: -80px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(173, 56, 95, 0.14);
  border-radius: 50%;
  content: "";
}

.hero-inner {
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  padding: 72px 0;
}

.eyebrow,
.section-index,
.download-copy > p {
  margin-bottom: 14px;
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero h1 {
  margin-bottom: 16px;
  font-size: clamp(64px, 7vw, 102px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero h1 span {
  color: var(--wine);
}

.hero h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.25;
}

.hero-description {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 17px;
}

.hero-action {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid var(--rose);
  background: var(--rose);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.primary-link:hover,
.download-link:hover,
.mobile-download:hover {
  border-color: var(--rose-dark);
  background: var(--rose-dark);
}

.age-label {
  color: #776a70;
  font-size: 12px;
}

.hero-capabilities {
  gap: 28px;
  margin-top: 34px;
}

.hero-capabilities li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
}

.hero-capabilities li + li {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.companion-cabin {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 465px;
  min-height: 525px;
  padding: 38px 34px 30px;
  border: 1px solid rgba(173, 56, 95, 0.26);
  border-radius: 34px;
  background: rgba(255, 250, 247, 0.82);
  box-shadow: var(--shadow);
}

.cabin-orbit {
  position: absolute;
  top: 52px;
  left: 50%;
  width: 266px;
  height: 266px;
  border: 1px solid rgba(237, 95, 145, 0.5);
  border-radius: 50%;
  transform: translateX(-50%);
}

.cabin-orbit::before,
.cabin-orbit::after {
  position: absolute;
  border: 1px solid rgba(101, 48, 71, 0.13);
  border-radius: 50%;
  content: "";
}

.cabin-orbit::before { inset: -16px; }
.cabin-orbit::after { inset: 16px; }

.avatar-wrap {
  position: relative;
  z-index: 1;
  width: 222px;
  height: 222px;
  margin: 0 auto;
  padding: 8px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(101, 48, 71, 0.18);
}

.avatar-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.online-status {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 20px;
  font-size: 13px;
  font-weight: 700;
}

.online-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(42, 170, 103, 0.12);
}

.dialogue-panel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.dialogue {
  width: fit-content;
  max-width: 86%;
  margin-bottom: 0;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: #473b41;
  font-size: 13px;
  line-height: 1.55;
}

.dialogue-right {
  justify-self: end;
  border-color: var(--rose-soft);
  background: var(--rose-soft);
}

.section {
  padding: 94px 0;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-heading > p:last-child,
.section-heading-row > p {
  max-width: 620px;
  margin-bottom: 0;
  color: #74676d;
  font-size: 15px;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
}

.journey {
  background: var(--white);
}

.journey-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.journey-list li {
  position: relative;
  min-height: 245px;
  padding: 30px 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.journey-list li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 48px;
  right: -14px;
  width: 28px;
  height: 2px;
  background: var(--rose);
  content: "";
}

.journey-list .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 34px;
}

.step-number {
  position: absolute;
  top: 28px;
  right: 24px;
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 800;
}

.journey-list h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.journey-list p {
  margin-bottom: 0;
  color: #706369;
  font-size: 14px;
}

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

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

.screenshot-card {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.screenshot-media {
  display: grid;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #1b1b1e;
  place-items: center;
}

.screenshot-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

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

.screenshot-card figcaption strong {
  font-size: 17px;
}

.inspiration {
  background: var(--white);
}

.inspiration-board {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  grid-template-columns: 285px minmax(0, 1fr);
}

.topic-panel {
  display: flex;
  padding: 28px 0;
  border-right: 1px solid var(--line);
  background: #fff6f8;
  flex-direction: column;
}

.topic-label {
  margin: 0 24px 14px;
  color: var(--rose-dark);
  font-size: 13px;
  font-weight: 800;
}

.topic-button {
  position: relative;
  width: 100%;
  padding: 18px 24px 18px 36px;
  border: 0;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.topic-button::before {
  position: absolute;
  top: 27px;
  left: 22px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose-dark);
  content: "";
}

.topic-button strong,
.topic-button span {
  display: block;
}

.topic-button strong {
  margin-bottom: 3px;
  font-size: 16px;
}

.topic-button span {
  color: #7b6d73;
  font-size: 12px;
}

.topic-button:hover,
.topic-button.is-active {
  border-color: #f5b9cb;
  background: #ffdce7;
}

.scene-panel {
  min-width: 0;
  padding: 34px 42px;
  background:
    radial-gradient(circle at 100% 100%, rgba(237, 95, 145, 0.12), transparent 30%),
    var(--paper);
}

.scene-kicker {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: #7b6d73;
  font-size: 14px;
}

.scene-prompt {
  margin-bottom: 20px;
  font-size: 15px;
}

.scene-response {
  display: flex;
  max-width: 690px;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.scene-response img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.scene-response p {
  margin-bottom: 0;
  color: #55484e;
  font-size: 14px;
}

.scene-response strong,
.scene-response span {
  display: block;
}

.scene-response strong {
  margin-bottom: 4px;
  color: var(--ink);
}

.scene-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.scene-actions button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.scene-actions button:first-child,
.scene-actions button:hover,
.scene-actions button[aria-pressed="true"] {
  border-color: var(--rose);
  background: var(--rose);
  color: var(--white);
}

.scene-actions button:first-child .icon,
.scene-actions button:hover .icon,
.scene-actions button[aria-pressed="true"] .icon {
  filter: brightness(0) invert(1);
}

.scene-actions .icon {
  width: 18px;
  height: 18px;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.faq-item,
.official-disclosure {
  border: 1px solid var(--line);
  background: var(--white);
}

.faq-item summary,
.official-disclosure summary {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker,
.official-disclosure summary::-webkit-details-marker {
  display: none;
}

.faq-item summary strong,
.official-disclosure summary strong {
  font-size: 15px;
}

.faq-item summary i,
.official-toggle {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.faq-item summary i::before,
.faq-item summary i::after,
.official-toggle::before,
.official-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-item summary i::after,
.official-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary i::after,
.official-disclosure[open] .official-toggle::after {
  display: none;
}

.faq-item > p {
  margin: 0;
  padding: 0 22px 20px;
  color: #6f6268;
  font-size: 14px;
}

.official-disclosure {
  width: 100%;
  max-width: var(--container);
  margin-top: 22px;
}

.official-disclosure summary {
  justify-content: flex-start;
  min-height: 74px;
}

.official-disclosure summary strong {
  flex: 1;
  font-size: 16px;
}

.official-disclosure .icon-globe {
  width: 22px;
  height: 22px;
}

.official-answer {
  padding: 0 58px 24px;
}

.official-answer a {
  color: var(--rose-dark);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.voices-section {
  background: var(--white);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.voice-card {
  min-height: 265px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.voice-author {
  display: grid;
  margin-bottom: 18px;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  place-items: center;
}

.voice-author strong {
  font-size: 14px;
}

.voice-author time {
  color: #81747a;
  font-size: 12px;
}

.voice-card blockquote {
  margin-bottom: 0;
  color: #51464b;
  font-size: 14px;
  line-height: 1.85;
}

.download-section {
  padding: 76px 0;
  background: var(--wine);
}

.download-pass {
  position: relative;
  display: grid;
  min-height: 168px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: var(--paper);
  grid-template-columns: minmax(0, 1fr) 220px;
}

.download-pass::before,
.download-pass::after {
  position: absolute;
  z-index: 2;
  top: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--wine);
  content: "";
}

.download-pass::before {
  right: 210px;
}

.download-pass::after {
  top: auto;
  right: 210px;
  bottom: -10px;
}

.download-copy,
.download-link {
  min-width: 0;
}

.download-copy {
  display: flex;
  justify-content: center;
  padding: 26px 42px;
  flex-direction: column;
}

.download-copy > p {
  margin-bottom: 6px;
}

.download-copy h2 {
  margin-bottom: 6px;
  font-size: 25px;
  line-height: 1.3;
  white-space: nowrap;
}

.download-copy > span {
  color: #73666c;
  font-size: 13px;
}

.download-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px dashed #c998aa;
  background: var(--rose);
  color: var(--white);
  font-size: 19px;
  font-weight: 800;
  white-space: nowrap;
}

.site-footer {
  padding: 44px 0 24px;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  object-fit: cover;
}

.footer-brand small {
  color: #c5b8be;
}

.footer-nav ul {
  gap: 28px;
}

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

.footer-nav a:hover {
  color: #ff99bc;
}

.footer-bottom {
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
  color: #c5b8be;
  font-size: 12px;
}

.back-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  place-items: center;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-top i {
  display: block;
  width: 20px;
  height: 20px;
  background: url("../images/top.png") center / contain no-repeat;
}

@media (max-width: 980px) {
  .site-nav ul {
    gap: 22px;
  }

  .hero-inner {
    min-height: 640px;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 36px;
  }

  .hero h1 {
    font-size: 70px;
  }

  .companion-cabin {
    min-height: 500px;
  }

  .journey-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-list li:nth-child(2)::after {
    display: none;
  }

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

  .download-pass {
    grid-template-columns: minmax(0, 1fr) 170px;
  }

  .download-copy {
    padding-inline: 26px;
  }

  .download-copy h2 {
    font-size: 20px;
  }
}

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

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

  body.menu-open {
    overflow: hidden;
  }

  .container,
  .header-inner,
  .hero-inner {
    width: min(100% - 28px, var(--container));
  }

  .site-header,
  .header-inner {
    height: var(--header-height);
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    transform: none;
    backface-visibility: visible;
    will-change: auto;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

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

  .mobile-actions {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

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

  .site-nav ul {
    display: block;
    width: min(100% - 28px, var(--container));
    margin-inline: auto;
  }

  .site-nav li + li {
    border-top: 1px solid var(--line);
  }

  .site-nav a {
    height: 50px;
    font-size: 14px;
  }

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

  .hero {
    background: linear-gradient(180deg, #fffaf7 0%, #fffaf7 54%, #fbedf1 54%, #fff5f7 100%);
  }

  .hero-inner {
    min-height: auto;
    padding: 62px 0;
    grid-template-columns: 1fr;
    gap: 46px;
  }

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

  .hero h1 {
    font-size: clamp(56px, 15vw, 76px);
  }

  .hero-description {
    margin-inline: auto;
  }

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

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

  .companion-cabin {
    justify-self: center;
    max-width: 500px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading-row {
    display: block;
  }

  .section-heading-row > p {
    margin-top: 14px;
  }

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

  .inspiration-board {
    grid-template-columns: 1fr;
  }

  .topic-panel {
    display: grid;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .topic-label {
    grid-column: 1 / -1;
    margin: 0 0 12px;
  }

  .topic-button {
    padding: 14px;
    border: 1px solid var(--line);
    text-align: center;
  }

  .topic-button + .topic-button {
    border-left: 0;
  }

  .topic-button::before {
    display: none;
  }

  .scene-panel {
    padding: 30px;
  }

  .download-pass {
    grid-template-columns: 1fr 190px;
  }

  .download-copy {
    grid-column: 1;
  }

  .download-link {
    border-left: 1px dashed #c998aa;
    grid-column: 2;
    grid-row: 1;
  }

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

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

  .footer-nav ul {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .brand-copy span {
    max-width: 118px;
  }

  .mobile-download {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-inner {
    padding: 50px 0 58px;
  }

  .hero h2 {
    font-size: 30px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-capabilities {
    gap: 12px;
  }

  .hero-capabilities li {
    gap: 5px;
    font-size: 12px;
  }

  .hero-capabilities li + li {
    padding-left: 12px;
  }

  .hero-capabilities .icon {
    width: 19px;
    height: 19px;
  }

  .companion-cabin {
    min-height: 480px;
    padding-inline: 18px;
    border-radius: 26px;
  }

  .avatar-wrap {
    width: 205px;
    height: 205px;
  }

  .cabin-orbit {
    width: 242px;
    height: 242px;
  }

  .section {
    padding: 60px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

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

  .journey-list {
    grid-template-columns: 1fr;
  }

  .journey-list li {
    min-height: auto;
  }

  .journey-list li::after {
    display: none;
  }

  .screenshot-grid {
    gap: 10px;
  }

  .screenshot-card figcaption {
    min-height: 58px;
    gap: 7px;
    padding: 12px 9px;
  }

  .screenshot-card figcaption strong {
    font-size: 14px;
    white-space: nowrap;
  }

  .topic-panel {
    display: block;
  }

  .topic-button {
    border: 1px solid var(--line);
  }

  .topic-button + .topic-button {
    margin-top: 8px;
    border-left: 1px solid var(--line);
  }

  .scene-panel {
    padding: 24px 18px;
  }

  .scene-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scene-actions button {
    padding-inline: 10px;
  }

  .scene-actions button:last-child {
    grid-column: 1 / -1;
  }

  .faq-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .official-answer {
    padding-inline: 22px;
  }

  .voice-card {
    min-height: auto;
  }

  .download-section {
    padding: 56px 0;
  }

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

  .download-copy {
    justify-content: center;
    padding: 24px 20px;
    text-align: center;
  }

  .download-copy h2 {
    font-size: 19px;
    white-space: normal;
  }

  .download-link {
    min-height: 64px;
    border-top: 1px dashed #c998aa;
    border-left: 0;
    grid-column: 1;
    grid-row: auto;
  }

  .footer-main,
  .footer-brand,
  .footer-nav ul {
    justify-content: center;
  }

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

  .footer-nav ul {
    gap: 16px 22px;
  }

  .back-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }
}

@media (hover: none) and (pointer: coarse) {
  a,
  button,
  summary {
    transition: none !important;
    animation: none !important;
  }

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
