/* ==========================================================================
   木匠软件 · 工坊
   核桃木台面、枫木案板、曲尺、墨斗线、刨花、榫卯、尺刻度。
   不是宣纸茶馆，是干活的木工房。
   ========================================================================== */

:root {
	--walnut: #3b2416;
	--walnut-deep: #24150c;
	--maple: #f3e4cc;
	--oak: #c9a06a;
	--brass: #c4a35a;
	--ink-line: #b42318;
	--sawdust: #e8d4b0;

	--brand: #3b2416;
	--brand-strong: #24150c;
	--brand-2: #c9a06a;
	--brand-grad: #3b2416;
	--brand-soft: #efe0c8;
	--gold: #c4a35a;
	--gold-deep: #9a7a38;
	--gold-grad: #c4a35a;
	--cinnabar: #b42318;
	--cinnabar-deep: #8c1b12;

	--ink: #1a120c;
	--text: #453328;
	--muted: #8a7360;

	--bg: #efe2cc;
	--bg-soft: #e6d4b8;
	--line: #d4b896;
	--paper: #f7edd9;

	--dark: #24150c;
	--dark-2: #3b2416;
	--dark-line: rgba(232, 212, 176, 0.16);

	--ok: #3f6b4a;
	--warn: #c4a35a;

	--r-sm: 0;
	--r-md: 0;
	--r-lg: 0;

	--shadow-sm: none;
	--shadow-md: none;
	--shadow-lg: none;

	--font-display: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "HarmonyOS Sans SC", sans-serif;
	--font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "HarmonyOS Sans SC", "Segoe UI", sans-serif;

	--nav-h: 72px;
	--ruler: 18px;
}

/* ---------- 基础 ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--nav-h) + 16px);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.75;
	color: var(--text);
	background-color: #c99658;
	background-image:
		radial-gradient(ellipse at 18% 0%, rgba(255, 236, 205, 0.28), transparent 42%),
		radial-gradient(ellipse at 82% 100%, rgba(72, 38, 12, 0.22), transparent 48%),
		url("../img/wood.svg");
	background-size: auto, auto, 720px 470px;
	background-repeat: no-repeat, no-repeat, repeat;
	-webkit-font-smoothing: antialiased;
}

img,
svg {
	max-width: 100%;
	vertical-align: middle;
}

a {
	color: var(--brand);
	text-decoration: none;
}

h1,
h2,
h3,
h4 {
	margin: 0;
	color: var(--ink);
	line-height: 1.22;
	font-family: var(--font-display);
	font-weight: 700;
	letter-spacing: 0.12em;
}

p {
	margin: 0;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

::selection {
	background: rgba(194, 60, 34, 0.18);
	color: var(--ink);
}

.icon {
	width: 1.15em;
	height: 1.15em;
	flex: none;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 1000;
	padding: 10px 16px;
	background: var(--brand);
	color: #fff;
	font-weight: 600;
	border-radius: 0 0 10px 0;
}

.skip-link:focus {
	left: 0;
}

.container {
	width: min(1180px, calc(100% - 48px));
	margin-inline: auto;
}

.container.narrow {
	width: min(860px, calc(100% - 48px));
}

/* ---------- 按钮 ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 22px;
	border-radius: var(--r-sm);
	border: 1px solid transparent;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.06em;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.btn:active {
	transform: translateY(1px);
}

.btn-primary {
	background: var(--walnut);
	color: var(--sawdust);
	border-color: var(--walnut);
}

.btn-primary:hover {
	background: var(--walnut-deep);
	border-color: var(--walnut-deep);
	color: var(--sawdust);
}

.btn-ghost {
	background: transparent;
	border-color: var(--ink);
	color: var(--ink);
}

.btn-ghost:hover {
	background: var(--ink);
	color: var(--paper);
}

.btn-gold {
	background: var(--wood, var(--brand));
	color: #faf6ee;
}

.btn-gold:hover {
	background: var(--brand-strong);
	color: #faf6ee;
}

.btn-light {
	background: #fff;
	color: var(--brand-strong);
	box-shadow: 0 10px 24px -8px rgba(74, 26, 0, 0.45);
}

.btn-light:hover {
	transform: translateY(-2px);
	color: var(--brand-strong);
}

.btn-outline-light {
	border-color: rgba(255, 255, 255, 0.45);
	color: #fff;
}

.btn-outline-light:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.btn-sm {
	padding: 8px 16px;
	font-size: 14px;
}

.btn-lg {
	padding: 14px 30px;
	font-size: 16px;
}

.btn-block {
	width: 100%;
}

/* ---------- 顶部导航 ---------- */
.site-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	height: var(--nav-h);
	background-color: #2a160c;
	background-image: url("../img/wood-dark.svg");
	background-size: 720px 260px;
	background-repeat: repeat;
	border-bottom: 3px solid var(--oak);
}

.site-nav.is-scrolled {
	background-color: #1e1008;
}

.nav-plank {
	display: none;
}

.nav-inner {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 28px;
}

.brand {
	display: inline-flex;
	align-items: center;
	flex: none;
}

.brand-logo,
.brand .custom-logo {
	height: 36px;
	width: auto;
}

.nav-links {
	flex: 1;
	display: flex;
	justify-content: center;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 6px;
}

.nav-menu a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	border-radius: 0;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--sawdust);
	transition: color 0.16s ease, box-shadow 0.16s ease;
}

.nav-menu a:hover {
	background: transparent;
	color: #fff;
	box-shadow: inset 0 -2px 0 var(--oak);
}

.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
	color: #fff;
	background: transparent;
	box-shadow: inset 0 -2px 0 var(--oak);
}

.nav-badge {
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	padding: 3px 7px;
	border-radius: 0;
	background: var(--brand-soft);
	color: var(--brand-strong);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: none;
}

.nav-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	padding: 10px;
	border: 1px solid var(--oak);
	border-radius: 0;
	background: transparent;
	cursor: pointer;
}

.nav-burger span {
	display: block;
	height: 2px;
	border-radius: 0;
	background: var(--sawdust);
	transition: transform 0.25s ease, opacity 0.2s ease;
}

body.nav-open .nav-burger span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-burger span:nth-child(2) {
	opacity: 0;
}

body.nav-open .nav-burger span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-cta {
	display: none;
}

/* ---------- 首屏 ---------- */
.hero {
	position: relative;
	padding: 72px 0 56px;
	background: transparent;
	overflow: hidden;
}

.hero-glow {
	display: none;
}

.hero-glow.g1 {
	width: 480px;
	height: 480px;
	right: -120px;
	top: -160px;
	background: rgba(255, 138, 30, 0.16);
}

.hero-glow.g2 {
	width: 420px;
	height: 420px;
	left: -140px;
	bottom: -180px;
	background: rgba(87, 128, 255, 0.10);
}

.hero-glow.gold {
	width: 520px;
	height: 520px;
	left: 50%;
	top: -220px;
	transform: translateX(-50%);
	background: rgba(240, 185, 92, 0.20);
}

.hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
	align-items: center;
	gap: 56px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0 0 10px;
	border-radius: 0;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--line);
	box-shadow: none;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.18em;
	color: var(--brand);
	text-transform: none;
}

.hero-badge .icon,
.hero-badge .joinery-mark {
	color: var(--cinnabar);
	width: 22px;
	height: 22px;
}

.hero-badge .icon {
	color: var(--brand);
}

.hero-badge.coming .icon {
	color: var(--warn);
}

