/* 造人 · 站的外壳（首页 / 模型库 / 关于）
   工坊自己那套在 style.css，两边共用 tokens.css。 */

@import './tokens.css';

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; line-height: 1.15; letter-spacing: -.01em; }
p { margin: 0; }

/* ── 顶栏 ─────────────────────────────────────────────────────────── */
/* 导航由 src/site.js 从 pages.json 生成。容器先占住高度，脚本没跑完也不跳。
   #site-nav 整个不能加 clip-path，否则下拉菜单会被裁掉。 */
#site-nav { height: 62px; }

.nav {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	gap: 26px;
	height: 62px;
	padding: 0 clamp(16px, 4vw, 48px);
	background: rgb(11 13 18 / .86);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
}
.brand {
	font-weight: 800;
	font-size: 20px;
	letter-spacing: .16em;
	display: flex;
	align-items: baseline;
	gap: 10px;
}
.brand span {
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .1em;
	color: var(--ink-3);
}

/* 分组下拉。01 的顶栏是「构建 / 发现 / 学习」三组，不是一排平铺链接：
   页面多了以后平铺放不下，分组是唯一能长的结构。 */
.menus { display: flex; gap: 4px; }
.menu-wrap { position: relative; }
.menu-btn {
	display: flex; align-items: center; gap: 6px;
	border: 0; background: none; color: var(--ink-2);
	font-size: 14px; font-family: inherit;
	padding: 8px 12px; cursor: pointer;
	transition: color .15s, background .15s;
}
.menu-wrap:hover .menu-btn, .menu-wrap.open .menu-btn { color: var(--ink); background: var(--panel); }
.caret {
	width: 0; height: 0;
	border-left: 3.5px solid currentColor;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	transform: rotate(90deg);
	transition: transform .16s;
	opacity: .7;
}
.menu-wrap.open .caret { transform: rotate(-90deg); }

.menu-panel {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	min-width: 340px;
	z-index: 30;
	background: var(--panel-2);
	border: 1px solid var(--line-2);
	box-shadow: 0 20px 54px rgb(0 0 0 / .62);
	padding: 16px 14px 12px;
	display: none;
}
.menu-wrap.open .menu-panel { display: block; animation: menu-in .14s ease; }
@keyframes menu-in { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .menu-wrap.open .menu-panel { animation: none; } }

.menu-lede {
	margin: 0 0 10px;
	padding: 0 10px 10px;
	font-size: 12px;
	color: var(--ink-3);
	border-bottom: 1px solid var(--line);
	line-height: 1.5;
}
.menu-item {
	display: grid;
	gap: 2px;
	padding: 9px 10px;
	transition: background .12s;
}
.menu-item:hover, .menu-item.on { background: #1e2433; }
.menu-item b { font-size: 14px; font-weight: 600; }
.menu-item span { font-size: 12px; color: var(--ink-3); line-height: 1.5; }
.menu-item.on b { color: var(--accent); }

.nav-cta {
	margin-left: auto;
	border: 1px solid var(--accent);
	color: var(--accent);
	padding: 7px 16px;
	font-size: 13.5px;
	white-space: nowrap;
	transition: background .15s, color .15s;
}
.nav-cta:hover { background: var(--accent); color: #04231e; }

/* ── 公告条 ───────────────────────────────────────────────────────── */
.announce {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 9px clamp(16px, 4vw, 48px);
	background: var(--bg-2);
	border-bottom: 1px solid var(--line);
	font-size: 13px;
	color: var(--ink-2);
}
.announce-tag {
	font-size: 11px;
	letter-spacing: .1em;
	color: var(--accent);
	border: 1px solid rgb(63 224 197 / .35);
	padding: 1px 8px;
	white-space: nowrap;
}
.announce-text { flex: 1; min-width: 0; }
.announce-cta { color: var(--accent); white-space: nowrap; }
.announce-cta:hover { text-decoration: underline; }
.announce-x {
	border: 0; background: none; color: var(--ink-3);
	font-size: 17px; line-height: 1; cursor: pointer; padding: 2px 6px;
}
.announce-x:hover { color: var(--ink); }

/* ── 首页的主视觉 ─────────────────────────────────────────────────── */
.hero {
	display: grid;
	grid-template-columns: minmax(300px, 5fr) 7fr;
	align-items: center;
	gap: 24px;
	min-height: calc(100vh - 62px);
	padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 48px);
}
.hero-copy h1 {
	font-size: clamp(34px, 4.4vw, 62px);
	font-weight: 800;
	letter-spacing: -.02em;
}
.hero-copy h1 em {
	font-style: normal;
	color: var(--accent);
}

/* 顶上那条「新功能」药丸。01 的英雄区顶上也有这么一条。 */
.pill {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	border: 1px solid var(--line-2);
	border-radius: 999px;
	padding: 6px 14px;
	font-size: 12.5px;
	color: var(--ink-2);
	margin-bottom: 22px;
	transition: border-color .15s, color .15s;
}
.pill:hover { border-color: var(--accent); color: var(--ink); }
.pill-dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 0 3px rgb(63 224 197 / .18);
	animation: pill-pulse 2.4s ease-in-out infinite;
}
@keyframes pill-pulse {
	0%, 100% { box-shadow: 0 0 0 3px rgb(63 224 197 / .18); }
	50% { box-shadow: 0 0 0 6px rgb(63 224 197 / .06); }
}
@media (prefers-reduced-motion: reduce) { .pill-dot { animation: none; } }
.pill-more { color: var(--accent); }

