html {
  min-width: 0;
  background: #ffffff;
}

body.info-page {
  min-width: 0;
  background:
    linear-gradient(180deg, #fff0f6 0, #ffffff 34rem),
    #ffffff;
}

.info-header {
  gap: clamp(0.8rem, 2.5vw, 2rem);
  border: 0;
}

.info-header > .legal-brand,
.info-header > .legal-controls {
  flex: none;
}

.info-header__nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  margin: 0;
}

.info-header__nav a {
  position: relative;
  display: inline-flex;
  padding-block: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.045em;
  text-decoration: none;
  white-space: nowrap;
}

.info-header__nav a:hover {
  color: var(--ink);
}

.info-header__nav a[aria-current="page"] {
  color: var(--pink);
}

.info-header__download {
  display: inline-flex;
  min-height: 2.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem 0.56rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease;
}

.info-header__download::after {
  content: none;
}

.info-header__download:hover {
  color: var(--ink);
  background: transparent;
}

.info-menu-toggle {
  position: relative;
  display: none;
  width: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: oklch(100% 0 0 / 0.5);
  font-size: 0.7rem;
  font-weight: 650;
  cursor: pointer;
}

.info-menu-toggle__icon {
  position: relative;
  display: block;
  width: 0.9rem;
  height: 0.6rem;
}

.info-menu-toggle__icon i {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: translateY(-0.18rem);
}

.info-menu-toggle__icon i:last-child {
  transform: translateY(0.18rem);
}

.info-menu[hidden] {
  display: none !important;
}

.info-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: block;
}

.info-menu__backdrop {
  display: none;
}

