/**
 * 昌益胶粘官网：定制视觉系统（OKLCH、浅色 B2B）。
 * 主色为中国红系，满足集团 VI；背景保持浅暖纸感以保证长文可读。
 */
:root {
	color-scheme: light;
	--cy-rpx: 1px;
	--cy-bg: oklch(0.984 0.006 55);
	--cy-surface: oklch(0.996 0.004 55);
	--cy-alt: oklch(0.968 0.008 55);
	--cy-ink: oklch(0.19 0.015 30);
	--cy-muted: oklch(0.47 0.02 30);
	--cy-line: oklch(0.9 0.01 55);
	--cy-accent: oklch(0.48 0.17 25);
	--cy-accent-ink: oklch(0.99 0.005 25);
	--cy-accent-soft: oklch(0.96 0.028 25);
	--cy-accent-strong: oklch(0.38 0.15 25);
	--cy-warm: oklch(0.52 0.14 25);
	--cy-footer-bg: oklch(0.17 0.03 30);
	--cy-footer-border: oklch(0.28 0.03 30);
	--cy-shadow: 0 12px 40px oklch(0.2 0.02 30 / 0.08);
	--cy-radius: 6px;
	--cy-font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
	--cy-font-display: "Noto Serif SC", "Songti SC", Georgia, serif;
	--cy-font-latin: "DM Sans", var(--cy-font-sans);
	--cy-max: 1120px;
	--cy-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	* {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
}

body {
	margin: 0;
	font-family: var(--cy-font-sans);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--cy-ink);
	background: var(--cy-bg);
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: -1;
	opacity: 0.35;
	background-image: repeating-linear-gradient(
		0deg,
		transparent,
		transparent 3px,
		oklch(0.88 0.01 55 / 0.12) 3px,
		oklch(0.88 0.01 55 / 0.12) 4px
	);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--cy-accent);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	text-decoration: none;
}

.container {
	width: min(var(--cy-max), calc(100% - 40px));
	margin-inline: auto;
}

.skip-link {
	position: absolute;
	left: 12px;
	top: 10px;
	padding: 10px 14px;
	background: var(--cy-surface);
	border: 1px solid var(--cy-line);
	border-radius: 10px;
	transform: translateY(-160%);
	transition: transform 180ms var(--cy-ease);
	z-index: 80;
}

.skip-link:focus {
	transform: translateY(0);
	outline: 2px solid var(--cy-accent);
	outline-offset: 2px;
}

.site-topbar {
	background: var(--cy-surface);
	border-bottom: 1px solid var(--cy-line);
	font-size: 0.82rem;
	letter-spacing: 0.02em;
}

.site-topbar__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px 18px;
	padding: 10px 0;
}

.site-topbar__muted {
	color: var(--cy-muted);
}

.site-topbar__links {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.site-topbar__links a {
	cursor: pointer;
}

.site-topbar__tel a {
	font-weight: 700;
	color: var(--cy-accent-strong);
	cursor: pointer;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: color-mix(in oklch, var(--cy-surface) 92%, transparent);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--cy-line);
	box-shadow: 0 1px 0 color-mix(in oklch, var(--cy-accent) 35%, transparent);
}

.site-header__shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 14px 0;
}

.brand-mark {
	display: flex;
	align-items: center;
	gap: 12px;
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

.brand-mark__logo {
	width: 46px;
	height: 46px;
	object-fit: contain;
	border-radius: 10px;
	background: transparent;
	border: none;
}

.brand-mark__text .brand {
	display: block;
	font-family: var(--cy-font-display);
	font-weight: 650;
	letter-spacing: 0.02em;
	font-size: 1.12rem;
	line-height: 1.2;
}

.brand-mark__text .brand-en {
	display: block;
	font-size: 0.78rem;
	color: var(--cy-muted);
	margin-top: 2px;
}

.nav {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 10px;
	align-items: center;
}

.nav a {
	padding: 8px 4px;
	margin-inline: 6px;
	border-radius: 0;
	color: var(--cy-ink);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.94rem;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	transition: color 180ms var(--cy-ease), border-color 180ms var(--cy-ease);
}

.nav a:hover {
	color: var(--cy-accent-strong);
	border-bottom-color: color-mix(in oklch, var(--cy-accent) 55%, transparent);
}

.site-nav-toggle {
	display: none;
	border: 1px solid var(--cy-line);
	background: var(--cy-surface);
	border-radius: 12px;
	padding: 10px 12px;
	cursor: pointer;
}

.site-nav-toggle__bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--cy-ink);
	margin: 5px 0;
	border-radius: 2px;
}

.page-shell {
	min-height: 60vh;
}

.cy-main {
	padding-bottom: 72px;
}

.cy-breadcrumb {
	font-size: 0.88rem;
	color: var(--cy-muted);
	padding: 18px 0 6px;
}

.cy-breadcrumb a {
	color: var(--cy-muted);
}

.cy-hero-stage {
	position: relative;
	margin-bottom: clamp(20px, 4vw, 40px);
}

@media (prefers-reduced-motion: no-preference) {
	.cy-main--home .cy-hero-stage {
		animation: cy-home-hero-ambient 0.82s var(--cy-ease) both;
	}
}

@keyframes cy-home-hero-ambient {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.cy-hero-carousel {
	position: relative;
	min-height: min(72vh, 680px);
	max-height: 780px;
	overflow: hidden;
	background: oklch(0.16 0.02 30);
	outline: none;
}

.cy-hero-carousel__slide::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		105deg,
		oklch(0.14 0.03 30 / 0.72) 0%,
		oklch(0.14 0.03 30 / 0.35) 42%,
		oklch(0.14 0.02 30 / 0.08) 100%
	);
}

.cy-hero-carousel:focus-visible {
	outline: 3px solid color-mix(in oklch, var(--cy-accent) 70%, white);
	outline-offset: -3px;
}

.cy-hero-carousel__slides {
	position: relative;
	min-height: inherit;
}

.cy-hero-carousel__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 560ms var(--cy-ease);
	pointer-events: none;
}

.cy-hero-carousel__slide:first-of-type {
	opacity: 1;
	z-index: 1;
}

.cy-hero-carousel.is-enhanced .cy-hero-carousel__slide:first-of-type {
	opacity: 0;
	z-index: 0;
}