/* 三条能力，每行一个动词。扫一眼就知道这工具能干什么。 */
.points {
	list-style: none;
	margin: 22px 0 0;
	padding: 0;
	max-width: 34em;
}
.points li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 7px;
	font-size: 14.5px;
	color: var(--ink-2);
	line-height: 1.65;
}
.points li::before {
	content: '';
	position: absolute;
	left: 2px; top: .62em;
	width: 5px; height: 5px;
	background: var(--accent);
}
.points b { color: var(--ink); font-weight: 600; }

/* 英雄区里那个「直接开干」的入口。首页是产品，不是宣传页：给人一个现在就能
   按的按钮，而不是一个「了解详情」。 */
.starter { margin-top: 30px; }
.starter-label {
	display: block;
	font-size: 11.5px;
	letter-spacing: .1em;
	color: var(--ink-3);
	margin-bottom: 10px;
}
.starter-row { display: flex; flex-wrap: wrap; gap: 10px; }
.foot-note {
	margin-top: 22px;
	font-size: 12.5px;
	color: var(--ink-3);
	max-width: 36em;
	line-height: 1.7;
}

.lede {
	margin-top: 20px;
	font-size: clamp(15px, 1.15vw, 17px);
	color: var(--ink-2);
	max-width: 34em;
}
.lede.dim { color: var(--ink-3); margin-top: 8px; font-size: 14px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.btn {
	display: inline-block;
	padding: 12px 24px;
	border: 1px solid var(--line-2);
	font-size: 15px;
	transition: background .15s, border-color .15s, color .15s, transform .1s;
}
.btn.primary {
	background: var(--accent);
	border-color: var(--accent);
	color: #04231e;
	font-weight: 700;
}
.btn.primary:hover { filter: brightness(1.08); }
.btn.primary:active { transform: translateY(1px); }
.btn.ghost { color: var(--ink-2); }
.btn.ghost:hover { color: var(--ink); border-color: var(--line-2); background: var(--panel); }
.btn.big { padding: 15px 34px; font-size: 16px; }

.stage-col { position: relative; height: min(78vh, 760px); min-height: 380px; }
#stage { display: block; width: 100%; height: 100%; touch-action: none; }
.stage-load {
	position: absolute; inset: 0;
	display: grid; place-content: center;
	color: var(--ink-3); font-size: 14px;
	pointer-events: none;
}
.stage-load.gone { display: none; }
.stage-load.bad { color: var(--warn); }
.stage-tag {
	position: absolute;
	left: 50%; bottom: 8px;
	transform: translateX(-50%);
	color: var(--ink-3);
	font-size: 11.5px;
	white-space: nowrap;
	pointer-events: none;
}

/* ── 段落 ─────────────────────────────────────────────────────────── */
.band {
	padding: clamp(56px, 8vw, 110px) clamp(16px, 4vw, 48px);
	border-top: 1px solid var(--line);
	max-width: 1240px;
	margin: 0 auto;
}
.band h2 {
	font-size: clamp(24px, 2.6vw, 34px);
	font-weight: 700;
}
.band-lede {
	margin-top: 14px;
	color: var(--ink-2);
	max-width: 44em;
	font-size: 15.5px;
}

.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1px;
	margin-top: 40px;
	background: var(--line);
	border: 1px solid var(--line);
}
.cards article {
	background: var(--bg);
	padding: 26px 24px 30px;
}
.cards .num {
	display: block;
	font-size: 38px;
	font-weight: 800;
	color: var(--accent);
	line-height: 1;
	letter-spacing: -.02em;
}
.cards h3 {
	margin-top: 6px;
	font-size: 15px;
	font-weight: 600;
	color: var(--ink-2);
}
.cards p {
	margin-top: 12px;
	font-size: 14px;
	color: var(--ink-3);
	line-height: 1.75;
}

