:root {
  color-scheme: light;
  --bg: #f4f2ec;
  --surface: #fbfaf7;
  --ink: #171715;
  --muted: #74736d;
  --line: #d9d6cd;
  --accent: #2e51ff;
  --accent-dark: #1739dc;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 70px rgba(20, 20, 18, 0.14);
  --page-max: 1440px;
  font-family: "DM Sans", "Noto Sans SC", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
button { color: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
main {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
}
.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  height: 76px;
  padding: 0 clamp(22px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(244, 242, 236, 0.9);
  border-bottom: 1px solid rgba(217, 214, 205, 0.8);
  backdrop-filter: blur(16px);
}
.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Sans SC", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.brand-mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset -7px -7px 0 var(--ink);
}
.main-nav { display: flex; gap: 22px; align-items: center; }
.main-nav a,
.main-nav button {
  appearance: none;
  border: 0;
  background: none;
  padding: 8px 0;
  text-decoration: none;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  transition: color 160ms ease;
}
.main-nav a:hover,
.main-nav button:hover,
.main-nav .active { color: var(--ink); }
.main-nav .active { box-shadow: inset 0 -1px 0 var(--ink); }
.main-nav span {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  margin-left: 3px;
  padding: 0 5px;
  color: var(--ink);
  background: #dfdcd3;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
}
.quiet-button,
.text-button,
.icon-button {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
}
.quiet-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: var(--muted);
  font-size: 13px;
}
.quiet-button:hover { color: var(--ink); }
.quiet-button svg { width: 15px; height: 15px; }

.hero {
  min-height: 520px;
  padding: 92px clamp(22px, 6.5vw, 104px) 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.92fr);
  column-gap: 9vw;
  align-items: end;
  border-bottom: 1px solid var(--line);
}
.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Noto Sans SC", sans-serif;
  font-size: clamp(54px, 6.1vw, 92px);
  line-height: 1.03;
  letter-spacing: -0.07em;
  font-weight: 600;
}
.hero-copy p {
  max-width: 510px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.8;
}
.search-wrap {
  align-self: end;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  height: 72px;
  padding: 0 20px;
  background: var(--surface);
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  box-shadow: 7px 7px 0 var(--ink);
  transition: box-shadow 180ms ease, transform 180ms ease;
}
.search-wrap:focus-within {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--accent);
}
.search-wrap svg { width: 21px; height: 21px; }
.search-wrap input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
}
.search-wrap input::placeholder { color: #929088; }
.search-wrap kbd {
  padding: 5px 7px;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 11px;
  box-shadow: 0 1px 0 var(--line);
}
.hero-meta {
  grid-column: 2;
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
}
.hero-meta strong { color: var(--ink); }
.hero-line { width: 28px; height: 1px; background: var(--line); }

.discovery-band {
  padding: 88px clamp(22px, 4vw, 64px) 96px;
  border-bottom: 1px solid var(--line);
}
.band-heading {
  margin-bottom: 38px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}
.band-heading h2,
.taxonomy-band h2,
.index-section h2 {
  margin: 0;
  font-family: "Noto Sans SC", sans-serif;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.2;
  letter-spacing: -0.045em;
  font-weight: 600;
}
.band-heading > a,
.taxonomy-intro > a,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}
.band-heading svg,
.taxonomy-intro > a svg,
.inline-link svg { width: 15px; height: 15px; }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.collection-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  display: flex;
  align-items: end;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: white;
  text-decoration: none;
}
.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,9,.9) 0%, rgba(10,10,9,.2) 58%, transparent 100%);
}
.collection-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(.2,.8,.2,1);
}
.collection-card:hover > img { transform: scale(1.035); }
.collection-card > div { position: relative; z-index: 1; padding: 24px; }
.collection-card h3 { margin: 0; font-size: 22px; font-weight: 600; letter-spacing: -.035em; }
.collection-card p { min-height: 50px; margin: 10px 0 18px; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.65; }
.collection-card div > span { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; }
.collection-card div > span svg { width: 14px; height: 14px; }
.collection-number { position: absolute; z-index: 2; top: 18px; right: 18px; font-size: 11px; letter-spacing: .14em; }

