@font-face {
  font-family: Manrope;
  src: url("/assets/manrope.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: Newsreader;
  src: url("/assets/newsreader.woff2") format("woff2");
  font-weight: 200 800;
  font-style: italic;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --bg: #0a0c10;
  --surface: #151b25;
  --text: #f1f1ee;
  --muted: #adb6c2;
  --line: #2c3541;
  --accent: #5ce1ff;
  --blue: #3d8bff;
  --action: #d6ff5c;
  --font: Manrope, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --radius: 4px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.75 var(--font);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
}
button,
a,
summary {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
figure,
p,
h1,
h2,
h3 {
  margin: 0;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
  border-radius: 2px;
}
::selection {
  background: var(--accent);
  color: var(--bg);
}
[hidden] {
  display: none !important;
}
.wrap {
  width: calc(100% - 112px);
  max-width: 1320px;
  margin-inline: auto;
}
.section {
  padding-block: 100px;
  scroll-margin-top: 24px;
}
.eyebrow {
  font-size: 11px;
  line-height: 1.6;
  font-weight: 650;
  letter-spacing: 1.8px;
  color: var(--muted);
}
h1,
h2,
h3 {
  font-weight: 500;
}
h1 {
  font-size: clamp(54px, 5.4vw, 80px);
  letter-spacing: -3.6px;
  line-height: 1.04;
}
h2 {
  font-size: clamp(32px, 3.3vw, 48px);
  letter-spacing: -1.8px;
  line-height: 1.18;
}
h3 {
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.4px;
}
em {
  font-family: Newsreader, Georgia, serif;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -1.4px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--action);
  color: #172006;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 750;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  background: #e4ff98;
  transform: translateY(-2px);
}
.button svg {
  width: 24px;
  height: 24px;
}
.button > span:last-child {
  margin-left: 8px;
  font-size: 21px;
  font-weight: 400;
}
.button-small {
  min-height: 44px;
  padding: 10px 15px;
  font-size: 12px;
  background: transparent;
  color: var(--text);
  border-color: #60713c;
}
.button-small:hover {
  background: var(--action);
  color: #172006;
}
.button-outline {
  background: transparent;
  border-color: #607080;
  color: var(--text);
}
.button-outline:hover {
  background: #22313f;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  font-size: 13px;
  font-weight: 600;
}
.text-link:hover {
  color: var(--accent);
}
.text-link span {
  font-size: 21px;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 15px;
  transform: translateY(-160%);
  padding: 12px;
  background: var(--text);
  color: var(--bg);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 750;
  font-size: 23px;
  letter-spacing: -1px;
  line-height: 1.2;
}
.brand img {
  border-radius: 6px;
}
.site-header nav {
  display: flex;
  gap: 28px;
}
.site-header nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
  color: #bec6d0;
}
.site-header nav a:hover,
.site-header nav a[aria-current] {
  color: var(--accent);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.language {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 30px;
  font-size: 12px;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
  gap: 48px;
  min-height: 695px;
  padding-block: 64px 72px;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--accent);
}
.edition-mark {
  display: inline-block;
  width: 18px;
  height: 9px;
  border: 1px solid var(--accent);
  box-shadow:
    4px -4px 0 -1px var(--bg),
    4px -4px 0 0 var(--accent);
  flex: none;
}
.hero-description {
  font-size: 16px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 415px;
  margin-top: 26px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.store-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 15px;
}
.hero-art {
  height: 550px;
  position: relative;
  padding-top: 34px;
}
.art-heading {
  position: absolute;
  inset: 0 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1.8px;
  line-height: 1.5;
}
.art-heading span:last-child {
  color: var(--accent);
}
.hero-main {
  position: absolute;
  top: 34px;
  left: 0;
  width: 83%;
  height: calc(100% - 62px);
  overflow: hidden;
  border-radius: var(--radius);
  background: #112431;
}
.hero-main > img {
  width: 100%;
  height: 100%;
  object-position: center 53%;
}
.hero-main:after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, #03080eeb);
}
.hero-main figcaption {
  position: absolute;
  bottom: 26px;
  left: 26px;
  right: 85px;
  z-index: 1;
}
.hero-main figcaption span {
  display: block;
  font-size: 10px;
  color: #c9d7e3;
  letter-spacing: 1.4px;
  margin-bottom: 6px;
}
.hero-main figcaption strong {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
  display: block;
  max-width: 235px;
}
.hero-secondary {
  position: absolute;
  right: -1px;
  bottom: 70px;
  width: 37%;
  height: 45%;
  border: 7px solid var(--bg);
  border-right: 0;
  border-radius: 4px;
  background: #142234;
  overflow: hidden;
}
.hero-secondary > img {
  width: 100%;
  height: 100%;
  object-position: center 35%;
}
.hero-secondary:after {
  content: "";
  position: absolute;
  inset: 65% 0 0;
  background: linear-gradient(transparent, #050913d9);
}
.hero-secondary figcaption {
  position: absolute;
  bottom: 15px;
  left: 14px;
  right: 14px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.8px;
  color: #e6eef8;
}
.hero-secondary figcaption span:last-child {
  font-size: 18px;
  color: var(--accent);
}
.art-caption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}
.art-caption > span:last-child {
  margin-left: auto;
  font-size: 10px;
  letter-spacing: 1px;
}
.status-dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}
.marquee {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 24px;
  border-block: 1px solid var(--line);
  font-size: 14px;
  color: #c7ced8;
}
.marquee > span {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ribbon-symbol {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--accent);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}
.section-heading .eyebrow {
  margin-bottom: 16px;
}
.section-heading > p {
  max-width: 270px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px;
}
.filter-bar button {
  background: transparent;
  border: 1px solid #414c5b;
  border-radius: var(--radius);
  min-height: 44px;
  padding: 10px 18px;
  font-size: 13px;
  color: #bbc5d2;
  transition:
    background 0.18s,
    border-color 0.18s;
}
.filter-bar button[aria-pressed="true"] {
  background: #112c36;
  border-color: var(--accent);
  color: #b6f2ff;
}
.filter-bar button:hover {
  border-color: var(--accent);
}
.filter-bar button > span {
  margin-left: 17px;
}
.recommendation-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  min-height: 65px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.recommendation-meta p:last-child {
  font-size: 11px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 24px;
}
.creation {
  min-width: 0;
}
.artwork-button {
  position: relative;
  display: block;
  width: 100%;
  height: 390px;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 0;
  background: #151e2d;
  text-align: left;
}
.artwork-button > img {
  width: 100%;
  height: 100%;
  object-position: center 43%;
  transition: transform 0.35s;
}
.artwork-button:hover > img {
  transform: scale(1.035);
}
.artwork-button:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(#02060a40, transparent 35%, #02060ac9);
}
.artwork-top,
.artwork-bottom {
  position: absolute;
  left: 20px;
  right: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.artwork-top {
  top: 20px;
  font-size: 11px;
}
.artwork-top > span:first-child {
  background: #0a131be8;
  color: #edf3f7;
  border: 1px solid #b9d1e657;
  border-radius: 2px;
  padding: 4px 10px;
}
.artwork-top > span:last-child {
  font-size: 10px;
  color: white;
  text-shadow: 0 1px 4px black;
}
.artwork-bottom {
  bottom: 20px;
  font-size: 12px;
  color: #fff;
}
.circle-arrow {
  width: 35px;
  height: 35px;
  border: 1px solid #d5ebffaa;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  transition:
    background 0.2s,
    color 0.2s;
}
.artwork-button:hover .circle-arrow {
  background: var(--accent);
  color: #08171d;
  border-color: var(--accent);
}
.creation h3 {
  font-size: 15px;
  line-height: 1.6;
  margin-top: 14px;
  letter-spacing: 0;
}
.gallery-note {
  font-size: 12px;
  color: var(--muted);
  max-width: 840px;
  margin-top: 28px;
  line-height: 1.8;
}
.capabilities {
  display: grid;
  grid-template-columns: 0.93fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.capability-visual {
  height: 720px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #14202e;
}
.capability-visual > img {
  width: 100%;
  height: 100%;
  object-position: center 55%;
}
.viewfinder {
  position: absolute;
  inset: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border: 1px solid #d7e8ff60;
  padding: 15px;
  font-size: 10px;
  letter-spacing: 1px;
  color: #e4f1ff;
}
.prompt-overlay {
  position: absolute;
  bottom: 43px;
  left: 43px;
  right: 43px;
  padding: 22px;
  background: #0e1927f5;
  border: 1px solid #536b81;
  border-radius: var(--radius);
}
.prompt-overlay > span:first-child,
.prompt-label {
  font-size: 10px;
  letter-spacing: 1px;
  color: #bacddd;
}
.prompt-overlay p {
  font-size: 17px;
  line-height: 1.75;
  margin-block: 15px;
}
.prompt-label {
  color: var(--accent);
}
.capability-copy > .eyebrow {
  margin-bottom: 18px;
}
.section-description {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  max-width: 420px;
  margin-top: 22px;
}
.feature-list {
  margin-top: 30px;
}
.feature-list article {
  display: flex;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-block: 23px;
}
.feature-index {
  font-size: 11px;
  padding-top: 5px;
  color: var(--accent);
}
.feature-list h3 {
  font-size: 18px;
}
.feature-list p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin-block: 9px 5px;
}
.feature-list .text-link {
  color: var(--accent);
  font-size: 12px;
  min-height: 40px;
}
.how-section {
  border-top: 1px solid var(--line);
}
.how-section > .eyebrow {
  margin-bottom: 18px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 45px;
  margin-top: 45px;
}
.step-number {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #526071;
  padding-top: 16px;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 12px;
}
.step-number > span {
  font-size: 25px;
  color: #b4c3d5;
}
.steps h3 {
  font-size: 20px;
  margin-bottom: 14px;
}
.steps p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 335px;
}
.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  border-top: 1px solid var(--line);
}
.faq .eyebrow {
  margin-bottom: 18px;
}
.faq h2 em {
  display: block;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  line-height: 1.7;
  cursor: pointer;
  list-style: none;
  padding-block: 23px;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  flex: none;
}
details[open] summary span {
  transform: rotate(45deg);
}
details > p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  padding-bottom: 25px;
  max-width: 94%;
}
.download-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 460px;
  border: 1px solid #354151;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.download-section > div:first-child {
  padding: 54px;
  position: relative;
  z-index: 1;
}
.download-section .eyebrow {
  color: var(--accent);
}
.download-section h2 {
  font-size: 51px;
  line-height: 1.13;
  margin-block: 23px;
}
.download-section > div > p:not(.eyebrow):not(.store-note) {
  font-size: 15px;
  line-height: 1.85;
  color: #bec9d5;
  margin-bottom: 27px;
  max-width: 350px;
}
.download-art {
  position: relative;
  overflow: hidden;
}
.download-art > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center 37%;
  opacity: 0.83;
}
.download-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--surface),
    transparent 45%,
    #0a0c1020
  );
}
.download-art > span {
  position: absolute;
  z-index: 1;
  left: 20%;
  bottom: 13%;
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 1.4;
}
.download-art > span > em {
  display: block;
  font-size: 49px;
  letter-spacing: -1.5px;
  line-height: 1.2;
  color: #e3f5ff;
}
.footer {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  column-gap: 55px;
  row-gap: 38px;
  padding-block: 64px 30px;
}
.footer > div > p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-content: center;
  gap: 9px 20px;
}
.footer-links > a {
  display: flex;
  align-items: center;
  min-height: 40px;
  font-size: 12px;
  color: #c1cbd7;
}
.footer-links > a:hover {
  color: var(--accent);
}
.copyright,
.back-top {
  font-size: 11px;
  color: var(--muted);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.back-top {
  text-align: right;
}
.back-top span {
  margin-left: 25px;
  color: var(--accent);
}
html:has(dialog[open]) {
  overflow: hidden;
}
dialog {
  width: calc(100% - 32px);
  max-width: 850px;
  max-height: 90dvh;
  overflow: auto;
  background: #111a25;
  color: var(--text);
  border: 1px solid #536374;
  border-radius: 6px;
  padding: 0;
}
dialog[open] {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
}
dialog::backdrop {
  background: #02060de8;
}
#dialog-image {
  width: 100%;
  height: 100%;
  min-height: 570px;
  max-height: 730px;
  object-position: center 43%;
}
.dialog-content {
  padding: 54px 32px 30px;
}
.dialog-content h2 {
  font-size: 32px;
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin-block: 17px 22px;
}
#dialog-prompt {
  font-size: 15px;
  line-height: 1.9;
  color: #e2ebf5;
}
.dialog-note {
  font-size: 12px;
  line-height: 1.85;
  color: var(--muted);
  margin-block: 18px 25px;
}
.dialog-close {
  position: absolute;
  z-index: 2;
  right: 12px;
  top: 12px;
  width: 40px;
  height: 40px;
  border: 1px solid #718193;
  border-radius: 4px;
  background: #101a26;
  font-size: 27px;
  line-height: 1;
}
.dialog-content .button {
  width: 100%;
}
#copy-status {
  font-size: 12px;
  line-height: 1.7;
  color: var(--accent);
  min-height: 43px;
  padding-block: 9px;
}
.not-found {
  padding-block: 110px;
}
.not-found h1 {
  margin-block: 30px;
}
.not-found > p {
  margin-block: 26px;
}
.not-found > .text-link {
  margin-left: 25px;
}
.noscript-note {
  padding: 20px;
  text-align: center;
  font-size: 14px;
}
.product-hero h1 {
  font-size: clamp(42px, 4.3vw, 64px);
}
.product-hero .hero-main figcaption {
  display: none;
}
html[lang="zh-CN"] h1 {
  font-size: clamp(43px, 4.8vw, 67px);
  line-height: 1.3;
  letter-spacing: -1.5px;
}
html[lang="zh-CN"] h2 {
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.4;
  letter-spacing: -0.7px;
}
html[lang="zh-CN"] em {
  font-family: var(--font);
  font-style: normal;
  letter-spacing: inherit;
}
html[lang="zh-CN"] .eyebrow {
  letter-spacing: 0.5px;
}
html[lang="zh-CN"] .hero-description {
  line-height: 2.1;
}
html[lang="zh-CN"] .download-art > span > em {
  font-family: Newsreader, Georgia, serif;
  font-style: italic;
}
@media (min-width: 1500px) {
  .hero {
    min-height: 755px;
  }
  .hero-art {
    height: 600px;
  }
  .artwork-button {
    height: 430px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .site-header {
    gap: 18px;
  }
  .site-header nav {
    gap: 20px;
  }
  .site-header nav a {
    font-size: 12px;
  }
  .header-actions {
    gap: 13px;
  }
  .brand {
    font-size: 21px;
  }
  .hero {
    gap: 26px;
    min-height: 665px;
    padding-block: 55px;
  }
  .hero-art {
    height: 530px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    padding-inline: 15px;
    font-size: 12px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .section {
    padding-block: 80px;
  }
  .artwork-button {
    height: 340px;
  }
  .gallery {
    gap: 28px 20px;
  }
  .capabilities {
    gap: 50px;
  }
  .capability-visual {
    height: 725px;
  }
  .prompt-overlay {
    left: 30px;
    right: 30px;
  }
  .download-section > div:first-child {
    padding: 40px;
  }
  .download-section h2 {
    font-size: 44px;
  }
  .download-art > span {
    left: 12%;
  }
  .download-art > span > em {
    font-size: 41px;
  }
  .faq {
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .site-header {
    position: relative;
    z-index: 5;
    height: 82px;
  }
  .site-header nav {
    display: none;
    position: absolute;
    top: 81px;
    left: 0;
    right: 0;
    background: #121b26;
    border: 1px solid #48586a;
    padding: 18px 22px;
    box-shadow: 0 20px 30px #0006;
  }
  .site-header nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .site-header nav a {
    font-size: 15px;
    min-height: 48px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    align-items: center;
    background: transparent;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }
  .menu-toggle span {
    width: 22px;
    height: 1px;
    background: #e5edf5;
  }
  .header-actions .button {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero-art {
    height: 490px;
  }
  .hero-main {
    width: 90%;
  }
  .hero-secondary {
    width: 47%;
    height: 40%;
    bottom: 78px;
  }
  .hero-main figcaption {
    left: 20px;
    right: 25px;
    bottom: 20px;
  }
  .hero-main figcaption strong {
    font-size: 17px;
    max-width: 180px;
  }
  .hero-main figcaption span {
    font-size: 9px;
  }
  .art-heading {
    font-size: 9px;
    letter-spacing: 1px;
  }
  .art-caption {
    font-size: 10px;
  }
  .art-caption > span:last-child {
    display: none;
  }
  .hero-secondary figcaption {
    font-size: 9px;
    left: 10px;
    right: 10px;
  }
  .marquee {
    gap: 20px;
    font-size: 12px;
  }
  .marquee > span {
    gap: 13px;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    max-width: 480px;
    margin-top: 18px;
  }
  .gallery {
    gap: 28px 16px;
  }
  .artwork-button {
    height: 310px;
  }
  .artwork-top,
  .artwork-bottom {
    left: 14px;
    right: 14px;
  }
  .artwork-top > span:last-child {
    display: none;
  }
  .artwork-bottom {
    font-size: 11px;
    gap: 8px;
  }
  .circle-arrow {
    width: 29px;
    height: 29px;
    font-size: 18px;
    flex: none;
  }
  .creation h3 {
    font-size: 14px;
  }
  .capabilities {
    gap: 35px;
    grid-template-columns: 0.85fr 1fr;
  }
  .capability-visual {
    height: 800px;
  }
  .capability-copy h2 {
    font-size: 35px;
  }
  .prompt-overlay {
    left: 22px;
    right: 22px;
    bottom: 28px;
    padding: 18px;
  }
  .viewfinder {
    inset: 15px;
    padding: 10px;
    font-size: 8px;
  }
  .prompt-overlay > span:first-child {
    font-size: 9px;
  }
  .prompt-overlay p {
    font-size: 15px;
  }
  .steps {
    gap: 30px;
  }
  .steps h3 {
    font-size: 18px;
  }
  .download-section h2 {
    font-size: 38px;
  }
  .download-section > div:first-child {
    padding: 35px;
  }
  .download-art > span > em {
    font-size: 33px;
  }
  .footer-links {
    column-gap: 12px;
  }
  html[lang="zh-CN"] h1 {
    font-size: 44px;
  }
  html[lang="zh-CN"] h2 {
    font-size: 32px;
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 77px;
    gap: 12px;
  }
  .site-header nav {
    top: 76px;
  }
  .brand {
    font-size: 22px;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
  .language {
    font-size: 13px;
    min-width: 35px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 34px;
    padding-block: 43px 30px;
    min-height: 0;
  }
  .hero .eyebrow {
    font-size: 10px;
    margin-bottom: 26px;
    letter-spacing: 1.2px;
    gap: 10px;
  }
  .edition-mark {
    width: 15px;
    height: 8px;
  }
  .hero h1 {
    font-size: clamp(45px, 11.6vw, 66px);
    letter-spacing: -2.2px;
    line-height: 1.07;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.9;
    max-width: 430px;
    margin-top: 22px;
  }
  .hero-actions {
    gap: 14px 22px;
    margin-top: 27px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding-inline: 17px;
    min-height: 52px;
  }
  .hero-actions .text-link {
    font-size: 12px;
    gap: 10px;
  }
  .store-note {
    font-size: 11px;
    margin-top: 15px;
  }
  .hero-art {
    height: 470px;
    width: 100%;
    max-width: 510px;
    align-self: center;
    padding-top: 30px;
  }
  .art-heading {
    font-size: 9px;
    letter-spacing: 1.1px;
  }
  .hero-main {
    top: 29px;
    width: 86%;
    height: calc(100% - 54px);
  }
  .hero-main > img {
    object-position: center 52%;
  }
  .hero-main figcaption {
    bottom: 23px;
    left: 22px;
    right: 25px;
  }
  .hero-main figcaption strong {
    max-width: 190px;
    font-size: 18px;
  }
  .hero-main figcaption span {
    font-size: 9px;
  }
  .hero-secondary {
    width: 40%;
    height: 42%;
    bottom: 77px;
    border-width: 6px;
    border-right: 0;
  }
  .hero-secondary figcaption {
    bottom: 12px;
    font-size: 9px;
  }
  .art-caption {
    font-size: 10px;
    bottom: 0;
  }
  .marquee {
    padding-block: 19px;
    gap: 17px;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 12px;
  }
  .marquee > span {
    gap: 10px;
  }
  .marquee > span:last-child {
    display: none;
  }
  .ribbon-symbol {
    font-size: 10px;
  }
  .section {
    padding-block: 62px;
  }
  h2 {
    font-size: 34px;
    letter-spacing: -1.2px;
    line-height: 1.2;
  }
  .section-heading .eyebrow {
    margin-bottom: 15px;
  }
  .section-heading > p {
    font-size: 14px;
    line-height: 1.85;
    margin-top: 17px;
    max-width: 340px;
  }
  .filter-bar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 26px;
  }
  .filter-bar button {
    font-size: 12px;
    min-height: 45px;
    padding: 10px;
  }
  .recommendation-meta {
    display: block;
    min-height: 78px;
    padding-block: 15px;
    font-size: 12px;
    line-height: 1.7;
  }
  .recommendation-meta p:last-child {
    font-size: 11px;
    margin-top: 3px;
  }
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 27px 13px;
  }
  .artwork-button {
    height: 270px;
  }
  .artwork-top {
    top: 12px;
    left: 11px;
    right: 11px;
  }
  .artwork-top > span:first-child {
    font-size: 10px;
    padding: 3px 7px;
  }
  .artwork-bottom {
    left: 12px;
    right: 12px;
    bottom: 14px;
    font-size: 11px;
    line-height: 1.5;
  }
  .circle-arrow {
    width: 26px;
    height: 26px;
    font-size: 17px;
  }
  .creation h3 {
    font-size: 13px;
    line-height: 1.65;
    margin-top: 12px;
  }
  .gallery-note {
    font-size: 11px;
    line-height: 1.85;
    margin-top: 26px;
  }
  .capabilities {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .capability-visual {
    width: 100%;
    height: 485px;
  }
  .capability-visual > img {
    object-position: center 45%;
  }
  .viewfinder {
    inset: 20px;
    padding: 12px;
    font-size: 9px;
  }
  .prompt-overlay {
    left: 34px;
    right: 34px;
    bottom: 34px;
    padding: 20px;
  }
  .prompt-overlay > span:first-child {
    font-size: 10px;
  }
  .prompt-overlay p {
    font-size: 16px;
  }
  .capability-copy {
    width: 100%;
  }
  .capability-copy h2 {
    font-size: 37px;
  }
  .section-description {
    font-size: 15px;
    max-width: 430px;
  }
  .feature-list {
    margin-top: 28px;
  }
  .feature-list article {
    padding-block: 26px;
    gap: 18px;
  }
  .feature-list h3 {
    font-size: 18px;
  }
  .feature-list p {
    font-size: 14px;
  }
  .feature-list .text-link {
    min-height: 44px;
    font-size: 13px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 34px;
  }
  .step-number {
    padding-top: 14px;
    margin-bottom: 16px;
  }
  .steps h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .steps p {
    font-size: 14px;
    max-width: 430px;
  }
  .faq {
    display: block;
  }
  .faq h2 em {
    display: inline;
  }
  .faq-list {
    margin-top: 28px;
  }
  summary {
    font-size: 14px;
    padding-block: 21px;
  }
  .faq details > p {
    font-size: 14px;
    max-width: 100%;
  }
  .download-section {
    display: block;
    min-height: 0;
    position: relative;
  }
  .download-section > div:first-child {
    padding: 36px 26px 40px;
  }
  .download-section h2 {
    font-size: 41px;
    line-height: 1.15;
  }
  .download-section > div > p:not(.eyebrow):not(.store-note) {
    font-size: 14px;
    max-width: 290px;
  }
  .download-art {
    position: absolute;
    inset: 0;
    opacity: 0.2;
  }
  .download-art > img {
    opacity: 1;
    object-position: center 36%;
  }
  .download-art:after {
    background: linear-gradient(90deg, var(--surface), transparent);
  }
  .download-art > span {
    display: none;
  }
  .footer {
    grid-template-columns: 1fr;
    row-gap: 27px;
    padding-block: 48px 28px;
  }
  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 12px;
  }
  .footer-links a {
    font-size: 12px;
    min-height: 42px;
  }
  .footer > div > p {
    font-size: 13px;
  }
  .copyright {
    font-size: 11px;
    padding-top: 21px;
  }
  .back-top {
    border: 0;
    padding: 0;
    text-align: left;
    margin-top: -15px;
  }
  dialog[open] {
    display: block;
    max-width: 450px;
  }
  #dialog-image {
    height: 215px;
    min-height: 0;
    object-position: center 43%;
  }
  .dialog-content {
    padding: 27px 24px;
  }
  .dialog-content h2 {
    font-size: 29px;
  }
  .dialog-content .eyebrow {
    font-size: 10px;
  }
  #dialog-prompt {
    font-size: 14px;
  }
  .dialog-note {
    font-size: 12px;
  }
  #copy-status {
    min-height: 43px;
  }
  .not-found {
    padding-block: 65px;
  }
  .not-found h1 {
    font-size: 46px;
  }
  .not-found > .text-link {
    display: flex;
    margin: 20px 0 0;
  }
  html[lang="zh-CN"] h1 {
    font-size: clamp(39px, 10.4vw, 56px);
    line-height: 1.3;
    letter-spacing: -1px;
  }
  html[lang="zh-CN"] h2 {
    font-size: 31px;
  }
  html[lang="zh-CN"] .hero-main figcaption strong {
    font-size: 17px;
  }
  html[lang="zh-CN"] .hero-description {
    font-size: 15px;
  }
}
@media (max-width: 370px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding-inline: 12px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero-art {
    height: 410px;
  }
  .artwork-button {
    height: 225px;
  }
  .artwork-bottom {
    gap: 5px;
    font-size: 10px;
  }
  .circle-arrow {
    width: 23px;
    height: 23px;
    font-size: 15px;
  }
  .creation h3 {
    font-size: 12px;
  }
  .download-section > div:first-child {
    padding-inline: 21px;
  }
  .download-section h2 {
    font-size: 36px;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
  .button:hover,
  .artwork-button:hover > img {
    transform: none;
  }
}