.hero-badge.gold {
	border-color: rgba(216, 154, 43, 0.4);
	background: linear-gradient(135deg, #fffaf0, #fdf3de);
	color: #7a5410;
}

.hero-badge.gold .icon {
	color: var(--gold-deep);
}

.hero h1 {
	margin: 22px 0 18px;
	font-size: clamp(36px, 5vw, 58px);
	font-weight: 600;
	letter-spacing: 0.06em;
}

.hero h1 em {
	font-style: italic;
	font-weight: 500;
	color: var(--cinnabar);
	-webkit-text-fill-color: var(--cinnabar);
	background: none;
}

.hero-sub {
	max-width: 560px;
	font-size: 17px;
	color: var(--text);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.hero-actions-center {
	justify-content: center;
}

.hero-meta {
	margin-top: 16px;
	font-size: 13px;
	color: var(--muted);
}

.hero-visual {
	position: relative;
}

/* 二级页首屏（紧凑型），注意与副标题类 .hero-sub 区分 */
.hero.hero-compact {
	padding: 72px 0 56px;
}

.hero-center {
	text-align: center;
}

.hero-copy-center {
	max-width: 720px;
	margin-inline: auto;
}

.hero-copy-center .hero-sub {
	margin-inline: auto;
}

/* 浮动信息胶囊 */
.float-chip {
	position: absolute;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(8px);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-md);
	font-size: 13.5px;
	font-weight: 600;
	color: var(--ink);
	animation: float 5s ease-in-out infinite;
}

.float-chip .icon {
	color: var(--brand);
}

.chip-a {
	top: -18px;
	right: 2%;
}

.chip-b {
	bottom: -16px;
	left: -2%;
	animation-delay: 1.6s;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-9px);
	}
}

/* ---------- 数据条 ---------- */
.stats-bar {
	position: relative;
	z-index: 2;
	margin-top: 64px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-md);
	overflow: hidden;
}

.stat {
	padding: 26px 18px;
	text-align: center;
}

.stat + .stat {
	border-left: 1px solid var(--line);
}

.stat b {
	display: block;
	font-size: 32px;
	font-weight: 800;
	letter-spacing: -0.5px;
	background: linear-gradient(120deg, var(--brand-strong), var(--brand-2));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.stat span {
	font-size: 13.5px;
	color: var(--muted);
}

/* ---------- 章节 ---------- */
.section {
	padding: 96px 0;
}

.section-soft {
	background: rgba(247, 237, 217, 0.42);
}

.section-first {
	padding-top: 56px;
}

.sec-head {
	max-width: 720px;
	margin: 0 auto 56px;
	text-align: center;
}

.sec-head h2 {
	font-size: clamp(26px, 3.2vw, 38px);
	font-weight: 600;
	letter-spacing: 0.06em;
}

.sec-head p {
	margin-top: 14px;
	font-size: 16px;
	color: var(--muted);
}

.sec-foot {
	margin-top: 40px;
	text-align: center;
}

.kicker {
	display: inline-block;
	margin-bottom: 14px;
	font-family: var(--font-display);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.28em;
	color: var(--cinnabar);
}

.kicker.gold {
	color: var(--gold);
}

/* ---------- 产品矩阵 ---------- */
.product-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.product-card {
	position: relative;
	padding: 34px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-sm);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}

.product-card h3 {
	font-size: 22px;
	margin-bottom: 4px;
}

.product-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 18px;
	border-radius: 16px;
	background: var(--brand-soft);
	color: var(--brand-strong);
	font-size: 26px;
}

/*
   每个软件一个主色，三张卡并排时一眼能分开。
   注意别和品牌主色（墨绿）撞——撞了就分不出「这是品牌色」还是「这是某个产品的色」。
*/
.product-icon.blue {
	background: #eaf2ff;
	color: #2f6fdb;
}

.product-icon.red {
	background: #ffeeee;
	color: #d8453f;
}

.product-icon.amber {
	background: #fff4e2;
	color: #c77400;
}

/* 旧值，演示数据或自定义配置里可能还在用 */
.product-icon.green {
	background: #fff4e2;
	color: #c77400;
}

/* 旧类名，演示数据里可能还在用 */
.product-icon.pdf {
	background: #ffeeee;
	color: #d8453f;
}

.product-status.beta {
	color: #2f6fdb;
}

.product-status {
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 12px;
}

.product-status.ok {
	color: var(--ok);
}

.product-status.coming {
	color: var(--warn);
}

.product-card > p:not(.product-status) {
	color: var(--text);
	font-size: 15px;
}

.product-points {
	margin: 18px 0 24px;
	display: grid;
	gap: 8px;
}

.product-points li {
	position: relative;
	padding-left: 18px;
	font-size: 14.5px;
	color: var(--text);
}

.product-points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.62em;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--brand-2);
}

.product-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.product-card.is-coming {
	border-style: dashed;
	background: linear-gradient(180deg, #fff, #fafbfd);
}

.ribbon {
	position: absolute;
	top: 22px;
	right: 22px;
	padding: 5px 12px;
	border-radius: 999px;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	color: var(--warn);
	font-size: 12.5px;
	font-weight: 700;
}

/* ---------- 功能网格 ---------- */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.feature-grid.cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

.feature-grid.cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.feature-card {
	padding: 30px 28px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-sm);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}

.feature-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	margin-bottom: 18px;
	border-radius: 14px;
	background: var(--brand-soft);
	color: var(--brand-strong);
	font-size: 24px;
}

.feature-card h3 {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	margin-bottom: 10px;
}

.feature-card p {
	font-size: 14.5px;
	color: var(--text);
}

/* ---------- 左右分栏 ---------- */
.split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: 64px;
	align-items: center;
}

.split-rev {
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}

.split-rev .split-copy {
	order: 2;
}

.split-rev .split-visual {
	order: 1;
}

.split-copy h2 {
	font-size: clamp(26px, 3vw, 36px);
	font-weight: 800;
	letter-spacing: -0.4px;
	margin-bottom: 16px;
}

.split-copy > p {
	font-size: 16px;
	color: var(--text);
}

.check-list {
	margin-top: 24px;
	display: grid;
	gap: 12px;
}

.check-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	color: var(--ink);
	font-weight: 500;
}

.check-list .icon {
	margin-top: 0.22em;
	color: var(--brand);
}

.check-list.light li {
	color: rgba(255, 255, 255, 0.92);
}

.check-list.light .icon {
	color: var(--gold);
}

/* ---------- 启动速度面板 ---------- */
.speed-panel {
	padding: 30px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-md);
}

.speed-panel h4 {
	font-size: 16px;
	margin-bottom: 24px;
}

.speed-panel h4 span {
	font-size: 12.5px;
	font-weight: 400;
	color: var(--muted);
}

.speed-row {
	display: grid;
	grid-template-columns: 108px 1fr 52px;
	align-items: center;
	gap: 14px;
}

.speed-row + .speed-row {
	margin-top: 18px;
}

.speed-label {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--ink);
}

.speed-track {
	height: 12px;
	border-radius: 999px;
	background: #eef1f6;
	overflow: hidden;
}

.speed-fill {
	display: block;
	height: 100%;
	width: 0;
	border-radius: 999px;
	background: #c4cdda;
	transition: width 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.25s;
}

.speed-fill.is-pixora {
	background: var(--brand-grad);
}

.revealed .speed-fill {
	width: var(--w);
}

.speed-row b {
	font-size: 14px;
	text-align: right;
	color: var(--ink);
}

.speed-note {
	margin-top: 22px;
	font-size: 12.5px;
	color: var(--muted);
}

/* ---------- 软件窗口模拟 ---------- */
.mock-window {
	background: #10141d;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 16px;
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}

.mock-titlebar {
	display: flex;
	align-items: center;
	gap: 10px;
	height: 42px;
	padding: 0 14px;
	background: #151a26;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-appdot {
	width: 12px;
	height: 12px;
	border-radius: 4px;
	background: var(--brand-grad);
	flex: none;
}

.mock-title {
	flex: 1;
	min-width: 0;
	font-size: 12px;
	color: #98a2b8;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mock-vip-pill {
	flex: none;
	padding: 3px 10px;
	border-radius: 999px;
	background: var(--gold-grad);
	color: #4a3005;
	font-size: 11px;
	font-weight: 700;
}

.mock-winbtns {
	display: flex;
	gap: 4px;
	flex: none;
}

.mock-winbtns i {
	width: 24px;
	height: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-style: normal;
	font-size: 10px;
	color: #7d8798;
	border-radius: 6px;
}

.mock-winbtns i:nth-child(1)::before {
	content: "─";
}