.cy-hero-carousel.is-enhanced .cy-hero-carousel__slide.is-active {
	opacity: 1;
	z-index: 2;
	pointer-events: auto;
}

.cy-hero-carousel__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.04);
}

/** 无标题/副标题/外链时仅大图，不叠文案区 */
.cy-hero-carousel__slide--media-only .cy-hero-carousel__photo {
	transform: scale(1);
}

.cy-hero-carousel__inner {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	padding: clamp(48px, 8vh, 88px) clamp(20px, 5vw, 48px);
	max-width: min(var(--cy-max), 100%);
	margin-inline: auto;
	left: 0;
	right: 0;
}

.cy-hero-carousel__copy {
	max-width: 36rem;
}

.cy-hero-carousel__title {
	margin: 0 0 12px;
	font-family: var(--cy-font-display);
	font-size: clamp(1.85rem, 2.4vw + 1rem, 2.75rem);
	font-weight: 600;
	line-height: 1.18;
	color: oklch(0.98 0.006 55);
	letter-spacing: 0.02em;
}

.cy-hero-carousel__lede {
	margin: 0 0 20px;
	font-size: clamp(0.95rem, 0.4vw + 0.85rem, 1.05rem);
	line-height: 1.65;
	color: oklch(0.92 0.01 55);
	max-width: 42ch;
}

.cy-hero-carousel__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.cy-hero-carousel__actions .btn-ghost {
	color: oklch(0.96 0.01 55);
	border-color: oklch(0.96 0.01 55 / 0.45);
	background: oklch(0.2 0.02 30 / 0.25);
}

.cy-hero-carousel__actions .btn-ghost:hover {
	border-color: oklch(0.96 0.01 55 / 0.75);
	background: oklch(0.2 0.02 30 / 0.45);
}

.cy-hero-carousel__chrome {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
}

.cy-hero-carousel__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: auto;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	border: 1px solid color-mix(in oklch, white 40%, transparent);
	background: oklch(0.16 0.03 255 / 0.62);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 180ms var(--cy-ease), border-color 180ms var(--cy-ease), transform 180ms var(--cy-ease);
}

.cy-hero-carousel__arrow:hover {
	background: oklch(0.22 0.04 255 / 0.78);
	border-color: color-mix(in oklch, white 70%, transparent);
}

.cy-hero-carousel__arrow--prev {
	left: clamp(10px, 2.5vw, 28px);
}

.cy-hero-carousel__arrow--next {
	right: clamp(10px, 2.5vw, 28px);
}

.cy-hero-carousel__dots {
	position: absolute;
	left: 50%;
	bottom: clamp(18px, 3vh, 36px);
	transform: translateX(-50%);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	pointer-events: auto;
}

.cy-hero-carousel__dots button {
	width: 11px;
	height: 11px;
	border-radius: 999px;
	border: 1px solid color-mix(in oklch, white 55%, transparent);
	padding: 0;
	background: oklch(0.99 0.01 95 / 0.22);
	cursor: pointer;
	transition: transform 160ms var(--cy-ease), background 160ms var(--cy-ease), width 160ms var(--cy-ease);
}

.cy-hero-carousel__dots button[aria-selected="true"] {
	background: #fff;
	width: 28px;
}

.cy-hero-carousel__dots button:focus-visible {
	outline: 2px solid var(--cy-accent);
	outline-offset: 3px;
}

.cy-hero-carousel__progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	z-index: 4;
	background: oklch(0.99 0.01 95 / 0.12);
	pointer-events: none;
}

.cy-hero-carousel__progress-bar {
	display: block;
	height: 100%;
	width: 100%;
	transform-origin: left center;
	transform: scaleX(0);
	background: var(--cy-accent);
	animation: cy-hero-progress 5.6s linear forwards;
}

@keyframes cy-hero-progress {
	from {
		transform: scaleX(0);
	}
	to {
		transform: scaleX(1);
	}
}

.cy-hero-carousel.is-reduced-motion .cy-hero-carousel__chrome,
.cy-hero-carousel.is-reduced-motion .cy-hero-carousel__progress {
	display: none;
}

.cy-hero-carousel:has(.cy-hero-carousel__slides > :only-child) .cy-hero-carousel__chrome,
.cy-hero-carousel:has(.cy-hero-carousel__slides > :only-child) .cy-hero-carousel__progress {
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	.cy-hero-carousel__slide {
		transition-duration: 80ms;
	}
}

@media (max-width: 640px) {
	.cy-hero-carousel__arrow {
		width: 40px;
		height: 40px;
	}
	.cy-hero-carousel__arrow--prev {
		left: 8px;
	}
	.cy-hero-carousel__arrow--next {
		right: 8px;
	}
}

.cy-hero-below {
	padding-top: clamp(14px, 2.5vw, 24px);
}

.hero-changyi {
	position: relative;
	overflow: clip;
	border-radius: calc(var(--cy-radius) + 6px);
	border: 1px solid var(--cy-line);
	box-shadow: var(--cy-shadow);
	background: var(--cy-surface);
}

.hero-changyi--below {
	margin-top: 0;
}

.hero-changyi__grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(18px, 3vw, 40px);
	padding: clamp(22px, 4vw, 40px);
	align-items: start;
}

@media (max-width: 960px) {
	.hero-changyi__grid {
		grid-template-columns: 1fr;
	}
	.site-nav-toggle {
		display: inline-block;
	}
	.nav--collapsible {
		position: absolute;
		right: 20px;
		left: 20px;
		top: calc(100% + 8px);
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding: 12px;
		background: var(--cy-surface);
		border: 1px solid var(--cy-line);
		border-radius: 16px;
		box-shadow: var(--cy-shadow);
	}
	.nav--collapsible.is-open {
		display: flex;
	}
}

.hero-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cy-accent);
}

.hero-title {
	font-family: var(--cy-font-display);
	font-size: clamp(1.75rem, 2.2vw + 1rem, 2.65rem);
	line-height: 1.12;
	margin: 10px 0 12px;
	max-width: 18ch;
}

.hero-title--wide {
	max-width: 22ch;
}

@media (min-width: 961px) {
	.hero-title--wide {
		max-width: 28ch;
	}
}

.cy-welcome-strip {
	margin: 0;
	padding: 10px 0;
	text-align: center;
	font-size: 0.88rem;
	color: var(--cy-muted);
	background: oklch(0.97 0.008 95);
	border-bottom: 1px solid var(--cy-line);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 20px;
}

