:root {
  --bg: #eef2ef;
  --bg-deep: #e4ebe6;
  --ink: #1a221c;
  --muted: #5f6b63;
  --line: #cfd8d2;
  --accent: #1f6a56;
  --accent-soft: #d7eee6;
  --danger: #b91c1c;
  --ok: #166534;
  --paper: #f7faf8;
  --shadow-soft: 0 18px 50px rgba(26, 34, 28, 0.08);
  --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-serif: "Noto Serif SC", "Songti SC", "STSong", serif;
  --pad: 1.25rem;
  --wrap: 40rem;
  --wrap-wide: 68rem;
  --top-h: 3.4rem;
  --bottom-nav-h: 4.35rem;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  background:
    radial-gradient(1200px 600px at 10% -10%, #dce8e1 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 0%, #e7efe8 0%, transparent 50%),
    var(--bg);
  color: var(--ink);
  line-height: 1.6;
  padding-bottom: calc(var(--safe-bottom) + 0.5rem);
}

body.has-bottom-nav,
body.page-creator {
  padding-bottom: calc(var(--bottom-nav-h) + var(--safe-bottom) + 1rem);
}
body.page-app.has-bottom-nav,
body.page-app.page-creator {
  padding-bottom: 0;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Top nav ---------- */
.top {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: var(--top-h);
  padding: 0.65rem var(--pad);
  border-bottom: 1px solid rgba(207, 216, 210, 0.9);
  background: rgba(247, 250, 248, 0.92);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.15;
}
.brand:hover { text-decoration: none; }
.brand-short {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
}
.brand-full {
  display: none;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  min-height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle-icon::before { top: -6px; }
.nav-toggle-icon::after { top: 6px; }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(26, 34, 28, 0.35);
}

.nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 45;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem var(--pad) 1rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nav.is-open { display: flex; }
.nav a,
.nav .nav-user {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.nav-user { color: var(--muted); }
.nav-cta {
  color: var(--accent) !important;
  font-weight: 600;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 2rem var(--pad) 3rem;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.8rem;
  margin: 0 0 0.5rem;
}
h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 6vw, 2.2rem);
  margin: 0 0 0.75rem;
  line-height: 1.25;
  font-weight: 700;
}
h2 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
}
.lead {
  color: var(--muted);
  margin: 0 0 1.25rem;
}
.links {
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.links li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 1.5rem;
}
.body {
  line-height: 1.7;
  white-space: pre-wrap;
  margin: 1.5rem 0;
}
.code, code {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.9rem;
  background: #fff;
  padding: 0.1rem 0.35rem;
  border: 1px solid var(--line);
}
.error {
  color: var(--danger);
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 0.7rem 0.9rem;
}
.ok {
  color: var(--ok);
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 0.7rem 0.9rem;
}

.form {
  display: grid;
  gap: 0.9rem;
  margin: 1.25rem 0;
}
.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
}
.form .choice-row,
.form .choice-inline,
.form .edition-size-inline {
  display: flex;
  grid-template-columns: none;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.75rem 0.8rem;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  font-size: 16px; /* 避免 iOS 聚焦缩放 */
  border-radius: 0;
}
.form input[type="radio"],
.form input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  min-height: 0;
  padding: 0;
  border: none;
  background: transparent;
}
.form input[type="file"] {
  padding: 0.45rem 0;
  border: 0;
  background: transparent;
  min-height: 0;
}
.form textarea { min-height: 7rem; }
.form button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.75rem 1.15rem;
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none !important;
}
.form button,
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.verify-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: baseline;
  background: var(--accent-soft);
  border: 1px solid #9fd5c3;
  color: #115e59;
  padding: 0.85rem 0.95rem;
  margin-bottom: 1.25rem;
}
.hero-cover { margin: 0 0 1.25rem; }
.hero-cover img {
  display: block;
  width: 100%;
  max-height: 16rem;
  object-fit: cover;
  border: 1px solid var(--line);
}
.trust-card {
  margin-top: 2rem;
  padding: 1rem;
  border-top: 1px solid var(--line);
  background: #fff;
}
.trust-card p { margin: 0.35rem 0; }

.work-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.work-item {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.work-item:has(:only-child) { grid-template-columns: 1fr; }
.work-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.work-actions .btn { min-height: 2.2rem; padding: 0.4rem 0.8rem; font-size: 0.85rem; }
.page-actions { margin: 1rem 0; }
.form-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem; }
.thumb-link {
  display: block;
  width: 5.5rem;
  height: 5.5rem;
  flex-shrink: 0;
  text-decoration: none !important;
}
.thumb,
.work-item .thumb,
.work-card .thumb {
  display: block;
  width: 5.5rem;
  height: 5.5rem;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
  background: var(--bg-deep);
}
.thumb-empty {
  width: 5.5rem;
  height: 5.5rem;
  background: var(--bg-deep);
  border: 1px dashed var(--line);
}
.cover-preview { margin: 0.5rem 0; }
.cover-preview img { max-height: 8rem; border: 1px solid var(--line); }
.cover-preview-grid,
.hero-gallery,
.detail-gallery,
.update-img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(6.5rem, 1fr));
  gap: 0.5rem;
  margin: 0.5rem 0 0.75rem;
}
.cover-preview-grid img,
.hero-gallery img,
.detail-gallery img {
  display: block;
  width: 100%;
  height: 6.5rem;
  object-fit: cover;
  border: 1px solid var(--line);
}
.hero-gallery {
  grid-template-columns: 1fr;
}
.hero-gallery img {
  height: auto;
  max-height: 16rem;
}
.detail-gallery img {
  height: 7rem;
}
.field-hint {
  margin: 0.35rem 0 0.75rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}
