/* ==========================================================================
   厨源环境 ChuYuan Kitchen — 主样式
   夜市灯牌 · 茄紫夜色 + 霓虹橙 + 薄荷 · 发光描边 · 灯串分隔线
   ========================================================================== */

:root {
	--c-night: #1c1126;
	--c-night-2: #241633;
	--c-card: #2c1c3d;
	--c-card-2: #332246;
	--c-line: #46325e;
	--c-neon: #ff8a3d;
	--c-neon-deep: #f0691a;
	--c-mint: #58e6c0;
	--c-yellow: #ffd166;
	--c-ink: #fdf7ef;
	--c-text: #c9bcd9;
	--c-dim: #9384aa;
	--glow: 0 0 22px rgba(255, 138, 61, .35);
	--glow-mint: 0 0 18px rgba(88, 230, 192, .3);
	--radius: 20px;
	--radius-sm: 13px;
	--font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", -apple-system, "Segoe UI", sans-serif;
	--mono: "SF Mono", "Menlo", "Consolas", monospace;
}

/* ---------- 基础 ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.78;
	color: var(--c-text);
	background:
		radial-gradient(900px 500px at 85% -5%, rgba(255, 138, 61, .09), transparent 60%),
		radial-gradient(700px 420px at 0% 30%, rgba(88, 230, 192, .05), transparent 60%),
		var(--c-night);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-neon); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-yellow); }
h1, h2, h3, h4 { color: var(--c-ink); line-height: 1.3; margin: 0 0 .5em; font-weight: 800; }
p { margin: 0 0 1em; }
::selection { background: var(--c-neon); color: var(--c-night); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(0 0 0 0);
	white-space: nowrap;
}
.skip-link:focus {
	position: fixed; left: 16px; top: 16px; z-index: 999;
	width: auto; height: auto; clip: auto;
	background: var(--c-neon); color: var(--c-night);
	padding: 10px 18px; border-radius: 10px;
}
:focus-visible { outline: 2px solid var(--c-neon); outline-offset: 2px; }

/* ---------- 灯串分隔线 ---------- */
.lightstring {
	height: 12px;
	background-image:
		radial-gradient(circle 3.5px at 10px 6px, var(--c-neon) 40%, rgba(255, 138, 61, .18) 60%, transparent 72%),
		radial-gradient(circle 3.5px at 34px 6px, var(--c-yellow) 40%, rgba(255, 209, 102, .18) 60%, transparent 72%),
		radial-gradient(circle 3.5px at 58px 6px, var(--c-mint) 40%, rgba(88, 230, 192, .18) 60%, transparent 72%);
	background-size: 72px 12px;
	background-repeat: repeat-x;
	opacity: .85;
}