.mock-winbtns i:nth-child(2)::before {
	content: "□";
}

.mock-winbtns i.close::before {
	content: "✕";
}

.mock-winbtns i.close {
	color: #f0868a;
}

/* 看图画布与风景绘制 */
.mock-canvas {
	position: relative;
	aspect-ratio: 16 / 10;
	background: #0a0e16;
	padding: 26px 54px 30px;
}

.mock-scene {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
	background: linear-gradient(180deg, #141b33 0%, #33305e 34%, #8a4a52 58%, #e0784a 76%, #f8b268 100%);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.mock-sun {
	position: absolute;
	left: 56%;
	top: 46%;
	width: 15%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, #ffe9b3 0%, #ffc76e 55%, rgba(255, 199, 110, 0) 72%);
	filter: blur(1px);
}

.mock-cloud {
	position: absolute;
	height: 8%;
	border-radius: 999px;
	background: rgba(255, 236, 214, 0.30);
	filter: blur(6px);
}

.mock-cloud.c1 {
	width: 36%;
	left: 10%;
	top: 26%;
}

.mock-cloud.c2 {
	width: 26%;
	right: 12%;
	top: 38%;
}

.mock-mount {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 52%;
}

.mock-mount.m1 {
	background: rgba(30, 36, 66, 0.82);
	clip-path: polygon(0 62%, 16% 34%, 30% 55%, 46% 22%, 60% 48%, 74% 30%, 88% 52%, 100% 40%, 100% 100%, 0 100%);
}

.mock-mount.m2 {
	background: rgba(20, 25, 48, 0.92);
	clip-path: polygon(0 78%, 12% 58%, 26% 72%, 42% 46%, 58% 68%, 72% 52%, 86% 70%, 100% 58%, 100% 100%, 0 100%);
}

.mock-mount.m3 {
	background: #0c101f;
	clip-path: polygon(0 90%, 18% 76%, 36% 88%, 55% 72%, 74% 86%, 100% 76%, 100% 100%, 0 100%);
}

.mock-exif {
	position: absolute;
	left: 14px;
	top: 14px;
	padding: 5px 11px;
	border-radius: 999px;
	background: rgba(8, 11, 18, 0.55);
	backdrop-filter: blur(6px);
	font-size: 11px;
	color: #cdd5e4;
}

.mock-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: #dfe5f0;
	font-size: 20px;
	line-height: 1;
}

.mock-arrow.left {
	left: 9px;
}

.mock-arrow.right {
	right: 9px;
}

.mock-toolbar {
	position: absolute;
	left: 50%;
	bottom: 13px;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 3px;
	padding: 7px 13px;
	border-radius: 999px;
	background: rgba(13, 17, 27, 0.72);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.10);
}

.mock-toolbar i,
.mock-toolbar b {
	font-style: normal;
	font-size: 12px;
	color: #d6dcea;
	padding: 2px 7px;
	border-radius: 7px;
}

.mock-toolbar b {
	font-weight: 600;
	color: #fff;
}

.mock-toolbar .tb-sep {
	width: 1px;
	height: 14px;
	margin: 0 4px;
	background: rgba(255, 255, 255, 0.16);
}

/* 管理模式 */
.mock-manager-body {
	display: grid;
	grid-template-columns: 158px 1fr;
	aspect-ratio: 16 / 10;
}