.info-menu__panel {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  width: 100%;
  min-height: 100%;
  grid-template-rows: auto auto auto auto;
  align-content: start;
  padding: 0 0 max(2rem, env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  background:
    radial-gradient(ellipse 70% 30% at 82% 0%, oklch(89% 0.085 350 / 0.5), transparent 76%),
    var(--paper);
  animation: info-panel-in 380ms var(--ease-out) both;
}

.info-menu__top {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  padding: env(safe-area-inset-top) max(1rem, env(safe-area-inset-right)) 0 max(1rem, env(safe-area-inset-left));
  background: color-mix(in oklch, var(--paper), transparent 6%);
}

.info-menu__close {
  display: inline-flex;
  width: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: color-mix(in oklch, var(--paper), transparent 8%);
  font-size: 0;
  font-weight: 700;
  cursor: pointer;
}

.info-menu__close::before {
  content: none;
}

.info-menu__close span {
  font-size: 1rem;
  font-weight: 400;
}

.info-menu__nav {
  display: grid;
  width: min(100% - 2rem, 44rem);
  margin: 0 auto;
  padding-top: clamp(2rem, 7vw, 3.5rem);
}

.info-menu__nav p {
  margin: 0 0 0.75rem;
  color: var(--pink);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.info-menu__nav a {
  display: flex;
  min-height: 4.6rem;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-family: "Libre Caslon Condensed", Georgia, serif;
  font-size: clamp(2.25rem, 11vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-decoration: none;
}

.info-menu__nav a::after {
  content: none;
}

.info-menu__nav a[aria-current="page"] {
  color: var(--pink);
}

html[lang^="zh"] .info-menu__nav a {
  font-family: inherit;
  font-size: clamp(1.8rem, 9vw, 2.6rem);
  font-weight: 680;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.info-menu__download {
  display: flex;
  width: min(100% - 2rem, 44rem);
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.5rem auto 0;
  padding: 0.1rem 1.25rem 0;
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.info-menu__footer {
  display: grid;
  width: min(100% - 2rem, 44rem);
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: clamp(2.4rem, 8vw, 4rem) auto 0;
}

.info-menu__legal {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 0.35rem;
}

.info-menu__legal a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.76rem;
  text-decoration: none;
}

body.info-menu-open {
  overflow: hidden;
}

@keyframes info-panel-in {
  from {
    opacity: 0;
    transform: translateY(-0.75rem);
  }
}

.info-page .legal-title-block h1 {
  max-width: 13ch;
  overflow-wrap: normal;
}

.info-page .legal-content > p:first-child {
  margin-bottom: 0;
}

.info-page .legal-content section + section {
  margin-top: clamp(0.8rem, 2vw, 1.5rem);
}

.info-page .legal-content .legal-detail:last-child {
  border-bottom: 0;
}

.info-page .legal-footer a[aria-current="page"] {
  color: var(--pink);
  text-decoration: none;
}

.info-image {
  width: 100%;
  margin: 0 0 1.5rem;
  overflow: hidden;
  border-radius: 0.8rem;
  background: var(--paper-pink);
}

.info-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.info-image--team img {
  object-position: center 68%;
}

.info-action p {
  max-width: 35rem;
}

.info-button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin-top: 0.35rem;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  color: var(--paper) !important;
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1;
  text-decoration: none !important;
  transition: transform 180ms var(--ease-out), background-color 180ms linear;
}

.info-button:hover {
  background: color-mix(in oklch, var(--ink), var(--pink) 12%);
  transform: translateY(-1px);
}

.press-facts {
  margin: 0;
}

.press-facts > div {
  display: grid;
  grid-template-columns: minmax(9.5rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  padding: 1.15rem 0;
  border-top: 1px solid color-mix(in oklch, var(--line), transparent 18%);
}

.press-facts > div:last-child {
  border-bottom: 0;
}

.press-facts dt {
  color: var(--ink);
  font-weight: 650;
}

.press-facts dd {
  margin: 0;
}

.press-assets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.asset-item {
  min-width: 0;
  margin: 0;
}

.asset-item__preview {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border-radius: 0.8rem;
  background: var(--paper-pink);
}

.asset-item__preview img {
  display: block;
  width: 54%;
  height: 54%;
  border-radius: 21%;
  object-fit: cover;
}

.asset-item__preview--screen img {
  width: 44%;
  height: 82%;
  border-radius: 0.55rem;
  object-position: top;
}

.asset-item__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0 0;
}

.asset-item__meta h3,
.asset-item__meta p {
  margin: 0;
}

.asset-item__meta h3 {
  color: var(--ink);
  font-size: 0.85rem;
}

.asset-item__meta p,
.asset-item__meta a {
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.5;
}

.asset-item__meta a {
  flex: none;
  color: var(--ink);
}

.support-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(2.2rem, 5vw, 3.8rem);
}

.support-index a {
  display: flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms linear;
}

.support-index a::after {
  color: var(--pink);
  content: "\2198";
  font-size: 0.9rem;
  font-weight: 500;
  transition: transform 180ms var(--ease-out);
}

.support-index a:hover {
  color: var(--ink);
}

.support-index a:hover::after {
  transform: translate(0.12rem, 0.12rem);
}

.faq-list {
  border-bottom: 0;
}

.faq-item {
  border-top: 0;
}

.faq-item + .faq-item {
  border-top: 1px solid color-mix(in oklch, var(--line), transparent 18%);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 4.2rem;
  align-items: center;
  padding: 0.9rem 3.2rem 0.9rem 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  font-size: 1rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  color: var(--paper);
  background: var(--pink);
  border-color: var(--pink);
  content: "×";
}

.faq-answer {
  padding: 0 3.2rem 1.25rem 0;
}

.faq-answer p {
  margin: 0;
}

html[lang^="zh"] .press-facts dt,
html[lang^="zh"] .faq-item summary {
  font-weight: 680;
}

@media (max-width: 1040px) {
  .info-header {
    gap: 0.85rem;
  }

  .info-header__nav {
    gap: 1rem;
  }

  .info-header__download {
    padding-inline: 0.85rem;
  }
}

@media (max-width: 920px) {
  .js .info-header__nav,
  .info-header__nav {
    display: none;
  }

  .js .info-header__download,
  .info-header__download {
    display: inline-flex;
    min-height: 2.75rem;
    padding: 0.55rem 0.75rem 0.56rem 0.9rem;
  }

  .js .info-header > .legal-controls {
    margin-left: auto;
  }

  .js .info-menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  .info-page .legal-shell {
    width: min(100% - 2rem, 44rem);
  }

  .info-page .legal-title-block h1 {
    max-width: 9.5ch;
    font-size: clamp(3rem, 14.5vw, 4.15rem);
  }

  html[lang^="zh"] .info-page .legal-title-block h1 {
    max-width: 10ch;
    font-size: clamp(2.55rem, 12vw, 3.5rem);
  }

  .press-facts > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 1rem 0;
  }

  .press-assets {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .asset-item__meta a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
  }

  .support-index {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    min-height: 4.6rem;
    font-size: 0.94rem;
  }

  .faq-answer {
    padding-right: 0.25rem;
  }
}

@media (max-width: 380px) {
  .info-menu__close {
    min-width: 5.75rem;
    padding-inline: 0.8rem;
  }

  .info-menu__footer {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .info-button,
  .info-header__download {
    transition: none;
  }

  .info-menu__backdrop,
  .info-menu__panel {
    animation-duration: 1ms;
  }
}