/* ---------- 按钮 ---------- */
.btn {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 12px 26px;
	border-radius: 999px;
	border: 1.5px solid transparent;
	font-size: 15px; font-weight: 700;
	cursor: pointer; white-space: nowrap;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--neon {
	background: linear-gradient(120deg, var(--c-neon), var(--c-neon-deep));
	color: #2a1206;
	box-shadow: var(--glow);
}
.btn--neon:hover { color: #2a1206; box-shadow: 0 0 32px rgba(255, 138, 61, .5); }
.btn--ghost { background: transparent; color: var(--c-ink); border-color: var(--c-line); }
.btn--ghost:hover { border-color: var(--c-mint); color: var(--c-mint); box-shadow: var(--glow-mint); }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--lg { padding: 14px 32px; font-size: 16px; }
.btn--block { width: 100%; justify-content: center; }
.cy-icon { flex-shrink: 0; }

/* ---------- 页头 ---------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(28, 17, 38, .88);
	backdrop-filter: blur(12px);
}
.site-header.is-scrolled { box-shadow: 0 12px 34px rgba(0, 0, 0, .4); }
.site-header__inner { display: flex; align-items: center; gap: 28px; min-height: 74px; }
.site-brand { margin-right: auto; }
.site-brand__link { display: flex; align-items: center; gap: 12px; }
.site-brand__mark {
	width: 44px; height: 44px; border-radius: 14px;
	display: grid; place-items: center; color: var(--c-night);
	background: linear-gradient(135deg, var(--c-neon), var(--c-yellow));
	box-shadow: var(--glow);
}
.site-brand__name { display: block; font-size: 20px; font-weight: 800; color: var(--c-ink); }
.site-brand__slogan { display: block; font-size: 12px; color: var(--c-dim); letter-spacing: .06em; }
.custom-logo { max-height: 48px; width: auto; }

.site-nav__list { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.site-nav__list li { position: relative; }
.site-nav__list a {
	display: block; padding: 9px 14px;
	color: var(--c-text); font-weight: 500; font-size: 14.5px;
	border-radius: 999px;
}
.site-nav__list a:hover { color: var(--c-neon); background: rgba(255, 138, 61, .08); }
.site-nav__list .sub-menu {
	position: absolute; top: 100%; left: 0; min-width: 190px;
	list-style: none; margin: 6px 0 0; padding: 8px;
	background: var(--c-card); border: 1px solid var(--c-line); border-radius: 16px;
	box-shadow: 0 22px 50px rgba(0, 0, 0, .5);
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: all .2s ease;
}
.site-nav__list li:hover > .sub-menu,
.site-nav__list li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.site-header__actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
	display: none; flex-direction: column; justify-content: center; gap: 5px;
	width: 44px; height: 44px; padding: 10px;
	background: var(--c-card); border: 1px solid var(--c-line); border-radius: 12px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--c-ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 首屏 ---------- */
.hero__inner {
	display: grid; grid-template-columns: 1.25fr 1fr; gap: 54px; align-items: center;
	padding-top: 78px; padding-bottom: 86px;
}
.hero__eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 13.5px; font-weight: 600;
	color: var(--c-mint);
	background: rgba(88, 230, 192, .08);
	border: 1px solid rgba(88, 230, 192, .3);
	padding: 7px 15px; border-radius: 999px;
}
.hero__title { font-size: clamp(34px, 4.6vw, 58px); font-weight: 900; margin: 22px 0 16px; }
.neon-text {
	background: linear-gradient(100deg, var(--c-neon), var(--c-yellow) 55%, var(--c-mint));
	-webkit-background-clip: text; background-clip: text; color: transparent;
	text-shadow: 0 0 34px rgba(255, 138, 61, .35);
}
.hero__desc { font-size: 16.5px; max-width: 30em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* 灯牌 */
.signboard {
	background: linear-gradient(160deg, var(--c-card), var(--c-card-2));
	border: 2px solid var(--c-neon);
	border-radius: var(--radius);
	box-shadow: var(--glow), inset 0 0 40px rgba(255, 138, 61, .06);
	padding: 26px 28px;
}
.signboard__title {
	font-size: 13px; font-weight: 700; letter-spacing: .22em;
	color: var(--c-neon); margin-bottom: 16px;
	display: flex; align-items: center; gap: 8px;
}
.signboard__title::before, .signboard__title::after {
	content: ""; flex: 1; height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 138, 61, .5), transparent);
}
.signboard__big { text-align: center; margin: 0 0 18px; }
.signboard__big strong {
	display: block; font-size: 56px; font-weight: 900; color: var(--c-ink);
	line-height: 1.05; font-variant-numeric: tabular-nums;
	text-shadow: 0 0 26px rgba(255, 209, 102, .35);
}
.signboard__big span { font-size: 13.5px; color: var(--c-dim); }
.signboard__rows { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.signboard__rows li {
	display: flex; align-items: center; gap: 10px;
	background: rgba(28, 17, 38, .55);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-sm);
	padding: 10px 14px; font-size: 14px; color: var(--c-ink);
}
.signboard__rows code { margin-left: auto; font-family: var(--mono); font-size: 13px; color: var(--c-yellow); font-weight: 700; }
.sb-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.sb-dot--orange { background: var(--c-neon); box-shadow: 0 0 10px var(--c-neon); }
.sb-dot--mint { background: var(--c-mint); box-shadow: 0 0 10px var(--c-mint); }
.sb-dot--yellow { background: var(--c-yellow); box-shadow: 0 0 10px var(--c-yellow); }