.mock-side {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 14px 10px;
	background: #0d1220;
	border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.side-item {
	padding: 7px 12px;
	border-radius: 8px;
	font-size: 12.5px;
	color: #9aa3b5;
}

.side-item.active {
	background: rgba(255, 106, 0, 0.16);
	color: #ffb27a;
	font-weight: 600;
}

.side-item.sub {
	padding-left: 24px;
	font-size: 12px;
}

.mock-main {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.mock-toolrow {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 11px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-toolrow .crumb {
	font-size: 12.5px;
	color: #9aa3b5;
}

.zoombar {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #9aa3b5;
	font-size: 12px;
	font-style: normal;
}

.zoombar i {
	font-style: normal;
}

.zoomtrack {
	position: relative;
	width: 74px;
	height: 3px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
}

.zoomdot {
	position: absolute;
	left: 58%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--brand-grad);
}

.mock-grid {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	padding: 14px 16px;
	align-content: start;
}

.mock-thumb {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: 8px;
}

.mock-thumb.selected {
	outline: 2px solid var(--brand);
	outline-offset: 2px;
}

.mock-thumb.selected::after {
	content: "✓";
	position: absolute;
	right: -6px;
	top: -6px;
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--brand);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
}

.mock-thumb.t1 { background: linear-gradient(135deg, #2b3f8c, #7ca6f0); }
.mock-thumb.t2 { background: linear-gradient(135deg, #f2994a, #f2c94c); }
.mock-thumb.t3 { background: linear-gradient(135deg, #11998e, #38ef7d); }
.mock-thumb.t4 { background: linear-gradient(135deg, #5f2c82, #9d61d1); }
.mock-thumb.t5 { background: linear-gradient(135deg, #e96443, #904e95); }
.mock-thumb.t6 { background: linear-gradient(135deg, #1488cc, #2b32b2); }
.mock-thumb.t7 { background: linear-gradient(135deg, #f85032, #e73827); }
.mock-thumb.t8 { background: linear-gradient(135deg, #16bffd, #cb3066); }
.mock-thumb.t9 { background: linear-gradient(135deg, #56ab2f, #a8e063); }
.mock-thumb.t10 { background: linear-gradient(135deg, #614385, #516395); }
.mock-thumb.t11 { background: linear-gradient(135deg, #eecda3, #ef629f); }
.mock-thumb.t12 { background: linear-gradient(135deg, #1a2980, #26d0ce); }

.mock-statusbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 9px 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 11.5px;
	color: #9aa3b5;
}

.status-actions {
	display: inline-flex;
	gap: 6px;
}

.status-actions b {
	padding: 3px 9px;
	border-radius: 999px;
	background: rgba(255, 106, 0, 0.14);
	color: #ffb27a;
	font-size: 11px;
	font-weight: 600;
}

/* ---------- 格式墙 ---------- */
.format-wall {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}

.format-group {
	padding: 26px 28px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-sm);
}

.format-group h4 {
	font-size: 15px;
	margin-bottom: 14px;
}

.chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.chips span {
	padding: 5px 13px;
	border-radius: 999px;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	font-size: 13px;
	font-weight: 500;
	color: var(--ink);
}

.chips.hi span {
	background: var(--brand-soft);
	border-color: #ffd9b8;
	color: var(--brand-strong);
	font-weight: 600;
}

/* ---------- 会员区块 ---------- */
.vip-band {
	background:
		radial-gradient(720px 380px at 12% 0%, rgba(240, 185, 92, 0.14), transparent 62%),
		radial-gradient(640px 360px at 92% 100%, rgba(255, 106, 0, 0.10), transparent 60%),
		linear-gradient(160deg, #0d1322, #131b30);
	color: rgba(255, 255, 255, 0.85);
}

.vip-band .split-copy h2 {
	color: #fff;
}

.vip-band .split-copy > p {
	color: rgba(255, 255, 255, 0.72);
}

.vip-card {
	position: relative;
	max-width: 440px;
	margin-left: auto;
	padding: 32px;
	border-radius: var(--r-lg);
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
	border: 1px solid rgba(240, 185, 92, 0.35);
	box-shadow: 0 40px 80px -32px rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(6px);
}

.vip-card-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
}

.vip-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: var(--gold-grad);
	color: #4a3005;
	font-size: 22px;
}

.vip-card-head b {
	display: block;
	font-size: 18px;
	color: #fff;
}

.vip-card-head span {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
}

.vip-price {
	font-size: 52px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	margin-bottom: 22px;
}

.vip-price i {
	font-style: normal;
	font-size: 24px;
	color: var(--gold);
}

.vip-price span {
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.62);
	margin-left: 6px;
}

.vip-card ul {
	display: grid;
	gap: 12px;
}

.vip-card li {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.85);
}

.vip-card li .icon {
	margin-top: 0.2em;
	color: var(--gold);
}

/* ---------- 更新动态 ---------- */
.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.news-card {
	display: block;
	padding: 28px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-sm);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.news-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
	border-color: #ffd9b8;
}

.news-card time {
	font-size: 13px;
	color: var(--muted);
}

.news-card h3 {
	margin: 10px 0 10px;
	font-size: 17.5px;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-card p {
	font-size: 14px;
	color: var(--text);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 16px;
	font-size: 14px;
	font-weight: 600;
	color: var(--brand-strong);
}

/* ---------- FAQ ---------- */
.faq-list {
	display: grid;
	gap: 14px;
}

.faq-list details {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.faq-list summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 19px 22px;
	font-size: 15.5px;
	font-weight: 600;
	color: var(--ink);
	cursor: pointer;
	list-style: none;
}

.faq-list summary::-webkit-details-marker {
	display: none;
}

.faq-list summary .icon {
	color: var(--muted);
	transition: transform 0.25s ease;
}

.faq-list details[open] summary .icon {
	transform: rotate(180deg);
	color: var(--brand);
}

.faq-list details p {
	padding: 0 22px 20px;
	font-size: 14.5px;
	color: var(--text);
}

/* ---------- 功能分组卡（看图落地页） ---------- */
.func-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.func-card {
	padding: 30px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-sm);
}

.func-card h3 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	margin-bottom: 16px;
}

.func-card h3 .icon {
	color: var(--brand);
}

.func-card ul {
	display: grid;
	gap: 9px;
}

.func-card li {
	position: relative;
	padding-left: 18px;
	font-size: 14.5px;
	color: var(--text);
}

.func-card li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.64em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--brand-2);
}

/* ---------- 快捷键 ---------- */
.hotkey-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
}

.hotkey {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 22px 12px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	box-shadow: var(--shadow-sm);
	text-align: center;
}

.hotkey kbd {
	font-family: inherit;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--ink);
	padding: 6px 12px;
	background: var(--bg-soft);
	border: 1px solid #d9e0e9;
	border-bottom-width: 3px;
	border-radius: 9px;
	white-space: nowrap;
}

.hotkey span {
	font-size: 13px;
	color: var(--muted);
}

/* ---------- 表格 ---------- */
.format-table-wrap,
.compare-wrap {
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-sm);
	background: #fff;
}

.format-table,
.compare-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14.5px;
	min-width: 640px;
}

.format-table th,
.compare-table th {
	text-align: left;
	padding: 16px 22px;
	background: var(--bg-soft);
	color: var(--ink);
	font-size: 14px;
	border-bottom: 1px solid var(--line);
	white-space: nowrap;
}

.format-table td,
.compare-table td {
	padding: 15px 22px;
	border-bottom: 1px solid var(--line);
	color: var(--text);
	vertical-align: top;
}

.format-table tr:last-child td,
.compare-table tr:last-child td {
	border-bottom: none;
}

.format-table td:first-child {
	font-weight: 600;
	color: var(--ink);
	white-space: nowrap;
}

.compare-table th.hl,
.compare-table td.hl {
	background: #fff8f1;
	color: var(--ink);
	font-weight: 600;
}

.compare-table .icon.ok {
	color: var(--ok);
}

.compare-table .icon.no {
	color: #c3ccd9;
}

.compare-table td {
	text-align: left;
}

.vip-table td:nth-child(2),
.vip-table td:nth-child(3),
.vip-table th:nth-child(2),
.vip-table th:nth-child(3) {
	text-align: center;
	width: 130px;
}

.table-note {
	margin-top: 18px;
	text-align: center;
	font-size: 13px;
	color: var(--muted);
}

/* ---------- 价格卡 ---------- */
.price-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	align-items: stretch;
}

.price-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 34px 30px;
	background: #fff;
	border: 1.5px solid var(--line);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-sm);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.price-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}

.price-card h3 {
	font-size: 17px;
	margin-bottom: 14px;
}

.price {
	font-size: 46px;
	font-weight: 800;
	color: var(--ink);
	line-height: 1;
	margin-bottom: 24px;
}

.price i {
	font-style: normal;
	font-size: 22px;
	color: var(--brand-strong);
	margin-right: 2px;
}

.price span {
	font-size: 14px;
	font-weight: 500;
	color: var(--muted);
	margin-left: 6px;
}

.price-card ul {
	display: grid;
	gap: 11px;
	margin-bottom: 28px;
}

.price-card li {
	display: flex;
	gap: 9px;
	align-items: flex-start;
	font-size: 14.5px;
	color: var(--text);
}

.price-card li .icon {
	margin-top: 0.22em;
	color: var(--brand);
}

.price-card .btn {
	margin-top: auto;
}

.price-card.featured {
	border-color: var(--gold-deep);
	background: linear-gradient(180deg, #fffdf8, #fff);
	box-shadow: 0 24px 48px -18px rgba(216, 154, 43, 0.35);
	transform: scale(1.04);
	z-index: 1;
}

.price-card.featured:hover {
	transform: scale(1.04) translateY(-5px);
}

.price-flag {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	padding: 5px 16px;
	border-radius: 999px;
	background: var(--gold-grad);
	color: #4a3005;
	font-size: 12.5px;
	font-weight: 700;
	white-space: nowrap;
	box-shadow: 0 6px 16px -6px rgba(216, 154, 43, 0.6);
}

/* ---------- 开发进度 ---------- */
.progress-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.step {
	position: relative;
	padding: 24px 18px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	box-shadow: var(--shadow-sm);
	text-align: center;
}

.step-dot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-bottom: 12px;
	border-radius: 50%;
	border: 2px solid var(--line);
	color: #fff;
	font-size: 15px;
}

.step.done .step-dot {
	background: var(--ok);
	border-color: var(--ok);
}

.step.active {
	border-color: #ffd9b8;
	box-shadow: 0 12px 28px -12px rgba(255, 106, 0, 0.35);
}

.step.active .step-dot {
	border-color: var(--brand);
	background: var(--brand-soft);
	position: relative;
}

.step.active .step-dot::after {
	content: "";
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--brand);
	animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(0.72);
		opacity: 0.7;
	}
}

.step b {
	display: block;
	font-size: 15px;
	color: var(--ink);
	margin-bottom: 4px;
}

.step > span:not(.step-dot) {
	font-size: 12.5px;
	color: var(--muted);
}

.progress-note {
	margin-top: 26px;
	text-align: center;
	font-size: 14px;
	color: var(--muted);
}

/* ---------- 下载中心 ---------- */
/* 列数别写死。原来是 1.2fr 0.9fr 两列，而模板是按产品数量循环的，
   三个产品时第三张会单独掉到第二行，看着像出了 bug。
   用 auto-fit 之后加第四个软件也不用回来改 CSS。 */
.download-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 28px;
	align-items: stretch;
}

.download-card {
	position: relative;
	padding: 36px 32px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-sm);
}

.download-card.featured {
	border-color: #ffd9b8;
	box-shadow: 0 24px 48px -18px rgba(255, 106, 0, 0.28);
	background: linear-gradient(180deg, #fffaf5, #fff);
}

.download-flag {
	position: absolute;
	top: -12px;
	left: 28px;
	padding: 5px 14px;
	border-radius: 999px;
	background: var(--brand-grad);
	color: #fff;
	font-size: 12.5px;
	font-weight: 700;
	box-shadow: 0 8px 18px -8px rgba(255, 106, 0, 0.7);
}

.download-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 18px;
	border-radius: 16px;
	background: var(--brand-soft);
	color: var(--brand-strong);
	font-size: 26px;
}

.download-icon.alt {
	background: #eef2ff;
	color: #4f63d2;
}

.download-icon.blue {
	background: #eaf2ff;
	color: #2f6fdb;
}

.download-icon.red {
	background: #ffeeee;
	color: #d8453f;
}

.download-icon.amber,
.download-icon.green {
	background: #fff4e2;
	color: #c77400;
}

.download-flag.muted {
	color: var(--text-2);
	background: var(--bg-soft);
}

.download-alt {
	display: block;
	margin-top: 12px;
	font-size: 13px;
	text-align: center;
	color: var(--text-3);
}

.download-detail {
	display: inline-flex;
	gap: 4px;
	align-items: center;
	margin-top: 18px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--brand-strong);
}

.download-detail .icon {
	width: 16px;
	height: 16px;
}

.download-card h2 {
	font-size: 24px;
	margin-bottom: 10px;
}

.download-card > p {
	font-size: 15px;
	color: var(--text);
	margin-bottom: 22px;
}

.download-meta-list {
	display: grid;
	gap: 10px;
	margin: 0 0 28px;
	padding: 18px;
	background: var(--bg-soft);
	border-radius: var(--r-md);
}

.download-meta-list li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	font-size: 14px;
}

.download-meta-list span {
	color: var(--muted);
}

.download-meta-list b {
	color: var(--ink);
	font-weight: 600;
	text-align: right;
}

.download-pending {
	padding: 18px;
	border-radius: var(--r-md);
	background: #fff7ed;
	border: 1px dashed #fdba74;
}

.download-pending p {
	font-size: 14px;
	color: #9a3412;
	margin-bottom: 14px;
}

.download-empty {
	padding: 16px;
	border-radius: var(--r-md);
	background: var(--bg-soft);
	color: var(--muted);
	font-size: 14px;
	margin-bottom: 18px !important;
}

.download-side-links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 22px;
	font-size: 14px;
	font-weight: 600;
}

.checksum-box {
	margin-top: 36px;
	padding: 24px 28px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 20px;
}

.checksum-box h3 {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	width: 100%;
}

.checksum-box h3 .icon {
	color: var(--brand);
}

.checksum-box code {
	flex: 1;
	min-width: 220px;
	padding: 12px 14px;
	border-radius: 10px;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	font-size: 12.5px;
	word-break: break-all;
	color: var(--ink);
}

@media (max-width: 820px) {
	.download-grid {
		grid-template-columns: 1fr;
	}
}

/* ---------- 底部 CTA ---------- */
.cta-band {
	position: relative;
	padding: 72px 0;
	background-color: #24150c;
	background-image: url("../img/wood-dark.svg");
	background-size: 720px 260px;
	background-repeat: repeat;
	text-align: center;
	overflow: hidden;
}

.cta-band::before {
	content: "";
	position: absolute;
	inset: 18px;
	border: 1px solid var(--dark-line);
	pointer-events: none;
}

.cta-band h2 {
	color: var(--bg);
	font-size: clamp(26px, 3.4vw, 40px);
	font-weight: 600;
	letter-spacing: 0.08em;
}

.cta-band > .cta-inner > p {
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 16px;
}

.cta-actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 32px;
}

.cta-meta {
	margin-top: 18px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8);
}