.update-img-grid .update-img {
  margin: 0;
}
.update-img-grid .update-img img {
  width: 100%;
  height: 6.5rem;
  object-fit: cover;
}
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 0.4rem;
}
.badge-draft  { background: #fef9c3; color: #92400e; }
.badge-bound  { background: var(--accent-soft); color: var(--accent); }
.badge-edition { background: #ede9fe; color: #5b21b6; }
.badge-verified { background: #eef6ff; color: #1d4ed8; }
.warn-text { color: #92400e; background: #fefce8; padding: 0.6rem 0.8rem; border: 1px solid #fde68a; }
.btn-danger {
  background: #fef2f2;
  color: var(--danger);
  border-color: #fecaca;
}
.btn-danger:hover { background: #fecaca; }
.req { color: var(--danger); }

/* ---------- Work update timeline ---------- */
.updates-timeline { margin: 2rem 0 1rem; border-top: 2px solid var(--accent-soft); padding-top: 1rem; }
.updates-timeline h2 { font-size: 1rem; color: var(--muted); margin: 0 0 1rem; }
.update-entry {
  border-left: 3px solid var(--accent-soft);
  padding: 0.6rem 0 0.6rem 1rem;
  margin-bottom: 1rem;
}
.update-time { font-size: 0.78rem; color: var(--muted); margin: 0 0 0.3rem; }
.update-content { margin: 0 0 0.5rem; white-space: pre-wrap; }
.update-img img { max-width: 100%; max-height: 12rem; object-fit: cover; border: 1px solid var(--line); }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.92rem;
}
.admin-table th,
.admin-table td {
  text-align: left;
  padding: 0.65rem 0.4rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.admin-table code {
  word-break: break-all;
}
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
  align-items: center;
  margin-top: 0.75rem;
}
.inline-form {
  display: inline;
  margin: 0;
}
.linkish {
  background: none;
  border: 0;
  padding: 0;
  color: var(--accent);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}
.linkish.danger,
.danger-btn {
  color: var(--danger);
}
.badge-ok,
.badge-warn {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0.15rem 0.45rem;
  border: 1px solid var(--line);
}
.badge-ok {
  color: var(--ok);
  border-color: #bbf7d0;
  background: #f0fdf4;
}
.badge-warn {
  color: #92400e;
  border-color: #fde68a;
  background: #fffbeb;
}

/* ---------- Home landing (mobile first) ---------- */
.page-home .top {
  background: rgba(238, 242, 239, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ── 首屏 Hero ── */
.home-hero {
  display: grid;
  gap: 0;
  padding: 0;
  background: var(--bg);
}
.home-hero-copy {
  padding: 2rem var(--pad) 2.25rem;
  animation: copy-in 0.7s ease 0.05s both;
}
.home-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--accent);
  border-radius: 2rem;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.home-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 8vw, 3.2rem);
  line-height: 1.22;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
.home-sub {
  color: var(--muted);
  margin: 0 0 1.75rem;
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 32rem;
}
.home-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.home-cta .btn { width: 100%; }

.home-hero-visual {
  position: relative;
  height: 58vw;
  min-height: 16rem;
  max-height: 26rem;
  overflow: hidden;
  animation: scene-in 0.9s ease both;
}
.home-hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* ── 通用区块 ── */
.home-section {
  padding: 3rem var(--pad);
}
.home-section-inner {
  max-width: var(--wrap-wide);
  margin: 0 auto;
}
.section-kicker {
  display: inline-block;
  margin: 0 0 0.6rem;
  color: var(--accent);
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.section-kicker--light { color: rgba(215, 238, 230, 0.85); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 5vw, 2rem);
  margin: 0 0 0.65rem;
  line-height: 1.3;
}
.section-title--light { color: #fff; }
.section-lead {
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 36rem;
  line-height: 1.7;
}
.section-lead--light { color: rgba(238, 245, 241, 0.72); }

/* ── 安全机制（深色区块） ── */
.home-trust {
  background: linear-gradient(150deg, #1a2a22 0%, #0f2018 100%);
  color: #eef5f1;
}
.trust-grid {
  display: grid;
  gap: 1rem;
}
.trust-item {
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.85rem;
  background: rgba(255,255,255,0.05);
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  column-gap: 0.85rem;
  align-items: start;
}
.trust-icon {
  grid-row: span 2;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(215, 238, 230, 0.12);
  border-radius: 0.6rem;
  color: #7ecfb0;
  flex-shrink: 0;
}
.trust-icon svg { width: 1.35rem; height: 1.35rem; }
.trust-item h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  margin: 0 0 0.3rem;
  color: #fff;
}
.trust-item p {
  margin: 0;
  color: rgba(238, 245, 241, 0.65);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── 使用方式（白色区块） ── */
.home-how {
  background: #fff;
}
.how-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.how-card {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 0 1rem;
  align-items: start;
  padding: 1.25rem 1.25rem 1.25rem 0;
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  background: var(--paper);
  border-radius: 0 0.75rem 0.75rem 0;
}
.how-num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  opacity: 0.55;
  padding-top: 0.15rem;
}
.how-card-body {
  display: grid;
  gap: 0.3rem;
}
.how-card-body strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  display: block;
}
.how-card-body span {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

/* ── 造物·认证（浅绿区块） ── */
.home-flow {
  background: var(--bg-deep);
}
.flow-grid {
  display: grid;
  gap: 1rem;
}
.flow-item {
  padding: 1.75rem 1.5rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(26,34,28,0.06);
}
.flow-item--make { border-top: 3px solid var(--accent); }
.flow-item--verify { border-top: 3px solid #5da88f; }
.flow-label {
  margin: 0 0 0.4rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.flow-item h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 0.65rem;
}
.flow-item p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.flow-link {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.flow-link:hover { text-decoration: underline; }

/* ── 底部 CTA（深色区块） ── */
.home-creator {
  margin: 0;
  padding: 3.5rem var(--pad) 4.5rem;
  background: linear-gradient(160deg, #1f2a24 0%, #0e1f16 100%);
  color: #eef5f1;
}
.home-creator-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(126, 207, 176, 0.5);
  border-radius: 2rem;
  color: #7ecfb0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.home-creator h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 6vw, 2.6rem);
  color: #fff;
  margin: 0 0 1rem;
  line-height: 1.3;
}
.home-creator p {
  margin: 0 0 1.75rem;
  color: rgba(238, 245, 241, 0.7);
  max-width: 34rem;
  line-height: 1.7;
}
.home-creator .btn-primary {
  background: #7ecfb0;
  color: #0e1f16;
  border-color: #7ecfb0;
  font-weight: 600;
}
.home-creator .btn-ghost {
  color: #eef5f1;
  border-color: rgba(238, 245, 241, 0.45);
}

@keyframes copy-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scene-in {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- PC / tablet ---------- */
@media (min-width: 768px) {
  :root { --pad: 2rem; }

  .brand-full { display: block; }
  .nav-toggle { display: none; }
  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .nav a,
  .nav .nav-user {
    padding: 0;
    border: 0;
    font-size: 0.92rem;
  }
  .nav-cta {
    border: 1px solid var(--accent);
    padding: 0.35rem 0.7rem !important;
  }

  /* hero 两栏：左文案右图 */
  .home-hero {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "copy visual";
    align-items: stretch;
    min-height: calc(100svh - var(--top-h));
    max-height: 52rem;
  }
  .home-hero-copy {
    grid-area: copy;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 3rem 3.5rem 4rem;
  }
  .home-hero-visual {
    grid-area: visual;
    height: 100%;
    max-height: none;
    min-height: unset;
  }
  .home-cta {
    grid-template-columns: auto auto;
    justify-content: start;
  }
  .home-cta .btn { width: auto; }

  .home-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .home-section-inner {
    max-width: var(--wrap-wide);
    margin: 0 auto;
  }
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .trust-item {
    grid-template-columns: 2.75rem 1fr;
  }
  .how-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .flow-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .home-creator {
    padding: 4.5rem 4rem;
  }
  .home-creator .home-section-inner {
    max-width: var(--wrap-wide);
    margin: 0 auto;
  }
  .home-creator .home-cta {
    grid-template-columns: auto auto;
    justify-content: start;
  }
  .home-creator .home-cta .btn { width: auto; }
}

@media (min-width: 1024px) {
  .wrap { padding-top: 2.5rem; }
  .home-hero-copy {
    padding-left: max(4rem, calc((100vw - var(--wrap-wide)) / 2 + 3rem));
    padding-right: 3.5rem;
  }
  .home-section {
    padding-left: max(4rem, calc((100vw - var(--wrap-wide)) / 2 + 2rem));
    padding-right: max(4rem, calc((100vw - var(--wrap-wide)) / 2 + 2rem));
  }
  .home-creator {
    padding-left: max(4rem, calc((100vw - var(--wrap-wide)) / 2 + 2rem));
    padding-right: max(4rem, calc((100vw - var(--wrap-wide)) / 2 + 2rem));
  }
}

/* ---------- Mobile app-like patterns ---------- */
.verify-bar-strong {
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.95rem;
}
.verify-bar-strong strong { font-size: 1rem; letter-spacing: 0.04em; }
.product-hero {
  margin: 0 0 1rem;
  padding: 1.25rem 1.1rem 1rem;
  border: 0;
  background: linear-gradient(180deg, #f0faf6 0%, #e5f4ee 100%);
  border-radius: 1rem;
  text-align: center;
}
.product-result-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 0.85rem;
  border-radius: 999px;
  background: rgba(31, 106, 86, 0.1);
  color: var(--accent);
}
.product-result-icon svg {
  width: 2.35rem;
  height: 2.35rem;
}
.product-result-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.65rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(31, 106, 86, 0.1);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}
.product-hero-kicker {
  margin: 0 0 0.6rem;
  color: #8a6b47;
}
.product-hero-title {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(1.7rem, 6vw, 2.3rem);
  line-height: 1.2;
}
.product-hero-subtitle {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 19rem;
  margin-left: auto;
  margin-right: auto;
}
.product-region {
  margin-bottom: 0.85rem;
}
.product-result-card {
  background: #fff;
  border-radius: 0.9rem;
  border: 1px solid #dce9e1;
  overflow: hidden;
}
.product-result-row {
  display: grid;
  grid-template-columns: 5.4rem 1fr;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #edf2ef;
  align-items: start;
}
.product-result-row:last-child {
  border-bottom: 0;
}
.product-result-label {
  color: #7a847d;
  font-size: 0.82rem;
  font-weight: 600;
}
.product-result-value {
  color: var(--ink);
  font-size: 0.93rem;
  line-height: 1.55;
  word-break: break-word;
}
.product-result-value code {
  font-size: 0.86rem;
}
.product-inline-hint {
  margin: 0.55rem 0 0;
  color: #65706a;
  font-size: 0.83rem;
  line-height: 1.6;
  text-align: center;
}
.product-issued-note {
  margin: 0.65rem 0 0;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}
.trust-title { margin: 0 0 0.4rem; font-weight: 700; }
.edition-line { margin: 0.25rem 0; font-size: 1.05rem; }
.meta-line { margin: 0.35rem 0 0; color: var(--muted); font-size: 0.88rem; }
.tip-burn { margin-top: 1.5rem; }
.risk-card {
  margin-top: 1.5rem;
  border: 1px solid #f2d3b2;
  background: #fffaf5;
}
.risk-card .trust-title {
  color: #9a3412;
}
.risk-card .meta {
  color: #7c2d12;
}
.product-story-head {
  margin: 0 0 0.75rem;
}
.product-story-title {
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(1.45rem, 5vw, 1.9rem);
  line-height: 1.35;
}
.product-gallery {
  margin: 0.75rem 0 0.9rem;
}
.creator-fold {
  margin-top: 0;
}
.creator-fold-summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem !important;
  font-weight: 500 !important;
}
.creator-fold .creator-avatar {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.creator-avatar-ph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
}
.creator-fold-main {
  flex: 1;
  min-width: 0;
  padding-right: 0.35rem;
}
.creator-fold .creator-label {
  margin: 0 0 0.15rem;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}
.creator-fold .creator-name {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
}
.creator-fold .creator-name-row {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-wrap: wrap;
}
.creator-fold-body {
  padding: 0 1rem 0.95rem;
  border-top: 1px solid #edf2ef;
}
.creator-fold-body .creator-bio {
  margin: 0.85rem 0 0;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.7;
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}
.creator-bio-empty {
  color: var(--muted) !important;
}
.creator-fold-body .creator-contact {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.product-fold {
  margin-top: 0.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  overflow: hidden;
}
.product-fold summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem 1rem;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink);
}
.product-fold summary::-webkit-details-marker {
  display: none;
}
.product-fold summary::after {
  content: "›";
  float: right;
  color: #b3b9b5;
  transform: rotate(90deg);
}
.product-fold[open] summary::after {
  transform: rotate(-90deg);
}
.product-body {
  padding: 0 1rem 1rem;
}
.updates-fold .updates-timeline {
  margin: 0;
  padding: 0 1rem 0.85rem;
  border-top: 1px solid #edf2ef;
}
.updates-fold .update-entry:first-child {
  margin-top: 0.85rem;
}
.update-entry {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 0.7rem;
  padding: 0.9rem 0.95rem;
  margin-bottom: 0.75rem;
}
.update-time {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  font-weight: 600;
}
.risk-card-lite {
  margin-top: 0;
  border: 1px solid #f2d3b2;
  border-left: 4px solid #ea580c;
  background: linear-gradient(180deg, #fffaf5 0%, #fff5eb 100%);
  border-radius: 0.85rem;
  padding: 0.85rem 0.95rem;
}
.risk-card-lite .trust-title {
  margin-bottom: 0.45rem;
}
.risk-card-lite .meta {
  margin: 0.15rem 0 0;
  line-height: 1.75;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .product-region-1 {
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.status-panel { padding: 1rem 0 2rem; }
.status-actions { margin-top: 1.5rem; }
.status-actions .btn { width: 100%; max-width: 20rem; }

.work-list-compact { margin-top: 0.5rem; }
.work-card {
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem;
  margin-bottom: 0.75rem;
}
.work-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}
.work-card-top h2 { margin: 0; font-size: 1.05rem; }
.work-card-desc {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.work-card-meta {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}
.work-card .badge { margin-left: 0; }

/* 出品方中心目录 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.catalog-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.catalog-head h1 { margin-bottom: 0.25rem; }
.catalog-summary {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.catalog-head-actions { margin-left: auto; }
.catalog-toolbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.5rem;
  align-items: center;
  margin: 0 0 0.75rem;
}
.catalog-search { margin: 0; }
.catalog-search input {
  width: 100%;
  min-height: 2.5rem;
  margin: 0;
}
.catalog-sort { margin: 0; }
.catalog-sort select {
  min-height: 2.5rem;
  margin: 0;
  min-width: 6.5rem;
}
.catalog-search-btn {
  min-height: 2.5rem;
  padding: 0.4rem 0.75rem;
  white-space: nowrap;
}
.catalog-tabs {
  display: flex;
  gap: 0.35rem;
  margin: 0 0 0.85rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.15rem;
}
.catalog-tab {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.75rem;
  color: var(--muted);
  text-decoration: none !important;
  font-size: 0.9rem;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.catalog-tab.is-active {
  color: var(--ink);
  font-weight: 600;
  border-bottom-color: var(--accent);
}
.tab-count {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}
.catalog-tab.is-active .tab-count { color: var(--accent); }

.work-list-catalog {
  list-style: none;
  padding: 0;
  margin: 0;
}
.work-row {
  display: grid;
  grid-template-columns: 4.25rem 1fr;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.work-list-catalog .thumb-link,
.work-list-catalog .thumb,
.work-list-catalog .thumb-empty {
  width: 4.25rem;
  height: 4.25rem;
}
.work-row-body { min-width: 0; }
.work-row-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.45rem;
}
.work-row-top .work-title-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none !important;
  line-height: 1.35;
}
.work-row-meta {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}
.work-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.45rem;
  align-items: center;
}
.btn-sm {
  min-height: 2.1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
}
.work-row-actions .more-menu summary {
  min-height: 2.1rem;
  padding: 0.3rem 0.55rem;
  font-size: 1rem;
  line-height: 1;
}
.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.25rem 0 0.5rem;
}
.pager-info {
  color: var(--muted);
  font-size: 0.88rem;
}
.admin-filters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  align-items: center;
  margin: 0 0 1.25rem;
}
.admin-filters .catalog-search,
.admin-filters .catalog-sort { margin: 0; }
@media (min-width: 768px) {
  .admin-filters {
    grid-template-columns: minmax(10rem, 1.5fr) repeat(4, minmax(6.5rem, 1fr)) auto;
  }
}

@media (max-width: 420px) {
  .catalog-toolbar {
    grid-template-columns: 1fr 1fr;
  }
  .catalog-search { grid-column: 1 / -1; }
}

.more-menu { position: relative; }
.more-menu summary {
  list-style: none;
  cursor: pointer;
  min-height: 2.4rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
}
.more-menu summary::-webkit-details-marker { display: none; }
.more-menu-panel {
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 10;
  min-width: 7.5rem;
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.35rem 0;
  box-shadow: var(--shadow-soft);
}
.more-menu-panel a,
.more-menu-panel button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.9rem;
  border: 0;
  background: none;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
}

.empty-state { padding: 1.5rem 0; }

.nfc-panel {
  background: var(--accent-soft);
  border: 1px solid #9fd5c3;
  padding: 1rem;
  margin: 0 0 1.25rem;
}
.nfc-title { margin: 0 0 0.35rem; font-weight: 700; }
.nfc-hint { margin: 0; color: #115e59; font-size: 0.92rem; }

.result-summary { margin: 0 0 1.25rem; }
.result-pills { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 0.75rem; }
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.2rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--line);
}
.pill-ok { background: #f0fdf4; color: var(--ok); border-color: #bbf7d0; }
.pill-warn { background: #fffbeb; color: #92400e; border-color: #fde68a; }
.pill-err { background: #fef2f2; color: var(--danger); border-color: #fecaca; }
.result-details { margin: 0.4rem 0; }
.result-details ul { margin: 0.4rem 0 0; padding-left: 1.1rem; }

.advanced-fold {
  margin: 0.25rem 0 0.75rem;
  border: 1px dashed var(--line);
  padding: 0.5rem 0.75rem;
  background: #fff;
}
.advanced-fold summary {
  cursor: pointer;
  color: var(--muted);
  font-size: 0.9rem;
}

.sticky-actions {
  position: sticky;
  bottom: calc(var(--bottom-nav-h) + var(--safe-bottom) + 0.35rem);
  display: grid;
  gap: 0.55rem;
  padding: 0.75rem 0 calc(0.5rem + var(--safe-bottom));
  background: linear-gradient(180deg, transparent, var(--bg) 28%);
  z-index: 15;
}
.sticky-actions .btn,
.sticky-actions button { width: 100%; }

.choice-field {
  border: 1px solid var(--line);
  padding: 0.75rem 0.9rem;
  margin: 0;
  background: #fff;
}
.choice-field legend { padding: 0 0.25rem; font-size: 0.9rem; }
.choice-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.55rem;
  margin: 0.55rem 0;
  min-height: 2.4rem;
}
.choice-row input[type="radio"],
.choice-row input[type="checkbox"],
.choice-inline input[type="radio"] {
  width: 1.1rem;
  height: 1.1rem;
  min-height: 0;
  flex-shrink: 0;
  margin: 0;
}
.choice-row > span,
.choice-inline span {
  line-height: 1.3;
  white-space: nowrap;
}
.choice-inline {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
}
.choice-row-limited {
  gap: 0.75rem;
}
.edition-size-inline {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  white-space: nowrap;
}
.edition-size-inline[hidden] { display: none !important; }
.edition-size-inline input[type="number"] {
  width: 5.5rem !important;
  min-height: 2.4rem !important;
  max-width: 5.5rem;
  padding: 0.35rem 0.5rem;
}
.choice-help {
  margin: 0.5rem 0 0.15rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}
.edition-size-box {
  margin: 0.25rem 0 0.5rem 1.75rem;
}
.edition-size-box[hidden] { display: none !important; }
.edition-size-box input {
  max-width: 10rem;
}
.inline-num {
  width: 6rem !important;
  min-height: 2.4rem !important;
  margin-left: 0.25rem;
}

.bound-uids-fold {
  margin: 0 0 1rem;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.65rem 0.85rem;
}
.bound-uids-fold summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
}
.uid-list {
  list-style: none;
  padding: 0.6rem 0 0;
  margin: 0;
}
.uid-list li {
  display: grid;
  gap: 0.15rem;
  padding: 0.45rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}
.uid-list .meta { margin: 0; }

.detail-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  margin-bottom: 0.75rem;
}
.detail-head h1 { margin: 0; margin-right: 0.25rem; }
.detail-cover {
  margin: 0 0 1rem;
}
.detail-cover img {
  display: block;
  width: 100%;
  max-height: 16rem;
  object-fit: cover;
  border: 1px solid var(--line);
}
.detail-actions { margin: 1rem 0 1.5rem; }
.detail-section {
  margin: 1.5rem 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.detail-section h2 {
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
}
.chip-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.chip-detail-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}
.chip-detail-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}
.chip-index {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
}
.work-title-link {
  color: inherit;
  text-decoration: none !important;
}
.work-title-link:hover { text-decoration: underline !important; }

.pick-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.pick-card {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.9rem;
  margin-bottom: 0.55rem;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}
.pick-card:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.pick-card-body { display: grid; gap: 0.2rem; }
.pick-card-body .meta { margin: 0; }

.bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  min-height: var(--bottom-nav-h);
  padding: 0.35rem 0.4rem var(--safe-bottom);
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(26, 34, 28, 0.06);
  backdrop-filter: blur(12px);
}
body.page-creator .bottom-nav {
  display: grid;
}
.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  color: #6b746e;
  text-decoration: none !important;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.35rem 0.25rem 0.4rem;
  min-height: 3.6rem;
}
.bottom-nav-item.is-active {
  color: var(--accent);
  font-weight: 700;
}
.bn-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: #eef3f0;
  color: inherit;
}
.bn-ico svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}
.bottom-nav-item.is-active .bn-ico {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 14px rgba(15, 118, 110, 0.28);
}

/* ---------- Site footer ---------- */
.site-footer {
  margin-top: 2.5rem;
  padding: 1.25rem var(--pad) calc(1.25rem + var(--safe-bottom));
  border-top: 1px solid var(--line);
  background: rgba(247, 250, 248, 0.85);
}
.site-footer-inner {
  max-width: var(--wrap);
  margin: 0 auto;
}
.footer-brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.95rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}
.footer-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}
body.has-bottom-nav .site-footer,
body.page-creator .site-footer {
  margin-bottom: 0.5rem;
}

/* ---------- About page (mobile first) ---------- */

/* ── 首屏 ── */
.about-hero-section {
  display: grid;
  background: var(--bg);
}
.about-hero-copy {
  padding: 2.5rem var(--pad) 2rem;
}
.about-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1.2;
  margin: 0.5rem 0 0.3rem;
  letter-spacing: -0.01em;
}
.about-hero-legal {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0 0.9rem;
}
.about-hero-lead {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  max-width: 32rem;
}
.about-hero-visual {
  margin: 0;
  overflow: hidden;
  max-height: 52vw;
}
.about-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── 通用区块 ── */
.about-section-block {
  padding: 3rem var(--pad);
}
.about-inner {
  max-width: var(--wrap-wide);
  margin: 0 auto;
}

/* ── 我们做什么（白色） ── */
.about-what {
  background: #fff;
}
.about-paras {
  margin: 0 0 2rem;
}
.about-copy {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}
.about-what-cards {
  display: grid;
  gap: 1rem;
}
.about-what-card {
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  border-left: 3px solid var(--accent);
  background: var(--paper);
  border-radius: 0 0.75rem 0.75rem 0;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  column-gap: 0.85rem;
  align-items: start;
}
.about-what-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: 0.6rem;
  color: var(--accent);
  grid-row: span 2;
  flex-shrink: 0;
}
.about-what-icon svg { width: 1.3rem; height: 1.3rem; }
.about-what-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--accent);
}
.about-what-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ── 联系方式（深色） ── */
.about-contact-section {
  background: linear-gradient(150deg, #1a2a22 0%, #0f2018 100%);
  color: #eef5f1;
}
.about-contact-grid {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}
.contact-list--light li {
  border-color: rgba(255,255,255,0.12);
}
.contact-list--light .contact-k {
  color: rgba(238,245,241,0.55);
}
.contact-list--light .contact-v {
  color: #eef5f1;
}
.contact-v--link { color: #7ecfb0 !important; }
.about-qr-label {
  font-size: 0.85rem;
  color: rgba(238,245,241,0.6);
  margin: 0 0 0.75rem;
  letter-spacing: 0.05em;
}
.about-qr-block .qr-img {
  width: min(100%, 10rem);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
}

/* ── 咨询预约（浅绿） ── */
.about-consult-section {
  background: var(--bg-deep);
}
.about-consult-inner {
  display: grid;
  gap: 2rem;
}
.about-consult-intro .section-title {
  line-height: 1.35;
}
.about-consult-lead {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0.75rem 0 0;
  max-width: 28rem;
}
.about-consult-form-wrap {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(26,34,28,0.07);
}
.about-ok {
  margin-bottom: 1rem;
  font-weight: 500;
}

.about-section {
  margin: 1.5rem 0 0;
}
.about-h2 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
}
.about-lead {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.ph-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  border: 1px dashed var(--line);
  background:
    linear-gradient(145deg, #e7efea 0%, #dfe8e2 55%, #f2f6f3 100%);
  color: var(--muted);
  text-align: center;
}
.ph-hero {
  min-height: 11rem;
  border-radius: 0;
}
.ph-qr {
  width: 10.5rem;
  height: 10.5rem;
  margin: 0.85rem auto 0;
}
.qr-ph {
  margin: 0.85rem 0 0;
  text-align: center;
}
.qr-img {
  display: block;
  width: min(100%, 14rem);
  height: auto;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: #fff;
}
.ph-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.ph-hint {
  font-size: 0.78rem;
}
.about-hero-ph,
.about-hero,
.qr-ph {
  margin: 0;
}
.about-hero {
  margin: 0 0 1rem;
}
.about-hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 14rem;
  object-fit: cover;
  border: 1px solid var(--line);
}
.about-contact-card {
  padding: 1rem 0 0.25rem;
  border-top: 1px solid var(--line);
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 0.65rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.contact-k {
  color: var(--muted);
  font-size: 0.82rem;
  padding-top: 0.1rem;
}
.contact-v {
  color: var(--ink);
  font-size: 0.95rem;
  word-break: break-word;
  text-decoration: none;
}
a.contact-v { color: var(--accent); }
.profile-display-card {
  margin-top: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: #fff;
}
.about-form-section {
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}
.form-about label { display: block; margin-bottom: 0.85rem; }
.form-about .btn-block {
  width: 100%;
  margin-top: 0.35rem;
}

/* About web 宽屏适配 */
@media (min-width: 768px) {
  .about-section-block {
    padding: 4.5rem 4rem;
  }
  .about-hero-section {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 28rem;
  }
  .about-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 3rem 3.5rem 4rem;
  }
  .about-hero-visual {
    max-height: none;
  }
  .about-what-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .about-contact-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 3rem;
  }
  .about-consult-inner {
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
    gap: 3.5rem;
  }
  .about-consult-intro .section-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
  }
}
@media (min-width: 1024px) {
  .about-section-block {
    padding-left: max(4rem, calc((100vw - var(--wrap-wide)) / 2 + 2rem));
    padding-right: max(4rem, calc((100vw - var(--wrap-wide)) / 2 + 2rem));
  }
  .about-hero-copy {
    padding-left: max(4rem, calc((100vw - var(--wrap-wide)) / 2 + 3rem));
  }
}
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.inquiry-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.inquiry-item {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}
.inquiry-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
}
.inquiry-content {
  margin: 0.45rem 0;
  white-space: pre-wrap;
  word-break: break-word;
}