.two {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 18px;
	margin-top: 36px;
}
.base-card {
	border: 1px solid var(--line);
	background: var(--bg-2);
	padding: 26px 24px;
	position: relative;
	overflow: hidden;
}
.base-card::before {
	content: '';
	position: absolute; inset: 0 auto 0 0;
	width: 3px;
	background: var(--accent);
}
.base-card h3 { font-size: 20px; font-weight: 700; }
.base-card .tag {
	margin-top: 4px; font-size: 12.5px; color: var(--accent); letter-spacing: .04em;
}
.base-card p { margin-top: 14px; font-size: 14.5px; color: var(--ink-2); }
.base-card .minus { color: var(--ink-3); font-size: 13.5px; }
.base-card .minus b { color: var(--ink-2); font-weight: 600; }
.base-card .go { margin-top: 18px; }
.base-card .go a { color: var(--accent); font-size: 14px; }
.base-card .go a:hover { text-decoration: underline; }

.cta-band { text-align: center; }
.cta-band .band-lede { margin-left: auto; margin-right: auto; }
.cta-band .btn { margin-top: 30px; }

/* ── 模型库 ───────────────────────────────────────────────────────── */
.page-head {
	padding: clamp(40px, 6vw, 76px) clamp(16px, 4vw, 48px) 8px;
	max-width: 1240px;
	margin: 0 auto;
}
.page-head h1 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 800; }
.page-head p { margin-top: 14px; color: var(--ink-2); max-width: 44em; font-size: 15.5px; }

.grid-models {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	gap: 14px;
	margin-top: 34px;
}
.model-card {
	border: 1px solid var(--line);
	background: var(--bg-2);
	display: block;
	transition: border-color .15s, transform .12s;
}
.model-card:hover { border-color: var(--line-2); transform: translateY(-2px); }
.model-card .shot {
	aspect-ratio: 3 / 4;
	background: #0e1118;
	display: block;
	object-fit: cover;
	width: 100%;
}
.model-card .meta { padding: 11px 12px 13px; }
.model-card .meta b { display: block; font-size: 14px; font-weight: 600; }
.model-card .meta span { font-size: 11.5px; color: var(--ink-3); }

.empty {
	grid-column: 1 / -1;
	border: 1px dashed var(--line-2);
	padding: 54px 24px;
	text-align: center;
	color: var(--ink-3);
	font-size: 14.5px;
}
.empty b { display: block; color: var(--ink-2); font-size: 16px; margin-bottom: 8px; }
.empty a { color: var(--accent); }

/* ── 全部页面 ─────────────────────────────────────────────────────── */
.sitemap-section { margin-top: 46px; }
.sitemap-section:first-of-type { margin-top: 26px; }
.sitemap-section h2 { font-size: 19px; }
.sitemap-section > p { margin-top: 8px; color: var(--ink-3); font-size: 13.5px; }
.page-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1px;
	margin-top: 18px;
	background: var(--line);
	border: 1px solid var(--line);
}
.page-list a {
	background: var(--bg);
	padding: 14px 16px;
	transition: background .12s;
}
.page-list a:hover { background: var(--bg-2); }
.page-list b { display: block; font-size: 14.5px; font-weight: 600; }
.page-list code { font-family: var(--mono); font-size: 11.5px; color: var(--ink-3); }
.page-list span { display: block; margin-top: 5px; font-size: 13px; color: var(--ink-3); line-height: 1.6; }