/* ---------- 页脚 ---------- */
.site-footer {
	position: relative;
	background-color: #24150c;
	background-image: url("../img/wood-dark.svg");
	background-size: 720px 260px;
	background-repeat: repeat;
	color: #c4b8a4;
	padding: 72px 0 34px;
	font-size: 14px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 44px;
	padding-bottom: 44px;
	border-bottom: 1px solid var(--dark-line);
}

.footer-brand img {
	height: 34px;
	width: auto;
	margin-bottom: 18px;
}

.footer-brand p {
	margin-bottom: 20px;
	line-height: 1.9;
}

.footer-col h4 {
	color: #fff;
	font-size: 14.5px;
	margin-bottom: 18px;
}

.footer-col ul {
	display: grid;
	gap: 11px;
}

.footer-col a {
	color: #97a1b5;
	transition: color 0.16s ease;
}

.footer-col a:hover {
	color: #fff;
}

.foot-badge {
	display: inline-block;
	margin-left: 6px;
	padding: 2px 8px;
	border-radius: 999px;
	background: rgba(255, 150, 64, 0.14);
	color: #ffb27a;
	font-size: 11px;
	font-weight: 600;
}

.footer-friends {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 18px;
	padding: 20px 0 0;
	font-size: 13px;
	color: #7d8798;
}

.footer-friends-label {
	color: #97a1b5;
	font-weight: 600;
}

.footer-friends a {
	color: #7d8798;
	transition: color 0.16s ease;
}

.footer-friends a:hover {
	color: #fff;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	padding-top: 26px;
	font-size: 13px;
	color: #7d8798;
}

.footer-beian {
	display: flex;
	gap: 16px;
}

.footer-beian a,
.footer-beian span {
	color: #7d8798;
}

.footer-beian a:hover {
	color: #fff;
}

/* ---------- 内页头部与正文 ---------- */
.page-hero,
.atelier-hero {
	padding: 72px 0 44px;
	background: transparent;
	border-bottom: 1px solid rgba(59, 36, 22, 0.12);
}

.page-hero h1 {
	font-size: clamp(28px, 3.6vw, 40px);
	font-weight: 800;
}

.post-meta {
	margin-bottom: 12px;
	font-size: 14px;
	color: var(--muted);
}

.prose {
	font-size: 15.5px;
}

.prose h2 {
	font-size: 24px;
	margin: 36px 0 14px;
}

.prose h3 {
	font-size: 19px;
	margin: 28px 0 12px;
}

.prose p {
	margin: 14px 0;
}

.prose ul {
	margin: 14px 0;
	padding-left: 22px;
	list-style: disc;
	display: grid;
	gap: 7px;
}

.prose li::marker {
	color: var(--brand);
}

.prose a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.prose img {
	border-radius: var(--r-md);
}

.back-link {
	margin-top: 40px;
}

/* ---------- PDF 界面模拟图 ---------- */

.mock-appdot.red {
	background: linear-gradient(140deg, #ff7a70, #d8453f);
}

.mock-pdf-body {
	display: flex;
	height: 288px;
	background: #eef0f4;
}

.mock-pdf-side {
	display: grid;
	gap: 8px;
	align-content: start;
	width: 62px;
	padding: 10px 8px;
	background: #f7f8fa;
	border-right: 1px solid rgba(0, 0, 0, .06);
}

.mock-thumb {
	height: 58px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 3px;
}

.mock-thumb.is-active {
	border-color: #2f6fdb;
	box-shadow: 0 0 0 1px #2f6fdb;
}

.mock-pdf-main {
	display: flex;
	flex: 1;
	align-items: flex-start;
	justify-content: center;
	padding: 14px;
	overflow: hidden;
}

.mock-page {
	display: grid;
	gap: 9px;
	align-content: start;
	width: 100%;
	max-width: 260px;
	padding: 20px 18px;
	background: #fff;
	border-radius: 3px;
	box-shadow: 0 4px 16px rgba(16, 24, 40, .12);
}

.mock-line {
	height: 7px;
	background: #dfe3ea;
	border-radius: 3px;
}

.mock-line.title {
	height: 12px;
	margin-bottom: 6px;
	background: #b9c0cc;
}

.mock-line.mark {
	background: #ffe8a3;
}

.mock-line.w45 { width: 45%; }
.mock-line.w60 { width: 60%; }
.mock-line.w70 { width: 70%; }
.mock-line.w84 { width: 84%; }
.mock-line.w88 { width: 88%; }
.mock-line.w90 { width: 90%; }
.mock-line.w92 { width: 92%; }
.mock-line.w95 { width: 95%; }

/* ---------- 会员页：两种买法 ---------- */

.buy-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 22px;
}

.buy-card {
	position: relative;
	padding: 30px 28px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-sm);
}

.buy-card.is-featured {
	border-color: #f0c14b;
	box-shadow: 0 16px 40px rgba(215, 165, 40, .16);
}