/* 图片放大预览 */
img.zoomable {
  cursor: zoom-in;
  -webkit-tap-highlight-color: transparent;
}
body.lightbox-open { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem 3rem;
  background: rgba(12, 14, 16, 0.92);
  box-sizing: border-box;
}
.lightbox[hidden] { display: none !important; }
.lightbox-img {
  display: block;
  max-width: min(100%, 960px);
  max-height: min(85vh, 100%);
  width: auto;
  height: auto;
  object-fit: contain;
  border: 0;
  box-shadow: none;
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox-close {
  position: absolute;
  top: max(0.5rem, env(safe-area-inset-top));
  right: max(0.5rem, env(safe-area-inset-right));
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #f5f5f4;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  color: #f5f5f4;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.lightbox-prev { left: 0.15rem; }
.lightbox-next { right: 0.15rem; }
.lightbox-counter {
  position: absolute;
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  color: #d6d3d1;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.lightbox-nav[hidden],
.lightbox-counter[hidden] { display: none !important; }

.avatar-preview,
.creator-avatar {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--accent-soft);
}
.creator-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin: 1.25rem 0 1.5rem;
  padding: 0.9rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
}
.creator-label {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.creator-name {
  margin: 0.15rem 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
}
.creator-name-row {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  flex-wrap: wrap;
}
.creator-name-row .creator-name {
  margin: 0.15rem 0 0.35rem;
}
.creator-bio,
.creator-contact {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.kyc-admin-img {
  display: block;
  max-width: min(100%, 28rem);
  height: auto;
  border: 1px solid var(--line);
  margin: 0.5rem 0;
}

@media (min-width: 768px) {
  .sticky-actions {
    grid-template-columns: auto auto;
    justify-content: start;
    background: transparent;
  }
  .sticky-actions .btn,
  .sticky-actions button { width: auto; }
  .fab-btn { width: auto; }
  .status-actions .btn { width: auto; }
  .bottom-nav { display: none; }
  body.has-bottom-nav,
  body.page-creator { padding-bottom: calc(var(--safe-bottom) + 1rem); }
  .fab-bar { bottom: 1rem; }
  .lightbox-prev { left: 1rem; }
  .lightbox-next { right: 1rem; }
}

/* ========== Tech page (技术优势) ========== */

/* ── 首屏（浅绿，与首页 hero 同色） ── */
.tech-hero {
  background: var(--bg);
  display: grid;
  gap: 0;
}
.tech-hero-copy {
  padding: 2.5rem var(--pad) 2rem;
}
.tech-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1.22;
  margin: 0.5rem 0 1rem;
  letter-spacing: -0.01em;
}
.tech-hero-lead {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
  margin: 0 0 0.7rem;
  max-width: 36rem;
}
.tech-hero-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.tech-hero-cta .btn { width: 100%; }
.tech-hero-visual {
  margin: 0;
  overflow: hidden;
  max-height: 72vw;
}
.tech-hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ── 通用区块 ── */
.tech-section {
  padding: 3rem var(--pad);
}
.tech-inner {
  max-width: var(--wrap-wide);
  margin: 0 auto;
}

/* ── 四大优势（白色） ── */
.tech-advantages {
  background: #fff;
}
.tech-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.tech-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: 0.85rem;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  column-gap: 0.9rem;
  align-items: start;
  box-shadow: 0 2px 12px rgba(31,106,86,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.tech-card:hover {
  box-shadow: 0 6px 24px rgba(31,106,86,0.13);
  transform: translateY(-2px);
}
.tech-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: 0.6rem;
  color: var(--accent);
  flex-shrink: 0;
  grid-row: span 2;
}
.tech-card-icon svg { width: 1.4rem; height: 1.4rem; }
.tech-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
  color: var(--accent);
  align-self: end;
}
.tech-card-body {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* ── 技术对比（深色，与首页安全机制同色） ── */
.tech-compare-section {
  background: linear-gradient(150deg, #1a2a22 0%, #0f2018 100%);
  color: #eef5f1;
}

/* 手机端卡片 */
.compare-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.compare-type-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.85rem;
  padding: 1.1rem 1.15rem;
  background: rgba(255,255,255,0.05);
}
.compare-type-card.compare-ours {
  border-color: #7ecfb0;
  background: rgba(126,207,176,0.1);
}
.compare-type-label {
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 0.85rem;
  color: #eef5f1;
}
.compare-dl {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}
.compare-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.4rem;
  font-size: 0.87rem;
}
.compare-row dt {
  color: rgba(238,245,241,0.5);
  font-weight: 500;
  padding-top: 0.1rem;
}
.compare-row dd { margin: 0; color: rgba(238,245,241,0.85); }
.compare-good { color: #7ecfb0 !important; font-weight: 500; }
.compare-bad  { color: #fca5a5 !important; }
.compare-warn { color: #fcd34d !important; }

/* 宽屏横向表格 */
.compare-table-wrap { display: none; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  line-height: 1.55;
  background: rgba(255,255,255,0.04);
}
.compare-table th,
.compare-table td {
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.1);
  vertical-align: top;
}
.compare-table thead th {
  background: rgba(255,255,255,0.08);
  font-weight: 600;
  white-space: nowrap;
  color: #eef5f1;
}
.compare-table td { color: rgba(238,245,241,0.8); }
.compare-tr-ours td {
  background: rgba(126,207,176,0.12);
  font-weight: 500;
  color: #eef5f1;
}

/* ── 结论区块（深色渐变，与首页底部 CTA 一致） ── */
.tech-conclusion {
  background: linear-gradient(160deg, #1f2a24 0%, #0e1f16 100%);
  color: #eef5f1;
}
.tech-conclusion-title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 6vw, 2.5rem);
  color: #fff;
  margin: 0.75rem 0 1.5rem;
  line-height: 1.3;
}
.tech-conclusion-quotes {
  border-left: 3px solid #7ecfb0;
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 0 0 1.5rem;
}
.tech-conclusion-quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 0.5rem;
  color: rgba(238,245,241,0.9);
}
.tech-conclusion-quote:last-child { margin: 0; }
.tech-conclusion-copy {
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgba(238,245,241,0.65);
  margin: 0 0 0;
}
.tech-conclusion-copy strong { color: #eef5f1; }
.tech-conclusion-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}
.tech-conclusion-cta .btn { width: 100%; }
.tech-conclusion .btn-primary {
  background: #7ecfb0;
  color: #0e1f16;
  border-color: #7ecfb0;
  font-weight: 600;
}
.tech-conclusion .btn-ghost {
  color: #eef5f1;
  border-color: rgba(238,245,241,0.45);
}

/* ── 响应式 ── */
@media (min-width: 640px) {
  .tech-cards { grid-template-columns: 1fr 1fr; }
  .compare-cards { grid-template-columns: 1fr 1fr; }
  .tech-conclusion-cta {
    grid-template-columns: auto auto;
    justify-content: start;
  }
  .tech-conclusion-cta .btn { width: auto; }
  .tech-hero-cta {
    grid-template-columns: auto auto;
    justify-content: start;
  }
  .tech-hero-cta .btn { width: auto; }
}

@media (min-width: 768px) {
  .tech-section {
    padding: 4.5rem 4rem;
  }
  .tech-hero {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 30rem;
  }
  .tech-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 3rem 3.5rem 4rem;
  }
  .tech-hero-visual {
    max-height: none;
  }
}