.cy-welcome-strip__meta {
	font-size: 0.8rem;
	opacity: 0.88;
}

.cy-hero-wrap {
	padding-top: clamp(12px, 2vw, 22px);
}

.hero-facts {
	margin: 0 0 20px;
	padding: 0;
	display: grid;
	gap: 12px;
	max-width: 58ch;
}

.hero-facts__row {
	display: grid;
	grid-template-columns: minmax(0, 7.5rem) 1fr;
	gap: 10px 14px;
	padding: 10px 10px;
	margin-inline: -10px;
	border-top: 1px solid var(--cy-line);
	font-size: 0.92rem;
	border-radius: 10px;
	transition: background 200ms var(--cy-ease);
}

@media (prefers-reduced-motion: no-preference) {
	.hero-facts__row:hover {
		background: oklch(0.995 0.02 27 / 0.55);
	}
}

.hero-facts__row:first-of-type {
	border-top: none;
	padding-top: 0;
}

.hero-facts dt {
	margin: 0;
	font-weight: 800;
	color: color-mix(in oklch, var(--cy-accent) 45%, var(--cy-ink));
}

.hero-facts dd {
	margin: 0;
	color: var(--cy-muted);
	line-height: 1.55;
}

.hero-aside {
	padding: 18px 20px;
	border-radius: var(--cy-radius);
	background: var(--cy-accent-soft);
	border: 1px solid var(--cy-line);
	align-self: stretch;
}

.hero-aside__label {
	margin: 0 0 10px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cy-warm);
}

.hero-aside__list {
	margin: 0;
	padding-left: 1.1rem;
	color: var(--cy-muted);
	font-size: 0.92rem;
	line-height: 1.55;
}

.hero-aside__list li + li {
	margin-top: 8px;
}

.hero-aside__badge {
	margin-top: 16px;
	padding: 12px 14px;
	border-radius: 10px;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--cy-ink);
	background: color-mix(in oklch, var(--cy-surface) 70%, var(--cy-accent-soft));
	border: 1px solid color-mix(in oklch, var(--cy-accent) 22%, var(--cy-line));
}

.hero-lede {
	margin: 0 0 18px;
	color: var(--cy-muted);
	max-width: 52ch;
	font-size: 1.05rem;
}

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 20px;
	border-radius: var(--cy-radius);
	border: 1px solid transparent;
	font-weight: 600;
	font-size: 0.92rem;
	letter-spacing: 0.02em;
	cursor: pointer;
	text-decoration: none;
	transition: transform 160ms var(--cy-ease), background 160ms var(--cy-ease), border-color 160ms var(--cy-ease);
}

.btn:active {
	transform: translateY(1px);
}

.btn-primary {
	background: var(--cy-accent);
	color: var(--cy-accent-ink);
	border-color: color-mix(in oklch, var(--cy-accent) 70%, black);
}

.btn-primary:hover {
	background: color-mix(in oklch, var(--cy-accent) 88%, black);
}

.btn-secondary {
	background: transparent;
	color: var(--cy-ink);
	border-color: var(--cy-line);
}

.btn-secondary:hover {
	border-color: color-mix(in oklch, var(--cy-accent) 55%, var(--cy-line));
}

.btn:focus-visible,
.filter:focus-visible,
.cy-pager__btn:focus-visible,
.cy-pager a.page-num:focus-visible,
.cy-news-card:focus-visible,
.product-tile:focus-visible,
.runway-card:focus-visible,
.cy-pill:focus-visible,
.cy-search__input:focus-visible,
.form input:focus-visible,
.form textarea:focus-visible {
	outline: 2px solid var(--cy-accent);
	outline-offset: 2px;
}

.surface-band {
	padding-block: clamp(48px, 7vw, 80px);
}

.surface-band--tint {
	/** 分区底色：单色 tint，避免纵向渐变带的「模板感」。 */
	background: color-mix(in oklch, var(--cy-bg) 55%, var(--cy-accent-soft));
}

.surface-band--paper {
	background: oklch(0.992 0.004 95);
	border-block: 1px solid color-mix(in oklch, var(--cy-line) 55%, transparent);
}

.section-head--split {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	gap: 16px 24px;
}

.section-head__aside {
	max-width: 38ch;
	margin: 0;
	font-size: 0.92rem;
}

.cy-value-rail {
	display: flex;
	flex-wrap: wrap;
	border: 1px solid var(--cy-line);
	border-radius: calc(var(--cy-radius) + 4px);
	background: var(--cy-surface);
	overflow: hidden;
}

.cy-value-rail__cell {
	flex: 1 1 200px;
	padding: clamp(18px, 2.5vw, 26px) clamp(16px, 2vw, 22px);
	border-inline-end: 1px solid color-mix(in oklch, var(--cy-line) 85%, transparent);
	transition: background 200ms var(--cy-ease), box-shadow 200ms var(--cy-ease);
}

@media (prefers-reduced-motion: no-preference) {
	.cy-value-rail__cell:hover {
		background: oklch(0.995 0.025 27 / 0.65);
		box-shadow: inset 0 0 0 1px color-mix(in oklch, var(--cy-accent) 16%, transparent);
	}
}

.cy-value-rail__head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
}

.cy-value-rail__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	flex-shrink: 0;
	border-radius: 11px;
	color: color-mix(in oklch, var(--cy-accent) 72%, var(--cy-ink));
	background: color-mix(in oklch, var(--cy-accent) 12%, oklch(0.99 0.004 95));
	border: 1px solid color-mix(in oklch, var(--cy-accent) 22%, var(--cy-line));
	transition: color 200ms var(--cy-ease), background 200ms var(--cy-ease), transform 200ms var(--cy-ease);
}

.cy-value-rail__icon svg {
	display: block;
}

@media (prefers-reduced-motion: no-preference) {
	.cy-value-rail__cell:hover .cy-value-rail__icon {
		color: color-mix(in oklch, var(--cy-accent) 88%, var(--cy-ink));
		background: color-mix(in oklch, var(--cy-accent) 16%, oklch(0.99 0.004 95));
		transform: translateY(-1px);
	}
}

.cy-value-rail__cell:last-child {
	border-inline-end: none;
}