.buy-flag {
	position: absolute;
	top: -12px;
	left: 28px;
	padding: 5px 14px;
	font-size: 12.5px;
	font-weight: 700;
	color: #7a5200;
	background: linear-gradient(135deg, #ffdf8a, #f0c14b);
	border-radius: 999px;
}

.buy-card h3 {
	font-size: 21px;
	font-weight: 700;
}

.buy-sub {
	margin: 6px 0 20px;
	font-size: 13.5px;
	color: var(--text-3);
}

.buy-list {
	display: grid;
	gap: 10px;
	margin-bottom: 18px;
}

.buy-list li {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 12px 14px;
	background: var(--bg-soft);
	border-radius: var(--r-md);
}

.buy-link {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--brand-strong);
}

.buy-note {
	font-size: 12.5px;
	line-height: 1.7;
	color: var(--text-3);
}

.price-hint {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	max-width: 720px;
	padding: 16px 18px;
	margin: 26px auto 0;
	font-size: 13.5px;
	color: var(--text-2);
	background: var(--bg-soft);
	border-radius: var(--r-md);
}

.price-hint .icon {
	flex: none;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	color: var(--brand);
}

/* ---------- 三步开通 ---------- */

.step-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
}

.step-card {
	position: relative;
	padding: 26px 24px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
}

.step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-bottom: 14px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(135deg, var(--brand), var(--brand-strong));
	border-radius: 50%;
}

.step-card h3 {
	margin-bottom: 8px;
	font-size: 17px;
	font-weight: 700;
}

.step-card p {
	font-size: 13.5px;
	line-height: 1.75;
	color: var(--text-2);
}

/* ---------- 优化工具界面模拟图 ---------- */

.mock-appdot.green {
	background: linear-gradient(140deg, #5fd08a, #1f9254);
}

.mock-boost-body {
	display: flex;
	gap: 18px;
	padding: 20px;
	background: #f6f7f9;
}

.mock-score {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 148px;
	padding: 18px 10px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .07);
	border-radius: 12px;
}

.mock-ring {
	display: flex;
	flex-direction: column;
	gap: 2px;
	align-items: center;
	justify-content: center;
	width: 96px;
	height: 96px;
	background:
		conic-gradient(#1f9254 0 86%, #e6e9ee 86% 100%);
	border-radius: 50%;
	position: relative;
}

.mock-ring::after {
	position: absolute;
	inset: 9px;
	content: '';
	background: #fff;
	border-radius: 50%;
}

.mock-ring b,
.mock-ring span {
	position: relative;
	z-index: 1;
}

.mock-ring b {
	font-size: 28px;
	font-weight: 700;
	color: #1f9254;
	line-height: 1;
}

.mock-ring span {
	font-size: 11px;
	color: #8a9099;
}

.mock-score-note {
	margin-top: 12px;
	font-size: 12px;
	font-weight: 600;
	color: #d8453f;
}

.mock-boost-list {
	display: grid;
	flex: 1;
	gap: 7px;
	align-content: start;
}

.mock-boost-item {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 10px 12px;
	font-size: 12.5px;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .06);
	border-radius: 8px;
}

.mock-boost-item.is-off {
	opacity: .55;
}

.mock-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	font-size: 11px;
	color: #fff;
	background: #1f9254;
	border-radius: 4px;
}

.mock-check.off {
	background: #fff;
	border: 1px solid #c8ccd4;
}

.mock-boost-name {
	flex: 1;
	color: #4a5058;
}

.mock-boost-item b {
	font-weight: 700;
	color: #2c3038;
}

.mock-boost-btn {
	padding: 10px;
	margin-top: 4px;
	font-size: 13px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	background: linear-gradient(135deg, #2fae6c, #1f9254);
	border-radius: 8px;
}

/* ---------- 清理 / 磁盘面板 ---------- */

.clean-panel,
.disk-panel {
	padding: 26px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-md);
}

.clean-panel h4 {
	margin-bottom: 18px;
	font-size: 16px;
	font-weight: 700;
}

.clean-panel h4 span {
	margin-left: 6px;
	font-size: 12.5px;
	font-weight: 400;
	color: var(--text-3);
}

.clean-row,
.disk-row {
	display: grid;
	grid-template-columns: 96px 1fr 66px;
	gap: 12px;
	align-items: center;
	margin-bottom: 12px;
}

.clean-name,
.disk-label {
	font-size: 13px;
	color: var(--text-2);
}

.clean-track,
.disk-bar {
	height: 9px;
	overflow: hidden;
	background: var(--bg-soft);
	border-radius: 999px;
}

.clean-fill {
	display: block;
	width: var(--w);
	height: 100%;
	background: linear-gradient(90deg, #7bd3a0, #1f9254);
	border-radius: 999px;
}

.disk-used {
	display: block;
	width: var(--w);
	height: 100%;
	border-radius: 999px;
}

.disk-used.danger {
	background: linear-gradient(90deg, #ff9a92, #d8453f);
}

.disk-used.ok {
	background: linear-gradient(90deg, #7bd3a0, #1f9254);
}

.clean-row b,
.disk-row b {
	font-size: 13px;
	font-weight: 700;
	text-align: right;
}

.feature-icon.danger {
	color: #d8453f;
	background: #ffeeee;
}

/* ---------- 转换能力面板 ---------- */

.convert-panel,
.pipeline-panel {
	padding: 26px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-md);
}

.convert-panel h4 {
	margin-bottom: 16px;
	font-size: 16px;
	font-weight: 700;
}

.convert-panel h4 span {
	margin-left: 6px;
	font-size: 12.5px;
	font-weight: 400;
	color: var(--text-3);
}

.convert-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.convert-chip {
	padding: 8px 14px;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-2);
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: 999px;
}

/* ---------- 批量流水线示意 ---------- */

.pipeline-panel {
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: stretch;
}

.pipe-step {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 14px 16px;
	font-weight: 600;
	background: var(--bg-soft);
	border-radius: var(--r-md);
}

.pipe-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	font-size: 12.5px;
	color: #fff;
	background: var(--brand);
	border-radius: 50%;
}

.pipe-step.is-done {
	color: #1f9254;
	background: #e8f7ee;
}

.pipe-step.is-done .icon {
	width: 20px;
	height: 20px;
}

.pipe-arrow {
	display: flex;
	justify-content: center;
	color: var(--text-3);
}

.pipe-arrow .icon {
	width: 18px;
	height: 18px;
}

/* ---------- 全家桶面板（首页会员区） ---------- */

.bundle-panel {
	padding: 28px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-md);
}

.bundle-head {
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--line);
}

.bundle-tag {
	display: inline-flex;
	gap: 6px;
	align-items: center;
	padding: 5px 12px;
	margin-bottom: 12px;
	font-size: 12.5px;
	font-weight: 600;
	color: #9a6a00;
	background: #fff5dd;
	border-radius: 999px;
}

.bundle-tag .icon {
	width: 15px;
	height: 15px;
}

.bundle-head h4 {
	font-size: 19px;
	font-weight: 700;
}

.bundle-list {
	display: grid;
	gap: 12px;
}

.bundle-list li {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 12px 14px;
	background: var(--bg-soft);
	border-radius: var(--r-md);
}

.bundle-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: var(--brand-soft);
	color: var(--brand-strong);
}

.bundle-ico .icon {
	width: 18px;
	height: 18px;
}

.bundle-ico.blue {
	background: #eaf2ff;
	color: #2f6fdb;
}

.bundle-ico.red {
	background: #ffeeee;
	color: #d8453f;
}

.bundle-ico.amber,
.bundle-ico.green {
	background: #fff4e2;
	color: #c77400;
}

.bundle-name {
	flex: 1;
	font-weight: 600;
}

.bundle-list .icon.ok {
	color: var(--ok);
}

.bundle-note {
	margin-top: 16px;
	font-size: 12.5px;
	color: var(--text-3);
}

.log-date {
	margin-bottom: 8px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--text-3);
}

/* ---------- 更新日志时间线 ---------- */
.timeline {
	position: relative;
	padding-left: 34px;
}

.timeline::before {
	content: "";
	position: absolute;
	left: 8px;
	top: 8px;
	bottom: 8px;
	width: 2px;
	background: linear-gradient(180deg, var(--brand-2), var(--line));
}

.timeline-item {
	position: relative;
	padding-bottom: 36px;
}