/* ── 库页面：衣柜 / 配饰 / 动作 ───────────────────────────────────── */
.filters {
	display: flex; flex-wrap: wrap; gap: 8px;
	margin-top: 26px; align-items: center;
}
.filters input[type="search"] {
	background: var(--bg-2);
	border: 1px solid var(--line);
	padding: 8px 12px;
	color: var(--ink);
	font-family: inherit;
	font-size: 14px;
	outline: none;
	min-width: 200px;
}
.filters input[type="search"]:focus { border-color: var(--accent-dim); }
.filters button {
	border: 1px solid var(--line); background: var(--bg-2); color: var(--ink-2);
	padding: 7px 13px; font-size: 13px; font-family: inherit; cursor: pointer;
	transition: all .12s;
}
.filters button:hover { color: var(--ink); border-color: var(--line-2); }
.filters button.on { background: var(--accent); border-color: var(--accent); color: #04231e; font-weight: 600; }
.filters .count { margin-left: auto; font-size: 12.5px; color: var(--ink-3); }

.shelf {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 12px;
	margin-top: 20px;
}
.shelf-item {
	border: 1px solid var(--line);
	background: var(--bg-2);
	padding: 0 0 10px;
	display: grid;
	gap: 0;
}
.shelf-item img {
	width: 100%; aspect-ratio: 1; object-fit: cover;
	background: #0e1118; display: block;
	border-bottom: 1px solid var(--line);
}
.shelf-item .name { padding: 9px 11px 0; font-size: 13px; line-height: 1.45; }
.shelf-item .sub { padding: 4px 11px 0; font-size: 11.5px; color: var(--ink-3); }
.shelf-item .prompt {
	padding: 5px 11px 0; font-size: 11px; color: var(--ink-3);
	font-family: var(--mono); line-height: 1.5; opacity: .85;
}
.shelf-note { grid-column: 1 / -1; color: var(--ink-3); font-size: 14px; padding: 30px 0; text-align: center; }

/* 动作那一页：一张卡片一根骨头在转 */
.clip-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; margin-top: 24px; }
.clip-card { border: 1px solid var(--line); background: var(--bg-2); padding: 18px 16px; }
.clip-card h3 { font-size: 16px; font-weight: 600; }
.clip-card p { margin-top: 8px; font-size: 13px; color: var(--ink-3); line-height: 1.65; }
.clip-card a { display: inline-block; margin-top: 12px; font-size: 13px; color: var(--accent); }
.clip-card a:hover { text-decoration: underline; }

/* ── 关于 ─────────────────────────────────────────────────────────── */
.prose { max-width: 720px; }
.prose h2 { margin-top: 52px; font-size: 22px; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-top: 14px; color: var(--ink-2); font-size: 15.5px; }
.prose ul { margin: 14px 0 0; padding-left: 20px; color: var(--ink-2); font-size: 15px; }
.prose li { margin-bottom: 8px; }
.prose code {
	font-family: var(--mono);
	font-size: 13px;
	background: var(--panel);
	border: 1px solid var(--line);
	padding: 1px 6px;
}
.prose a { color: var(--accent); border-bottom: 1px solid rgb(63 224 197 / .35); }
.prose strong { color: var(--ink); font-weight: 600; }

table.spec {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
	font-size: 14px;
}
table.spec th, table.spec td {
	border: 1px solid var(--line);
	padding: 10px 12px;
	text-align: left;
	vertical-align: top;
}
table.spec th { color: var(--ink-3); font-weight: 500; background: var(--bg-2); }
table.spec td { color: var(--ink-2); }