.taxonomy-band {
  padding: 82px clamp(22px, 4vw, 64px);
  display: grid;
  grid-template-columns: minmax(240px, .78fr) minmax(300px, 1fr) minmax(260px, .85fr);
  gap: clamp(36px, 6vw, 90px);
  border-bottom: 1px solid var(--line);
}
.taxonomy-intro > p:not(.section-label) { max-width: 390px; margin: 22px 0 26px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.taxonomy-list { border-top: 1px solid var(--ink); }
.taxonomy-row {
  min-height: 54px;
  display: grid;
  grid-template-columns: 34px 1fr auto 18px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.taxonomy-row > span { color: var(--muted); font-size: 10px; }
.taxonomy-row strong { font-size: 13px; font-weight: 600; }
.taxonomy-row em { color: var(--muted); font-size: 11px; font-style: normal; }
.taxonomy-row svg { width: 14px; height: 14px; transition: transform 160ms ease; }
.taxonomy-row:hover svg { transform: translate(2px, -2px); }
.taxonomy-cloud h3 { margin: 0 0 18px; font-size: 12px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a,
.prompt-tags a {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(251,250,247,.55);
  font-size: 11px;
  text-decoration: none;
}
.tag-cloud a:hover,
.prompt-tags a:hover { border-color: var(--ink); background: var(--surface); }
.tag-cloud span { margin-left: 5px; color: var(--muted); font-size: 9px; }

.explore { padding: 72px clamp(22px, 4vw, 64px) 110px; }
.explore-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}
.section-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
}
.explore h2 {
  margin: 0;
  font-family: "Noto Sans SC", sans-serif;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.2;
  letter-spacing: -0.045em;
  font-weight: 600;
}
.category-rail {
  display: flex;
  max-width: 720px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--line);
}
.category-rail::-webkit-scrollbar { display: none; }
.category-button {
  flex: 0 0 auto;
  appearance: none;
  padding: 12px 15px 13px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
}
.category-button:hover { color: var(--ink); }
.category-button.active { color: var(--ink); border-bottom-color: var(--ink); }
.result-bar {
  min-height: 28px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}
.result-bar p { margin: 0; }
.text-button { color: var(--ink); font-size: 12px; text-decoration: underline; text-underline-offset: 3px; }

.gallery { column-count: 4; column-gap: 18px; }
.prompt-card {
  position: relative;
  break-inside: avoid;
  margin-bottom: 30px;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
.card-media {
  position: relative;
  overflow: hidden;
  background: #dedbd2;
  border-radius: var(--radius-md);
}
.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.55), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}
.prompt-card:hover .card-media::after,
.prompt-card:focus-visible .card-media::after { opacity: 1; }
.card-media img {
  width: 100%;
  height: auto;
  aspect-ratio: var(--ratio, 4 / 5);
  object-fit: cover;
  transition: transform 450ms cubic-bezier(.2,.8,.2,1);
}
.prompt-card:hover img { transform: scale(1.025); }
.open-card {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 0;
  border-radius: 8px;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.open-card svg { width: 14px; height: 14px; }
.prompt-card:hover .open-card,
.prompt-card:focus-visible .open-card { opacity: 1; transform: translateY(0); }
.card-info { padding: 13px 2px 0; }
.card-info h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.card-meta {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
}
.card-meta svg { width: 13px; height: 13px; }
.reference-badge { display: inline-flex; align-items: center; gap: 4px; }
.empty-state {
  min-height: 420px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
}
.empty-state[hidden] { display: none; }
.empty-state svg { width: 42px; height: 42px; color: var(--muted); }
.empty-state h3 { margin: 10px 0 0; font-size: 22px; }
.empty-state p { margin: 0 0 14px; color: var(--muted); }
.load-more-wrap { display: flex; justify-content: center; padding-top: 42px; }
.load-more-wrap [hidden] { display: none; }

.creator-cta {
  min-height: 430px;
  padding: 72px 24px;
  display: grid;
  place-items: center;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: #ffd21a url("/assets/footer-creator-cta.png") center / cover no-repeat;
  text-align: center;
}
.creator-cta-copy { width: min(860px, 100%); }
.creator-cta-copy > span {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}
.creator-cta h2 {
  margin: 0;
  font-family: "Noto Sans SC", sans-serif;
  font-size: clamp(46px, 5.2vw, 72px);
  line-height: 1.08;
  letter-spacing: -.065em;
}
.creator-cta p {
  max-width: 720px;
  margin: 24px auto 34px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}
.creator-cta-actions { display: flex; justify-content: center; gap: 16px; }
.creator-cta-actions a {
  min-height: 60px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.creator-cta-actions a:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); }