@media (max-width: 640px) {
	.cy-value-rail__cell {
		border-inline-end: none;
		border-block-end: 1px solid color-mix(in oklch, var(--cy-line) 85%, transparent);
		flex: 1 1 100%;
	}
	.cy-value-rail__cell:last-child {
		border-block-end: none;
	}
}

.cy-value-rail__n {
	display: block;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	color: var(--cy-accent);
	margin-bottom: 0;
}

.cy-value-rail__t {
	margin: 0 0 6px;
	font-weight: 800;
	font-size: 1.05rem;
}

.cy-value-rail__d {
	margin: 0;
	font-size: 0.9rem;
	color: var(--cy-muted);
	line-height: 1.58;
	max-width: 52ch;
}

.cy-adv-editorial {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(18px, 2.5vw, 28px) 20px;
	padding-top: 8px;
}

.cy-adv-editorial__col {
	grid-column: span 3;
	padding: 16px 16px 18px;
	border-radius: calc(var(--cy-radius) + 2px);
	border: 1px solid var(--cy-line);
	border-top-width: 2px;
	border-top-color: color-mix(in oklch, var(--cy-accent) 40%, var(--cy-line));
	transition: background 200ms var(--cy-ease), box-shadow 200ms var(--cy-ease), border-color 200ms var(--cy-ease), transform 200ms var(--cy-ease);
}

@media (prefers-reduced-motion: no-preference) {
	.cy-adv-editorial__col:hover {
		transform: translateY(-2px);
		box-shadow: 0 18px 44px oklch(0.22 0.06 27 / 0.1);
		background: oklch(0.997 0.005 95);
		border-color: color-mix(in oklch, var(--cy-accent) 20%, var(--cy-line));
	}
}

.cy-adv-editorial__col--span {
	grid-column: span 6;
}

@media (max-width: 1024px) {
	.cy-adv-editorial__col,
	.cy-adv-editorial__col--span {
		grid-column: span 6;
	}
}

@media (max-width: 640px) {
	.cy-adv-editorial__col,
	.cy-adv-editorial__col--span {
		grid-column: span 12;
	}
}

.cy-adv-editorial__eyebrow {
	margin: 0 0 10px;
	font-family: var(--cy-font-display);
	font-size: 1.14rem;
	font-weight: 650;
	color: var(--cy-ink);
	letter-spacing: 0.02em;
}

.cy-adv-editorial__text {
	margin: 0;
	font-size: 0.95rem;
	color: var(--cy-muted);
	line-height: 1.62;
	max-width: 60ch;
}

.cy-editorial-note {
	max-width: 46ch;
	font-size: 0.94rem;
	color: var(--cy-muted);
	line-height: 1.65;
}

.cy-editorial-note strong {
	color: var(--cy-ink);
}

.cy-section-cta {
	margin-top: 20px;
}

.cy-hot-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 8px;
}

.cy-pill {
	display: inline-flex;
	align-items: center;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid var(--cy-line);
	background: var(--cy-surface);
	color: var(--cy-ink);
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	cursor: pointer;
	transition: border-color 180ms var(--cy-ease), background 180ms var(--cy-ease), transform 200ms var(--cy-ease), box-shadow 200ms var(--cy-ease);
}

.cy-pill:hover {
	border-color: color-mix(in oklch, var(--cy-accent) 40%, var(--cy-line));
	background: var(--cy-accent-soft);
}

@media (prefers-reduced-motion: no-preference) {
	.cy-pill:hover {
		transform: translateY(-2px);
		box-shadow: 0 10px 26px oklch(0.22 0.06 27 / 0.08);
	}
}

.cy-pro-grid-bento {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 14px;
}

.cy-pro-grid-bento .cy-pro-tile {
	grid-column: span 4;
}

.cy-pro-grid-bento .cy-pro-tile:first-child {
	grid-column: span 6;
	grid-row: span 2;
	display: flex;
	flex-direction: column;
}

.cy-pro-grid-bento .cy-pro-tile:first-child img {
	flex: 1;
	min-height: 240px;
	object-fit: cover;
}

@media (max-width: 900px) {
	.cy-pro-grid-bento .cy-pro-tile,
	.cy-pro-grid-bento .cy-pro-tile:first-child {
		grid-column: span 6;
		grid-row: auto;
	}
	.cy-pro-grid-bento .cy-pro-tile:first-child img {
		min-height: 180px;
	}
}

@media (max-width: 560px) {
	.cy-pro-grid-bento .cy-pro-tile,
	.cy-pro-grid-bento .cy-pro-tile:first-child {
		grid-column: span 12;
	}
}

.cy-about-band {
	background: linear-gradient(
		135deg,
		oklch(0.32 0.12 27) 0%,
		oklch(0.24 0.09 27) 48%,
		oklch(0.2 0.07 27) 100%
	);
	color: oklch(0.96 0.02 25);
	padding: clamp(44px, 7vw, 88px) 0;
}

.cy-about-band__inner {
	display: grid;
	grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 48px);
	align-items: start;
}

@media (max-width: 720px) {
	.cy-about-band__inner {
		grid-template-columns: 1fr;
	}
}

.cy-about-band__k {
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	color: color-mix(in oklch, var(--cy-accent) 75%, white);
}

.cy-about-band__title {
	font-family: var(--cy-font-display);
	font-size: clamp(1.6rem, 2vw + 1rem, 2.2rem);
	margin: 10px 0 0;
	color: oklch(0.98 0.01 95);
}

.cy-about-band__body {
	font-size: 1.02rem;
	line-height: 1.75;
	color: oklch(0.88 0.02 95);
	max-width: 72ch;
}

.cy-about-band__body p {
	margin: 0 0 1em;
}

.cy-about-band__pull {
	font-family: var(--cy-font-display);
	font-size: 1.15rem;
	font-weight: 650;
	color: oklch(0.96 0.02 95);
}

.cy-about-band__btn {
	margin-top: 8px;
	background: var(--cy-accent);
	color: var(--cy-accent-ink);
	border-color: var(--cy-accent-strong);
}

.cy-about-band__btn:hover {
	background: var(--cy-accent-strong);
}

.prefooter--rich {
	background: var(--cy-surface);
	border: 1px solid var(--cy-line);
	box-shadow: var(--cy-shadow);
}

.prefooter__meta {
	margin-top: 14px;
	font-size: 0.88rem;
}