.timeline-item:last-child {
	padding-bottom: 0;
}

.timeline-dot {
	position: absolute;
	left: -34px;
	top: 26px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #fff;
	border: 4px solid var(--brand);
	box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.14);
}

.timeline-card {
	padding: 28px 32px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-sm);
}

.timeline-card time {
	font-size: 13px;
	font-weight: 600;
	color: var(--brand-strong);
}

.timeline-card h2 {
	font-size: 21px;
	margin: 8px 0 6px;
}

.timeline-card h2 a {
	color: var(--ink);
}

.timeline-card h2 a:hover {
	color: var(--brand-strong);
}

/* ---------- 归档 / 404 / 其他 ---------- */
.archive-list {
	display: grid;
	gap: 18px;
}

.pagination-wrap {
	margin-top: 40px;
	text-align: center;
}

.pagination-wrap .page-numbers {
	display: inline-flex;
	align-items: center;
	padding: 8px 15px;
	margin: 0 3px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: #fff;
	font-size: 14px;
	color: var(--ink);
}

.pagination-wrap .page-numbers.current {
	background: var(--brand-grad);
	border-color: transparent;
	color: #fff;
}

.empty-note {
	padding: 48px 24px;
	text-align: center;
	color: var(--muted);
	background: var(--bg-soft);
	border-radius: var(--r-lg);
	border: 1px dashed var(--line);
}

.not-found {
	padding-top: 100px;
	padding-bottom: 120px;
}

.nf-code {
	font-size: clamp(90px, 14vw, 150px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -4px;
	background: linear-gradient(120deg, var(--brand-strong), var(--brand-2));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	margin-bottom: 8px;
}

.not-found h1 {
	font-size: 30px;
	margin-bottom: 14px;
}

/* ---------- 进场动画 ---------- */
.reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.revealed {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.float-chip,
	.step.active .step-dot::after {
		animation: none;
	}
}

/* ---------- 响应式 ---------- */
@media (max-width: 1080px) {
	.hero-inner {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.hero-copy {
		text-align: center;
	}

	.hero-sub {
		margin-inline: auto;
	}

	.hero-actions {
		justify-content: center;
	}

	.hero-visual {
		max-width: 640px;
		margin-inline: auto;
	}

	.split,
	.split-rev {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.split-rev .split-copy {
		order: 1;
	}

	.split-rev .split-visual {
		order: 2;
	}

	.vip-card {
		margin-inline: auto;
	}

	.feature-grid,
	.feature-grid.cols-4,
	.feature-grid.cols-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.news-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hotkey-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.progress-steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.price-grid {
		grid-template-columns: 1fr;
		max-width: 460px;
		margin-inline: auto;
	}

	.price-card.featured {
		transform: none;
		order: -1;
	}

	.price-card.featured:hover {
		transform: translateY(-5px);
	}
}

@media (max-width: 820px) {
	:root {
		--nav-h: 64px;
	}

	.section {
		padding: 68px 0;
	}

	.nav-links {
		position: fixed;
		top: var(--nav-h);
		left: 0;
		right: 0;
		bottom: 0;
		display: none;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(10px);
		padding: 24px;
		overflow-y: auto;
		z-index: 99;
	}

	body.nav-open .nav-links {
		display: block;
	}

	body.nav-open {
		overflow: hidden;
	}

	.nav-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
	}

	.nav-menu a {
		justify-content: space-between;
		padding: 14px 18px;
		font-size: 16.5px;
		border-radius: 14px;
	}

	.nav-mobile-cta {
		display: block;
		margin-top: 18px;
	}

	.nav-mobile-cta .btn {
		width: 100%;
	}

	.nav-actions .btn-ghost,
	.nav-actions .btn-primary {
		display: none;
	}

	.nav-burger {
		display: flex;
	}

	.stats-bar {
		grid-template-columns: 1fr 1fr;
	}

	.stat:nth-child(3) {
		border-left: none;
	}

	.stat:nth-child(3),
	.stat:nth-child(4) {
		border-top: 1px solid var(--line);
	}

	.product-grid,
	.func-grid,
	.format-wall {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 36px;
	}

	.footer-brand {
		grid-column: 1 / -1;
	}

	.mock-canvas {
		padding: 18px 40px 22px;
	}

	.float-chip {
		display: none;
	}
}

@media (max-width: 560px) {
	.container,
	.container.narrow {
		width: calc(100% - 36px);
	}

	.hero {
		padding: 56px 0 48px;
	}

	.hero.hero-compact {
		padding: 48px 0 40px;
	}

	.feature-grid,
	.feature-grid.cols-4,
	.feature-grid.cols-3,
	.news-grid {
		grid-template-columns: 1fr;
	}

	.hotkey-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.progress-steps {
		grid-template-columns: 1fr;
	}

	.hero-actions .btn {
		flex: 1;
		min-width: 0;
	}

	.stats-bar {
		margin-top: 44px;
	}

	.stat b {
		font-size: 26px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.mock-side {
		display: none;
	}

	.mock-manager-body {
		grid-template-columns: 1fr;
	}

	.timeline {
		padding-left: 26px;
	}

	.timeline-dot {
		left: -26px;
	}

	.timeline-card {
		padding: 22px;
	}
}

/* ==========================================================================
   工坊装饰：曲尺、墨斗、刨花、尺刻度、榫卯板
   ========================================================================== */

.bench-ruler {
	position: fixed;
	top: 0;
	bottom: 0;
	width: var(--ruler);
	z-index: 90;
	pointer-events: none;
	background:
		repeating-linear-gradient(
			to bottom,
			var(--walnut) 0 2px,
			transparent 2px 10px,
			var(--walnut) 10px 11px,
			transparent 11px 40px
		),
		var(--oak);
	opacity: 0.85;
}

.bench-ruler-l { left: 0; border-right: 1px solid var(--walnut); }
.bench-ruler-r { right: 0; border-left: 1px solid var(--walnut); }

.brand {
	gap: 10px;
	color: var(--sawdust);
}

.brand:hover {
	color: #fff;
}

.brand-mark {
	display: block;
	width: 36px;
	height: 36px;
	flex: none;
	line-height: 0;
}

.brand-mark svg {
	display: block;
	width: 36px;
	height: 36px;
	max-width: none;
}

.brand-lockup {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
	gap: 3px;
}

.brand-name {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.28em;
	color: inherit;
}

.brand-sub {
	font-size: 11px;
	letter-spacing: 0.22em;
	color: var(--oak);
}

.site-nav .btn-ghost {
	border-color: var(--oak);
	color: var(--sawdust);
	background: transparent;
}

.site-nav .btn-ghost:hover {
	background: var(--sawdust);
	color: var(--walnut);
}

.site-nav .btn-primary {
	background: var(--oak);
	border-color: var(--oak);
	color: var(--walnut-deep);
}

.site-nav .btn-primary:hover {
	background: var(--sawdust);
	border-color: var(--sawdust);
	color: var(--walnut-deep);
}

.nav-badge {
	background: var(--oak);
	color: var(--walnut-deep);
}

.shop-hero {
	position: relative;
	padding: 56px 0 0;
	background: transparent;
	overflow: hidden;
}

.shop-grain {
	display: none;
}

.shop-shavings {
	position: absolute;
	right: 8%;
	top: 28px;
	width: 180px;
	color: var(--oak);
	opacity: 0.55;
	pointer-events: none;
}

.shop-hero .hero-inner {
	grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.9fr);
	align-items: stretch;
	gap: 36px;
}

.shop-sign {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px;
	font-size: 13px;
	letter-spacing: 0.22em;
	color: var(--walnut);
}

.shop-sign .joinery-mark {
	width: 56px;
	height: 18px;
	color: var(--ink-line);
}

.shop-hero h1 {
	font-size: clamp(44px, 7vw, 76px);
	letter-spacing: 0.28em;
	font-weight: 800;
}

.hero-lead {
	margin: 12px 0 16px;
	font-size: 22px;
	letter-spacing: 0.18em;
	color: var(--walnut);
}

.flagship-proofs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.flagship-proofs li {
	border: 1px solid var(--walnut);
	padding: 5px 10px;
	font-size: 12px;
	letter-spacing: 0.06em;
	color: var(--walnut);
}

.spark-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.spark-card {
	background: var(--paper);
	border: 1px solid var(--line);
	padding: 24px 22px;
}

.spark-card h3 {
	margin: 10px 0 8px;
	font-size: 18px;
	letter-spacing: 0.04em;
}

.spark-card p {
	margin: 0;
	font-size: 14.5px;
	color: var(--muted);
}

.spark-stage {
	margin-top: 36px;
}

@media (max-width: 960px) {
	.spark-grid {
		grid-template-columns: 1fr;
	}
}

.flagship-board {
	border: 1px solid var(--walnut);
	background: var(--maple);
	padding: 28px 24px;
	position: relative;
}

.flagship-board::before,
.flagship-board::after {
	content: "";
	position: absolute;
	width: 14px;
	height: 14px;
	border: 2px solid var(--walnut);
}

.flagship-board::before {
	top: -2px;
	left: -2px;
	border-right: 0;
	border-bottom: 0;
}

.flagship-board::after {
	bottom: -2px;
	right: -2px;
	border-left: 0;
	border-top: 0;
}

.flagship-label {
	display: inline-block;
	margin-bottom: 10px;
	padding: 2px 8px;
	background: var(--walnut);
	color: var(--sawdust);
	font-size: 12px;
	letter-spacing: 0.2em;
}

.flagship-board h2 {
	font-size: 28px;
	letter-spacing: 0.16em;
	margin-bottom: 6px;
}

.flagship-tag {
	margin: 0 0 12px;
	color: var(--ink-line);
	letter-spacing: 0.12em;
	font-weight: 600;
}

.hero-stage {
	padding: 28px 0 8px;
}

.ink-snap {
	display: flex;
	align-items: center;
	gap: 0;
	margin-top: 8px;
	height: 18px;
}

.ink-pot {
	width: 14px;
	height: 14px;
	margin-left: 8%;
	background: var(--ink-line);
	border: 2px solid var(--walnut);
	flex: none;
}

.ink-thread {
	flex: 1;
	height: 2px;
	background: var(--ink-line);
	margin-right: 8%;
}

.bench-stats {
	background-color: #2a160c;
	background-image: url("../img/wood-dark.svg");
	background-size: 720px 260px;
	background-repeat: repeat;
	padding: 0;
}

.bench-stats .stats-bar {
	margin: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--sawdust);
}

.bench-stats .stat b {
	color: var(--oak);
}

.bench-stats .stat span {
	color: var(--sawdust);
}

.kicker {
	color: var(--ink-line);
}

.creed-grid,
.workshop-card,
.flagship-board,
.roadmap-col {
	box-shadow: inset 0 0 0 1px rgba(59, 36, 22, 0.08);
}

.footer-lockup {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	color: var(--sawdust);
}

.footer-lockup strong {
	font-size: 20px;
	letter-spacing: 0.28em;
	font-weight: 700;
}

.footer-joinery {
	height: 3px;
	background: var(--oak);
	opacity: 1;
}

.section .sec-head::before {
	content: "";
	display: block;
	width: 48px;
	height: 4px;
	margin: 0 auto 16px;
	background:
		repeating-linear-gradient(
			90deg,
			var(--walnut) 0 6px,
			transparent 6px 10px
		);
}

@media (max-width: 960px) {
	.bench-ruler {
		display: none;
	}

	.shop-hero .hero-inner {
		grid-template-columns: 1fr;
	}

	.shop-shavings {
		display: none;
	}

	.shop-hero h1 {
		letter-spacing: 0.16em;
	}

	.brand-sub {
		display: none;
	}

	.nav-links {
		background: var(--walnut-deep);
	}

	.nav-menu a {
		color: var(--sawdust);
	}
}


/* ==========================================================================
   榫卯工坊：首页舞台、信条、路线图、装饰
   ========================================================================== */

.joinery-mark {
	width: 22px;
	height: 22px;
	flex: none;
	color: var(--cinnabar);
}

.atelier-grain,
.joinery-corner {
	pointer-events: none;
}

.atelier-stage {
	border-bottom: 1px solid var(--line);
}

.atelier-grain {
	display: none;
}

.joinery-corner {
	position: absolute;
	width: 48px;
	height: 48px;
	border: 1px solid var(--brand);
	opacity: 0.35;
}

.joinery-corner.tl {
	top: 18px;
	left: 18px;
	border-right: 0;
	border-bottom: 0;
}

.joinery-corner.tr {
	top: 18px;
	right: 18px;
	border-left: 0;
	border-bottom: 0;
}

.stage-frame {
	padding: 14px;
	border: 1px solid var(--line);
	background: var(--paper);
	position: relative;
}

.stage-frame::before,
.stage-frame::after {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	border: 1px solid var(--cinnabar);
}

.stage-frame::before {
	top: 6px;
	left: 6px;
	border-right: 0;
	border-bottom: 0;
}

.stage-frame::after {
	bottom: 6px;
	right: 6px;
	border-left: 0;
	border-top: 0;
}

.atelier-stats {
	border: 1px solid var(--line);
	background: var(--paper);
	box-shadow: none;
	border-radius: 0;
}

.creed-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border: 1px solid var(--line);
	background: var(--paper);
}