.creator-cta-actions a:focus-visible { outline: 3px solid white; outline-offset: 4px; }
.creator-cta-actions svg { width: 18px; height: 18px; }
.cta-primary { background: var(--ink); color: white !important; }
.cta-secondary { background: var(--surface); }
.site-footer {
  padding: 78px clamp(24px, 7vw, 110px) 88px;
  border-top: 0;
  background: white;
  color: var(--ink);
}
.footer-grid {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(4, minmax(130px, 1fr));
  gap: clamp(34px, 5vw, 88px);
}
.footer-brand .brand { width: fit-content; margin-bottom: 22px; }
.footer-brand > p { max-width: 270px; margin: 0 0 10px; color: var(--muted); font-size: 12px; line-height: 1.75; }
.footer-brand > span { color: #9a978f; font-size: 11px; }
.footer-record {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: #9a978f;
  font-size: 11px;
  line-height: 1.5;
  text-decoration: none;
}
.footer-record:hover { color: var(--accent); }
.footer-record:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.footer-language {
  width: min(100%, 230px);
  min-height: 48px;
  margin-top: 34px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 12px;
}
.footer-language svg { width: 16px; height: 16px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.footer-column h3 { margin: 2px 0 8px; font-size: 13px; }
.footer-column a,
.footer-column > span { color: var(--muted); font-size: 12px; line-height: 1.45; text-decoration: none; }
.footer-column a:hover { color: var(--accent); }
.footer-column a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.prompt-dialog {
  width: min(1180px, calc(100vw - 40px));
  height: min(840px, calc(100vh - 40px));
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.prompt-dialog::backdrop { background: rgba(18, 18, 17, 0.62); backdrop-filter: blur(5px); }
.dialog-shell { height: 100%; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr); }
.close-dialog {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  background: rgba(251,250,247,0.88);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.icon-button {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
}
.icon-button:hover { background: #e9e6de; }
.icon-button svg { width: 19px; height: 19px; }
.dialog-media {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  background: #dedbd2;
  overflow: hidden;
}
.dialog-media img { width: 100%; height: 100%; object-fit: cover; }
.media-counter {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17,17,16,.72);
  color: white;
  font-size: 11px;
  backdrop-filter: blur(8px);
}
.dialog-content {
  padding: 54px 48px 40px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.dialog-heading { display: flex; justify-content: space-between; align-items: center; }
.dialog-category { color: var(--accent); font-size: 11px; font-weight: 600; letter-spacing: .12em; }
.favorite-button.active { background: #ffe4e2; color: #d93131; }
.favorite-button.active svg { fill: currentColor; }
.dialog-content h2 {
  margin: 18px 0 12px;
  padding-right: 36px;
  font-family: "Noto Sans SC", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: -.045em;
}
.dialog-description { margin: 0 0 28px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.zh-description { color: #3f3e39; }
.original-copy {
  margin: -10px 0 26px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.original-copy > span {
  display: block;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.original-copy .original-title {
  margin: 7px 0 4px;
  color: var(--ink);
  font: 600 15px/1.35 "DM Sans", sans-serif;
  letter-spacing: -.01em;
}
.original-copy > p:last-child {
  margin: 0;
  color: var(--muted);
  font: 11px/1.65 "DM Sans", sans-serif;
}
.reference-note {
  margin-bottom: 24px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff1ce;
  border-radius: var(--radius-sm);
  font-size: 12px;
}
.reference-note[hidden] { display: none; }
.reference-note svg { width: 16px; height: 16px; }
.variable-panel, .prompt-panel { margin-top: 25px; }
.panel-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 11px; }
.panel-title h3 { margin: 0; font-size: 13px; font-weight: 600; }
.panel-title span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.variable-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.variable-field label { display: block; margin-bottom: 5px; color: var(--muted); font-size: 10px; }
.variable-field input {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  background: white;
  color: var(--ink);
  font-size: 12px;
}
.variable-field input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(46,81,255,.1); }
.prompt-panel pre {
  max-height: 250px;
  margin: 0;
  padding: 18px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  background: #ebe8e0;
  border-radius: var(--radius-sm);
  color: #3d3c37;
  font: 12px/1.7 "DM Sans", sans-serif;
}
.dialog-actions { position: sticky; bottom: -40px; padding: 28px 0 0; display: grid; grid-template-columns: 1fr auto; gap: 10px; background: linear-gradient(transparent, var(--surface) 28%); }
.primary-button, .secondary-button {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.primary-button { border: 1px solid var(--ink); background: var(--ink); color: white; }
.primary-button:hover { background: var(--accent); border-color: var(--accent); }
.secondary-button { border: 1px solid var(--line); background: transparent; color: var(--ink); }
.secondary-button:hover { border-color: var(--ink); }
.primary-button svg, .secondary-button svg { width: 16px; height: 16px; }
.toast {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 20px);
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}
.toast.visible { opacity: 1; transform: translate(-50%, 0); }

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs svg { width: 13px; height: 13px; }
.listing-hero {
  padding: 64px clamp(22px, 6.5vw, 104px) 58px;
  border-bottom: 1px solid var(--line);
}
.listing-hero .section-label { margin-top: 56px; }
.listing-hero h1 {
  margin: 0;
  font-family: "Noto Sans SC", sans-serif;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1.05;
  letter-spacing: -.065em;
  font-weight: 600;
}
.listing-hero > p:last-child { max-width: 620px; margin: 24px 0 0; color: var(--muted); line-height: 1.7; }
.listing-section { padding-top: 42px; }
.category-page-rail { width: 100%; max-width: none; margin-bottom: 36px; }
.taxonomy-hero { min-height: 420px; }
.taxonomy-directory {
  padding: 56px clamp(22px, 6.5vw, 104px) 110px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 56px;
}
.taxonomy-directory > a {
  min-height: 108px;
  display: grid;
  grid-template-columns: 40px 1fr auto 20px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.taxonomy-directory > a > span { color: var(--accent); font-size: 10px; }
.taxonomy-directory h2 { margin: 0; font-family: "Noto Sans SC", sans-serif; font-size: clamp(20px, 2vw, 30px); letter-spacing: -.035em; }
.taxonomy-directory p { margin: 0; color: var(--muted); font-size: 11px; }
.taxonomy-directory svg { width: 16px; height: 16px; }
.collection-index { padding-top: 56px; }
.collection-index .collection-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.index-section { padding: 78px clamp(22px, 6.5vw, 104px); border-bottom: 1px solid var(--line); }
.index-title { margin-bottom: 34px; display: flex; align-items: start; gap: 24px; }
.index-title > span { padding-top: 7px; color: var(--accent); font-size: 11px; }
.index-use-cases .tag-cloud { max-width: 1050px; }
.index-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 130px); }
.compact-taxonomy { grid-template-columns: minmax(260px, .8fr) minmax(420px, 1.4fr); }
.prompt-tags { margin: -10px 0 24px; display: flex; flex-wrap: wrap; gap: 7px; }
.prompt-tags a { padding: 7px 9px; font-size: 10px; }
.source-note { margin: 14px 0 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
.pagination {
  margin-top: 60px;
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.pagination > a:last-child, .pagination > .disabled:last-child { justify-self: end; }
.pagination a, .pagination .disabled { display: inline-flex; align-items: center; gap: 7px; min-height: 34px; color: var(--ink); text-decoration: none; }
.pagination svg { width: 14px; height: 14px; }
.pagination .disabled { color: #aaa79e; }
.pagination div { display: flex; align-items: center; gap: 4px; }
.pagination div a { min-width: 34px; justify-content: center; border-radius: 7px; }
.pagination div a:hover, .pagination div a.active { background: var(--ink); color: white; }
.pagination .ellipsis { padding: 0 5px; color: var(--muted); }

.detail-main { padding: 0 clamp(22px, 4vw, 64px) 100px; }
.detail-breadcrumbs { padding: 28px 0; white-space: nowrap; overflow: hidden; }
.detail-breadcrumbs span { overflow: hidden; text-overflow: ellipsis; }
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, .95fr);
  align-items: stretch;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: clip;
  box-shadow: var(--shadow);
}
.detail-media {
  position: relative;
  min-height: 680px;
  background: #dedbd2;
}
.detail-media-sticky {
  position: relative;
  height: 100%;
  min-height: 680px;
  overflow: hidden;
  background: #dedbd2;
}
.detail-media-sticky > img { width: 100%; height: 100%; object-fit: cover; }
.detail-media-sticky .media-counter { left: 20px; bottom: 20px; }

@media (min-width: 1051px) {
  .detail-layout {
    min-height: 780px;
    grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  }
  .detail-media {
    min-width: 0;
    min-height: 0;
    padding: clamp(18px, 1.8vw, 26px);
    background: #e7e2d8;
  }
  .detail-media-sticky {
    min-height: 0;
    height: 100%;
    border: 1px solid #c7c0b3;
    border-radius: 20px;
    background: #f2eee6;
    box-shadow: inset 0 0 0 10px #f7f4ed, 0 18px 38px rgba(67, 57, 42, .16);
  }
  .detail-media-sticky > img {
    position: absolute;
    inset: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    border-radius: 12px;
    background: #d8d2c7;
    object-fit: contain;
  }
  .detail-media-sticky .media-counter { left: 30px; bottom: 30px; }
  .detail-media-sticky .thumbnail-rail { left: 28px; top: 28px; }
}

.thumbnail-rail {
  position: absolute;
  z-index: 2;
  left: 18px;
  top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.thumbnail {
  width: 58px;
  height: 58px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 9px;
  background: var(--surface);
  cursor: pointer;
  opacity: .72;
}
.thumbnail:hover, .thumbnail.active { border-color: white; opacity: 1; box-shadow: 0 3px 14px rgba(0,0,0,.18); }
.thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.detail-content { padding: clamp(36px, 4vw, 64px); align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.detail-content h1 {
  margin: 18px 0 14px;
  font-family: "Noto Sans SC", sans-serif;
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: 1.12;
  letter-spacing: -.05em;
  font-weight: 600;
}
.creator-workbench .panel-title h2 { margin: 0; font-size: 13px; font-weight: 600; }
.beginner-intro {
  margin: 8px 0 26px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  border: 1px solid #dce3ff;
  border-radius: 10px;
  background: #f5f7ff;
  color: #26366f;
}
.beginner-intro svg { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 2px; color: var(--accent); }
.beginner-intro strong, .beginner-intro span { display: block; }
.beginner-intro strong { margin-bottom: 3px; color: var(--ink); font-size: 12px; }
.beginner-intro span { font-size: 11px; line-height: 1.65; }
.overview-facts {
  margin: 2px 0 28px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.overview-facts div { min-width: 0; }
.overview-facts dt { margin-bottom: 5px; color: var(--muted); font-size: 10px; }
.overview-facts dd { margin: 0; overflow: hidden; color: var(--ink); font-size: 12px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.overview-start { align-self: flex-start; min-width: 220px; }
.engagement-overview { padding: 16px 4px 30px; }
.engagement-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.engagement-heading h2 { margin: 0; font-size: clamp(22px, 2.2vw, 32px); letter-spacing: -.035em; }
.engagement-heading p { margin: 8px 0 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.engagement-heading > span { padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 9px; white-space: nowrap; }
.engagement-grid { margin-top: 26px; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
.engagement-stat {
  min-width: 0;
  min-height: 104px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfaf7;
  color: var(--ink);
  font-family: inherit;
  text-align: left;
}
button.engagement-stat { cursor: pointer; transition: border-color 160ms ease, background 160ms ease, transform 160ms ease; }
button.engagement-stat:hover { border-color: var(--ink); transform: translateY(-2px); }
.engagement-stat.active { border-color: var(--accent); background: #f4f6ff; color: var(--accent); }
.engagement-stat > span { display: flex; align-items: center; gap: 7px; color: currentColor; font-size: 11px; font-weight: 600; }
.engagement-stat svg { width: 17px; height: 17px; }
.engagement-stat strong { font: 600 28px/1 "DM Sans", sans-serif; letter-spacing: -.04em; }
.community-section { margin-top: 30px; }
.engagement-lower { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(420px, 1.2fr); gap: 12px; }
.share-panel, .comments-panel { padding: 24px; border: 1px solid var(--line); border-radius: 12px; background: #fbfaf7; scroll-margin-top: 92px; }
.share-panel h3, .comments-panel h3 { margin: 0; font-size: 15px; }
.share-panel > div:first-child p, .comments-panel > div:first-child p { margin: 7px 0 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
.share-options { margin-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.share-options button {
  min-height: 76px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
  color: var(--ink);
  font: 600 10px/1 "Noto Sans SC", sans-serif;
  cursor: pointer;
}
.share-options button:hover { border-color: var(--ink); }
.share-options button[data-share="wechat"]:hover { border-color: #07c160; color: #078d49; }
.share-options button[data-share="weibo"]:hover { border-color: #e6162d; color: #c9152a; }
.share-options svg { width: 19px; height: 19px; }
.share-feedback { min-height: 18px; margin: 12px 0 0; color: var(--accent); font-size: 10px; line-height: 1.6; }
.comment-form { margin-top: 20px; }
.comment-form label { display: block; margin-bottom: 7px; color: var(--muted); font-size: 10px; }
.comment-form textarea { width: 100%; min-height: 92px; padding: 12px; resize: none; overflow: hidden; border: 1px solid var(--line); border-radius: 9px; outline: none; background: white; color: var(--ink); font: 12px/1.6 "Noto Sans SC", sans-serif; }
.comment-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(46,81,255,.1); }
.comment-form > div { margin-top: 9px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.comment-form > div > span { color: var(--muted); font-size: 9px; }
.comment-form .primary-button { min-height: 38px; padding: 0 15px; font-size: 11px; }
.comment-list { margin-top: 18px; border-top: 1px solid var(--line); }
.comment-empty { margin: 16px 0 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
.comment-item { padding: 15px 0; border-bottom: 1px solid var(--line); }
.comment-item header { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.comment-item strong { font-size: 11px; }
.comment-item time { color: var(--muted); font-size: 9px; }
.comment-item p { margin: 8px 0 0; color: #3d3c37; font-size: 11px; line-height: 1.7; white-space: pre-wrap; word-break: break-word; }
.comment-item button { margin-top: 7px; padding: 0; border: 0; background: transparent; color: var(--muted); font: 10px/1.4 inherit; cursor: pointer; }
.comment-item button:hover { color: #c63c3c; }
.creator-section {
  margin-top: 30px;
  padding: clamp(36px, 5vw, 72px);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.creator-heading h2 { scroll-margin-top: 92px; }
.creator-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.creator-heading h2 { margin: 0; font-size: clamp(24px, 2.5vw, 36px); font-weight: 600; letter-spacing: -.04em; }
.creator-heading p { max-width: 520px; margin: 7px 0 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.text-button {
  flex: 0 0 auto;
  padding: 4px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: 500 11px/1.4 "Noto Sans SC", sans-serif;
  cursor: pointer;
}
.text-button:hover { color: var(--accent); }
.creator-steps {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.creator-steps li {
  min-height: 46px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}
.creator-steps li:last-child { border-right: 0; }
.creator-steps span {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font: 600 9px/1 "DM Sans", sans-serif;
}
.creator-tabs { margin-top: 24px; display: flex; gap: 24px; border-bottom: 1px solid var(--line); }
.creator-tab {
  position: relative;
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: 500 12px/1 "Noto Sans SC", sans-serif;
  cursor: pointer;
}
.creator-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: transparent;
}
.creator-tab:hover, .creator-tab.active { color: var(--ink); }
.creator-tab.active::after { background: var(--accent); }
.creator-mode-panel[hidden] { display: none; }
.guide-summary { padding: 24px 0 18px; }
.guide-summary h3 { margin: 0; font-size: 16px; letter-spacing: -.02em; }
.guide-summary p { margin: 7px 0 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.guide-form, .comic-settings { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.comic-settings { margin-bottom: 12px; }
.guide-field.wide { grid-column: 1 / -1; }
.guide-field label, .field-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
}
.guide-field input, .guide-field select, .guide-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: none;
  background: white;
  color: var(--ink);
  font: 12px/1.55 "Noto Sans SC", sans-serif;
}
.guide-field textarea { min-height: 82px; resize: vertical; }
.guide-field input:focus, .guide-field select:focus, .guide-field textarea:focus,
.storyboard-card textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(46,81,255,.1); }
.segmented { min-height: 46px; padding: 4px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; border: 1px solid var(--line); border-radius: 9px; background: white; }
.segmented button { border: 0; border-radius: 6px; background: transparent; color: var(--muted); font: 500 11px/1 "Noto Sans SC", sans-serif; cursor: pointer; }
.segmented button:hover { color: var(--ink); }
.segmented button.active { background: var(--ink); color: white; }
.storyboard-editor { margin-top: 26px; }
.storyboard-heading { margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.storyboard-heading h3 { margin: 0; font-size: 13px; }
.storyboard-heading span { color: var(--muted); font-size: 10px; }
.storyboard-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.storyboard-card {
  padding: 11px;
  display: block;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255,255,255,.5);
}
.storyboard-card > span { display: block; margin-bottom: 7px; color: var(--accent); font-size: 10px; font-weight: 600; }
.storyboard-card textarea { width: 100%; min-height: 55px; padding: 0; resize: vertical; border: 0; outline: none; background: transparent; color: var(--ink); font: 11px/1.55 "Noto Sans SC", sans-serif; }
.guide-tip { margin-top: 18px; padding: 13px 14px; display: flex; align-items: flex-start; gap: 9px; border-radius: 9px; background: #fff4d7; color: #5b4b22; font-size: 10px; line-height: 1.65; }
.guide-tip svg { flex: 0 0 auto; width: 15px; height: 15px; margin-top: 1px; }
.guided-output { margin-top: 24px; }
.creator-section .prompt-panel pre { max-height: none; overflow: visible; }
.creator-section .guided-output pre { background: #e8eaf4; color: #252b43; }
.empty-mode-note { margin: 24px 0 0; padding: 14px; border-radius: 9px; background: #eeece5; color: var(--muted); font-size: 11px; line-height: 1.6; }
.source-output { margin-top: 24px; }
.detail-actions { margin-top: 30px; display: grid; grid-template-columns: minmax(180px, 1fr); gap: 10px; }
.related-section { padding: 78px 0 10px; }
.related-heading { margin-bottom: 34px; }
.related-heading h2 { margin: 0; font-family: "Noto Sans SC", sans-serif; font-size: clamp(30px, 3vw, 46px); letter-spacing: -.045em; }
.related-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.related-grid .prompt-card { margin: 0; }
.related-grid .card-media img { aspect-ratio: 4 / 5; }
.not-found { min-height: calc(100vh - 150px); display: grid; place-items: center; align-content: center; gap: 14px; padding: 50px 24px; text-align: center; }
.not-found > span { color: var(--accent); font-size: 12px; letter-spacing: .16em; }
.not-found h1 { margin: 0; font-family: "Noto Sans SC", sans-serif; font-size: clamp(38px, 6vw, 76px); letter-spacing: -.06em; }
.not-found p { margin: 0 0 14px; color: var(--muted); }

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; gap: 54px; }
  .hero-meta { grid-column: 1; margin-top: -30px; }
  .search-wrap { width: min(100%, 660px); }
  .explore-head { align-items: start; flex-direction: column; }
  .category-rail { max-width: 100%; width: 100%; }
  .gallery { column-count: 3; }
  .collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .taxonomy-band { grid-template-columns: 1fr 1fr; }
  .taxonomy-cloud { grid-column: 1 / -1; }
  .compact-taxonomy { grid-template-columns: minmax(250px, .75fr) minmax(380px, 1.25fr); }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-media,
  .detail-media-sticky { min-height: min(78vh, 760px); height: min(78vh, 760px); }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
  .engagement-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .engagement-lower { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 780px) {
  .site-header { height: auto; min-height: 102px; padding-top: 10px; grid-template-columns: 1fr auto; grid-template-rows: 45px auto; }
  .nav-random { grid-column: 2; grid-row: 1; align-self: center; }
  .main-nav { grid-column: 1 / -1; width: calc(100vw - 44px); overflow-x: auto; gap: 22px; scrollbar-width: none; }
  .main-nav::-webkit-scrollbar { display: none; }
  .main-nav a { flex: 0 0 auto; font-size: 12px; }
  .hero { min-height: auto; padding-top: 70px; }
  .hero-copy h1 { font-size: clamp(46px, 13vw, 68px); }
  .hero-meta { flex-wrap: wrap; }
  .gallery { column-count: 2; column-gap: 12px; }
  .discovery-band { padding-top: 64px; padding-bottom: 70px; }
  .collection-grid,
  .collection-index .collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collection-card { min-height: 340px; }
  .taxonomy-band,
  .compact-taxonomy { grid-template-columns: 1fr; }
  .taxonomy-cloud { grid-column: auto; }
  .taxonomy-directory { grid-template-columns: 1fr; padding-top: 28px; }
  .index-split { grid-template-columns: 1fr; gap: 70px; }
  .prompt-card { margin-bottom: 22px; }
  .dialog-shell { grid-template-columns: 1fr; overflow-y: auto; }
  .prompt-dialog { width: 100vw; height: 100dvh; max-width: none; max-height: none; border-radius: 0; }
  .dialog-media { min-height: 52vh; }
  .dialog-content { overflow: visible; padding: 36px 24px 28px; }
  .dialog-actions { bottom: 0; padding-bottom: env(safe-area-inset-bottom); }
  .creator-cta { min-height: 390px; padding: 64px 22px; }
  .creator-cta h2 { font-size: clamp(40px, 8vw, 58px); }
  .site-footer { padding: 64px 28px 72px; }
  .detail-main { padding-left: 0; padding-right: 0; }
  .detail-breadcrumbs { margin: 0 20px; }
  .detail-layout { border-radius: 0; box-shadow: none; }
  .detail-media,
  .detail-media-sticky { min-height: 70vh; height: 70vh; }
  .detail-content { padding: 38px 24px; }
  .detail-content h1 { font-size: 36px; }
  .creator-section { margin-top: 18px; padding: 42px 24px; border-radius: 0; box-shadow: none; }
  .engagement-overview { padding: 8px 24px 28px; }
  .community-section { margin-top: 18px; padding: 0 16px; }
  .storyboard-list { grid-template-columns: 1fr 1fr; }
  .related-section { padding: 72px 16px 0; }
  .related-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pagination { grid-template-columns: 1fr 1fr; }
  .pagination div { grid-column: 1 / -1; grid-row: 1; justify-content: center; }
  .listing-hero { padding-top: 42px; }
}
@media (max-width: 520px) {
  .site-header { min-height: 98px; padding-left: 18px; padding-right: 18px; }
  .main-nav { width: calc(100vw - 36px); gap: 18px; }
  .nav-random { font-size: 0; }
  .nav-random svg { width: 18px; height: 18px; }
  .hero { padding-left: 18px; padding-right: 18px; }
  .hero-copy h1 { letter-spacing: -.075em; }
  .search-wrap { height: 64px; padding: 0 15px; }
  .search-wrap kbd { display: none; }
  .explore { padding-left: 14px; padding-right: 14px; }
  .band-heading { align-items: start; flex-direction: column; }
  .discovery-band,
  .taxonomy-band,
  .index-section { padding-left: 18px; padding-right: 18px; }
  .collection-grid,
  .collection-index .collection-grid { grid-template-columns: 1fr; }
  .collection-card { min-height: 390px; }
  .taxonomy-directory { padding-left: 18px; padding-right: 18px; }
  .taxonomy-directory > a { grid-template-columns: 32px 1fr 16px; }
  .taxonomy-directory > a p { display: none; }
  .gallery { column-count: 2; column-gap: 9px; }
  .card-media { border-radius: 12px; }
  .card-info h3 { font-size: 12px; }
  .card-meta { font-size: 10px; }
  .open-card { display: none; }
  .variable-list { grid-template-columns: 1fr; }
  .guide-form, .comic-settings, .storyboard-list { grid-template-columns: 1fr; }
  .creator-steps li { padding: 0 7px; gap: 5px; font-size: 9px; }
  .creator-steps span { width: 19px; height: 19px; }
  .creator-tabs { gap: 18px; }
  .creator-heading { gap: 12px; }
  .listing-hero .section-label { margin-top: 42px; }
  .listing-hero h1 { font-size: 50px; }
  .detail-media,
  .detail-media-sticky { min-height: 58vh; height: 58vh; }
  .detail-actions { grid-template-columns: 1fr; }
  .overview-facts { gap: 9px; }
  .overview-start { width: 100%; }
  .engagement-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .engagement-stat { min-height: 92px; }
  .share-options { grid-template-columns: 1fr; }
  .share-options button { min-height: 54px; flex-direction: row; }
  .thumbnail-rail { flex-direction: row; max-width: calc(100% - 36px); overflow-x: auto; }
  .thumbnail { flex: 0 0 50px; width: 50px; height: 50px; }
  .related-grid .card-info h3 { font-size: 12px; }
  .creator-cta { min-height: 430px; padding: 60px 18px; background-position: 48% center; }
  .creator-cta-copy > span { margin-bottom: 14px; font-size: 9px; }
  .creator-cta h2 { font-size: 40px; line-height: 1.12; }
  .creator-cta p { margin: 20px auto 28px; font-size: 13px; }
  .creator-cta-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .creator-cta-actions a { min-height: 56px; }
  .site-footer { padding: 54px 22px 64px; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-brand { grid-column: auto; }
  .footer-language { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