/* ── 页脚 ─────────────────────────────────────────────────────────── */
.foot {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 26px;
	align-items: center;
	padding: 30px clamp(16px, 4vw, 48px) 46px;
	border-top: 1px solid var(--line);
	color: var(--ink-3);
	font-size: 13px;
	max-width: 1240px;
	margin: 0 auto;
}
.foot nav { display: flex; gap: 20px; margin-left: auto; }
.foot nav a:hover { color: var(--ink-2); }

/* ── 窄屏 ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
	.hero {
		grid-template-columns: 1fr;
		min-height: 0;
		padding-bottom: 8px;
	}
	.stage-col { height: 62vh; order: -1; }
	.nav { gap: 14px; height: 56px; }
	.brand span { display: none; }
	.nav nav { gap: 14px; }
	.nav-cta { padding: 6px 12px; font-size: 13px; }
}
@media (max-width: 560px) {
	.nav nav { display: none; }
	.foot nav { margin-left: 0; }
}

/* ── 首页：一排数字 ───────────────────────────────────────────────── */
.band.tight { padding-top: clamp(30px, 4vw, 54px); padding-bottom: clamp(30px, 4vw, 54px); }
.stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
}
.stats > div { background: var(--bg); padding: 24px 22px; }
.stats b {
	display: block;
	font-size: clamp(30px, 3.4vw, 44px);
	font-weight: 800;
	color: var(--accent);
	line-height: 1;
	letter-spacing: -.02em;
	font-variant-numeric: tabular-nums;
}
.stats span { display: block; margin-top: 8px; font-size: 13.5px; color: var(--ink-3); }

/* ── 首页：演示区 ─────────────────────────────────────────────────── */
/* 左边一长条内容，右边画布钉住不动。往下滚的是说明，人是同一个 —— 这一页
   于是变成一份「活的说明书」，而不是一串截图。 */
.demo-band {
	display: grid;
	grid-template-columns: minmax(300px, 6fr) 6fr;
	gap: clamp(24px, 4vw, 64px);
	align-items: start;
	max-width: 1240px;
}
.demo-copy { display: grid; gap: clamp(60px, 8vw, 110px); }
.demo-step { min-height: 46vh; }
.kicker {
	font-size: 11.5px;
	letter-spacing: .16em;
	color: var(--accent);
	margin-bottom: 10px;
}
.demo-step h2 { font-size: clamp(22px, 2.3vw, 30px); font-weight: 700; }
.demo-lede { margin-top: 14px; color: var(--ink-2); font-size: 15.5px; max-width: 40em; }
.demo-lede.dim { color: var(--ink-3); font-size: 14px; margin-top: 10px; }
.demo-note { margin-top: 16px; font-size: 13px; color: var(--ink-3); line-height: 1.7; }
.demo-note a { color: var(--accent); }
.demo-note a:hover { text-decoration: underline; }

.demo-stage { position: relative; height: 100%; }
.stage-sticky {
	position: sticky;
	top: 84px;
	height: min(74vh, 720px);
	min-height: 340px;
}
.stage-sticky canvas { display: block; width: 100%; height: 100%; touch-action: none; }

/* 页面上那两根真的滑杆 */
.demo-ctl {
	display: grid;
	grid-template-columns: 90px 1fr 46px;
	align-items: center;
	gap: 12px;
	margin-top: 14px;
	max-width: 30em;
}
.demo-ctl label { font-size: 13px; color: var(--ink-2); }
.demo-ctl b {
	font: 500 12px/1 var(--mono);
	color: var(--ink-3);
	text-align: right;
	font-variant-numeric: tabular-nums;
}
.demo-ctl input[type="range"] { width: 100%; }