.cy-empty-state {
	max-width: 52ch;
	margin: 24px auto 8px;
	padding: clamp(28px, 4vw, 40px);
	text-align: center;
	border: 1px dashed color-mix(in oklch, var(--cy-accent) 35%, var(--cy-line));
	border-radius: calc(var(--cy-radius) + 4px);
	background: var(--cy-accent-soft);
}

.cy-empty-state__title {
	font-family: var(--cy-font-display);
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0 0 10px;
	color: var(--cy-ink);
}

.cy-empty-state__desc {
	margin: 0 0 18px;
	color: var(--cy-muted);
	line-height: 1.65;
	font-size: 0.95rem;
}

.section-head {
	margin-bottom: clamp(18px, 3vw, 28px);
}

.section-kicker {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--cy-warm);
}

.section-head .title {
	font-family: var(--cy-font-display);
	font-size: clamp(1.45rem, 1.2vw + 1.1rem, 2rem);
	margin: 8px 0 10px;
}

.section-head .lede {
	margin: 0;
	color: var(--cy-muted);
	max-width: 62ch;
}

.pill-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 14px;
}

.pill-card {
	grid-column: span 4;
	padding: 18px 18px 20px;
	border-radius: var(--cy-radius);
	border: 1px solid var(--cy-line);
	background: var(--cy-surface);
	box-shadow: 0 10px 30px oklch(0.2 0.02 255 / 0.05);
}

@media (max-width: 1024px) {
	.pill-card {
		grid-column: span 6;
	}
}

@media (max-width: 640px) {
	.pill-card {
		grid-column: span 12;
	}
}

.pill-card__n {
	font-weight: 800;
	color: color-mix(in oklch, var(--cy-accent) 55%, var(--cy-muted));
	font-size: 0.9rem;
}

.pill-card h3 {
	margin: 8px 0 6px;
	font-size: 1.08rem;
}

.pill-card p {
	margin: 0;
	color: var(--cy-muted);
	font-size: 0.95rem;
}

.runway {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	padding-bottom: 8px;
	scroll-snap-type: x proximity;
}

.runway-card {
	flex: 0 0 min(280px, 78vw);
	scroll-snap-align: start;
	border-radius: var(--cy-radius);
	border: 1px solid var(--cy-line);
	background: var(--cy-surface);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: border-color 180ms var(--cy-ease), box-shadow 180ms var(--cy-ease), transform 200ms var(--cy-ease);
}

.runway-card:hover {
	border-color: color-mix(in oklch, var(--cy-accent) 35%, var(--cy-line));
	box-shadow: var(--cy-shadow);
}

@media (prefers-reduced-motion: no-preference) {
	.runway-card:hover {
		transform: translateY(-3px);
	}
}

.runway-card img {
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.runway-card__body {
	position: relative;
	padding: 14px 36px 16px 16px;
}

.runway-card--plain .runway-card__body::after {
	content: '→';
	position: absolute;
	right: 14px;
	top: 1.05rem;
	font-weight: 800;
	font-size: 1.05rem;
	line-height: 1;
	color: color-mix(in oklch, var(--cy-accent) 55%, var(--cy-muted));
	opacity: 0.55;
	transition: transform 200ms var(--cy-ease), opacity 200ms var(--cy-ease), color 200ms var(--cy-ease);
}

@media (prefers-reduced-motion: no-preference) {
	.runway-card--plain:hover .runway-card__body::after {
		transform: translateX(4px);
		opacity: 1;
		color: color-mix(in oklch, var(--cy-accent) 78%, var(--cy-ink));
	}
}

.runway-card__body h3 {
	margin: 0 0 6px;
	font-size: 1.02rem;
}

.runway-card--plain {
	min-height: 120px;
	background: color-mix(in oklch, var(--cy-surface) 82%, oklch(0.96 0.012 200));
}

.runway-card__body p {
	margin: 0;
	color: var(--cy-muted);
	font-size: 0.9rem;
}

.split-news {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(18px, 3vw, 28px);
}

@media (max-width: 900px) {
	.split-news {
		grid-template-columns: 1fr;
	}
}

.news-stack h3 {
	margin: 0 0 10px;
	font-size: 1.05rem;
}

.news-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.news-item {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 12px;
	align-items: start;
	padding: 10px;
	border-radius: 12px;
	border: 1px solid transparent;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: border-color 200ms var(--cy-ease), background 200ms var(--cy-ease), transform 200ms var(--cy-ease), box-shadow 200ms var(--cy-ease);
}

.news-item:hover {
	border-color: var(--cy-line);
	background: oklch(0.99 0.005 95);
}

@media (prefers-reduced-motion: no-preference) {
	.news-item:hover {
		transform: translateY(-2px);
		box-shadow: 0 12px 28px oklch(0.22 0.05 27 / 0.07);
	}
}

.news-item img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 10px;
	border: 1px solid var(--cy-line);
	transition: transform 220ms var(--cy-ease), border-color 200ms var(--cy-ease);
}

@media (prefers-reduced-motion: no-preference) {
	.news-item:hover img {
		transform: scale(1.04);
		border-color: color-mix(in oklch, var(--cy-accent) 28%, var(--cy-line));
	}
}

.news-item__t {
	display: block;
	font-weight: 700;
}

.news-item__sum {
	display: block;
	color: var(--cy-muted);
	font-size: 0.9rem;
	margin-top: 4px;
}

/** 首页 GEO 常见问题区 */
.cy-geo-faq {
	max-width: 72ch;
	margin-top: 8px;
}

.cy-geo-faq__item {
	padding: 18px 0;
	border-bottom: 1px solid color-mix(in oklch, var(--cy-line) 70%, transparent);
}

.cy-geo-faq__item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.cy-geo-faq__q {
	margin: 0 0 10px;
	font-size: 1.05rem;
	font-weight: 750;
	line-height: 1.35;
}

.cy-geo-faq__a {
	margin: 0;
	font-size: 0.95rem;
	color: var(--cy-muted);
	line-height: 1.65;
}

.cy-geo-faq__a strong {
	color: var(--cy-ink);
	font-weight: 700;
}