@media (min-width: 900px) {
  .compare-cards { display: none; }
  .compare-table-wrap { display: block; overflow-x: auto; margin-top: 1.5rem; }
  .tech-cards { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .tech-section {
    padding-left: max(4rem, calc((100vw - var(--wrap-wide)) / 2 + 2rem));
    padding-right: max(4rem, calc((100vw - var(--wrap-wide)) / 2 + 2rem));
  }
  .tech-hero-copy {
    padding-left: max(4rem, calc((100vw - var(--wrap-wide)) / 2 + 3rem));
  }
}

/* ========== Login page ========== */
.page-login .top {
  background: rgba(238, 242, 239, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.login-wrap {
  display: grid;
  min-height: calc(100svh - var(--top-h));
}

/* 左侧品牌区（手机隐藏，web 显示） */
.login-brand {
  display: none;
  background: linear-gradient(150deg, #1a2a22 0%, #0f2018 100%);
  color: #eef5f1;
  padding: 3rem 3rem 3rem 4rem;
  align-items: center;
}
.login-brand-inner {
  max-width: 26rem;
}
.login-brand-inner .home-eyebrow {
  border-color: rgba(126,207,176,0.5);
  color: #7ecfb0;
}
.login-brand-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  line-height: 1.25;
  color: #fff;
  margin: 0.75rem 0 1rem;
}
.login-brand-sub {
  color: rgba(238,245,241,0.68);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0 0 1.75rem;
}
.login-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}
.login-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(238,245,241,0.82);
  font-size: 0.92rem;
  line-height: 1.5;
}
.login-feature-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #7ecfb0;
  flex-shrink: 0;
}