/* ── 首页：一排可试穿的缩略图 ─────────────────────────────────────── */
.rack {
	display: flex;
	gap: 8px;
	margin-top: 20px;
	overflow-x: auto;
	padding-bottom: 8px;
	scrollbar-width: thin;
	scrollbar-color: var(--line-2) transparent;
}
.rack::-webkit-scrollbar { height: 8px; }
.rack::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 8px; }
.rack-tile {
	flex: 0 0 92px;
	border: 1px solid var(--line);
	background: var(--bg-2);
	padding: 0 0 7px;
	cursor: pointer;
	display: grid;
	gap: 3px;
	font-family: inherit;
	transition: border-color .12s, transform .1s;
}
.rack-tile:hover, .rack-tile:focus-visible { border-color: var(--accent); transform: translateY(-2px); }
.rack-tile img {
	width: 100%; aspect-ratio: 1; object-fit: cover;
	background: #0e1118; display: block;
}
.rack-tile img.dead { visibility: hidden; }
.rack-tile span {
	font-size: 10.5px; color: var(--ink-2); line-height: 1.3; padding: 0 6px;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
	text-align: left;
}
.rack-tile em {
	font-style: normal; font-size: 10px; color: var(--ink-3); padding: 0 6px; text-align: left;
}
.rack-note {
	flex: 1 0 100%;
	margin: 4px 0 0;
	font-size: 12.5px;
	color: var(--ink-3);
	line-height: 1.6;
}

/* ── 首页：动作一排 ───────────────────────────────────────────────── */
.clips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.clip-chip {
	border: 1px solid var(--line);
	background: var(--bg-2);
	color: var(--ink-2);
	padding: 7px 14px;
	font-size: 13.5px;
	font-family: inherit;
	cursor: pointer;
	transition: all .12s;
}
.clip-chip:hover { color: var(--ink); border-color: var(--line-2); }
.clip-chip.on { background: var(--accent); border-color: var(--accent); color: #04231e; font-weight: 600; }

/* ── 首页：三步 ───────────────────────────────────────────────────── */
.three-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1px;
	margin-top: 36px;
	background: var(--line);
	border: 1px solid var(--line);
}
.three-steps article { background: var(--bg); padding: 28px 26px 32px; }
.three-steps b {
	display: block;
	font: 800 30px/1 var(--mono);
	color: var(--accent);
	margin-bottom: 14px;
}
.three-steps h3 { font-size: 17px; font-weight: 700; }
.three-steps p { margin-top: 10px; font-size: 14px; color: var(--ink-3); line-height: 1.75; }

/* ── 首页：导出 ───────────────────────────────────────────────────── */
.export-band {
	display: grid;
	grid-template-columns: minmax(280px, 7fr) minmax(260px, 5fr);
	gap: clamp(24px, 4vw, 60px);
	align-items: start;
}
.checks { list-style: none; margin: 18px 0 0; padding: 0; }
.checks li {
	position: relative; padding-left: 22px; margin-bottom: 9px;
	font-size: 14.5px; color: var(--ink-2); line-height: 1.65;
}
.checks li::before {
	content: '✓'; position: absolute; left: 0; top: 0;
	color: var(--accent); font-size: 13px;
}
.export-fig {
	border: 1px solid var(--line);
	background: var(--bg-2);
	padding: 24px 22px;
}
.fig-row {
	display: flex; justify-content: space-between; align-items: baseline;
	font-size: 13.5px; color: var(--ink-2); margin-top: 18px;
}
.fig-row:first-child { margin-top: 0; }
.fig-row b { font: 600 15px/1 var(--mono); color: var(--ink); }
.fig-bar { height: 3px; background: var(--line); margin-top: 8px; overflow: hidden; }
.fig-bar i { display: block; height: 100%; background: var(--accent); }
.fig-note { margin-top: 22px; font-size: 12.5px; color: var(--ink-3); line-height: 1.7; }

.starter-row.center { justify-content: center; margin-top: 30px; }

/* ── 首页：窄屏 ───────────────────────────────────────────────────── */
@media (max-width: 1000px) {
	.demo-band, .export-band { grid-template-columns: 1fr; }
	.demo-stage { order: -1; }
	.stage-sticky { position: relative; top: 0; height: 54vh; }
	.demo-copy { gap: 48px; }
	.demo-step { min-height: 0; }
}

.rack-foot { margin-top: 10px; font-size: 12.5px; color: var(--ink-3); line-height: 1.6; }

/* 画布角上那行小字。放到左下角并加一层底：居中的话在演示区会压在人的腿上。 */
.stage-tag {
	left: 12px;
	transform: none;
	background: rgb(11 13 18 / .72);
	padding: 3px 10px;
	border: 1px solid var(--line);
}