.prefooter {
	margin-top: 28px;
	padding: clamp(28px, 5vw, 48px);
	border-radius: calc(var(--cy-radius) + 8px);
	border: 1px solid var(--cy-line);
	background: color-mix(in oklch, var(--cy-surface) 88%, oklch(0.95 0.02 200));
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.prefooter__title {
	font-family: var(--cy-font-display);
	margin: 0 0 8px;
	font-size: clamp(1.25rem, 1vw + 1rem, 1.65rem);
	max-width: 28ch;
}

.prefooter__lede {
	margin: 0;
	color: var(--cy-muted);
	max-width: 56ch;
}

.site-footer {
	margin-top: 48px;
	padding: 44px 0 28px;
	background: var(--cy-footer-bg);
	color: oklch(0.96 0.02 25);
	border-top: 3px solid var(--cy-accent);
}

.site-footer a {
	color: oklch(0.94 0.06 35);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 22px;
}

@media (max-width: 820px) {
	.site-footer__grid {
		grid-template-columns: 1fr;
	}
}

.site-footer__brand {
	font-weight: 800;
	margin: 0 0 10px;
}

.site-footer__row,
.site-footer__addr {
	margin: 6px 0;
	color: oklch(0.86 0.02 95);
	font-size: 0.95rem;
}

.site-footer__extra {
	margin-top: 18px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 12px;
	align-items: center;
	color: oklch(0.82 0.02 95);
	font-size: 0.92rem;
}

.site-footer__sep {
	opacity: 0.55;
}

.site-footer__copy {
	margin: 16px 0 0;
	text-align: center;
	font-size: 0.82rem;
	color: oklch(0.78 0.02 95);
}

.floating-contact {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 70;
	display: grid;
	gap: 10px;
}

.floating-contact__link,
#cy-back-top {
	border-radius: 999px;
	padding: 12px 14px;
	border: 1px solid var(--cy-line);
	background: var(--cy-surface);
	box-shadow: var(--cy-shadow);
	font-weight: 800;
	cursor: pointer;
	text-decoration: none;
	color: var(--cy-ink);
}

.filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 12px 0 18px;
}

.filter {
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid var(--cy-line);
	background: var(--cy-surface);
	color: var(--cy-ink);
	text-decoration: none;
	font-weight: 650;
	font-size: 0.9rem;
	cursor: pointer;
}

.filter.is-active {
	border-color: color-mix(in oklch, var(--cy-accent) 55%, var(--cy-line));
	background: var(--cy-accent-soft);
}

.grid-products {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 14px;
}

.product-tile {
	grid-column: span 4;
	border-radius: var(--cy-radius);
	border: 1px solid var(--cy-line);
	overflow: hidden;
	background: var(--cy-surface);
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: box-shadow 180ms var(--cy-ease), border-color 180ms var(--cy-ease), transform 200ms var(--cy-ease);
}

@media (max-width: 1024px) {
	.product-tile {
		grid-column: span 6;
	}
}

@media (max-width: 640px) {
	.product-tile {
		grid-column: span 12;
	}
}

.product-tile:hover {
	box-shadow: var(--cy-shadow);
	border-color: color-mix(in oklch, var(--cy-accent) 30%, var(--cy-line));
}

@media (prefers-reduced-motion: no-preference) {
	.product-tile:hover {
		transform: translateY(-3px);
	}
}

.product-tile img {
	width: 100%;
	height: 170px;
	object-fit: cover;
	transition: transform 220ms var(--cy-ease);
}

@media (prefers-reduced-motion: no-preference) {
	.product-tile:hover img {
		transform: scale(1.045);
	}
}

.tile-body {
	padding: 14px 16px 16px;
}

.tile-body h3 {
	margin: 0 0 6px;
	font-size: 1.05rem;
}

.muted {
	color: var(--cy-muted);
}

.cy-pager {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin: 22px 0;
}

.cy-pager__btn {
	padding: 8px 12px;
	border-radius: 10px;
	border: 1px solid var(--cy-line);
	background: var(--cy-surface);
	text-decoration: none;
	color: var(--cy-ink);
	font-weight: 650;
	cursor: pointer;
	transition: border-color 180ms var(--cy-ease), background 180ms var(--cy-ease);
}

.cy-pager__btn:hover {
	border-color: color-mix(in oklch, var(--cy-accent) 28%, var(--cy-line));
	background: oklch(0.99 0.005 95);
}

.cy-pager .page-numbar {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}

.cy-pager a.page-num,
.cy-pager span.page-num {
	display: inline-flex;
	min-width: 2.25rem;
	min-height: 2.25rem;
	align-items: center;
	justify-content: center;
	padding: 0 8px;
	border-radius: 10px;
	border: 1px solid var(--cy-line);
	background: var(--cy-surface);
	text-decoration: none;
	color: var(--cy-ink);
	font-weight: 650;
	font-size: 0.9rem;
}

.cy-pager a.page-num {
	cursor: pointer;
	transition: border-color 180ms var(--cy-ease), background 180ms var(--cy-ease);
}

.cy-pager a.page-num:hover {
	border-color: color-mix(in oklch, var(--cy-accent) 35%, var(--cy-line));
	background: oklch(0.99 0.005 95);
}

.cy-pager a.page-num.page-num-current {
	border-color: color-mix(in oklch, var(--cy-accent) 50%, var(--cy-line));
	background: var(--cy-accent-soft);
}

.cy-pager span.page-num {
	border-color: transparent;
	background: transparent;
	min-width: auto;
	padding: 0 4px;
	color: var(--cy-muted);
}

.cy-search {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 10px;
}

.cy-search__input {
	flex: 1 1 220px;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid var(--cy-line);
	font: inherit;
}

.cy-search__btn {
	padding: 12px 16px;
	border-radius: 12px;
	border: 1px solid color-mix(in oklch, var(--cy-accent) 55%, var(--cy-line));
	background: var(--cy-accent);
	color: var(--cy-accent-ink);
	font-weight: 800;
	cursor: pointer;
}

.cy-wrap {
	padding: 18px 0 44px;
}

.cy-block-hero {
	padding: 10px 0 8px;
}

.cy-block-hero__title {
	font-family: var(--cy-font-display);
	font-size: clamp(1.6rem, 1.2vw + 1.1rem, 2.1rem);
	margin: 0 0 8px;
}

.cy-block-hero__desc {
	margin: 0;
	color: var(--cy-muted);
	max-width: 62ch;
}

.cy-detail-wrap {
	display: grid;
	gap: 16px;
}

.cy-product-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
	gap: 18px;
	align-items: start;
	padding: 18px;
	border: 1px solid var(--cy-line);
	border-radius: var(--cy-radius);
	background: var(--cy-surface);
}