/* 右侧表单区 */
.login-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem var(--pad);
  background: var(--bg);
}
.login-form-card {
  width: 100%;
  max-width: 22rem;
}
.login-form-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5vw, 1.9rem);
  margin: 0 0 0.3rem;
}
.login-form-sub {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0 0 1.75rem;
}
.login-error {
  background: #fff1f1;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  padding: 0.65rem 0.85rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  margin: 0 0 1.25rem;
}
.login-form label {
  display: block;
  margin-bottom: 1rem;
}
.login-submit {
  margin-top: 0.5rem;
}
.login-meta {
  margin: 1.5rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}
.login-meta a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.login-meta a:hover { text-decoration: underline; }

/* web 端两栏登录 */
@media (min-width: 1024px) {
  .login-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .login-brand {
    display: flex;
  }
  .login-form-side {
    padding: 3rem 4rem;
  }
}

/* ========== App shell (小程序工作台) ========== */
:root {
  --app-bg: #f5f5f5;
  --app-card: #fff;
  --app-line: #ececec;
  --app-nav-h: 2.85rem;
}

body.page-app {
  background: #e8ebe9;
  min-height: 100svh;
}

.app-frame {
  max-width: none;
  min-height: 100svh;
  margin: 0 auto;
  background: var(--app-bg);
  display: flex;
  flex-direction: column;
}