/* ---------- 通用版块 ---------- */
.section { padding: 88px 0; }
.section--pad { padding: 60px 0 88px; }
.section--deep { background: var(--c-night-2); }
.section-head { max-width: 640px; margin: 0 auto 50px; text-align: center; }
.section-head__eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: .28em; color: var(--c-mint); margin-bottom: 10px; }
.section-head__title { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 14px; }
.section-head__desc { margin: 0; color: var(--c-dim); }
.section-foot { text-align: center; margin: 44px 0 0; }

/* ---------- 三笔收入 ---------- */
.income-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.income-card {
	background: var(--c-card);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	padding: 30px 28px 24px;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.income-card:hover { transform: translateY(-5px); border-color: var(--c-neon); box-shadow: var(--glow); }
.income-card--hot { border-color: var(--c-neon); box-shadow: var(--glow); }
.income-card__icon {
	display: inline-grid; place-items: center;
	width: 52px; height: 52px; border-radius: 16px; margin-bottom: 16px;
}
.income-card__icon--orange { color: var(--c-neon); background: rgba(255, 138, 61, .12); }
.income-card__icon--yellow { color: var(--c-yellow); background: rgba(255, 209, 102, .12); }
.income-card__icon--mint { color: var(--c-mint); background: rgba(88, 230, 192, .12); }
.income-card h3 { font-size: 17px; margin-bottom: 8px; }
.income-card__num { font-size: 30px; font-weight: 900; color: var(--c-yellow); margin-bottom: 10px; font-variant-numeric: tabular-nums; }
.income-card__num small { font-size: 13px; font-weight: 500; color: var(--c-dim); }
.income-card p:last-child { font-size: 14px; margin: 0; }

/* ---------- 合作模式 ---------- */
.mode-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mode-card {
	background: var(--c-card);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	padding: 30px 28px;
	display: flex; flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.mode-card:hover { transform: translateY(-5px); border-color: var(--c-mint); box-shadow: var(--glow-mint); }
.mode-card--hot { border-color: var(--c-neon); box-shadow: var(--glow); }
.mode-card__tag {
	align-self: flex-start;
	font-size: 12px; font-weight: 700;
	color: var(--c-mint); background: rgba(88, 230, 192, .1);
	border: 1px solid rgba(88, 230, 192, .3);
	padding: 4px 13px; border-radius: 999px; margin-bottom: 16px;
}
.mode-card--hot .mode-card__tag { color: var(--c-neon); background: rgba(255, 138, 61, .1); border-color: rgba(255, 138, 61, .35); }
.mode-card h3 { font-size: 21px; margin-bottom: 4px; }
.mode-card__cap { font-size: 14px; color: var(--c-yellow); font-weight: 700; margin-bottom: 18px; }
.mode-card ul { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 11px; flex: 1; }
.mode-card li { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; }
.mode-card .cy-icon { color: var(--c-mint); margin-top: 3px; flex-shrink: 0; }

/* ---------- 产品卡片 ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
	background: var(--c-card);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	overflow: hidden; display: flex; flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product-card:hover { transform: translateY(-5px); border-color: var(--c-neon); box-shadow: var(--glow); }
.product-card__media {
	position: relative; display: block; aspect-ratio: 16 / 10;
	background:
		radial-gradient(240px 160px at 74% 22%, rgba(255, 138, 61, .18), transparent 70%),
		linear-gradient(150deg, #33224a, #241633);
	overflow: hidden;
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__ph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--c-neon); }
.product-card__spec {
	position: absolute; left: 14px; bottom: 12px;
	font-size: 12px; font-weight: 700; color: var(--c-yellow);
	background: rgba(28, 17, 38, .8); border: 1px solid rgba(255, 209, 102, .35);
	padding: 4px 12px; border-radius: 999px;
}
.product-card__body { padding: 20px 24px 22px; display: flex; flex-direction: column; flex: 1; }
.product-card__title { font-size: 17px; margin-bottom: 8px; }
.product-card__title a { color: var(--c-ink); }
.product-card__title a:hover { color: var(--c-neon); }
.product-card__desc { font-size: 14px; flex: 1; margin-bottom: 14px; }
.product-card__more { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; transition: gap .2s ease; }
.product-card__more:hover { gap: 10px; }

/* ---------- 数据带 ---------- */
.databand { border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); background: var(--c-night-2); }
.databand__inner {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
	padding-top: 48px; padding-bottom: 48px; text-align: center;
}
.databand strong {
	display: block; font-size: clamp(30px, 3.6vw, 44px); font-weight: 900;
	color: var(--c-neon); font-variant-numeric: tabular-nums;
	text-shadow: 0 0 24px rgba(255, 138, 61, .4);
}
.databand span { font-size: 13.5px; color: var(--c-dim); }

/* ---------- 场景 ---------- */
.scene-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.scene-card {
	background: var(--c-card);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	padding: 26px 26px 22px;
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.scene-card:hover { transform: translateY(-4px); border-color: var(--c-mint); box-shadow: var(--glow-mint); }
.scene-card__icon {
	display: inline-grid; place-items: center;
	width: 50px; height: 50px; border-radius: 15px;
	color: var(--c-mint); background: rgba(88, 230, 192, .1);
	margin-bottom: 14px;
}
.scene-card h3 { font-size: 17px; margin-bottom: 6px; }
.scene-card p { font-size: 14px; margin: 0; }

/* ---------- 案例 ---------- */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case-card {
	background: linear-gradient(165deg, var(--c-card), var(--c-card-2));
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	padding: 26px 28px;
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.case-card:hover { transform: translateY(-5px); border-color: var(--c-neon); box-shadow: var(--glow); }
.case-card__badge {
	display: inline-block;
	font-size: 11.5px; font-weight: 800; letter-spacing: .14em;
	color: var(--c-neon); background: rgba(255, 138, 61, .1);
	border: 1px solid rgba(255, 138, 61, .35);
	padding: 3px 12px; border-radius: 999px; margin-bottom: 14px;
}
.case-card h3 { font-size: 17.5px; margin-bottom: 6px; }
.case-card__meta { font-size: 13px; color: var(--c-mint); font-weight: 600; margin-bottom: 10px; }
.case-card__desc { font-size: 14px; margin: 0; }

/* ---------- 新闻 ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card {
	background: var(--c-card);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	padding: 26px 26px 22px;
	transition: transform .25s ease, border-color .25s ease;
}
.news-card:hover { transform: translateY(-4px); border-color: var(--c-neon); }
.news-card__date { font-size: 13px; color: var(--c-mint); font-weight: 600; margin-bottom: 10px; }
.news-card h3 { font-size: 16.5px; margin-bottom: 10px; }
.news-card h3 a { color: var(--c-ink); }
.news-card h3 a:hover { color: var(--c-neon); }
.news-card__desc { font-size: 14px; }
.news-card__more { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 700; }

/* ---------- 联系 ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.contact__copy .section-head__eyebrow,
.contact__copy .section-head__title { text-align: left; }
.contact__copy > p { color: var(--c-dim); }
.contact__list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 15px; }
.contact__list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--c-ink); }
.contact__list .cy-icon { color: var(--c-neon); }

.contact__form-wrap {
	background: linear-gradient(160deg, var(--c-card), var(--c-card-2));
	border: 2px solid var(--c-neon);
	border-radius: var(--radius);
	box-shadow: var(--glow);
	padding: 34px;
}
.contact-form h3 { font-size: 20px; margin-bottom: 20px; }
.contact-form p { margin-bottom: 16px; }
.contact-form label { display: block; font-size: 14px; font-weight: 600; color: var(--c-ink); margin-bottom: 6px; }
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form textarea {
	width: 100%; padding: 12px 15px;
	border: 1.5px solid var(--c-line); border-radius: var(--radius-sm);
	font-family: inherit; font-size: 15px; color: var(--c-ink);
	background: rgba(28, 17, 38, .6);
	transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #7a6b91; }
.contact-form input:focus, .contact-form textarea:focus {
	outline: none; border-color: var(--c-neon); box-shadow: 0 0 0 3px rgba(255, 138, 61, .15);
}
.contact-form__tip { font-size: 12.5px; color: var(--c-dim); text-align: center; margin: 12px 0 0; }
.hp-field { position: absolute !important; left: -9999px; }
.form-notice {
	background: rgba(88, 230, 192, .1); border: 1px solid rgba(88, 230, 192, .4); color: var(--c-mint);
	border-radius: var(--radius-sm); padding: 13px 17px; margin-bottom: 18px; font-size: 14.5px;
}

/* ---------- 内页头部 ---------- */
.page-hero { padding: 64px 0 56px; border-bottom: 1px solid var(--c-line); }
.page-hero__title { font-size: clamp(28px, 3.6vw, 42px); font-weight: 900; margin: 0; }
.page-hero__sub { margin: 10px 0 0; color: var(--c-dim); }
.page-hero__meta { font-size: 13.5px; color: var(--c-mint); font-weight: 600; margin: 0 0 10px; }
.page-hero__meta a { color: var(--c-mint); }

/* ---------- 博客列表 ---------- */
.post-list { display: grid; gap: 20px; max-width: 860px; margin: 0 auto; }
.post-card {
	display: grid; grid-template-columns: 280px 1fr;
	background: var(--c-card); border: 1px solid var(--c-line); border-radius: var(--radius);
	overflow: hidden; transition: transform .25s ease, border-color .25s ease;
}
.post-card:hover { transform: translateY(-4px); border-color: var(--c-neon); }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card:not(:has(.post-card__thumb)) { grid-template-columns: 1fr; }
.post-card__body { padding: 24px 28px; }
.post-card__meta { font-size: 13px; color: var(--c-mint); font-weight: 600; margin-bottom: 8px; }
.post-card__meta a { color: inherit; }
.post-card__title { font-size: 19px; margin-bottom: 8px; }
.post-card__title a { color: var(--c-ink); }
.post-card__title a:hover { color: var(--c-neon); }
.post-card__desc { font-size: 14.5px; margin-bottom: 12px; }
.post-card__more { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; }
.no-results { text-align: center; padding: 60px 0; }

.navigation.pagination { margin: 46px 0 0; text-align: center; }
.nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.nav-links .page-numbers {
	display: inline-block; min-width: 42px; padding: 9px 14px;
	border: 1px solid var(--c-line); border-radius: 999px;
	color: var(--c-ink); font-weight: 600; font-size: 14px; background: var(--c-card);
}
.nav-links .page-numbers.current,
.nav-links .page-numbers:hover { background: var(--c-neon); border-color: var(--c-neon); color: var(--c-night); }

/* ---------- 文章内容 ---------- */
.entry-wrap { max-width: 860px; padding-top: 48px; padding-bottom: 88px; }
.entry__thumb { margin: 0 0 28px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--c-line); }
.entry__content { font-size: 16px; }
.entry__content h2 { font-size: 25px; margin-top: 1.6em; }
.entry__content h3 { font-size: 20px; margin-top: 1.4em; }
.entry__content img { border-radius: var(--radius-sm); }
.entry__content blockquote {
	margin: 1.5em 0; padding: 16px 24px;
	border-left: 4px solid var(--c-neon);
	background: var(--c-card); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	color: var(--c-ink);
}
.entry__content table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.entry__content th, .entry__content td { border: 1px solid var(--c-line); padding: 10px 14px; text-align: left; }
.entry__content th { background: var(--c-card); color: var(--c-ink); }
.entry__content a { text-decoration: underline; text-underline-offset: 3px; }
.entry__tags { margin-top: 26px; font-size: 14px; }
.page-links { margin: 24px 0; }

.post-nav {
	display: flex; justify-content: space-between; gap: 20px;
	margin: 40px 0; padding-top: 24px; border-top: 1px solid var(--c-line);
	font-size: 14.5px;
}
.post-nav__next { text-align: right; }

/* ---------- 评论 ---------- */
.comments-area {
	margin-top: 28px;
	background: var(--c-card); border: 1px solid var(--c-line); border-radius: var(--radius);
	padding: 34px 40px;
}
.comments-title, .comment-reply-title { font-size: 21px; }
.comment-list { list-style: none; margin: 0 0 30px; padding: 0; }
.comment-list .comment { border-bottom: 1px solid var(--c-line); padding: 20px 0; }
.comment-list .children { list-style: none; padding-left: 40px; }
.comment-author { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--c-ink); }
.comment-author .avatar { border-radius: 50%; }
.comment-metadata { font-size: 12.5px; }
.comment-metadata a { color: var(--c-dim); }
.comment-content { font-size: 15px; }
.reply { font-size: 13.5px; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea {
	width: 100%; padding: 11px 14px;
	border: 1.5px solid var(--c-line); border-radius: var(--radius-sm);
	font-family: inherit; font-size: 15px;
	background: rgba(28, 17, 38, .6); color: var(--c-ink);
}
.comment-form input:focus, .comment-form textarea:focus { outline: none; border-color: var(--c-neon); }
.form-submit .submit {
	background: linear-gradient(120deg, var(--c-neon), var(--c-neon-deep));
	color: #2a1206; border: 0;
	border-radius: 999px; padding: 12px 30px;
	font-size: 15px; font-weight: 700; cursor: pointer;
	box-shadow: var(--glow);
}

/* ---------- 搜索 / 404 ---------- */
.search-form { display: flex; gap: 10px; max-width: 480px; }
.search-form__input {
	flex: 1; padding: 12px 16px;
	border: 1.5px solid var(--c-line); border-radius: 999px;
	font-family: inherit; font-size: 15px;
	background: var(--c-card); color: var(--c-ink);
}
.search-form__input:focus { outline: none; border-color: var(--c-neon); }
.error-404 { text-align: center; padding: 56px 32px; }
.error-404__code {
	font-size: clamp(90px, 15vw, 150px); font-weight: 900; line-height: 1;
	background: linear-gradient(100deg, var(--c-neon), var(--c-yellow), var(--c-mint));
	-webkit-background-clip: text; background-clip: text; color: transparent;
	margin: 0 0 10px;
}
.error-404 .search-form { margin: 24px auto 28px; justify-content: center; }

/* ---------- 产品详情 / 归档 ---------- */
.product-single { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding-top: 48px; padding-bottom: 40px; align-items: start; }
.product-single__media {
	position: relative; border-radius: var(--radius); overflow: hidden;
	aspect-ratio: 4 / 3;
	border: 1px solid var(--c-line);
	background:
		radial-gradient(280px 200px at 72% 28%, rgba(255, 138, 61, .18), transparent 70%),
		linear-gradient(150deg, #33224a, #241633);
}
.product-single__media img { width: 100%; height: 100%; object-fit: cover; }
.product-single__ph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--c-neon); }
.product-single__body {
	background: var(--c-card); border: 1px solid var(--c-line); border-radius: var(--radius);
	padding: 32px 36px;
}
.product-single__summary {
	background: rgba(255, 138, 61, .08); border: 1px solid rgba(255, 138, 61, .3);
	border-radius: var(--radius-sm); padding: 15px 20px; margin-bottom: 22px;
	font-size: 15px; color: var(--c-ink);
}
.product-single__summary p { margin: 0; }
.product-single__cta { margin-top: 28px; padding-top: 24px; border-top: 1px dashed var(--c-line); }
.product-single__cta h3 { font-size: 17px; margin-bottom: 6px; }
.product-single__cta p { font-size: 14px; margin-bottom: 16px; color: var(--c-dim); }
.product-single__cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.related-title { font-size: 23px; margin-bottom: 26px; }
.archive-cta {
	margin-top: 60px; text-align: center;
	background: linear-gradient(160deg, var(--c-card), var(--c-card-2));
	border: 2px solid var(--c-neon); box-shadow: var(--glow);
	border-radius: var(--radius); padding: 46px 32px;
}
.archive-cta h2 { font-size: 24px; }
.archive-cta p { margin-bottom: 20px; color: var(--c-dim); }

/* ---------- 页脚 ---------- */
.site-footer { background: #150d1d; color: var(--c-dim); margin-top: 24px; }
.site-footer__grid {
	display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px;
	padding-top: 60px; padding-bottom: 46px;
}
.site-footer__logo { display: flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 800; color: var(--c-ink); margin-bottom: 14px; }
.site-footer__logo .cy-icon { color: var(--c-neon); }
.site-footer__about { font-size: 14px; line-height: 1.85; }
.site-footer__phone { display: flex; align-items: center; gap: 10px; font-size: 21px; font-weight: 800; color: var(--c-neon); margin-top: 18px; }
.site-footer__title { color: var(--c-ink); font-size: 15.5px; margin-bottom: 18px; }
.site-footer__menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer__menu a { color: var(--c-dim); font-size: 14px; }
.site-footer__menu a:hover { color: var(--c-neon); }
.site-footer__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; font-size: 14px; }
.site-footer__contact li { display: flex; gap: 9px; align-items: flex-start; }
.site-footer__contact .cy-icon { color: var(--c-neon); margin-top: 4px; }
.site-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .08); }
.site-footer__bottom-inner {
	display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
	padding-top: 20px; padding-bottom: 20px; font-size: 13px;
}
.site-footer__bottom p { margin: 0; }