.creed-card {
	padding: 28px 24px 32px;
	border-right: 1px solid var(--line);
	position: relative;
}

.creed-card:last-child {
	border-right: 0;
}

.creed-index {
	display: block;
	font-family: var(--font-display);
	font-size: 12px;
	letter-spacing: 0.2em;
	color: var(--cinnabar);
	margin-bottom: 18px;
}

.creed-card h3 {
	margin: 12px 0 10px;
	font-size: 20px;
}

.workshop-rail {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
}

.workshop-card {
	padding: 28px;
	border: 1px solid var(--line);
	background: var(--paper);
}

.workshop-card h3 {
	margin: 8px 0 10px;
	font-size: 22px;
}

.atelier-panel {
	border-radius: 0;
	border: 1px solid var(--line);
	box-shadow: none;
	background: var(--paper);
}

.atelier-hero {
	background: transparent;
}

.roadmap-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.roadmap-col {
	border: 1px solid var(--line);
	background: var(--paper);
	padding: 24px;
}

.roadmap-col h2 {
	font-size: 18px;
	margin-bottom: 18px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--line);
	letter-spacing: 0.12em;
}

.roadmap-col.phase-shipped h2 { color: var(--ok); }
.roadmap-col.phase-now h2 { color: var(--cinnabar); }
.roadmap-col.phase-next h2 { color: var(--muted); }

.roadmap-col li + li {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px dashed var(--line);
}

.roadmap-col h3 {
	font-size: 16px;
	margin-bottom: 6px;
}

.product-card,
.feature-card,
.download-card,
.buy-card,
.bundle-panel,
.func-card,
.timeline-card,
.news-card {
	border-radius: 0;
	box-shadow: none;
}

.hero-badge.gold {
	background: none;
	border: 0;
	border-bottom: 1px solid var(--gold);
	color: var(--gold-deep);
}

.float-chip {
	border-radius: 0;
	background: var(--paper);
	border: 1px solid var(--line);
	box-shadow: none;
}

.btn-light {
	background: var(--paper);
	color: var(--ink);
	border-color: var(--paper);
	box-shadow: none;
}

.btn-light:hover {
	background: #fff;
	color: var(--ink);
	transform: none;
}

.nav-burger {
	border-radius: 0;
	background: transparent;
}

.stats-bar {
	border-radius: 0;
	box-shadow: none;
}

.footer-joinery {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--cinnabar);
	opacity: 0.55;
}

@media (max-width: 960px) {
	.creed-grid,
	.roadmap-grid {
		grid-template-columns: 1fr;
	}

	.creed-card {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.creed-card:last-child {
		border-bottom: 0;
	}

	.joinery-corner {
		display: none;
	}
}