.app-main-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100svh;
}

.app-navbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 2.75rem 1fr auto;
  align-items: center;
  min-height: calc(var(--app-nav-h) + env(safe-area-inset-top, 0px));
  padding: env(safe-area-inset-top, 0px) 0.35rem 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--app-line);
  backdrop-filter: blur(12px);
}

.app-nav-back {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--app-nav-h);
  color: var(--ink);
  font-size: 1.65rem;
  line-height: 1;
  text-decoration: none !important;
}

.app-nav-title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-nav-extra {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  min-height: var(--app-nav-h);
  padding-right: 0.5rem;
  min-width: 2.75rem;
}

.app-nav-link {
  font-size: 0.82rem;
  color: var(--accent);
  text-decoration: none !important;
  white-space: nowrap;
}

.app-body {
  flex: 1;
  padding: 0.85rem 0.85rem 1.25rem;
}

body.page-app .bottom-nav {
  display: grid;
  position: sticky;
  left: auto;
  right: auto;
  bottom: 0;
  width: 100%;
  flex-shrink: 0;
}

.app-aside {
  display: none;
}
.app-aside-label {
  display: none;
}

body.page-app .eyebrow { display: none; }

body.page-app .about-section {
  background: var(--app-card);
  border-radius: 0.75rem;
  padding: 1rem 1rem 1.15rem;
  margin: 0 0 0.75rem;
  border: 0;
}