/* ---------- 返回顶部 ---------- */
.back-to-top {
	position: fixed; right: 26px; bottom: 26px; z-index: 90;
	width: 46px; height: 46px; border: 0; border-radius: 50%;
	display: grid; place-items: center; cursor: pointer;
	background: linear-gradient(135deg, var(--c-neon), var(--c-neon-deep));
	color: #2a1206;
	box-shadow: var(--glow);
	opacity: 0; visibility: hidden; transform: translateY(12px);
	transition: all .25s ease;
}
.back-to-top .cy-icon { transform: rotate(-90deg); }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- 入场动画 ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
	.hero__inner { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; padding-bottom: 64px; }
	.income-grid, .mode-grid, .product-grid, .scene-grid, .case-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
	.databand__inner { grid-template-columns: repeat(2, 1fr); }
	.contact { grid-template-columns: 1fr; gap: 40px; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.product-single { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
	.nav-toggle { display: flex; }
	.site-header__actions .btn { display: none; }
	.site-nav {
		position: fixed; top: 0; right: 0; bottom: 0; z-index: 200;
		width: min(320px, 84vw);
		background: var(--c-night-2); box-shadow: -20px 0 60px rgba(0, 0, 0, .6);
		padding: 84px 28px 28px;
		transform: translateX(100%); transition: transform .3s ease;
		overflow-y: auto;
	}
	.site-nav.is-open { transform: translateX(0); }
	.site-nav__list { flex-direction: column; gap: 4px; }
	.site-nav__list a { padding: 13px 14px; font-size: 16px; }
	.site-nav__list .sub-menu {
		position: static; opacity: 1; visibility: visible; transform: none;
		box-shadow: none; border: 0; padding: 0 0 0 18px; margin: 0; background: transparent;
	}
	.nav-toggle { position: relative; z-index: 210; }
	body.nav-open { overflow: hidden; }
}

@media (max-width: 620px) {
	.section { padding: 62px 0; }
	.income-grid, .mode-grid, .product-grid, .scene-grid, .case-grid, .news-grid { grid-template-columns: 1fr; }
	.databand__inner { grid-template-columns: 1fr 1fr; }
	.post-card { grid-template-columns: 1fr; }
	.post-card__thumb { aspect-ratio: 16 / 9; overflow: hidden; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
	.entry { padding: 0; }
	.comments-area { padding: 26px 22px; }
	.contact__form-wrap { padding: 26px 22px; }
	.signboard { padding: 22px 20px; }
	.signboard__big strong { font-size: 44px; }
}

/* 优化 · 全局尊重系统"减少动态效果"（覆盖装饰性 keyframes 动画） */
@media (prefers-reduced-motion: reduce){*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important;}}

/* ==========================================================================
   美化优化 v1.1 · 2026-07 — 茄紫夜市灯牌风精修
   ========================================================================== */
/* 通用 UX */
html { scroll-padding-top: 88px; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
.btn:active { transform: translateY(0) scale(.98); transition-duration: .08s; }

/* 暗色滚动条:霓虹橙拇指 */
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--c-night); }
::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, rgba(255, 138, 61, .45), rgba(255, 209, 102, .35));
	border-radius: 8px; border: 3px solid var(--c-night);
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, rgba(255, 138, 61, .65), rgba(255, 209, 102, .5)); }