@media (max-width: 900px) {
	.cy-product-hero {
		grid-template-columns: 1fr;
	}
}

.cy-cover {
	width: 100%;
	border-radius: 12px;
	border: 1px solid var(--cy-line);
}

.cy-detail-card {
	padding: 18px;
	border-radius: var(--cy-radius);
	border: 1px solid var(--cy-line);
	background: var(--cy-surface);
}

.cy-detail-card__title {
	margin: 0 0 10px;
	font-size: 1.05rem;
}

.cy-content {
	line-height: 1.75;
}

.cy-content img {
	max-width: 100%;
	height: auto;
}

.cy-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 8px;
}

.cy-actions--center {
	justify-content: center;
	margin-top: 28px;
}

/** 联系页等双栏信息块，替代内联 grid。 */
.cy-two-col {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 18px;
}

.cy-tabbar {
	position: sticky;
	bottom: 0;
	z-index: 50;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
	padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
	background: color-mix(in oklch, var(--cy-surface) 94%, var(--cy-accent-soft));
	border-top: 1px solid var(--cy-line);
}

.cy-tabbar__item {
	text-align: center;
	font-size: 0.82rem;
	font-weight: 750;
	padding: 10px 6px;
	border-radius: 12px;
	text-decoration: none;
	color: var(--cy-muted);
	cursor: pointer;
}

.cy-tabbar__item--active {
	color: var(--cy-ink);
	background: var(--cy-accent-soft);
}

.text-link {
	font-weight: 800;
	text-decoration: none;
	color: var(--cy-accent);
	cursor: pointer;
}

.cy-news-feed {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.cy-news-card {
	display: block;
	padding: 16px 18px;
	border-radius: var(--cy-radius);
	border: 1px solid var(--cy-line);
	background: var(--cy-surface);
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: box-shadow 180ms var(--cy-ease), border-color 180ms var(--cy-ease), background 180ms var(--cy-ease);
}

.cy-news-card:hover {
	border-color: color-mix(in oklch, var(--cy-accent) 28%, var(--cy-line));
	background: oklch(0.99 0.005 95);
	box-shadow: var(--cy-shadow);
}

.cy-news-card__cat {
	margin: 0 0 6px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--cy-accent);
}

.cy-news-card__title {
	margin: 0 0 8px;
	font-size: 1.08rem;
	font-weight: 750;
}

.cy-news-card__desc {
	margin: 0 0 10px;
	color: var(--cy-muted);
	font-size: 0.95rem;
}

.cy-news-card__meta {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	font-size: 0.86rem;
	color: var(--cy-muted);
}

.form label {
	display: block;
	font-weight: 700;
	margin: 12px 0 6px;
}

.form input,
.form textarea {
	width: 100%;
	max-width: 560px;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid var(--cy-line);
	font: inherit;
}

.form textarea {
	min-height: 140px;
	resize: vertical;
}

.card {
	padding: 20px;
	border-radius: var(--cy-radius);
	border: 1px solid var(--cy-line);
	background: var(--cy-surface);
}

.visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

body.site-nav-open {
	overflow: hidden;
}

/* —— 首页 v2：编辑型版式 —— */

.container--narrow {
	width: min(720px, calc(100% - 40px));
}

.btn-ghost {
	background: transparent;
	color: var(--cy-ink);
	border-color: var(--cy-line);
}

.btn-ghost:hover {
	border-color: color-mix(in oklch, var(--cy-accent) 45%, var(--cy-line));
}

.btn-ghost-light {
	background: transparent;
	color: oklch(0.96 0.01 55);
	border-color: oklch(0.96 0.01 55 / 0.4);
}

.btn-ghost-light:hover {
	border-color: oklch(0.96 0.01 55 / 0.7);
	background: oklch(0.2 0.02 30 / 0.2);
}

.cy-hero-metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	margin-top: -1px;
	border: 1px solid var(--cy-line);
	border-top: none;
	background: var(--cy-surface);
}

.cy-metric {
	padding: clamp(20px, 3vw, 28px) clamp(16px, 2.5vw, 24px);
	border-right: 1px solid var(--cy-line);
	text-align: center;
}

.cy-metric:last-child {
	border-right: none;
}

.cy-metric__value {
	margin: 0;
	font-family: var(--cy-font-display);
	font-size: clamp(1.5rem, 1.2vw + 1rem, 2rem);
	font-weight: 600;
	color: var(--cy-accent-strong);
	line-height: 1.1;
}

.cy-metric__value small {
	font-size: 0.55em;
	font-weight: 500;
	margin-left: 2px;
}

.cy-metric__label {
	margin: 6px 0 0;
	font-size: 0.82rem;
	color: var(--cy-muted);
	letter-spacing: 0.04em;
}

.cy-metric--wide {
	grid-column: 1 / -1;
	border-top: 1px solid var(--cy-line);
	border-right: none;
	text-align: left;
	padding-block: 18px 22px;
}

.cy-metric--wide .cy-metric__label {
	margin: 0 0 4px;
	font-weight: 600;
	color: var(--cy-ink);
}

.cy-metric__desc {
	margin: 0;
	font-size: 0.9rem;
	color: var(--cy-muted);
}

@media (max-width: 640px) {
	.cy-hero-metrics {
		grid-template-columns: 1fr 1fr;
	}
	.cy-metric:nth-child(2) {
		border-right: none;
	}
	.cy-metric:nth-child(1) {
		border-bottom: 1px solid var(--cy-line);
	}
}

.surface-band--flush {
	padding-top: clamp(40px, 6vw, 64px);
}

.surface-band--alt {
	background: var(--cy-alt);
}

.section-intro {
	margin-bottom: clamp(28px, 4vw, 40px);
	max-width: 52ch;
}

.section-intro--row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px 24px;
	max-width: none;
}

.section-eyebrow {
	margin: 0 0 8px;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	color: var(--cy-accent);
}

.section-eyebrow--light {
	color: oklch(0.88 0.04 25);
}

.section-title {
	margin: 0;
	font-family: var(--cy-font-display);
	font-size: clamp(1.5rem, 1.1vw + 1.1rem, 2rem);
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: 0.02em;
}

.section-title--light {
	color: oklch(0.98 0.006 55);
}

.section-lede {
	margin: 12px 0 0;
	color: var(--cy-muted);
	font-size: 0.98rem;
	max-width: 58ch;
	line-height: 1.65;
}