body.page-app .about-h2 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: #8a938d;
  letter-spacing: 0.04em;
}

body.page-app .app-body > .form,
body.page-app .app-body > .form-sticky-actions {
  background: var(--app-card);
  border-radius: 0.75rem;
  padding: 0.65rem 1rem 1rem;
}

body.page-app .form input,
body.page-app .form textarea,
body.page-app .form select {
  background: #f7f8f7;
  border-radius: 0.5rem;
}

body.page-app .ok,
body.page-app .error {
  border-radius: 0.6rem;
  padding: 0.7rem 0.85rem;
}

body.page-app .catalog-tabs {
  background: var(--app-card);
  border-radius: 0.75rem;
  padding: 0.2rem;
  border: 0;
}

body.page-app .work-list,
body.page-app .work-list-catalog {
  background: var(--app-card);
  border-radius: 0.75rem;
  overflow: hidden;
}

body.page-app .nfc-panel,
body.page-app .profile-display-card,
body.page-app .empty-state {
  background: var(--app-card);
  border-radius: 0.75rem;
  padding: 1rem;
}

body.page-app .sticky-actions {
  background: linear-gradient(180deg, transparent, var(--app-bg) 28%);
}

body.page-login .app-frame {
  max-width: none;
  background: transparent;
  box-shadow: none;
}