/* 霓虹按钮:渐变缓移 */
.btn--neon { background-size: 170% 100%; transition: transform .2s ease, box-shadow .2s ease, background-position .45s ease, color .2s ease; }
.btn--neon:hover { background-position: 80% 0; }

/* 导航:当前项薄荷亮 */
.site-nav__list > li.current-menu-item > a { color: var(--c-mint); }

/* 霓虹字:流光缓移 */
.neon-text { background-size: 200% 100%; animation: cy-neonflow 8s ease-in-out infinite; }
@keyframes cy-neonflow { 0%, 100% { background-position: 0% 0; } 50% { background-position: 90% 0; } }

/* 灯牌:霓虹周期微闪(夜市灯牌的呼吸) */
@keyframes cy-signflicker {
	0%, 78%, 84%, 100% { box-shadow: var(--glow), inset 0 0 40px rgba(255, 138, 61, .06); border-color: var(--c-neon); }
	80% { box-shadow: 0 0 10px rgba(255, 138, 61, .18), inset 0 0 20px rgba(255, 138, 61, .03); border-color: rgba(255, 138, 61, .55); }
	82% { box-shadow: var(--glow), inset 0 0 46px rgba(255, 138, 61, .09); }
}
.signboard { animation: cy-signflicker 9s ease-in-out infinite; }
.signboard__rows li { transition: background .25s ease, border-color .25s ease; }
.signboard__rows li:hover { background: rgba(28, 17, 38, .85); border-color: rgba(255, 138, 61, .45); }