.section-link {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--cy-accent-strong);
	text-decoration: none;
	white-space: nowrap;
}

.section-link:hover {
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.cy-series-index {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--cy-line);
}

.cy-series-index__link {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding: clamp(14px, 2vw, 18px) 4px;
	border-bottom: 1px solid var(--cy-line);
	color: inherit;
	text-decoration: none;
	transition: color 180ms var(--cy-ease), padding-inline 180ms var(--cy-ease);
}

.cy-series-index__link:hover {
	color: var(--cy-accent-strong);
	padding-inline: 8px;
}

.cy-series-index__name {
	font-family: var(--cy-font-display);
	font-size: clamp(1.05rem, 0.5vw + 0.95rem, 1.2rem);
	font-weight: 600;
}

.cy-series-index__arrow {
	color: var(--cy-muted);
	font-size: 1.1rem;
	transition: transform 180ms var(--cy-ease);
}

.cy-series-index__link:hover .cy-series-index__arrow {
	transform: translateX(4px);
	color: var(--cy-accent);
}

.cy-product-mosaic {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	background: var(--cy-line);
	border: 1px solid var(--cy-line);
}

.cy-product-mosaic__item {
	display: flex;
	flex-direction: column;
	background: var(--cy-surface);
	color: inherit;
	text-decoration: none;
	transition: background 200ms var(--cy-ease);
}

.cy-product-mosaic__item:hover {
	background: oklch(0.99 0.008 55);
}

.cy-product-mosaic__media {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--cy-alt);
}

.cy-product-mosaic__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 480ms var(--cy-ease);
}

.cy-product-mosaic__item:hover .cy-product-mosaic__media img {
	transform: scale(1.03);
}

.cy-product-mosaic__body {
	padding: 14px 16px 18px;
}

.cy-product-mosaic__body h3 {
	margin: 0 0 6px;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.35;
}

.cy-product-mosaic__body p {
	margin: 0;
	font-size: 0.82rem;
	color: var(--cy-muted);
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (max-width: 900px) {
	.cy-product-mosaic {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.cy-product-mosaic {
		grid-template-columns: 1fr;
	}
}

.cy-about-editorial {
	padding-block: clamp(56px, 8vw, 96px);
	background: oklch(0.22 0.06 25);
	color: oklch(0.94 0.01 55);
}

.cy-about-editorial__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(28px, 5vw, 56px);
	align-items: start;
}

.cy-about-editorial__prose p {
	margin: 0 0 14px;
	color: oklch(0.88 0.015 55);
	line-height: 1.75;
	max-width: 58ch;
}

.cy-about-editorial__prose .btn {
	margin-top: 8px;
}

@media (max-width: 768px) {
	.cy-about-editorial__grid {
		grid-template-columns: 1fr;
	}
}

.cy-app-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
	border-top: 1px solid var(--cy-line);
}

.cy-app-list li a {
	display: grid;
	grid-template-columns: minmax(0, 11rem) 1fr;
	gap: 12px 24px;
	padding: 16px 4px;
	border-bottom: 1px solid var(--cy-line);
	color: inherit;
	text-decoration: none;
	transition: padding-inline 180ms var(--cy-ease);
}

.cy-app-list li a:hover {
	padding-inline: 8px;
}

.cy-app-list__title {
	font-weight: 600;
	color: var(--cy-ink);
}

.cy-app-list__sum {
	color: var(--cy-muted);
	font-size: 0.92rem;
	line-height: 1.55;
}

@media (max-width: 600px) {
	.cy-app-list li a {
		grid-template-columns: 1fr;
		gap: 4px;
	}
}

.cy-news-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(24px, 4vw, 48px);
}

.cy-news-columns__h {
	margin: 0 0 12px;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--cy-muted);
}

.cy-news-lines {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--cy-line);
}

.cy-news-lines a {
	display: grid;
	grid-template-columns: 5.5rem 1fr;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid var(--cy-line);
	color: inherit;
	text-decoration: none;
	font-size: 0.92rem;
	transition: color 180ms var(--cy-ease);
}

.cy-news-lines a:hover {
	color: var(--cy-accent-strong);
}

.cy-news-lines time {
	color: var(--cy-muted);
	font-variant-numeric: tabular-nums;
	font-size: 0.82rem;
}

@media (max-width: 700px) {
	.cy-news-columns {
		grid-template-columns: 1fr;
	}
}

.cy-faq-band {
	padding-block: clamp(40px, 6vw, 64px);
}

.cy-faq-accordion__item {
	border-bottom: 1px solid var(--cy-line);
	padding-block: 4px;
}

.cy-faq-accordion__item summary {
	padding: 14px 0;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.cy-faq-accordion__item summary::-webkit-details-marker {
	display: none;
}

.cy-faq-accordion__item summary::after {
	content: "+";
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--cy-muted);
}

.cy-faq-accordion__item[open] summary::after {
	content: "−";
}

.cy-faq-accordion__item p {
	margin: 0 0 16px;
	padding-right: 24px;
	color: var(--cy-muted);
	font-size: 0.94rem;
	line-height: 1.65;
	max-width: 62ch;
}

.cy-cta-band {
	padding-block: clamp(40px, 6vw, 56px);
	background: var(--cy-surface);
	border-top: 1px solid var(--cy-line);
}

.cy-cta-band__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px 32px;
}

.cy-cta-band__title {
	margin: 0;
	font-family: var(--cy-font-display);
	font-size: clamp(1.25rem, 0.8vw + 1rem, 1.5rem);
	font-weight: 600;
}

.cy-cta-band__meta {
	margin: 6px 0 0;
	font-size: 0.88rem;
	color: var(--cy-muted);
}

.floating-contact {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 55;
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: stretch;
}

.floating-contact__link,
.floating-contact button {
	padding: 10px 14px;
	font-size: 0.82rem;
	font-weight: 600;
	border-radius: var(--cy-radius);
	border: 1px solid var(--cy-line);
	background: color-mix(in oklch, var(--cy-surface) 94%, transparent);
	backdrop-filter: blur(8px);
	color: var(--cy-ink);
	cursor: pointer;
	text-decoration: none;
	box-shadow: var(--cy-shadow);
}

.floating-contact__link {
	background: var(--cy-accent);
	color: var(--cy-accent-ink);
	border-color: var(--cy-accent-strong);
}