body.page-login .app-main-col {
  min-height: 100svh;
}

body.page-login .app-body,
body.page-login .login-wrap {
  flex: 1;
}

.login-form-side--solo {
  display: flex;
  justify-content: center;
  padding: 1.5rem var(--pad) 3rem;
}

@media (min-width: 768px) {
  body.page-app:not(.page-login) .bottom-nav {
    display: grid;
  }
  body.page-app:not(.page-admin) .sticky-actions {
    grid-template-columns: 1fr;
  }
  body.page-app:not(.page-admin) .sticky-actions .btn,
  body.page-app:not(.page-admin) .sticky-actions button {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  body.page-login .app-navbar {
    display: none;
  }
  body.page-login .login-wrap {
    min-height: 100svh;
  }
  .login-form-card {
    max-width: 26rem;
  }

  body.page-app.is-authed .app-frame {
    max-width: 76rem;
    display: grid;
    grid-template-columns: 13.5rem 1fr;
    box-shadow: 0 0 40px rgba(26, 34, 28, 0.08);
  }
  body.page-app.is-authed .app-aside {
    display: block;
    background: #16352c;
    color: #eef5f1;
    padding: 1.25rem 0.85rem;
  }
  body.page-app.is-authed .app-aside-brand {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    margin: 0 0.5rem 1.1rem;
    color: #fff;
  }
  body.page-app.is-authed .app-aside-label {
    display: block;
    margin: 1rem 0.5rem 0.35rem;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: rgba(238, 245, 241, 0.45);
  }
  body.page-app.is-authed .app-aside-nav {
    display: grid;
    gap: 0.15rem;
  }
  body.page-app.is-authed .app-aside-nav a {
    color: rgba(238, 245, 241, 0.82);
    text-decoration: none !important;
    padding: 0.65rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.92rem;
  }
  body.page-app.is-authed .app-aside-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }
  body.page-app.is-authed .app-aside-nav a.is-active {
    background: rgba(126, 207, 176, 0.2);
    color: #7ecfb0;
  }
  body.page-app.is-authed .app-main-col {
    min-height: 100svh;
    background: var(--app-bg);
  }
  body.page-app.is-authed .app-body {
    padding: 1.25rem 1.5rem 2rem;
    max-width: none;
  }
  body.page-app.is-authed .bottom-nav {
    display: none !important;
  }
  body.page-app.is-authed .app-navbar {
    padding-left: 0.75rem;
    padding-right: 1rem;
  }
  body.page-app.is-authed .work-list-catalog {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    background: transparent;
    border-radius: 0;
    overflow: visible;
  }
  body.page-app.is-authed .work-list-catalog .work-row {
    background: #fff;
    border-radius: 0.75rem;
    padding: 0.85rem;
  }
  body.page-app.is-authed .sticky-actions {
    grid-template-columns: auto auto;
    justify-content: start;
    background: transparent;
  }
  body.page-app.is-authed .sticky-actions .btn,
  body.page-app.is-authed .sticky-actions button {
    width: auto;
  }
}