/* 三笔收入:金额柔光呼吸 */
@keyframes cy-cashglow {
	0%, 100% { text-shadow: 0 0 12px rgba(255, 209, 102, .25); }
	50% { text-shadow: 0 0 22px rgba(255, 209, 102, .5); }
}
.income-card--hot .income-card__num { animation: cy-cashglow 4.5s ease-in-out infinite; }
.income-card__icon { transition: transform .3s ease, filter .3s ease; }
.income-card:hover .income-card__icon { transform: scale(1.08); filter: brightness(1.15); }

/* 合作模式:标签点亮 */
.mode-card__tag { transition: box-shadow .3s ease; }
.mode-card:hover .mode-card__tag { box-shadow: 0 0 14px rgba(88, 230, 192, .3); }
.mode-card--hot:hover .mode-card__tag { box-shadow: 0 0 14px rgba(255, 138, 61, .35); }

/* 产品卡:图区微缩放 + 规格丸点灯 */
.product-card__media img, .product-card__ph { transition: transform .45s ease; }
.product-card:hover .product-card__media img,
.product-card:hover .product-card__ph { transform: scale(1.05); }
.product-card__spec { transition: border-color .25s ease, box-shadow .25s ease; }
.product-card:hover .product-card__spec { border-color: rgba(255, 209, 102, .7); box-shadow: 0 0 12px rgba(255, 209, 102, .28); }

/* 数据带:数字霓虹渐变 */
.databand strong {
	background: linear-gradient(100deg, var(--c-neon), var(--c-yellow) 55%, var(--c-mint));
	-webkit-background-clip: text; background-clip: text; color: transparent;
}

/* 表单:聚焦霓虹环 */
.contact-form input:focus, .contact-form textarea:focus { box-shadow: 0 0 0 3px rgba(255, 138, 61, .22); }

/* 页脚:顶部霓虹三色发丝线 + 链接滑入 */
.site-footer { position: relative; }
.site-footer::before {
	content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1.5px; opacity: .8;
	background: linear-gradient(90deg, transparent, var(--c-neon) 30%, var(--c-yellow) 50%, var(--c-mint) 70%, transparent);
}
.site-footer__menu a { transition: color .2s ease, padding-left .2s ease; }
.site-footer__menu a:hover { padding-left: 6px; }

/* 减动效 */
@media (prefers-reduced-motion: reduce) {
	.neon-text, .signboard, .income-card--hot .income-card__num { animation: none; }
}
